blob: 874b6da154303e428baeed022914c17096e4879b [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;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200378
379 struct rb_root tasks_timeline;
380 struct rb_node *rb_leftmost;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +0200381
382 struct list_head tasks;
383 struct list_head *balance_iterator;
384
385 /*
386 * 'curr' points to currently running entity on this cfs_rq.
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200387 * It is set to NULL otherwise (i.e when none are currently running).
388 */
Peter Zijlstraaa2ac252008-03-14 21:12:12 +0100389 struct sched_entity *curr, *next;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200390
391 unsigned long nr_spread_over;
392
Ingo Molnar62160e3f2007-10-15 17:00:03 +0200393#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200394 struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */
395
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100396 /*
397 * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200398 * a hierarchy). Non-leaf lrqs hold other higher schedulable entities
399 * (like users, containers etc.)
400 *
401 * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This
402 * list is used during load balance.
403 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100404 struct list_head leaf_cfs_rq_list;
405 struct task_group *tg; /* group that "owns" this runqueue */
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200406
407#ifdef CONFIG_SMP
408 unsigned long task_weight;
409 unsigned long shares;
410 /*
411 * We need space to build a sched_domain wide view of the full task
412 * group tree, in order to avoid depending on dynamic memory allocation
413 * during the load balancing we place this in the per cpu task group
414 * hierarchy. This limits the load balancing to one instance per cpu,
415 * but more should not be needed anyway.
416 */
417 struct aggregate_struct {
418 /*
419 * load = weight(cpus) * f(tg)
420 *
421 * Where f(tg) is the recursive weight fraction assigned to
422 * this group.
423 */
424 unsigned long load;
425
426 /*
427 * part of the group weight distributed to this span.
428 */
429 unsigned long shares;
430
431 /*
432 * The sum of all runqueue weights within this span.
433 */
434 unsigned long rq_weight;
435
436 /*
437 * Weight contributed by tasks; this is the part we can
438 * influence by moving tasks around.
439 */
440 unsigned long task_weight;
441 } aggregate;
442#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200443#endif
444};
445
446/* Real-Time classes' related field in a runqueue: */
447struct rt_rq {
448 struct rt_prio_array active;
Steven Rostedt63489e42008-01-25 21:08:03 +0100449 unsigned long rt_nr_running;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100450#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100451 int highest_prio; /* highest queued rt task prio */
452#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100453#ifdef CONFIG_SMP
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100454 unsigned long rt_nr_migratory;
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100455 int overloaded;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100456#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100457 int rt_throttled;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100458 u64 rt_time;
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200459 u64 rt_runtime;
Ingo Molnarea736ed2008-03-25 13:51:45 +0100460 /* Nests inside the rq lock: */
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200461 spinlock_t rt_runtime_lock;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100462
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100463#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100464 unsigned long rt_nr_boosted;
465
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100466 struct rq *rq;
467 struct list_head leaf_rt_rq_list;
468 struct task_group *tg;
469 struct sched_rt_entity *rt_se;
470#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200471};
472
Gregory Haskins57d885f2008-01-25 21:08:18 +0100473#ifdef CONFIG_SMP
474
475/*
476 * We add the notion of a root-domain which will be used to define per-domain
Ingo Molnar0eab9142008-01-25 21:08:19 +0100477 * variables. Each exclusive cpuset essentially defines an island domain by
478 * fully partitioning the member cpus from any other cpuset. Whenever a new
Gregory Haskins57d885f2008-01-25 21:08:18 +0100479 * exclusive cpuset is created, we also create and attach a new root-domain
480 * object.
481 *
Gregory Haskins57d885f2008-01-25 21:08:18 +0100482 */
483struct root_domain {
484 atomic_t refcount;
485 cpumask_t span;
486 cpumask_t online;
Gregory Haskins637f5082008-01-25 21:08:18 +0100487
Ingo Molnar0eab9142008-01-25 21:08:19 +0100488 /*
Gregory Haskins637f5082008-01-25 21:08:18 +0100489 * The "RT overload" flag: it gets set if a CPU has more than
490 * one runnable RT task.
491 */
492 cpumask_t rto_mask;
Ingo Molnar0eab9142008-01-25 21:08:19 +0100493 atomic_t rto_count;
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200494#ifdef CONFIG_SMP
495 struct cpupri cpupri;
496#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +0100497};
498
Gregory Haskinsdc938522008-01-25 21:08:26 +0100499/*
500 * By default the system creates a single root-domain with all cpus as
501 * members (mimicking the global state we have today).
502 */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100503static struct root_domain def_root_domain;
504
505#endif
506
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200507/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 * This is the main, per-CPU runqueue data structure.
509 *
510 * Locking rule: those places that want to lock multiple runqueues
511 * (such as the load balancing or the thread migration code), lock
512 * acquire operations must be ordered by ascending &runqueue.
513 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700514struct rq {
Ingo Molnard8016492007-10-18 21:32:55 +0200515 /* runqueue lock: */
516 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518 /*
519 * nr_running and cpu_load should be in the same cacheline because
520 * remote CPUs use both these fields when doing load calculation.
521 */
522 unsigned long nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200523 #define CPU_LOAD_IDX_MAX 5
524 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
Siddha, Suresh Bbdecea32007-05-08 00:32:48 -0700525 unsigned char idle_at_tick;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700526#ifdef CONFIG_NO_HZ
Guillaume Chazarain15934a32008-04-19 19:44:57 +0200527 unsigned long last_tick_seen;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700528 unsigned char in_nohz_recently;
529#endif
Ingo Molnard8016492007-10-18 21:32:55 +0200530 /* capture load from *all* tasks on this cpu: */
531 struct load_weight load;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200532 unsigned long nr_load_updates;
533 u64 nr_switches;
534
535 struct cfs_rq cfs;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100536 struct rt_rq rt;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100537
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200538#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnard8016492007-10-18 21:32:55 +0200539 /* list of leaf cfs_rq on this cpu: */
540 struct list_head leaf_cfs_rq_list;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100541#endif
542#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100543 struct list_head leaf_rt_rq_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 /*
547 * This is part of a global counter where only the total sum
548 * over all CPUs matters. A task can increase this counter on
549 * one CPU and if it got migrated afterwards it may decrease
550 * it on another CPU. Always updated under the runqueue lock:
551 */
552 unsigned long nr_uninterruptible;
553
Ingo Molnar36c8b582006-07-03 00:25:41 -0700554 struct task_struct *curr, *idle;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800555 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 struct mm_struct *prev_mm;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200557
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200558 u64 clock;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 atomic_t nr_iowait;
561
562#ifdef CONFIG_SMP
Ingo Molnar0eab9142008-01-25 21:08:19 +0100563 struct root_domain *rd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 struct sched_domain *sd;
565
566 /* For active balancing */
567 int active_balance;
568 int push_cpu;
Ingo Molnard8016492007-10-18 21:32:55 +0200569 /* cpu of this runqueue: */
570 int cpu;
Gregory Haskins1f11eb62008-06-04 15:04:05 -0400571 int online;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Ingo Molnar36c8b582006-07-03 00:25:41 -0700573 struct task_struct *migration_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 struct list_head migration_queue;
575#endif
576
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100577#ifdef CONFIG_SCHED_HRTICK
578 unsigned long hrtick_flags;
579 ktime_t hrtick_expire;
580 struct hrtimer hrtick_timer;
581#endif
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583#ifdef CONFIG_SCHEDSTATS
584 /* latency stats */
585 struct sched_info rq_sched_info;
586
587 /* sys_sched_yield() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200588 unsigned int yld_exp_empty;
589 unsigned int yld_act_empty;
590 unsigned int yld_both_empty;
591 unsigned int yld_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593 /* schedule() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200594 unsigned int sched_switch;
595 unsigned int sched_count;
596 unsigned int sched_goidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
598 /* try_to_wake_up() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200599 unsigned int ttwu_count;
600 unsigned int ttwu_local;
Ingo Molnarb8efb562007-10-15 17:00:10 +0200601
602 /* BKL stats */
Ken Chen480b9432007-10-18 21:32:56 +0200603 unsigned int bkl_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604#endif
Ingo Molnarfcb99372006-07-03 00:25:10 -0700605 struct lock_class_key rq_lock_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606};
607
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700608static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Ingo Molnardd41f592007-07-09 18:51:59 +0200610static inline void check_preempt_curr(struct rq *rq, struct task_struct *p)
611{
612 rq->curr->sched_class->check_preempt_curr(rq, p);
613}
614
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700615static inline int cpu_of(struct rq *rq)
616{
617#ifdef CONFIG_SMP
618 return rq->cpu;
619#else
620 return 0;
621#endif
622}
623
Ingo Molnar20d315d2007-07-09 18:51:58 +0200624/*
Nick Piggin674311d2005-06-25 14:57:27 -0700625 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700626 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700627 *
628 * The domain tree of any CPU may only be accessed from within
629 * preempt-disabled sections.
630 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700631#define for_each_domain(cpu, __sd) \
632 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
635#define this_rq() (&__get_cpu_var(runqueues))
636#define task_rq(p) cpu_rq(task_cpu(p))
637#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
638
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200639static inline void update_rq_clock(struct rq *rq)
640{
641 rq->clock = sched_clock_cpu(cpu_of(rq));
642}
643
Ingo Molnare436d802007-07-19 21:28:35 +0200644/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200645 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
646 */
647#ifdef CONFIG_SCHED_DEBUG
648# define const_debug __read_mostly
649#else
650# define const_debug static const
651#endif
652
653/*
654 * Debugging: various feature bits
655 */
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200656
657#define SCHED_FEAT(name, enabled) \
658 __SCHED_FEAT_##name ,
659
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200660enum {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200661#include "sched_features.h"
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200662};
663
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200664#undef SCHED_FEAT
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200665
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200666#define SCHED_FEAT(name, enabled) \
667 (1UL << __SCHED_FEAT_##name) * enabled |
668
669const_debug unsigned int sysctl_sched_features =
670#include "sched_features.h"
671 0;
672
673#undef SCHED_FEAT
674
675#ifdef CONFIG_SCHED_DEBUG
676#define SCHED_FEAT(name, enabled) \
677 #name ,
678
Harvey Harrison983ed7a2008-04-24 18:17:55 -0700679static __read_mostly char *sched_feat_names[] = {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200680#include "sched_features.h"
681 NULL
682};
683
684#undef SCHED_FEAT
685
Harvey Harrison983ed7a2008-04-24 18:17:55 -0700686static int sched_feat_open(struct inode *inode, struct file *filp)
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200687{
688 filp->private_data = inode->i_private;
689 return 0;
690}
691
692static ssize_t
693sched_feat_read(struct file *filp, char __user *ubuf,
694 size_t cnt, loff_t *ppos)
695{
696 char *buf;
697 int r = 0;
698 int len = 0;
699 int i;
700
701 for (i = 0; sched_feat_names[i]; i++) {
702 len += strlen(sched_feat_names[i]);
703 len += 4;
704 }
705
706 buf = kmalloc(len + 2, GFP_KERNEL);
707 if (!buf)
708 return -ENOMEM;
709
710 for (i = 0; sched_feat_names[i]; i++) {
711 if (sysctl_sched_features & (1UL << i))
712 r += sprintf(buf + r, "%s ", sched_feat_names[i]);
713 else
Ingo Molnarc24b7c52008-04-18 10:55:34 +0200714 r += sprintf(buf + r, "NO_%s ", sched_feat_names[i]);
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200715 }
716
717 r += sprintf(buf + r, "\n");
718 WARN_ON(r >= len + 2);
719
720 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
721
722 kfree(buf);
723
724 return r;
725}
726
727static ssize_t
728sched_feat_write(struct file *filp, const char __user *ubuf,
729 size_t cnt, loff_t *ppos)
730{
731 char buf[64];
732 char *cmp = buf;
733 int neg = 0;
734 int i;
735
736 if (cnt > 63)
737 cnt = 63;
738
739 if (copy_from_user(&buf, ubuf, cnt))
740 return -EFAULT;
741
742 buf[cnt] = 0;
743
Ingo Molnarc24b7c52008-04-18 10:55:34 +0200744 if (strncmp(buf, "NO_", 3) == 0) {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200745 neg = 1;
746 cmp += 3;
747 }
748
749 for (i = 0; sched_feat_names[i]; i++) {
750 int len = strlen(sched_feat_names[i]);
751
752 if (strncmp(cmp, sched_feat_names[i], len) == 0) {
753 if (neg)
754 sysctl_sched_features &= ~(1UL << i);
755 else
756 sysctl_sched_features |= (1UL << i);
757 break;
758 }
759 }
760
761 if (!sched_feat_names[i])
762 return -EINVAL;
763
764 filp->f_pos += cnt;
765
766 return cnt;
767}
768
769static struct file_operations sched_feat_fops = {
770 .open = sched_feat_open,
771 .read = sched_feat_read,
772 .write = sched_feat_write,
773};
774
775static __init int sched_init_debug(void)
776{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200777 debugfs_create_file("sched_features", 0644, NULL, NULL,
778 &sched_feat_fops);
779
780 return 0;
781}
782late_initcall(sched_init_debug);
783
784#endif
785
786#define sched_feat(x) (sysctl_sched_features & (1UL << __SCHED_FEAT_##x))
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200787
788/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100789 * Number of tasks to iterate in a single balance run.
790 * Limited because this is done with IRQs disabled.
791 */
792const_debug unsigned int sysctl_sched_nr_migrate = 32;
793
794/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100795 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100796 * default: 1s
797 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100798unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100799
Ingo Molnar6892b752008-02-13 14:02:36 +0100800static __read_mostly int scheduler_running;
801
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100802/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100803 * part of the period that we allow rt tasks to run in us.
804 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100805 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100806int sysctl_sched_rt_runtime = 950000;
807
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200808static inline u64 global_rt_period(void)
809{
810 return (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
811}
812
813static inline u64 global_rt_runtime(void)
814{
815 if (sysctl_sched_rt_period < 0)
816 return RUNTIME_INF;
817
818 return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC;
819}
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100820
Ingo Molnar690229a2008-04-23 09:31:35 +0200821unsigned long long time_sync_thresh = 100000;
Ingo Molnar27ec4402008-02-28 21:00:21 +0100822
823static DEFINE_PER_CPU(unsigned long long, time_offset);
824static DEFINE_PER_CPU(unsigned long long, prev_cpu_time);
825
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100826/*
Ingo Molnar27ec4402008-02-28 21:00:21 +0100827 * Global lock which we take every now and then to synchronize
828 * the CPUs time. This method is not warp-safe, but it's good
829 * enough to synchronize slowly diverging time sources and thus
830 * it's good enough for tracing:
Ingo Molnare436d802007-07-19 21:28:35 +0200831 */
Ingo Molnar27ec4402008-02-28 21:00:21 +0100832static DEFINE_SPINLOCK(time_sync_lock);
833static unsigned long long prev_global_time;
834
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200835static unsigned long long __sync_cpu_clock(unsigned long long time, int cpu)
Ingo Molnar27ec4402008-02-28 21:00:21 +0100836{
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200837 /*
838 * We want this inlined, to not get tracer function calls
839 * in this critical section:
840 */
841 spin_acquire(&time_sync_lock.dep_map, 0, 0, _THIS_IP_);
842 __raw_spin_lock(&time_sync_lock.raw_lock);
Ingo Molnar27ec4402008-02-28 21:00:21 +0100843
844 if (time < prev_global_time) {
845 per_cpu(time_offset, cpu) += prev_global_time - time;
846 time = prev_global_time;
847 } else {
848 prev_global_time = time;
849 }
850
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200851 __raw_spin_unlock(&time_sync_lock.raw_lock);
852 spin_release(&time_sync_lock.dep_map, 1, _THIS_IP_);
Ingo Molnar27ec4402008-02-28 21:00:21 +0100853
854 return time;
855}
856
857static unsigned long long __cpu_clock(int cpu)
Ingo Molnare436d802007-07-19 21:28:35 +0200858{
Ingo Molnare436d802007-07-19 21:28:35 +0200859 unsigned long long now;
Ingo Molnare436d802007-07-19 21:28:35 +0200860
Ingo Molnar8ced5f62007-12-07 19:02:47 +0100861 /*
862 * Only call sched_clock() if the scheduler has already been
863 * initialized (some code might call cpu_clock() very early):
864 */
Ingo Molnar6892b752008-02-13 14:02:36 +0100865 if (unlikely(!scheduler_running))
866 return 0;
867
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200868 now = sched_clock_cpu(cpu);
Ingo Molnare436d802007-07-19 21:28:35 +0200869
870 return now;
871}
Ingo Molnar27ec4402008-02-28 21:00:21 +0100872
873/*
874 * For kernel-internal use: high-speed (but slightly incorrect) per-cpu
875 * clock constructed from sched_clock():
876 */
877unsigned long long cpu_clock(int cpu)
878{
879 unsigned long long prev_cpu_time, time, delta_time;
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200880 unsigned long flags;
Ingo Molnar27ec4402008-02-28 21:00:21 +0100881
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200882 local_irq_save(flags);
Ingo Molnar27ec4402008-02-28 21:00:21 +0100883 prev_cpu_time = per_cpu(prev_cpu_time, cpu);
884 time = __cpu_clock(cpu) + per_cpu(time_offset, cpu);
885 delta_time = time-prev_cpu_time;
886
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200887 if (unlikely(delta_time > time_sync_thresh)) {
Ingo Molnar27ec4402008-02-28 21:00:21 +0100888 time = __sync_cpu_clock(time, cpu);
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200889 per_cpu(prev_cpu_time, cpu) = time;
890 }
891 local_irq_restore(flags);
Ingo Molnar27ec4402008-02-28 21:00:21 +0100892
893 return time;
894}
Paul E. McKenneya58f6f22007-10-15 17:00:14 +0200895EXPORT_SYMBOL_GPL(cpu_clock);
Ingo Molnare436d802007-07-19 21:28:35 +0200896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700898# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700900#ifndef finish_arch_switch
901# define finish_arch_switch(prev) do { } while (0)
902#endif
903
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100904static inline int task_current(struct rq *rq, struct task_struct *p)
905{
906 return rq->curr == p;
907}
908
Nick Piggin4866cde2005-06-25 14:57:23 -0700909#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700910static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700911{
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100912 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700913}
914
Ingo Molnar70b97a72006-07-03 00:25:42 -0700915static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700916{
917}
918
Ingo Molnar70b97a72006-07-03 00:25:42 -0700919static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700920{
Ingo Molnarda04c032005-09-13 11:17:59 +0200921#ifdef CONFIG_DEBUG_SPINLOCK
922 /* this is a valid case when another task releases the spinlock */
923 rq->lock.owner = current;
924#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700925 /*
926 * If we are tracking spinlock dependencies then we have to
927 * fix up the runqueue lock - which gets 'carried over' from
928 * prev into current:
929 */
930 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
931
Nick Piggin4866cde2005-06-25 14:57:23 -0700932 spin_unlock_irq(&rq->lock);
933}
934
935#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700936static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700937{
938#ifdef CONFIG_SMP
939 return p->oncpu;
940#else
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100941 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700942#endif
943}
944
Ingo Molnar70b97a72006-07-03 00:25:42 -0700945static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700946{
947#ifdef CONFIG_SMP
948 /*
949 * We can optimise this out completely for !SMP, because the
950 * SMP rebalancing from interrupt is the only thing that cares
951 * here.
952 */
953 next->oncpu = 1;
954#endif
955#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
956 spin_unlock_irq(&rq->lock);
957#else
958 spin_unlock(&rq->lock);
959#endif
960}
961
Ingo Molnar70b97a72006-07-03 00:25:42 -0700962static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700963{
964#ifdef CONFIG_SMP
965 /*
966 * After ->oncpu is cleared, the task can be moved to a different CPU.
967 * We must ensure this doesn't happen until the switch is completely
968 * finished.
969 */
970 smp_wmb();
971 prev->oncpu = 0;
972#endif
973#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
974 local_irq_enable();
975#endif
976}
977#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
979/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700980 * __task_rq_lock - lock the runqueue a given task resides on.
981 * Must be called interrupts disabled.
982 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700983static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700984 __acquires(rq->lock)
985{
Andi Kleen3a5c3592007-10-15 17:00:14 +0200986 for (;;) {
987 struct rq *rq = task_rq(p);
988 spin_lock(&rq->lock);
989 if (likely(rq == task_rq(p)))
990 return rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -0700991 spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700992 }
Ingo Molnarb29739f2006-06-27 02:54:51 -0700993}
994
995/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 * task_rq_lock - lock the runqueue a given task resides on and disable
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100997 * interrupts. Note the ordering: we can safely lookup the task_rq without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 * explicitly disabling preemption.
999 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001000static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 __acquires(rq->lock)
1002{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001003 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Andi Kleen3a5c3592007-10-15 17:00:14 +02001005 for (;;) {
1006 local_irq_save(*flags);
1007 rq = task_rq(p);
1008 spin_lock(&rq->lock);
1009 if (likely(rq == task_rq(p)))
1010 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 spin_unlock_irqrestore(&rq->lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013}
1014
Alexey Dobriyana9957442007-10-15 17:00:13 +02001015static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001016 __releases(rq->lock)
1017{
1018 spin_unlock(&rq->lock);
1019}
1020
Ingo Molnar70b97a72006-07-03 00:25:42 -07001021static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 __releases(rq->lock)
1023{
1024 spin_unlock_irqrestore(&rq->lock, *flags);
1025}
1026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -08001028 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001030static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 __acquires(rq->lock)
1032{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001033 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
1035 local_irq_disable();
1036 rq = this_rq();
1037 spin_lock(&rq->lock);
1038
1039 return rq;
1040}
1041
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001042static void __resched_task(struct task_struct *p, int tif_bit);
1043
1044static inline void resched_task(struct task_struct *p)
1045{
1046 __resched_task(p, TIF_NEED_RESCHED);
1047}
1048
1049#ifdef CONFIG_SCHED_HRTICK
1050/*
1051 * Use HR-timers to deliver accurate preemption points.
1052 *
1053 * Its all a bit involved since we cannot program an hrt while holding the
1054 * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a
1055 * reschedule event.
1056 *
1057 * When we get rescheduled we reprogram the hrtick_timer outside of the
1058 * rq->lock.
1059 */
1060static inline void resched_hrt(struct task_struct *p)
1061{
1062 __resched_task(p, TIF_HRTICK_RESCHED);
1063}
1064
1065static inline void resched_rq(struct rq *rq)
1066{
1067 unsigned long flags;
1068
1069 spin_lock_irqsave(&rq->lock, flags);
1070 resched_task(rq->curr);
1071 spin_unlock_irqrestore(&rq->lock, flags);
1072}
1073
1074enum {
1075 HRTICK_SET, /* re-programm hrtick_timer */
1076 HRTICK_RESET, /* not a new slice */
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001077 HRTICK_BLOCK, /* stop hrtick operations */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001078};
1079
1080/*
1081 * Use hrtick when:
1082 * - enabled by features
1083 * - hrtimer is actually high res
1084 */
1085static inline int hrtick_enabled(struct rq *rq)
1086{
1087 if (!sched_feat(HRTICK))
1088 return 0;
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001089 if (unlikely(test_bit(HRTICK_BLOCK, &rq->hrtick_flags)))
1090 return 0;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001091 return hrtimer_is_hres_active(&rq->hrtick_timer);
1092}
1093
1094/*
1095 * Called to set the hrtick timer state.
1096 *
1097 * called with rq->lock held and irqs disabled
1098 */
1099static void hrtick_start(struct rq *rq, u64 delay, int reset)
1100{
1101 assert_spin_locked(&rq->lock);
1102
1103 /*
1104 * preempt at: now + delay
1105 */
1106 rq->hrtick_expire =
1107 ktime_add_ns(rq->hrtick_timer.base->get_time(), delay);
1108 /*
1109 * indicate we need to program the timer
1110 */
1111 __set_bit(HRTICK_SET, &rq->hrtick_flags);
1112 if (reset)
1113 __set_bit(HRTICK_RESET, &rq->hrtick_flags);
1114
1115 /*
1116 * New slices are called from the schedule path and don't need a
1117 * forced reschedule.
1118 */
1119 if (reset)
1120 resched_hrt(rq->curr);
1121}
1122
1123static void hrtick_clear(struct rq *rq)
1124{
1125 if (hrtimer_active(&rq->hrtick_timer))
1126 hrtimer_cancel(&rq->hrtick_timer);
1127}
1128
1129/*
1130 * Update the timer from the possible pending state.
1131 */
1132static void hrtick_set(struct rq *rq)
1133{
1134 ktime_t time;
1135 int set, reset;
1136 unsigned long flags;
1137
1138 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1139
1140 spin_lock_irqsave(&rq->lock, flags);
1141 set = __test_and_clear_bit(HRTICK_SET, &rq->hrtick_flags);
1142 reset = __test_and_clear_bit(HRTICK_RESET, &rq->hrtick_flags);
1143 time = rq->hrtick_expire;
1144 clear_thread_flag(TIF_HRTICK_RESCHED);
1145 spin_unlock_irqrestore(&rq->lock, flags);
1146
1147 if (set) {
1148 hrtimer_start(&rq->hrtick_timer, time, HRTIMER_MODE_ABS);
1149 if (reset && !hrtimer_active(&rq->hrtick_timer))
1150 resched_rq(rq);
1151 } else
1152 hrtick_clear(rq);
1153}
1154
1155/*
1156 * High-resolution timer tick.
1157 * Runs from hardirq context with interrupts disabled.
1158 */
1159static enum hrtimer_restart hrtick(struct hrtimer *timer)
1160{
1161 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
1162
1163 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1164
1165 spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02001166 update_rq_clock(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001167 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
1168 spin_unlock(&rq->lock);
1169
1170 return HRTIMER_NORESTART;
1171}
1172
Rabin Vincent81d41d72008-05-11 05:55:33 +05301173#ifdef CONFIG_SMP
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001174static void hotplug_hrtick_disable(int cpu)
1175{
1176 struct rq *rq = cpu_rq(cpu);
1177 unsigned long flags;
1178
1179 spin_lock_irqsave(&rq->lock, flags);
1180 rq->hrtick_flags = 0;
1181 __set_bit(HRTICK_BLOCK, &rq->hrtick_flags);
1182 spin_unlock_irqrestore(&rq->lock, flags);
1183
1184 hrtick_clear(rq);
1185}
1186
1187static void hotplug_hrtick_enable(int cpu)
1188{
1189 struct rq *rq = cpu_rq(cpu);
1190 unsigned long flags;
1191
1192 spin_lock_irqsave(&rq->lock, flags);
1193 __clear_bit(HRTICK_BLOCK, &rq->hrtick_flags);
1194 spin_unlock_irqrestore(&rq->lock, flags);
1195}
1196
1197static int
1198hotplug_hrtick(struct notifier_block *nfb, unsigned long action, void *hcpu)
1199{
1200 int cpu = (int)(long)hcpu;
1201
1202 switch (action) {
1203 case CPU_UP_CANCELED:
1204 case CPU_UP_CANCELED_FROZEN:
1205 case CPU_DOWN_PREPARE:
1206 case CPU_DOWN_PREPARE_FROZEN:
1207 case CPU_DEAD:
1208 case CPU_DEAD_FROZEN:
1209 hotplug_hrtick_disable(cpu);
1210 return NOTIFY_OK;
1211
1212 case CPU_UP_PREPARE:
1213 case CPU_UP_PREPARE_FROZEN:
1214 case CPU_DOWN_FAILED:
1215 case CPU_DOWN_FAILED_FROZEN:
1216 case CPU_ONLINE:
1217 case CPU_ONLINE_FROZEN:
1218 hotplug_hrtick_enable(cpu);
1219 return NOTIFY_OK;
1220 }
1221
1222 return NOTIFY_DONE;
1223}
1224
1225static void init_hrtick(void)
1226{
1227 hotcpu_notifier(hotplug_hrtick, 0);
1228}
Rabin Vincent81d41d72008-05-11 05:55:33 +05301229#endif /* CONFIG_SMP */
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001230
1231static void init_rq_hrtick(struct rq *rq)
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001232{
1233 rq->hrtick_flags = 0;
1234 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1235 rq->hrtick_timer.function = hrtick;
1236 rq->hrtick_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
1237}
1238
1239void hrtick_resched(void)
1240{
1241 struct rq *rq;
1242 unsigned long flags;
1243
1244 if (!test_thread_flag(TIF_HRTICK_RESCHED))
1245 return;
1246
1247 local_irq_save(flags);
1248 rq = cpu_rq(smp_processor_id());
1249 hrtick_set(rq);
1250 local_irq_restore(flags);
1251}
1252#else
1253static inline void hrtick_clear(struct rq *rq)
1254{
1255}
1256
1257static inline void hrtick_set(struct rq *rq)
1258{
1259}
1260
1261static inline void init_rq_hrtick(struct rq *rq)
1262{
1263}
1264
1265void hrtick_resched(void)
1266{
1267}
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001268
1269static inline void init_hrtick(void)
1270{
1271}
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001272#endif
1273
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001274/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001275 * resched_task - mark a task 'to be rescheduled now'.
1276 *
1277 * On UP this means the setting of the need_resched flag, on SMP it
1278 * might also involve a cross-CPU call to trigger the scheduler on
1279 * the target CPU.
1280 */
1281#ifdef CONFIG_SMP
1282
1283#ifndef tsk_is_polling
1284#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1285#endif
1286
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 int cpu;
1290
1291 assert_spin_locked(&task_rq(p)->lock);
1292
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001293 if (unlikely(test_tsk_thread_flag(p, tif_bit)))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001294 return;
1295
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001296 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001297
1298 cpu = task_cpu(p);
1299 if (cpu == smp_processor_id())
1300 return;
1301
1302 /* NEED_RESCHED must be visible before we test polling */
1303 smp_mb();
1304 if (!tsk_is_polling(p))
1305 smp_send_reschedule(cpu);
1306}
1307
1308static void resched_cpu(int cpu)
1309{
1310 struct rq *rq = cpu_rq(cpu);
1311 unsigned long flags;
1312
1313 if (!spin_trylock_irqsave(&rq->lock, flags))
1314 return;
1315 resched_task(cpu_curr(cpu));
1316 spin_unlock_irqrestore(&rq->lock, flags);
1317}
Thomas Gleixner06d83082008-03-22 09:20:24 +01001318
1319#ifdef CONFIG_NO_HZ
1320/*
1321 * When add_timer_on() enqueues a timer into the timer wheel of an
1322 * idle CPU then this timer might expire before the next timer event
1323 * which is scheduled to wake up that CPU. In case of a completely
1324 * idle system the next event might even be infinite time into the
1325 * future. wake_up_idle_cpu() ensures that the CPU is woken up and
1326 * leaves the inner idle loop so the newly added timer is taken into
1327 * account when the CPU goes back to idle and evaluates the timer
1328 * wheel for the next timer event.
1329 */
1330void wake_up_idle_cpu(int cpu)
1331{
1332 struct rq *rq = cpu_rq(cpu);
1333
1334 if (cpu == smp_processor_id())
1335 return;
1336
1337 /*
1338 * This is safe, as this function is called with the timer
1339 * wheel base lock of (cpu) held. When the CPU is on the way
1340 * to idle and has not yet set rq->curr to idle then it will
1341 * be serialized on the timer wheel base lock and take the new
1342 * timer into account automatically.
1343 */
1344 if (rq->curr != rq->idle)
1345 return;
1346
1347 /*
1348 * We can set TIF_RESCHED on the idle task of the other CPU
1349 * lockless. The worst case is that the other CPU runs the
1350 * idle task through an additional NOOP schedule()
1351 */
1352 set_tsk_thread_flag(rq->idle, TIF_NEED_RESCHED);
1353
1354 /* NEED_RESCHED must be visible before we test polling */
1355 smp_mb();
1356 if (!tsk_is_polling(rq->idle))
1357 smp_send_reschedule(cpu);
1358}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001359#endif /* CONFIG_NO_HZ */
Thomas Gleixner06d83082008-03-22 09:20:24 +01001360
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001361#else /* !CONFIG_SMP */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001362static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001363{
1364 assert_spin_locked(&task_rq(p)->lock);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001365 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001366}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001367#endif /* CONFIG_SMP */
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001368
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001369#if BITS_PER_LONG == 32
1370# define WMULT_CONST (~0UL)
1371#else
1372# define WMULT_CONST (1UL << 32)
1373#endif
1374
1375#define WMULT_SHIFT 32
1376
Ingo Molnar194081e2007-08-09 11:16:51 +02001377/*
1378 * Shift right and round:
1379 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001380#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +02001381
Peter Zijlstraa7be37a2008-06-27 13:41:11 +02001382/*
1383 * delta *= weight / lw
1384 */
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +02001385static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001386calc_delta_mine(unsigned long delta_exec, unsigned long weight,
1387 struct load_weight *lw)
1388{
1389 u64 tmp;
1390
Lai Jiangshan7a232e02008-06-12 16:43:07 +08001391 if (!lw->inv_weight) {
1392 if (BITS_PER_LONG > 32 && unlikely(lw->weight >= WMULT_CONST))
1393 lw->inv_weight = 1;
1394 else
1395 lw->inv_weight = 1 + (WMULT_CONST-lw->weight/2)
1396 / (lw->weight+1);
1397 }
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001398
1399 tmp = (u64)delta_exec * weight;
1400 /*
1401 * Check whether we'd overflow the 64-bit multiplication:
1402 */
Ingo Molnar194081e2007-08-09 11:16:51 +02001403 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001404 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +02001405 WMULT_SHIFT/2);
1406 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001407 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001408
Ingo Molnarecf691d2007-08-02 17:41:40 +02001409 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001410}
1411
Ingo Molnar10919852007-10-15 17:00:04 +02001412static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001413{
1414 lw->weight += inc;
Ingo Molnare89996a2008-03-14 23:48:28 +01001415 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001416}
1417
Ingo Molnar10919852007-10-15 17:00:04 +02001418static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001419{
1420 lw->weight -= dec;
Ingo Molnare89996a2008-03-14 23:48:28 +01001421 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001422}
1423
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001425 * To aid in avoiding the subversion of "niceness" due to uneven distribution
1426 * of tasks with abnormal "nice" values across CPUs the contribution that
1427 * each task makes to its run queue's load is weighted according to its
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001428 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
Peter Williams2dd73a42006-06-27 02:54:34 -07001429 * scaled version of the new time slice allocation that they receive on time
1430 * slice expiry etc.
1431 */
1432
Ingo Molnardd41f592007-07-09 18:51:59 +02001433#define WEIGHT_IDLEPRIO 2
1434#define WMULT_IDLEPRIO (1 << 31)
1435
1436/*
1437 * Nice levels are multiplicative, with a gentle 10% change for every
1438 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
1439 * nice 1, it will get ~10% less CPU time than another CPU-bound task
1440 * that remained on nice 0.
1441 *
1442 * The "10% effect" is relative and cumulative: from _any_ nice level,
1443 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee2007-07-16 09:46:30 +02001444 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
1445 * If a task goes up by ~10% and another task goes down by ~10% then
1446 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +02001447 */
1448static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001449 /* -20 */ 88761, 71755, 56483, 46273, 36291,
1450 /* -15 */ 29154, 23254, 18705, 14949, 11916,
1451 /* -10 */ 9548, 7620, 6100, 4904, 3906,
1452 /* -5 */ 3121, 2501, 1991, 1586, 1277,
1453 /* 0 */ 1024, 820, 655, 526, 423,
1454 /* 5 */ 335, 272, 215, 172, 137,
1455 /* 10 */ 110, 87, 70, 56, 45,
1456 /* 15 */ 36, 29, 23, 18, 15,
Ingo Molnardd41f592007-07-09 18:51:59 +02001457};
1458
Ingo Molnar5714d2d2007-07-16 09:46:31 +02001459/*
1460 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
1461 *
1462 * In cases where the weight does not change often, we can use the
1463 * precalculated inverse to speed up arithmetics by turning divisions
1464 * into multiplications:
1465 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001466static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001467 /* -20 */ 48388, 59856, 76040, 92818, 118348,
1468 /* -15 */ 147320, 184698, 229616, 287308, 360437,
1469 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
1470 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
1471 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
1472 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
1473 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
1474 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +02001475};
Peter Williams2dd73a42006-06-27 02:54:34 -07001476
Ingo Molnardd41f592007-07-09 18:51:59 +02001477static void activate_task(struct rq *rq, struct task_struct *p, int wakeup);
1478
1479/*
1480 * runqueue iterator, to support SMP load-balancing between different
1481 * scheduling classes, without having to expose their internal data
1482 * structures to the load-balancing proper:
1483 */
1484struct rq_iterator {
1485 void *arg;
1486 struct task_struct *(*start)(void *);
1487 struct task_struct *(*next)(void *);
1488};
1489
Peter Williamse1d14842007-10-24 18:23:51 +02001490#ifdef CONFIG_SMP
1491static unsigned long
1492balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
1493 unsigned long max_load_move, struct sched_domain *sd,
1494 enum cpu_idle_type idle, int *all_pinned,
1495 int *this_best_prio, struct rq_iterator *iterator);
1496
1497static int
1498iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
1499 struct sched_domain *sd, enum cpu_idle_type idle,
1500 struct rq_iterator *iterator);
Peter Williamse1d14842007-10-24 18:23:51 +02001501#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001502
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001503#ifdef CONFIG_CGROUP_CPUACCT
1504static void cpuacct_charge(struct task_struct *tsk, u64 cputime);
1505#else
1506static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
1507#endif
1508
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001509static inline void inc_cpu_load(struct rq *rq, unsigned long load)
1510{
1511 update_load_add(&rq->load, load);
1512}
1513
1514static inline void dec_cpu_load(struct rq *rq, unsigned long load)
1515{
1516 update_load_sub(&rq->load, load);
1517}
1518
Gregory Haskinse7693a32008-01-25 21:08:09 +01001519#ifdef CONFIG_SMP
1520static unsigned long source_load(int cpu, int type);
1521static unsigned long target_load(int cpu, int type);
1522static unsigned long cpu_avg_load_per_task(int cpu);
1523static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001524
1525#ifdef CONFIG_FAIR_GROUP_SCHED
1526
1527/*
1528 * Group load balancing.
1529 *
1530 * We calculate a few balance domain wide aggregate numbers; load and weight.
1531 * Given the pictures below, and assuming each item has equal weight:
1532 *
1533 * root 1 - thread
1534 * / | \ A - group
1535 * A 1 B
1536 * /|\ / \
1537 * C 2 D 3 4
1538 * | |
1539 * 5 6
1540 *
1541 * load:
1542 * A and B get 1/3-rd of the total load. C and D get 1/3-rd of A's 1/3-rd,
1543 * which equals 1/9-th of the total load.
1544 *
1545 * shares:
1546 * The weight of this group on the selected cpus.
1547 *
1548 * rq_weight:
1549 * Direct sum of all the cpu's their rq weight, e.g. A would get 3 while
1550 * B would get 2.
1551 *
1552 * task_weight:
1553 * Part of the rq_weight contributed by tasks; all groups except B would
1554 * get 1, B gets 2.
1555 */
1556
1557static inline struct aggregate_struct *
1558aggregate(struct task_group *tg, struct sched_domain *sd)
1559{
1560 return &tg->cfs_rq[sd->first_cpu]->aggregate;
1561}
1562
1563typedef void (*aggregate_func)(struct task_group *, struct sched_domain *);
1564
1565/*
1566 * Iterate the full tree, calling @down when first entering a node and @up when
1567 * leaving it for the final time.
1568 */
1569static
1570void aggregate_walk_tree(aggregate_func down, aggregate_func up,
1571 struct sched_domain *sd)
1572{
1573 struct task_group *parent, *child;
1574
1575 rcu_read_lock();
1576 parent = &root_task_group;
1577down:
1578 (*down)(parent, sd);
1579 list_for_each_entry_rcu(child, &parent->children, siblings) {
1580 parent = child;
1581 goto down;
1582
1583up:
1584 continue;
1585 }
1586 (*up)(parent, sd);
1587
1588 child = parent;
1589 parent = parent->parent;
1590 if (parent)
1591 goto up;
1592 rcu_read_unlock();
1593}
1594
1595/*
1596 * Calculate the aggregate runqueue weight.
1597 */
1598static
1599void aggregate_group_weight(struct task_group *tg, struct sched_domain *sd)
1600{
1601 unsigned long rq_weight = 0;
1602 unsigned long task_weight = 0;
1603 int i;
1604
1605 for_each_cpu_mask(i, sd->span) {
1606 rq_weight += tg->cfs_rq[i]->load.weight;
1607 task_weight += tg->cfs_rq[i]->task_weight;
1608 }
1609
1610 aggregate(tg, sd)->rq_weight = rq_weight;
1611 aggregate(tg, sd)->task_weight = task_weight;
1612}
1613
1614/*
1615 * Compute the weight of this group on the given cpus.
1616 */
1617static
1618void aggregate_group_shares(struct task_group *tg, struct sched_domain *sd)
1619{
1620 unsigned long shares = 0;
1621 int i;
1622
1623 for_each_cpu_mask(i, sd->span)
1624 shares += tg->cfs_rq[i]->shares;
1625
1626 if ((!shares && aggregate(tg, sd)->rq_weight) || shares > tg->shares)
1627 shares = tg->shares;
1628
1629 aggregate(tg, sd)->shares = shares;
1630}
1631
1632/*
1633 * Compute the load fraction assigned to this group, relies on the aggregate
1634 * weight and this group's parent's load, i.e. top-down.
1635 */
1636static
1637void aggregate_group_load(struct task_group *tg, struct sched_domain *sd)
1638{
1639 unsigned long load;
1640
1641 if (!tg->parent) {
1642 int i;
1643
1644 load = 0;
1645 for_each_cpu_mask(i, sd->span)
1646 load += cpu_rq(i)->load.weight;
1647
1648 } else {
1649 load = aggregate(tg->parent, sd)->load;
1650
1651 /*
1652 * shares is our weight in the parent's rq so
1653 * shares/parent->rq_weight gives our fraction of the load
1654 */
1655 load *= aggregate(tg, sd)->shares;
1656 load /= aggregate(tg->parent, sd)->rq_weight + 1;
1657 }
1658
1659 aggregate(tg, sd)->load = load;
1660}
1661
1662static void __set_se_shares(struct sched_entity *se, unsigned long shares);
1663
1664/*
1665 * Calculate and set the cpu's group shares.
1666 */
1667static void
1668__update_group_shares_cpu(struct task_group *tg, struct sched_domain *sd,
1669 int tcpu)
1670{
1671 int boost = 0;
1672 unsigned long shares;
1673 unsigned long rq_weight;
1674
1675 if (!tg->se[tcpu])
1676 return;
1677
1678 rq_weight = tg->cfs_rq[tcpu]->load.weight;
1679
1680 /*
1681 * If there are currently no tasks on the cpu pretend there is one of
1682 * average load so that when a new task gets to run here it will not
1683 * get delayed by group starvation.
1684 */
1685 if (!rq_weight) {
1686 boost = 1;
1687 rq_weight = NICE_0_LOAD;
1688 }
1689
1690 /*
1691 * \Sum shares * rq_weight
1692 * shares = -----------------------
1693 * \Sum rq_weight
1694 *
1695 */
1696 shares = aggregate(tg, sd)->shares * rq_weight;
1697 shares /= aggregate(tg, sd)->rq_weight + 1;
1698
1699 /*
1700 * record the actual number of shares, not the boosted amount.
1701 */
1702 tg->cfs_rq[tcpu]->shares = boost ? 0 : shares;
1703
1704 if (shares < MIN_SHARES)
1705 shares = MIN_SHARES;
1706 else if (shares > MAX_SHARES)
1707 shares = MAX_SHARES;
1708
1709 __set_se_shares(tg->se[tcpu], shares);
1710}
1711
1712/*
1713 * Re-adjust the weights on the cpu the task came from and on the cpu the
1714 * task went to.
1715 */
1716static void
1717__move_group_shares(struct task_group *tg, struct sched_domain *sd,
1718 int scpu, int dcpu)
1719{
1720 unsigned long shares;
1721
1722 shares = tg->cfs_rq[scpu]->shares + tg->cfs_rq[dcpu]->shares;
1723
1724 __update_group_shares_cpu(tg, sd, scpu);
1725 __update_group_shares_cpu(tg, sd, dcpu);
1726
1727 /*
1728 * ensure we never loose shares due to rounding errors in the
1729 * above redistribution.
1730 */
1731 shares -= tg->cfs_rq[scpu]->shares + tg->cfs_rq[dcpu]->shares;
1732 if (shares)
1733 tg->cfs_rq[dcpu]->shares += shares;
1734}
1735
1736/*
1737 * Because changing a group's shares changes the weight of the super-group
1738 * we need to walk up the tree and change all shares until we hit the root.
1739 */
1740static void
1741move_group_shares(struct task_group *tg, struct sched_domain *sd,
1742 int scpu, int dcpu)
1743{
1744 while (tg) {
1745 __move_group_shares(tg, sd, scpu, dcpu);
1746 tg = tg->parent;
1747 }
1748}
1749
1750static
1751void aggregate_group_set_shares(struct task_group *tg, struct sched_domain *sd)
1752{
1753 unsigned long shares = aggregate(tg, sd)->shares;
1754 int i;
1755
1756 for_each_cpu_mask(i, sd->span) {
1757 struct rq *rq = cpu_rq(i);
1758 unsigned long flags;
1759
1760 spin_lock_irqsave(&rq->lock, flags);
1761 __update_group_shares_cpu(tg, sd, i);
1762 spin_unlock_irqrestore(&rq->lock, flags);
1763 }
1764
1765 aggregate_group_shares(tg, sd);
1766
1767 /*
1768 * ensure we never loose shares due to rounding errors in the
1769 * above redistribution.
1770 */
1771 shares -= aggregate(tg, sd)->shares;
1772 if (shares) {
1773 tg->cfs_rq[sd->first_cpu]->shares += shares;
1774 aggregate(tg, sd)->shares += shares;
1775 }
1776}
1777
1778/*
1779 * Calculate the accumulative weight and recursive load of each task group
1780 * while walking down the tree.
1781 */
1782static
1783void aggregate_get_down(struct task_group *tg, struct sched_domain *sd)
1784{
1785 aggregate_group_weight(tg, sd);
1786 aggregate_group_shares(tg, sd);
1787 aggregate_group_load(tg, sd);
1788}
1789
1790/*
1791 * Rebalance the cpu shares while walking back up the tree.
1792 */
1793static
1794void aggregate_get_up(struct task_group *tg, struct sched_domain *sd)
1795{
1796 aggregate_group_set_shares(tg, sd);
1797}
1798
1799static DEFINE_PER_CPU(spinlock_t, aggregate_lock);
1800
1801static void __init init_aggregate(void)
1802{
1803 int i;
1804
1805 for_each_possible_cpu(i)
1806 spin_lock_init(&per_cpu(aggregate_lock, i));
1807}
1808
1809static int get_aggregate(struct sched_domain *sd)
1810{
1811 if (!spin_trylock(&per_cpu(aggregate_lock, sd->first_cpu)))
1812 return 0;
1813
1814 aggregate_walk_tree(aggregate_get_down, aggregate_get_up, sd);
1815 return 1;
1816}
1817
1818static void put_aggregate(struct sched_domain *sd)
1819{
1820 spin_unlock(&per_cpu(aggregate_lock, sd->first_cpu));
1821}
1822
1823static void cfs_rq_set_shares(struct cfs_rq *cfs_rq, unsigned long shares)
1824{
1825 cfs_rq->shares = shares;
1826}
1827
1828#else
1829
1830static inline void init_aggregate(void)
1831{
1832}
1833
1834static inline int get_aggregate(struct sched_domain *sd)
1835{
1836 return 0;
1837}
1838
1839static inline void put_aggregate(struct sched_domain *sd)
1840{
1841}
1842#endif
1843
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001844#endif
1845
Ingo Molnardd41f592007-07-09 18:51:59 +02001846#include "sched_stats.h"
Ingo Molnardd41f592007-07-09 18:51:59 +02001847#include "sched_idletask.c"
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001848#include "sched_fair.c"
1849#include "sched_rt.c"
Ingo Molnardd41f592007-07-09 18:51:59 +02001850#ifdef CONFIG_SCHED_DEBUG
1851# include "sched_debug.c"
1852#endif
1853
1854#define sched_class_highest (&rt_sched_class)
Gregory Haskins1f11eb62008-06-04 15:04:05 -04001855#define for_each_class(class) \
1856 for (class = sched_class_highest; class; class = class->next)
Ingo Molnardd41f592007-07-09 18:51:59 +02001857
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001858static void inc_nr_running(struct rq *rq)
Ingo Molnar6363ca52008-05-29 11:28:57 +02001859{
1860 rq->nr_running++;
Ingo Molnar6363ca52008-05-29 11:28:57 +02001861}
1862
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001863static void dec_nr_running(struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001864{
1865 rq->nr_running--;
Ingo Molnar9c217242007-08-02 17:41:40 +02001866}
1867
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001868static void set_load_weight(struct task_struct *p)
1869{
1870 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001871 p->se.load.weight = prio_to_weight[0] * 2;
1872 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
1873 return;
1874 }
1875
1876 /*
1877 * SCHED_IDLE tasks get minimal weight:
1878 */
1879 if (p->policy == SCHED_IDLE) {
1880 p->se.load.weight = WEIGHT_IDLEPRIO;
1881 p->se.load.inv_weight = WMULT_IDLEPRIO;
1882 return;
1883 }
1884
1885 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
1886 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001887}
1888
Ingo Molnar8159f872007-08-09 11:16:49 +02001889static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001890{
1891 sched_info_queued(p);
Ingo Molnarfd390f62007-08-09 11:16:48 +02001892 p->sched_class->enqueue_task(rq, p, wakeup);
Ingo Molnardd41f592007-07-09 18:51:59 +02001893 p->se.on_rq = 1;
1894}
1895
Ingo Molnar69be72c2007-08-09 11:16:49 +02001896static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnardd41f592007-07-09 18:51:59 +02001897{
Ingo Molnarf02231e2007-08-09 11:16:48 +02001898 p->sched_class->dequeue_task(rq, p, sleep);
Ingo Molnardd41f592007-07-09 18:51:59 +02001899 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001900}
1901
1902/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001903 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001904 */
Ingo Molnar14531182007-07-09 18:51:59 +02001905static inline int __normal_prio(struct task_struct *p)
1906{
Ingo Molnardd41f592007-07-09 18:51:59 +02001907 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02001908}
1909
1910/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07001911 * Calculate the expected normal priority: i.e. priority
1912 * without taking RT-inheritance into account. Might be
1913 * boosted by interactivity modifiers. Changes upon fork,
1914 * setprio syscalls, and whenever the interactivity
1915 * estimator recalculates.
1916 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001917static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001918{
1919 int prio;
1920
Ingo Molnare05606d2007-07-09 18:51:59 +02001921 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07001922 prio = MAX_RT_PRIO-1 - p->rt_priority;
1923 else
1924 prio = __normal_prio(p);
1925 return prio;
1926}
1927
1928/*
1929 * Calculate the current priority, i.e. the priority
1930 * taken into account by the scheduler. This value might
1931 * be boosted by RT tasks, or might be boosted by
1932 * interactivity modifiers. Will be RT if the task got
1933 * RT-boosted. If not then it returns p->normal_prio.
1934 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001935static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001936{
1937 p->normal_prio = normal_prio(p);
1938 /*
1939 * If we are RT tasks or we were boosted to RT priority,
1940 * keep the priority unchanged. Otherwise, update priority
1941 * to the normal priority:
1942 */
1943 if (!rt_prio(p->prio))
1944 return p->normal_prio;
1945 return p->prio;
1946}
1947
1948/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001949 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001951static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001953 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001954 rq->nr_uninterruptible--;
1955
Ingo Molnar8159f872007-08-09 11:16:49 +02001956 enqueue_task(rq, p, wakeup);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001957 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958}
1959
1960/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 * deactivate_task - remove a task from the runqueue.
1962 */
Ingo Molnar2e1cb742007-08-09 11:16:49 +02001963static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001965 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001966 rq->nr_uninterruptible++;
1967
Ingo Molnar69be72c2007-08-09 11:16:49 +02001968 dequeue_task(rq, p, sleep);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001969 dec_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970}
1971
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972/**
1973 * task_curr - is this task currently executing on a CPU?
1974 * @p: the task in question.
1975 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001976inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977{
1978 return cpu_curr(task_cpu(p)) == p;
1979}
1980
Ingo Molnardd41f592007-07-09 18:51:59 +02001981static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1982{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001983 set_task_rq(p, cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001984#ifdef CONFIG_SMP
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01001985 /*
1986 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
1987 * successfuly executed on another CPU. We must ensure that updates of
1988 * per-task data have been completed by this moment.
1989 */
1990 smp_wmb();
Ingo Molnardd41f592007-07-09 18:51:59 +02001991 task_thread_info(p)->cpu = cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02001992#endif
Peter Williams2dd73a42006-06-27 02:54:34 -07001993}
1994
Steven Rostedtcb469842008-01-25 21:08:22 +01001995static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1996 const struct sched_class *prev_class,
1997 int oldprio, int running)
1998{
1999 if (prev_class != p->sched_class) {
2000 if (prev_class->switched_from)
2001 prev_class->switched_from(rq, p, running);
2002 p->sched_class->switched_to(rq, p, running);
2003 } else
2004 p->sched_class->prio_changed(rq, p, oldprio, running);
2005}
2006
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +02002008
Thomas Gleixnere958b362008-06-04 23:22:32 +02002009/* Used instead of source_load when we know the type == 0 */
2010static unsigned long weighted_cpuload(const int cpu)
2011{
2012 return cpu_rq(cpu)->load.weight;
2013}
2014
Ingo Molnarcc367732007-10-15 17:00:18 +02002015/*
2016 * Is this task likely cache-hot:
2017 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002018static int
Ingo Molnarcc367732007-10-15 17:00:18 +02002019task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
2020{
2021 s64 delta;
2022
Ingo Molnarf540a602008-03-15 17:10:34 +01002023 /*
2024 * Buddy candidates are cache hot:
2025 */
Ingo Molnard25ce4c2008-03-17 09:36:53 +01002026 if (sched_feat(CACHE_HOT_BUDDY) && (&p->se == cfs_rq_of(&p->se)->next))
Ingo Molnarf540a602008-03-15 17:10:34 +01002027 return 1;
2028
Ingo Molnarcc367732007-10-15 17:00:18 +02002029 if (p->sched_class != &fair_sched_class)
2030 return 0;
2031
Ingo Molnar6bc16652007-10-15 17:00:18 +02002032 if (sysctl_sched_migration_cost == -1)
2033 return 1;
2034 if (sysctl_sched_migration_cost == 0)
2035 return 0;
2036
Ingo Molnarcc367732007-10-15 17:00:18 +02002037 delta = now - p->se.exec_start;
2038
2039 return delta < (s64)sysctl_sched_migration_cost;
2040}
2041
2042
Ingo Molnardd41f592007-07-09 18:51:59 +02002043void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02002044{
Ingo Molnardd41f592007-07-09 18:51:59 +02002045 int old_cpu = task_cpu(p);
2046 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02002047 struct cfs_rq *old_cfsrq = task_cfs_rq(p),
2048 *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02002049 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02002050
2051 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002052
2053#ifdef CONFIG_SCHEDSTATS
2054 if (p->se.wait_start)
2055 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02002056 if (p->se.sleep_start)
2057 p->se.sleep_start -= clock_offset;
2058 if (p->se.block_start)
2059 p->se.block_start -= clock_offset;
Ingo Molnarcc367732007-10-15 17:00:18 +02002060 if (old_cpu != new_cpu) {
2061 schedstat_inc(p, se.nr_migrations);
2062 if (task_hot(p, old_rq->clock, NULL))
2063 schedstat_inc(p, se.nr_forced2_migrations);
2064 }
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002065#endif
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02002066 p->se.vruntime -= old_cfsrq->min_vruntime -
2067 new_cfsrq->min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02002068
2069 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02002070}
2071
Ingo Molnar70b97a72006-07-03 00:25:42 -07002072struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Ingo Molnar36c8b582006-07-03 00:25:41 -07002075 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 int dest_cpu;
2077
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002079};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
2081/*
2082 * The task's runqueue lock must be held.
2083 * Returns true if you have to wait for migration thread.
2084 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002085static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07002086migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002088 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
2090 /*
2091 * If the task is not on a runqueue (and not running), then
2092 * it is sufficient to simply update the task's cpu field.
2093 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002094 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 set_task_cpu(p, dest_cpu);
2096 return 0;
2097 }
2098
2099 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 req->task = p;
2101 req->dest_cpu = dest_cpu;
2102 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07002103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 return 1;
2105}
2106
2107/*
2108 * wait_task_inactive - wait for a thread to unschedule.
2109 *
2110 * The caller must ensure that the task *will* unschedule sometime soon,
2111 * else this function might spin for a *long* time. This function can't
2112 * be called with interrupts off, or it may introduce deadlock with
2113 * smp_call_function() if an IPI is sent by the same process we are
2114 * waiting to become inactive.
2115 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002116void wait_task_inactive(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117{
2118 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002119 int running, on_rq;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002120 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
Andi Kleen3a5c3592007-10-15 17:00:14 +02002122 for (;;) {
2123 /*
2124 * We do the initial early heuristics without holding
2125 * any task-queue locks at all. We'll only try to get
2126 * the runqueue lock when things look like they will
2127 * work out!
2128 */
2129 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002130
Andi Kleen3a5c3592007-10-15 17:00:14 +02002131 /*
2132 * If the task is actively running on another CPU
2133 * still, just relax and busy-wait without holding
2134 * any locks.
2135 *
2136 * NOTE! Since we don't hold any locks, it's not
2137 * even sure that "rq" stays as the right runqueue!
2138 * But we don't care, since "task_running()" will
2139 * return false if the runqueue has changed and p
2140 * is actually now running somewhere else!
2141 */
2142 while (task_running(rq, p))
2143 cpu_relax();
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002144
Andi Kleen3a5c3592007-10-15 17:00:14 +02002145 /*
2146 * Ok, time to look more closely! We need the rq
2147 * lock now, to be *sure*. If we're wrong, we'll
2148 * just go back and repeat.
2149 */
2150 rq = task_rq_lock(p, &flags);
2151 running = task_running(rq, p);
2152 on_rq = p->se.on_rq;
2153 task_rq_unlock(rq, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002154
Andi Kleen3a5c3592007-10-15 17:00:14 +02002155 /*
2156 * Was it really running after all now that we
2157 * checked with the proper locks actually held?
2158 *
2159 * Oops. Go back and try again..
2160 */
2161 if (unlikely(running)) {
2162 cpu_relax();
2163 continue;
2164 }
2165
2166 /*
2167 * It's not enough that it's not actively running,
2168 * it must be off the runqueue _entirely_, and not
2169 * preempted!
2170 *
2171 * So if it wa still runnable (but just not actively
2172 * running right now), it's preempted, and we should
2173 * yield - it could be a while.
2174 */
2175 if (unlikely(on_rq)) {
2176 schedule_timeout_uninterruptible(1);
2177 continue;
2178 }
2179
2180 /*
2181 * Ahh, all good. It wasn't running, and it wasn't
2182 * runnable, which means that it will never become
2183 * running in the future either. We're all done!
2184 */
2185 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187}
2188
2189/***
2190 * kick_process - kick a running thread to enter/exit the kernel
2191 * @p: the to-be-kicked thread
2192 *
2193 * Cause a process which is running on another CPU to enter
2194 * kernel-mode, without any delay. (to get signals handled.)
2195 *
2196 * NOTE: this function doesnt have to take the runqueue lock,
2197 * because all it wants to ensure is that the remote task enters
2198 * the kernel. If the IPI races and the task has been migrated
2199 * to another CPU then no harm is done and the purpose has been
2200 * achieved as well.
2201 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002202void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203{
2204 int cpu;
2205
2206 preempt_disable();
2207 cpu = task_cpu(p);
2208 if ((cpu != smp_processor_id()) && task_curr(p))
2209 smp_send_reschedule(cpu);
2210 preempt_enable();
2211}
2212
2213/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002214 * Return a low guess at the load of a migration-source cpu weighted
2215 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 *
2217 * We want to under-estimate the load of migration sources, to
2218 * balance conservatively.
2219 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002220static unsigned long source_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08002221{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002222 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002223 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08002224
Peter Williams2dd73a42006-06-27 02:54:34 -07002225 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002226 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002227
Ingo Molnardd41f592007-07-09 18:51:59 +02002228 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229}
2230
2231/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002232 * Return a high guess at the load of a migration-target cpu weighted
2233 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002235static unsigned long target_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08002236{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002237 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002238 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08002239
Peter Williams2dd73a42006-06-27 02:54:34 -07002240 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002241 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002242
Ingo Molnardd41f592007-07-09 18:51:59 +02002243 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07002244}
2245
2246/*
2247 * Return the average load per task on the cpu's run queue
2248 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002249static unsigned long cpu_avg_load_per_task(int cpu)
Peter Williams2dd73a42006-06-27 02:54:34 -07002250{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002251 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002252 unsigned long total = weighted_cpuload(cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07002253 unsigned long n = rq->nr_running;
2254
Ingo Molnardd41f592007-07-09 18:51:59 +02002255 return n ? total / n : SCHED_LOAD_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256}
2257
Nick Piggin147cbb42005-06-25 14:57:19 -07002258/*
2259 * find_idlest_group finds and returns the least busy CPU group within the
2260 * domain.
2261 */
2262static struct sched_group *
2263find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
2264{
2265 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
2266 unsigned long min_load = ULONG_MAX, this_load = 0;
2267 int load_idx = sd->forkexec_idx;
2268 int imbalance = 100 + (sd->imbalance_pct-100)/2;
2269
2270 do {
2271 unsigned long load, avg_load;
2272 int local_group;
2273 int i;
2274
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002275 /* Skip over this group if it has no CPUs allowed */
2276 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
Andi Kleen3a5c3592007-10-15 17:00:14 +02002277 continue;
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002278
Nick Piggin147cbb42005-06-25 14:57:19 -07002279 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07002280
2281 /* Tally up the load of all CPUs in the group */
2282 avg_load = 0;
2283
2284 for_each_cpu_mask(i, group->cpumask) {
2285 /* Bias balancing toward cpus of our domain */
2286 if (local_group)
2287 load = source_load(i, load_idx);
2288 else
2289 load = target_load(i, load_idx);
2290
2291 avg_load += load;
2292 }
2293
2294 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002295 avg_load = sg_div_cpu_power(group,
2296 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07002297
2298 if (local_group) {
2299 this_load = avg_load;
2300 this = group;
2301 } else if (avg_load < min_load) {
2302 min_load = avg_load;
2303 idlest = group;
2304 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02002305 } while (group = group->next, group != sd->groups);
Nick Piggin147cbb42005-06-25 14:57:19 -07002306
2307 if (!idlest || 100*this_load < imbalance*min_load)
2308 return NULL;
2309 return idlest;
2310}
2311
2312/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07002313 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07002314 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002315static int
Mike Travis7c16ec52008-04-04 18:11:11 -07002316find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu,
2317 cpumask_t *tmp)
Nick Piggin147cbb42005-06-25 14:57:19 -07002318{
2319 unsigned long load, min_load = ULONG_MAX;
2320 int idlest = -1;
2321 int i;
2322
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002323 /* Traverse only the allowed CPUs */
Mike Travis7c16ec52008-04-04 18:11:11 -07002324 cpus_and(*tmp, group->cpumask, p->cpus_allowed);
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002325
Mike Travis7c16ec52008-04-04 18:11:11 -07002326 for_each_cpu_mask(i, *tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07002327 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07002328
2329 if (load < min_load || (load == min_load && i == this_cpu)) {
2330 min_load = load;
2331 idlest = i;
2332 }
2333 }
2334
2335 return idlest;
2336}
2337
Nick Piggin476d1392005-06-25 14:57:29 -07002338/*
2339 * sched_balance_self: balance the current task (running on cpu) in domains
2340 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
2341 * SD_BALANCE_EXEC.
2342 *
2343 * Balance, ie. select the least loaded group.
2344 *
2345 * Returns the target CPU number, or the same CPU if no balancing is needed.
2346 *
2347 * preempt must be disabled.
2348 */
2349static int sched_balance_self(int cpu, int flag)
2350{
2351 struct task_struct *t = current;
2352 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07002353
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002354 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02002355 /*
2356 * If power savings logic is enabled for a domain, stop there.
2357 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002358 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
2359 break;
Nick Piggin476d1392005-06-25 14:57:29 -07002360 if (tmp->flags & flag)
2361 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002362 }
Nick Piggin476d1392005-06-25 14:57:29 -07002363
2364 while (sd) {
Mike Travis7c16ec52008-04-04 18:11:11 -07002365 cpumask_t span, tmpmask;
Nick Piggin476d1392005-06-25 14:57:29 -07002366 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002367 int new_cpu, weight;
2368
2369 if (!(sd->flags & flag)) {
2370 sd = sd->child;
2371 continue;
2372 }
Nick Piggin476d1392005-06-25 14:57:29 -07002373
2374 span = sd->span;
2375 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002376 if (!group) {
2377 sd = sd->child;
2378 continue;
2379 }
Nick Piggin476d1392005-06-25 14:57:29 -07002380
Mike Travis7c16ec52008-04-04 18:11:11 -07002381 new_cpu = find_idlest_cpu(group, t, cpu, &tmpmask);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002382 if (new_cpu == -1 || new_cpu == cpu) {
2383 /* Now try balancing at a lower domain level of cpu */
2384 sd = sd->child;
2385 continue;
2386 }
Nick Piggin476d1392005-06-25 14:57:29 -07002387
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002388 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07002389 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07002390 sd = NULL;
2391 weight = cpus_weight(span);
2392 for_each_domain(cpu, tmp) {
2393 if (weight <= cpus_weight(tmp->span))
2394 break;
2395 if (tmp->flags & flag)
2396 sd = tmp;
2397 }
2398 /* while loop will break here if sd == NULL */
2399 }
2400
2401 return cpu;
2402}
2403
2404#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406/***
2407 * try_to_wake_up - wake up a thread
2408 * @p: the to-be-woken-up thread
2409 * @state: the mask of task states that can be woken
2410 * @sync: do a synchronous wakeup?
2411 *
2412 * Put it on the run-queue if it's not already there. The "current"
2413 * thread is always on the run-queue (except when the actual
2414 * re-schedule is in progress), and as such you're allowed to do
2415 * the simpler "current->state = TASK_RUNNING" to mark yourself
2416 * runnable without the overhead of this.
2417 *
2418 * returns failure only if the task is already active.
2419 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002420static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421{
Ingo Molnarcc367732007-10-15 17:00:18 +02002422 int cpu, orig_cpu, this_cpu, success = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 unsigned long flags;
2424 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002425 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
Ingo Molnarb85d0662008-03-16 20:03:22 +01002427 if (!sched_feat(SYNC_WAKEUPS))
2428 sync = 0;
2429
Linus Torvalds04e2f172008-02-23 18:05:03 -08002430 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 rq = task_rq_lock(p, &flags);
2432 old_state = p->state;
2433 if (!(old_state & state))
2434 goto out;
2435
Ingo Molnardd41f592007-07-09 18:51:59 +02002436 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 goto out_running;
2438
2439 cpu = task_cpu(p);
Ingo Molnarcc367732007-10-15 17:00:18 +02002440 orig_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 this_cpu = smp_processor_id();
2442
2443#ifdef CONFIG_SMP
2444 if (unlikely(task_running(rq, p)))
2445 goto out_activate;
2446
Dmitry Adamushko5d2f5a62008-01-25 21:08:21 +01002447 cpu = p->sched_class->select_task_rq(p, sync);
2448 if (cpu != orig_cpu) {
2449 set_task_cpu(p, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 task_rq_unlock(rq, &flags);
2451 /* might preempt at this point */
2452 rq = task_rq_lock(p, &flags);
2453 old_state = p->state;
2454 if (!(old_state & state))
2455 goto out;
Ingo Molnardd41f592007-07-09 18:51:59 +02002456 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 goto out_running;
2458
2459 this_cpu = smp_processor_id();
2460 cpu = task_cpu(p);
2461 }
2462
Gregory Haskinse7693a32008-01-25 21:08:09 +01002463#ifdef CONFIG_SCHEDSTATS
2464 schedstat_inc(rq, ttwu_count);
2465 if (cpu == this_cpu)
2466 schedstat_inc(rq, ttwu_local);
2467 else {
2468 struct sched_domain *sd;
2469 for_each_domain(this_cpu, sd) {
2470 if (cpu_isset(cpu, sd->span)) {
2471 schedstat_inc(sd, ttwu_wake_remote);
2472 break;
2473 }
2474 }
2475 }
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002476#endif /* CONFIG_SCHEDSTATS */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002477
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478out_activate:
2479#endif /* CONFIG_SMP */
Ingo Molnarcc367732007-10-15 17:00:18 +02002480 schedstat_inc(p, se.nr_wakeups);
2481 if (sync)
2482 schedstat_inc(p, se.nr_wakeups_sync);
2483 if (orig_cpu != cpu)
2484 schedstat_inc(p, se.nr_wakeups_migrate);
2485 if (cpu == this_cpu)
2486 schedstat_inc(p, se.nr_wakeups_local);
2487 else
2488 schedstat_inc(p, se.nr_wakeups_remote);
Ingo Molnar2daa3572007-08-09 11:16:51 +02002489 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02002490 activate_task(rq, p, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 success = 1;
2492
2493out_running:
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002494 check_preempt_curr(rq, p);
2495
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01002497#ifdef CONFIG_SMP
2498 if (p->sched_class->task_wake_up)
2499 p->sched_class->task_wake_up(rq, p);
2500#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501out:
2502 task_rq_unlock(rq, &flags);
2503
2504 return success;
2505}
2506
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002507int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002509 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511EXPORT_SYMBOL(wake_up_process);
2512
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002513int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514{
2515 return try_to_wake_up(p, state, 0);
2516}
2517
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518/*
2519 * Perform scheduler related setup for a newly forked process p.
2520 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02002521 *
2522 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002524static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525{
Ingo Molnardd41f592007-07-09 18:51:59 +02002526 p->se.exec_start = 0;
2527 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02002528 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002529 p->se.last_wakeup = 0;
2530 p->se.avg_overlap = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002531
2532#ifdef CONFIG_SCHEDSTATS
2533 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002534 p->se.sum_sleep_runtime = 0;
2535 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002536 p->se.block_start = 0;
2537 p->se.sleep_max = 0;
2538 p->se.block_max = 0;
2539 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02002540 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002541 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002542#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002543
Peter Zijlstrafa717062008-01-25 21:08:27 +01002544 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02002545 p->se.on_rq = 0;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02002546 INIT_LIST_HEAD(&p->se.group_node);
Nick Piggin476d1392005-06-25 14:57:29 -07002547
Avi Kivitye107be32007-07-26 13:40:43 +02002548#ifdef CONFIG_PREEMPT_NOTIFIERS
2549 INIT_HLIST_HEAD(&p->preempt_notifiers);
2550#endif
2551
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 /*
2553 * We mark the process as running here, but have not actually
2554 * inserted it onto the runqueue yet. This guarantees that
2555 * nobody will actually run it, and a signal or other external
2556 * event cannot wake it up and insert it on the runqueue either.
2557 */
2558 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02002559}
2560
2561/*
2562 * fork()/clone()-time setup:
2563 */
2564void sched_fork(struct task_struct *p, int clone_flags)
2565{
2566 int cpu = get_cpu();
2567
2568 __sched_fork(p);
2569
2570#ifdef CONFIG_SMP
2571 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
2572#endif
Ingo Molnar02e4bac2007-10-15 17:00:11 +02002573 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002574
2575 /*
2576 * Make sure we do not leak PI boosting priority to the child:
2577 */
2578 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02002579 if (!rt_prio(p->prio))
2580 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002581
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002582#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02002583 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002584 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08002586#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07002587 p->oncpu = 0;
2588#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07002590 /* Want to start with kernel preemption disabled. */
Al Viroa1261f52005-11-13 16:06:55 -08002591 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002593 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594}
2595
2596/*
2597 * wake_up_new_task - wake up a newly created task for the first time.
2598 *
2599 * This function will do some initial scheduler statistics housekeeping
2600 * that must be done for every newly created context, then puts the task
2601 * on the runqueue and wakes it.
2602 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002603void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604{
2605 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002606 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607
2608 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02002610 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611
2612 p->prio = effective_prio(p);
2613
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02002614 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002615 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02002618 * Let the scheduling class do new task startup
2619 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02002621 p->sched_class->task_new(rq, p);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02002622 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002624 check_preempt_curr(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002625#ifdef CONFIG_SMP
2626 if (p->sched_class->task_wake_up)
2627 p->sched_class->task_wake_up(rq, p);
2628#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02002629 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630}
2631
Avi Kivitye107be32007-07-26 13:40:43 +02002632#ifdef CONFIG_PREEMPT_NOTIFIERS
2633
2634/**
Randy Dunlap421cee22007-07-31 00:37:50 -07002635 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
2636 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002637 */
2638void preempt_notifier_register(struct preempt_notifier *notifier)
2639{
2640 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2641}
2642EXPORT_SYMBOL_GPL(preempt_notifier_register);
2643
2644/**
2645 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002646 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002647 *
2648 * This is safe to call from within a preemption notifier.
2649 */
2650void preempt_notifier_unregister(struct preempt_notifier *notifier)
2651{
2652 hlist_del(&notifier->link);
2653}
2654EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2655
2656static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2657{
2658 struct preempt_notifier *notifier;
2659 struct hlist_node *node;
2660
2661 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2662 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2663}
2664
2665static void
2666fire_sched_out_preempt_notifiers(struct task_struct *curr,
2667 struct task_struct *next)
2668{
2669 struct preempt_notifier *notifier;
2670 struct hlist_node *node;
2671
2672 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2673 notifier->ops->sched_out(notifier, next);
2674}
2675
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002676#else /* !CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002677
2678static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2679{
2680}
2681
2682static void
2683fire_sched_out_preempt_notifiers(struct task_struct *curr,
2684 struct task_struct *next)
2685{
2686}
2687
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002688#endif /* CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002689
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002691 * prepare_task_switch - prepare to switch tasks
2692 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002693 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002694 * @next: the task we are going to switch to.
2695 *
2696 * This is called with the rq lock held and interrupts off. It must
2697 * be paired with a subsequent finish_task_switch after the context
2698 * switch.
2699 *
2700 * prepare_task_switch sets up locking and calls architecture specific
2701 * hooks.
2702 */
Avi Kivitye107be32007-07-26 13:40:43 +02002703static inline void
2704prepare_task_switch(struct rq *rq, struct task_struct *prev,
2705 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002706{
Avi Kivitye107be32007-07-26 13:40:43 +02002707 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002708 prepare_lock_switch(rq, next);
2709 prepare_arch_switch(next);
2710}
2711
2712/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002714 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 * @prev: the thread we just switched away from.
2716 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002717 * finish_task_switch must be called after the context switch, paired
2718 * with a prepare_task_switch call before the context switch.
2719 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2720 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 *
2722 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002723 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 * with the lock held can cause deadlocks; see schedule() for
2725 * details.)
2726 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002727static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 __releases(rq->lock)
2729{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002731 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732
2733 rq->prev_mm = NULL;
2734
2735 /*
2736 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002737 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002738 * schedule one last time. The schedule call will never return, and
2739 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002740 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 * still held, otherwise prev could be scheduled on another cpu, die
2742 * there before we look at prev->state, and then the reference would
2743 * be dropped twice.
2744 * Manfred Spraul <manfred@colorfullife.com>
2745 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002746 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002747 finish_arch_switch(prev);
2748 finish_lock_switch(rq, prev);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002749#ifdef CONFIG_SMP
2750 if (current->sched_class->post_schedule)
2751 current->sched_class->post_schedule(rq);
2752#endif
Steven Rostedte8fa1362008-01-25 21:08:05 +01002753
Avi Kivitye107be32007-07-26 13:40:43 +02002754 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 if (mm)
2756 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002757 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002758 /*
2759 * Remove function-return probe instances associated with this
2760 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002761 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002762 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002764 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765}
2766
2767/**
2768 * schedule_tail - first thing a freshly forked thread must call.
2769 * @prev: the thread we just switched away from.
2770 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002771asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 __releases(rq->lock)
2773{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002774 struct rq *rq = this_rq();
2775
Nick Piggin4866cde2005-06-25 14:57:23 -07002776 finish_task_switch(rq, prev);
2777#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2778 /* In this case, finish_task_switch does not reenable preemption */
2779 preempt_enable();
2780#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002782 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783}
2784
2785/*
2786 * context_switch - switch to the new MM and the new
2787 * thread's register state.
2788 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002789static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002790context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002791 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792{
Ingo Molnardd41f592007-07-09 18:51:59 +02002793 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794
Avi Kivitye107be32007-07-26 13:40:43 +02002795 prepare_task_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002796 mm = next->mm;
2797 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002798 /*
2799 * For paravirt, this is coupled with an exit in switch_to to
2800 * combine the page table reload and the switch backend into
2801 * one hypercall.
2802 */
2803 arch_enter_lazy_cpu_mode();
2804
Ingo Molnardd41f592007-07-09 18:51:59 +02002805 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 next->active_mm = oldmm;
2807 atomic_inc(&oldmm->mm_count);
2808 enter_lazy_tlb(oldmm, next);
2809 } else
2810 switch_mm(oldmm, mm, next);
2811
Ingo Molnardd41f592007-07-09 18:51:59 +02002812 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 rq->prev_mm = oldmm;
2815 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002816 /*
2817 * Since the runqueue lock will be released by the next
2818 * task (which is an invalid locking op but in the case
2819 * of the scheduler it's an obvious special-case), so we
2820 * do an early lockdep release here:
2821 */
2822#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002823 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002824#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
2826 /* Here we just switch the register state and the stack. */
2827 switch_to(prev, next, prev);
2828
Ingo Molnardd41f592007-07-09 18:51:59 +02002829 barrier();
2830 /*
2831 * this_rq must be evaluated again because prev may have moved
2832 * CPUs since it called schedule(), thus the 'rq' on its stack
2833 * frame will be invalid.
2834 */
2835 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836}
2837
2838/*
2839 * nr_running, nr_uninterruptible and nr_context_switches:
2840 *
2841 * externally visible scheduler statistics: current number of runnable
2842 * threads, current number of uninterruptible-sleeping threads, total
2843 * number of context switches performed since bootup.
2844 */
2845unsigned long nr_running(void)
2846{
2847 unsigned long i, sum = 0;
2848
2849 for_each_online_cpu(i)
2850 sum += cpu_rq(i)->nr_running;
2851
2852 return sum;
2853}
2854
2855unsigned long nr_uninterruptible(void)
2856{
2857 unsigned long i, sum = 0;
2858
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002859 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 sum += cpu_rq(i)->nr_uninterruptible;
2861
2862 /*
2863 * Since we read the counters lockless, it might be slightly
2864 * inaccurate. Do not allow it to go below zero though:
2865 */
2866 if (unlikely((long)sum < 0))
2867 sum = 0;
2868
2869 return sum;
2870}
2871
2872unsigned long long nr_context_switches(void)
2873{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002874 int i;
2875 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002877 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 sum += cpu_rq(i)->nr_switches;
2879
2880 return sum;
2881}
2882
2883unsigned long nr_iowait(void)
2884{
2885 unsigned long i, sum = 0;
2886
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002887 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2889
2890 return sum;
2891}
2892
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002893unsigned long nr_active(void)
2894{
2895 unsigned long i, running = 0, uninterruptible = 0;
2896
2897 for_each_online_cpu(i) {
2898 running += cpu_rq(i)->nr_running;
2899 uninterruptible += cpu_rq(i)->nr_uninterruptible;
2900 }
2901
2902 if (unlikely((long)uninterruptible < 0))
2903 uninterruptible = 0;
2904
2905 return running + uninterruptible;
2906}
2907
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002909 * Update rq->cpu_load[] statistics. This function is usually called every
2910 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07002911 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002912static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002913{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02002914 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02002915 int i, scale;
2916
2917 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02002918
2919 /* Update our load: */
2920 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
2921 unsigned long old_load, new_load;
2922
2923 /* scale is effectively 1 << i now, and >> i divides by scale */
2924
2925 old_load = this_rq->cpu_load[i];
2926 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02002927 /*
2928 * Round up the averaging division if load is increasing. This
2929 * prevents us from getting stuck on 9 if the load is 10, for
2930 * example.
2931 */
2932 if (new_load > old_load)
2933 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02002934 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2935 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002936}
2937
Ingo Molnardd41f592007-07-09 18:51:59 +02002938#ifdef CONFIG_SMP
2939
Ingo Molnar48f24c42006-07-03 00:25:40 -07002940/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 * double_rq_lock - safely lock two runqueues
2942 *
2943 * Note this does not disable interrupts like task_rq_lock,
2944 * you need to do so manually before calling.
2945 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002946static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 __acquires(rq1->lock)
2948 __acquires(rq2->lock)
2949{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002950 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 if (rq1 == rq2) {
2952 spin_lock(&rq1->lock);
2953 __acquire(rq2->lock); /* Fake it out ;) */
2954 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002955 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 spin_lock(&rq1->lock);
2957 spin_lock(&rq2->lock);
2958 } else {
2959 spin_lock(&rq2->lock);
2960 spin_lock(&rq1->lock);
2961 }
2962 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002963 update_rq_clock(rq1);
2964 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965}
2966
2967/*
2968 * double_rq_unlock - safely unlock two runqueues
2969 *
2970 * Note this does not restore interrupts like task_rq_unlock,
2971 * you need to do so manually after calling.
2972 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002973static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 __releases(rq1->lock)
2975 __releases(rq2->lock)
2976{
2977 spin_unlock(&rq1->lock);
2978 if (rq1 != rq2)
2979 spin_unlock(&rq2->lock);
2980 else
2981 __release(rq2->lock);
2982}
2983
2984/*
2985 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
2986 */
Steven Rostedte8fa1362008-01-25 21:08:05 +01002987static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 __releases(this_rq->lock)
2989 __acquires(busiest->lock)
2990 __acquires(this_rq->lock)
2991{
Steven Rostedte8fa1362008-01-25 21:08:05 +01002992 int ret = 0;
2993
Kirill Korotaev054b9102006-12-10 02:20:11 -08002994 if (unlikely(!irqs_disabled())) {
2995 /* printk() doesn't work good under rq->lock */
2996 spin_unlock(&this_rq->lock);
2997 BUG_ON(1);
2998 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003000 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 spin_unlock(&this_rq->lock);
3002 spin_lock(&busiest->lock);
3003 spin_lock(&this_rq->lock);
Steven Rostedte8fa1362008-01-25 21:08:05 +01003004 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 } else
3006 spin_lock(&busiest->lock);
3007 }
Steven Rostedte8fa1362008-01-25 21:08:05 +01003008 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009}
3010
3011/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 * If dest_cpu is allowed for this process, migrate the task to it.
3013 * This is accomplished by forcing the cpu_allowed mask to only
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003014 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 * the cpu_allowed mask is restored.
3016 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003017static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003019 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003021 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022
3023 rq = task_rq_lock(p, &flags);
3024 if (!cpu_isset(dest_cpu, p->cpus_allowed)
3025 || unlikely(cpu_is_offline(dest_cpu)))
3026 goto out;
3027
3028 /* force the process onto the specified CPU */
3029 if (migrate_task(p, dest_cpu, &req)) {
3030 /* Need to wait for migration thread (might exit: take ref). */
3031 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07003032
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 get_task_struct(mt);
3034 task_rq_unlock(rq, &flags);
3035 wake_up_process(mt);
3036 put_task_struct(mt);
3037 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07003038
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 return;
3040 }
3041out:
3042 task_rq_unlock(rq, &flags);
3043}
3044
3045/*
Nick Piggin476d1392005-06-25 14:57:29 -07003046 * sched_exec - execve() is a valuable balancing opportunity, because at
3047 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 */
3049void sched_exec(void)
3050{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07003052 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07003054 if (new_cpu != this_cpu)
3055 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056}
3057
3058/*
3059 * pull_task - move a task from a remote runqueue to the local runqueue.
3060 * Both runqueues must be locked.
3061 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003062static void pull_task(struct rq *src_rq, struct task_struct *p,
3063 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02003065 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003067 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 /*
3069 * Note that idle threads have a prio of MAX_PRIO, for this test
3070 * to be always true for them.
3071 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003072 check_preempt_curr(this_rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073}
3074
3075/*
3076 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
3077 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08003078static
Ingo Molnar70b97a72006-07-03 00:25:42 -07003079int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003080 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003081 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082{
3083 /*
3084 * We do not migrate tasks that are:
3085 * 1) running (obviously), or
3086 * 2) cannot be migrated to this CPU due to cpus_allowed, or
3087 * 3) are cache-hot on their current CPU.
3088 */
Ingo Molnarcc367732007-10-15 17:00:18 +02003089 if (!cpu_isset(this_cpu, p->cpus_allowed)) {
3090 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003092 }
Nick Piggin81026792005-06-25 14:57:07 -07003093 *all_pinned = 0;
3094
Ingo Molnarcc367732007-10-15 17:00:18 +02003095 if (task_running(rq, p)) {
3096 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07003097 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099
Ingo Molnarda84d962007-10-15 17:00:18 +02003100 /*
3101 * Aggressive migration if:
3102 * 1) task is cache cold, or
3103 * 2) too many balance attempts have failed.
3104 */
3105
Ingo Molnar6bc16652007-10-15 17:00:18 +02003106 if (!task_hot(p, rq->clock, sd) ||
3107 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02003108#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02003109 if (task_hot(p, rq->clock, sd)) {
Ingo Molnarda84d962007-10-15 17:00:18 +02003110 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02003111 schedstat_inc(p, se.nr_forced_migrations);
3112 }
Ingo Molnarda84d962007-10-15 17:00:18 +02003113#endif
3114 return 1;
3115 }
3116
Ingo Molnarcc367732007-10-15 17:00:18 +02003117 if (task_hot(p, rq->clock, sd)) {
3118 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02003119 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02003120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 return 1;
3122}
3123
Peter Williamse1d14842007-10-24 18:23:51 +02003124static unsigned long
3125balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
3126 unsigned long max_load_move, struct sched_domain *sd,
3127 enum cpu_idle_type idle, int *all_pinned,
3128 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02003129{
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003130 int loops = 0, pulled = 0, pinned = 0, skip_for_load;
Ingo Molnardd41f592007-07-09 18:51:59 +02003131 struct task_struct *p;
3132 long rem_load_move = max_load_move;
3133
Peter Williamse1d14842007-10-24 18:23:51 +02003134 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02003135 goto out;
3136
3137 pinned = 1;
3138
3139 /*
3140 * Start the load-balancing iterator:
3141 */
3142 p = iterator->start(iterator->arg);
3143next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003144 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02003145 goto out;
3146 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003147 * To help distribute high priority tasks across CPUs we don't
Ingo Molnardd41f592007-07-09 18:51:59 +02003148 * skip a task if it will be the highest priority task (i.e. smallest
3149 * prio value) on its new queue regardless of its load weight
3150 */
3151 skip_for_load = (p->se.load.weight >> 1) > rem_load_move +
3152 SCHED_LOAD_SCALE_FUZZ;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003153 if ((skip_for_load && p->prio >= *this_best_prio) ||
Ingo Molnardd41f592007-07-09 18:51:59 +02003154 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003155 p = iterator->next(iterator->arg);
3156 goto next;
3157 }
3158
3159 pull_task(busiest, p, this_rq, this_cpu);
3160 pulled++;
3161 rem_load_move -= p->se.load.weight;
3162
3163 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01003164 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003165 */
Peter Williamse1d14842007-10-24 18:23:51 +02003166 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003167 if (p->prio < *this_best_prio)
3168 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02003169 p = iterator->next(iterator->arg);
3170 goto next;
3171 }
3172out:
3173 /*
Peter Williamse1d14842007-10-24 18:23:51 +02003174 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02003175 * so we can safely collect pull_task() stats here rather than
3176 * inside pull_task().
3177 */
3178 schedstat_add(sd, lb_gained[idle], pulled);
3179
3180 if (all_pinned)
3181 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02003182
3183 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02003184}
Ingo Molnar48f24c42006-07-03 00:25:40 -07003185
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186/*
Peter Williams43010652007-08-09 11:16:46 +02003187 * move_tasks tries to move up to max_load_move weighted load from busiest to
3188 * this_rq, as part of a balancing operation within domain "sd".
3189 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 *
3191 * Called with both runqueues locked.
3192 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003193static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02003194 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003195 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07003196 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003198 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02003199 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003200 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201
Ingo Molnardd41f592007-07-09 18:51:59 +02003202 do {
Peter Williams43010652007-08-09 11:16:46 +02003203 total_load_moved +=
3204 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02003205 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003206 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02003207 class = class->next;
Peter Williams43010652007-08-09 11:16:46 +02003208 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209
Peter Williams43010652007-08-09 11:16:46 +02003210 return total_load_moved > 0;
3211}
3212
Peter Williamse1d14842007-10-24 18:23:51 +02003213static int
3214iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3215 struct sched_domain *sd, enum cpu_idle_type idle,
3216 struct rq_iterator *iterator)
3217{
3218 struct task_struct *p = iterator->start(iterator->arg);
3219 int pinned = 0;
3220
3221 while (p) {
3222 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
3223 pull_task(busiest, p, this_rq, this_cpu);
3224 /*
3225 * Right now, this is only the second place pull_task()
3226 * is called, so we can safely collect pull_task()
3227 * stats here rather than inside pull_task().
3228 */
3229 schedstat_inc(sd, lb_gained[idle]);
3230
3231 return 1;
3232 }
3233 p = iterator->next(iterator->arg);
3234 }
3235
3236 return 0;
3237}
3238
Peter Williams43010652007-08-09 11:16:46 +02003239/*
3240 * move_one_task tries to move exactly one task from busiest to this_rq, as
3241 * part of active balancing operations within "domain".
3242 * Returns 1 if successful and 0 otherwise.
3243 *
3244 * Called with both runqueues locked.
3245 */
3246static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3247 struct sched_domain *sd, enum cpu_idle_type idle)
3248{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003249 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02003250
3251 for (class = sched_class_highest; class; class = class->next)
Peter Williamse1d14842007-10-24 18:23:51 +02003252 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02003253 return 1;
3254
3255 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256}
3257
3258/*
3259 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07003260 * domain. It calculates and returns the amount of weighted load which
3261 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262 */
3263static struct sched_group *
3264find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02003265 unsigned long *imbalance, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003266 int *sd_idle, const cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267{
3268 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
3269 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003270 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07003271 unsigned long busiest_load_per_task, busiest_nr_running;
3272 unsigned long this_load_per_task, this_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003273 int load_idx, group_imb = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003274#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3275 int power_savings_balance = 1;
3276 unsigned long leader_nr_running = 0, min_load_per_task = 0;
3277 unsigned long min_nr_running = ULONG_MAX;
3278 struct sched_group *group_min = NULL, *group_leader = NULL;
3279#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280
3281 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07003282 busiest_load_per_task = busiest_nr_running = 0;
3283 this_load_per_task = this_nr_running = 0;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003284 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07003285 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003286 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07003287 load_idx = sd->newidle_idx;
3288 else
3289 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290
3291 do {
Ken Chen908a7c12007-10-17 16:55:11 +02003292 unsigned long load, group_capacity, max_cpu_load, min_cpu_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 int local_group;
3294 int i;
Ken Chen908a7c12007-10-17 16:55:11 +02003295 int __group_imb = 0;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003296 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07003297 unsigned long sum_nr_running, sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298
3299 local_group = cpu_isset(this_cpu, group->cpumask);
3300
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003301 if (local_group)
3302 balance_cpu = first_cpu(group->cpumask);
3303
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07003305 sum_weighted_load = sum_nr_running = avg_load = 0;
Ken Chen908a7c12007-10-17 16:55:11 +02003306 max_cpu_load = 0;
3307 min_cpu_load = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308
3309 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003310 struct rq *rq;
3311
3312 if (!cpu_isset(i, *cpus))
3313 continue;
3314
3315 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07003316
Suresh Siddha9439aab2007-07-19 21:28:35 +02003317 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07003318 *sd_idle = 0;
3319
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003321 if (local_group) {
3322 if (idle_cpu(i) && !first_idle_cpu) {
3323 first_idle_cpu = 1;
3324 balance_cpu = i;
3325 }
3326
Nick Piggina2000572006-02-10 01:51:02 -08003327 load = target_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02003328 } else {
Nick Piggina2000572006-02-10 01:51:02 -08003329 load = source_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02003330 if (load > max_cpu_load)
3331 max_cpu_load = load;
3332 if (min_cpu_load > load)
3333 min_cpu_load = load;
3334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335
3336 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07003337 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003338 sum_weighted_load += weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 }
3340
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003341 /*
3342 * First idle cpu or the first cpu(busiest) in this sched group
3343 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02003344 * domains. In the newly idle case, we will allow all the cpu's
3345 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003346 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02003347 if (idle != CPU_NEWLY_IDLE && local_group &&
3348 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003349 *balance = 0;
3350 goto ret;
3351 }
3352
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07003354 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355
3356 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07003357 avg_load = sg_div_cpu_power(group,
3358 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359
Ken Chen908a7c12007-10-17 16:55:11 +02003360 if ((max_cpu_load - min_cpu_load) > SCHED_LOAD_SCALE)
3361 __group_imb = 1;
3362
Eric Dumazet5517d862007-05-08 00:32:57 -07003363 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003364
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365 if (local_group) {
3366 this_load = avg_load;
3367 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003368 this_nr_running = sum_nr_running;
3369 this_load_per_task = sum_weighted_load;
3370 } else if (avg_load > max_load &&
Ken Chen908a7c12007-10-17 16:55:11 +02003371 (sum_nr_running > group_capacity || __group_imb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 max_load = avg_load;
3373 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003374 busiest_nr_running = sum_nr_running;
3375 busiest_load_per_task = sum_weighted_load;
Ken Chen908a7c12007-10-17 16:55:11 +02003376 group_imb = __group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003378
3379#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3380 /*
3381 * Busy processors will not participate in power savings
3382 * balance.
3383 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003384 if (idle == CPU_NOT_IDLE ||
3385 !(sd->flags & SD_POWERSAVINGS_BALANCE))
3386 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003387
3388 /*
3389 * If the local group is idle or completely loaded
3390 * no need to do power savings balance at this domain
3391 */
3392 if (local_group && (this_nr_running >= group_capacity ||
3393 !this_nr_running))
3394 power_savings_balance = 0;
3395
Ingo Molnardd41f592007-07-09 18:51:59 +02003396 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003397 * If a group is already running at full capacity or idle,
3398 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02003399 */
3400 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003401 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02003402 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003403
Ingo Molnardd41f592007-07-09 18:51:59 +02003404 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003405 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003406 * This is the group from where we need to pick up the load
3407 * for saving power
3408 */
3409 if ((sum_nr_running < min_nr_running) ||
3410 (sum_nr_running == min_nr_running &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003411 first_cpu(group->cpumask) <
3412 first_cpu(group_min->cpumask))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003413 group_min = group;
3414 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003415 min_load_per_task = sum_weighted_load /
3416 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003417 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003418
Ingo Molnardd41f592007-07-09 18:51:59 +02003419 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003420 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02003421 * capacity but still has some space to pick up some load
3422 * from other group and save more power
3423 */
3424 if (sum_nr_running <= group_capacity - 1) {
3425 if (sum_nr_running > leader_nr_running ||
3426 (sum_nr_running == leader_nr_running &&
3427 first_cpu(group->cpumask) >
3428 first_cpu(group_leader->cpumask))) {
3429 group_leader = group;
3430 leader_nr_running = sum_nr_running;
3431 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07003432 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003433group_next:
3434#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 group = group->next;
3436 } while (group != sd->groups);
3437
Peter Williams2dd73a42006-06-27 02:54:34 -07003438 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 goto out_balanced;
3440
3441 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
3442
3443 if (this_load >= avg_load ||
3444 100*max_load <= sd->imbalance_pct*this_load)
3445 goto out_balanced;
3446
Peter Williams2dd73a42006-06-27 02:54:34 -07003447 busiest_load_per_task /= busiest_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003448 if (group_imb)
3449 busiest_load_per_task = min(busiest_load_per_task, avg_load);
3450
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 /*
3452 * We're trying to get all the cpus to the average_load, so we don't
3453 * want to push ourselves above the average load, nor do we wish to
3454 * reduce the max loaded cpu below the average load, as either of these
3455 * actions would just result in more rebalancing later, and ping-pong
3456 * tasks around. Thus we look for the minimum possible imbalance.
3457 * Negative imbalances (*we* are more loaded than anyone else) will
3458 * be counted as no imbalance for these purposes -- we can't fix that
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003459 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 * appear as very large values with unsigned longs.
3461 */
Peter Williams2dd73a42006-06-27 02:54:34 -07003462 if (max_load <= busiest_load_per_task)
3463 goto out_balanced;
3464
3465 /*
3466 * In the presence of smp nice balancing, certain scenarios can have
3467 * max load less than avg load(as we skip the groups at or below
3468 * its cpu_power, while calculating max_load..)
3469 */
3470 if (max_load < avg_load) {
3471 *imbalance = 0;
3472 goto small_imbalance;
3473 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003474
3475 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07003476 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003477
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07003479 *imbalance = min(max_pull * busiest->__cpu_power,
3480 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481 / SCHED_LOAD_SCALE;
3482
Peter Williams2dd73a42006-06-27 02:54:34 -07003483 /*
3484 * if *imbalance is less than the average load per runnable task
3485 * there is no gaurantee that any tasks will be moved so we'll have
3486 * a think about bumping its value to force at least one task to be
3487 * moved
3488 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003489 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07003490 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07003491 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492
Peter Williams2dd73a42006-06-27 02:54:34 -07003493small_imbalance:
3494 pwr_move = pwr_now = 0;
3495 imbn = 2;
3496 if (this_nr_running) {
3497 this_load_per_task /= this_nr_running;
3498 if (busiest_load_per_task > this_load_per_task)
3499 imbn = 1;
3500 } else
3501 this_load_per_task = SCHED_LOAD_SCALE;
3502
Ingo Molnardd41f592007-07-09 18:51:59 +02003503 if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >=
3504 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07003505 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 return busiest;
3507 }
3508
3509 /*
3510 * OK, we don't have enough imbalance to justify moving tasks,
3511 * however we may be able to increase total CPU power used by
3512 * moving them.
3513 */
3514
Eric Dumazet5517d862007-05-08 00:32:57 -07003515 pwr_now += busiest->__cpu_power *
3516 min(busiest_load_per_task, max_load);
3517 pwr_now += this->__cpu_power *
3518 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 pwr_now /= SCHED_LOAD_SCALE;
3520
3521 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07003522 tmp = sg_div_cpu_power(busiest,
3523 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07003525 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07003526 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527
3528 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07003529 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003530 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07003531 tmp = sg_div_cpu_power(this,
3532 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 else
Eric Dumazet5517d862007-05-08 00:32:57 -07003534 tmp = sg_div_cpu_power(this,
3535 busiest_load_per_task * SCHED_LOAD_SCALE);
3536 pwr_move += this->__cpu_power *
3537 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 pwr_move /= SCHED_LOAD_SCALE;
3539
3540 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003541 if (pwr_move > pwr_now)
3542 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543 }
3544
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545 return busiest;
3546
3547out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003548#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003549 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003550 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003552 if (this == group_leader && group_leader != group_min) {
3553 *imbalance = min_load_per_task;
3554 return group_min;
3555 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003556#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003557ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558 *imbalance = 0;
3559 return NULL;
3560}
3561
3562/*
3563 * find_busiest_queue - find the busiest runqueue among the cpus in group.
3564 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003565static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003566find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003567 unsigned long imbalance, const cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003569 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07003570 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571 int i;
3572
3573 for_each_cpu_mask(i, group->cpumask) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003574 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003575
3576 if (!cpu_isset(i, *cpus))
3577 continue;
3578
Ingo Molnar48f24c42006-07-03 00:25:40 -07003579 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02003580 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581
Ingo Molnardd41f592007-07-09 18:51:59 +02003582 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07003583 continue;
3584
Ingo Molnardd41f592007-07-09 18:51:59 +02003585 if (wl > max_load) {
3586 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003587 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 }
3589 }
3590
3591 return busiest;
3592}
3593
3594/*
Nick Piggin77391d72005-06-25 14:57:30 -07003595 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
3596 * so long as it is large enough.
3597 */
3598#define MAX_PINNED_INTERVAL 512
3599
3600/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3602 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003604static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003605 struct sched_domain *sd, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003606 int *balance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607{
Peter Williams43010652007-08-09 11:16:46 +02003608 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003611 struct rq *busiest;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003612 unsigned long flags;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003613 int unlock_aggregate;
Nick Piggin5969fe02005-09-10 00:26:19 -07003614
Mike Travis7c16ec52008-04-04 18:11:11 -07003615 cpus_setall(*cpus);
3616
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003617 unlock_aggregate = get_aggregate(sd);
3618
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003619 /*
3620 * When power savings policy is enabled for the parent domain, idle
3621 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02003622 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003623 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003624 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003625 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003626 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003627 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628
Ingo Molnar2d723762007-10-15 17:00:12 +02003629 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003631redo:
3632 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003633 cpus, balance);
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003634
Chen, Kenneth W06066712006-12-10 02:20:35 -08003635 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003636 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003637
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638 if (!group) {
3639 schedstat_inc(sd, lb_nobusyg[idle]);
3640 goto out_balanced;
3641 }
3642
Mike Travis7c16ec52008-04-04 18:11:11 -07003643 busiest = find_busiest_queue(group, idle, imbalance, cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644 if (!busiest) {
3645 schedstat_inc(sd, lb_nobusyq[idle]);
3646 goto out_balanced;
3647 }
3648
Nick Piggindb935db2005-06-25 14:57:11 -07003649 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650
3651 schedstat_add(sd, lb_imbalance[idle], imbalance);
3652
Peter Williams43010652007-08-09 11:16:46 +02003653 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654 if (busiest->nr_running > 1) {
3655 /*
3656 * Attempt to move tasks. If find_busiest_group has found
3657 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02003658 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 * correctly treated as an imbalance.
3660 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003661 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07003662 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02003663 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07003664 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07003665 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003666 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07003667
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003668 /*
3669 * some other cpu did the load balance for us.
3670 */
Peter Williams43010652007-08-09 11:16:46 +02003671 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003672 resched_cpu(this_cpu);
3673
Nick Piggin81026792005-06-25 14:57:07 -07003674 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003675 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003676 cpu_clear(cpu_of(busiest), *cpus);
3677 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003678 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07003679 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681 }
Nick Piggin81026792005-06-25 14:57:07 -07003682
Peter Williams43010652007-08-09 11:16:46 +02003683 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684 schedstat_inc(sd, lb_failed[idle]);
3685 sd->nr_balance_failed++;
3686
3687 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003689 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003690
3691 /* don't kick the migration_thread, if the curr
3692 * task on busiest cpu can't be moved to this_cpu
3693 */
3694 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003695 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003696 all_pinned = 1;
3697 goto out_one_pinned;
3698 }
3699
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700 if (!busiest->active_balance) {
3701 busiest->active_balance = 1;
3702 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07003703 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003705 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07003706 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707 wake_up_process(busiest->migration_thread);
3708
3709 /*
3710 * We've kicked active balancing, reset the failure
3711 * counter.
3712 */
Nick Piggin39507452005-06-25 14:57:09 -07003713 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714 }
Nick Piggin81026792005-06-25 14:57:07 -07003715 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716 sd->nr_balance_failed = 0;
3717
Nick Piggin81026792005-06-25 14:57:07 -07003718 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719 /* We were unbalanced, so reset the balancing interval */
3720 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07003721 } else {
3722 /*
3723 * If we've begun active balancing, start to back off. This
3724 * case may not be covered by the all_pinned logic if there
3725 * is only 1 task on the busy runqueue (because we don't call
3726 * move_tasks).
3727 */
3728 if (sd->balance_interval < sd->max_interval)
3729 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730 }
3731
Peter Williams43010652007-08-09 11:16:46 +02003732 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003733 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003734 ld_moved = -1;
3735
3736 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737
3738out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739 schedstat_inc(sd, lb_balanced[idle]);
3740
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003741 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003742
3743out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07003745 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
3746 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747 sd->balance_interval *= 2;
3748
Ingo Molnar48f24c42006-07-03 00:25:40 -07003749 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003750 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003751 ld_moved = -1;
3752 else
3753 ld_moved = 0;
3754out:
3755 if (unlock_aggregate)
3756 put_aggregate(sd);
3757 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758}
3759
3760/*
3761 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3762 * tasks if there is an imbalance.
3763 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003764 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765 * this_rq is locked.
3766 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003767static int
Mike Travis7c16ec52008-04-04 18:11:11 -07003768load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd,
3769 cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770{
3771 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003772 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02003774 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07003775 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003776 int all_pinned = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07003777
3778 cpus_setall(*cpus);
Nick Piggin5969fe02005-09-10 00:26:19 -07003779
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003780 /*
3781 * When power savings policy is enabled for the parent domain, idle
3782 * sibling can pick up load irrespective of busy siblings. In this case,
3783 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003784 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003785 */
3786 if (sd->flags & SD_SHARE_CPUPOWER &&
3787 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003788 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789
Ingo Molnar2d723762007-10-15 17:00:12 +02003790 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003791redo:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003792 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Mike Travis7c16ec52008-04-04 18:11:11 -07003793 &sd_idle, cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003795 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003796 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797 }
3798
Mike Travis7c16ec52008-04-04 18:11:11 -07003799 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance, cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07003800 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003801 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003802 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803 }
3804
Nick Piggindb935db2005-06-25 14:57:11 -07003805 BUG_ON(busiest == this_rq);
3806
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003807 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003808
Peter Williams43010652007-08-09 11:16:46 +02003809 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003810 if (busiest->nr_running > 1) {
3811 /* Attempt to move tasks */
3812 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003813 /* this_rq->clock is already updated */
3814 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02003815 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003816 imbalance, sd, CPU_NEWLY_IDLE,
3817 &all_pinned);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003818 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003819
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003820 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003821 cpu_clear(cpu_of(busiest), *cpus);
3822 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003823 goto redo;
3824 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003825 }
3826
Peter Williams43010652007-08-09 11:16:46 +02003827 if (!ld_moved) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003828 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003829 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3830 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003831 return -1;
3832 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003833 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834
Peter Williams43010652007-08-09 11:16:46 +02003835 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003836
3837out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003838 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003839 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003840 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003841 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003842 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003843
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003844 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845}
3846
3847/*
3848 * idle_balance is called by schedule() if this_cpu is about to become
3849 * idle. Attempts to pull tasks from other CPUs.
3850 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003851static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852{
3853 struct sched_domain *sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02003854 int pulled_task = -1;
3855 unsigned long next_balance = jiffies + HZ;
Mike Travis7c16ec52008-04-04 18:11:11 -07003856 cpumask_t tmpmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857
3858 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003859 unsigned long interval;
3860
3861 if (!(sd->flags & SD_LOAD_BALANCE))
3862 continue;
3863
3864 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003865 /* If we've pulled tasks over stop searching: */
Mike Travis7c16ec52008-04-04 18:11:11 -07003866 pulled_task = load_balance_newidle(this_cpu, this_rq,
3867 sd, &tmpmask);
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003868
3869 interval = msecs_to_jiffies(sd->balance_interval);
3870 if (time_after(next_balance, sd->last_balance + interval))
3871 next_balance = sd->last_balance + interval;
3872 if (pulled_task)
3873 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003875 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003876 /*
3877 * We are going idle. next_balance may be set based on
3878 * a busy processor. So reset next_balance.
3879 */
3880 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02003881 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882}
3883
3884/*
3885 * active_load_balance is run by migration threads. It pushes running tasks
3886 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
3887 * running on each physical CPU where possible, and avoids physical /
3888 * logical imbalances.
3889 *
3890 * Called with busiest_rq locked.
3891 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003892static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893{
Nick Piggin39507452005-06-25 14:57:09 -07003894 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003895 struct sched_domain *sd;
3896 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07003897
Ingo Molnar48f24c42006-07-03 00:25:40 -07003898 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07003899 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07003900 return;
3901
3902 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903
3904 /*
Nick Piggin39507452005-06-25 14:57:09 -07003905 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003906 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07003907 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908 */
Nick Piggin39507452005-06-25 14:57:09 -07003909 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910
Nick Piggin39507452005-06-25 14:57:09 -07003911 /* move a task from busiest_rq to target_rq */
3912 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003913 update_rq_clock(busiest_rq);
3914 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915
Nick Piggin39507452005-06-25 14:57:09 -07003916 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003917 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07003918 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003919 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07003920 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922
Ingo Molnar48f24c42006-07-03 00:25:40 -07003923 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003924 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925
Peter Williams43010652007-08-09 11:16:46 +02003926 if (move_one_task(target_rq, target_cpu, busiest_rq,
3927 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07003928 schedstat_inc(sd, alb_pushed);
3929 else
3930 schedstat_inc(sd, alb_failed);
3931 }
Nick Piggin39507452005-06-25 14:57:09 -07003932 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933}
3934
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003935#ifdef CONFIG_NO_HZ
3936static struct {
3937 atomic_t load_balancer;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003938 cpumask_t cpu_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003939} nohz ____cacheline_aligned = {
3940 .load_balancer = ATOMIC_INIT(-1),
3941 .cpu_mask = CPU_MASK_NONE,
3942};
3943
Christoph Lameter7835b982006-12-10 02:20:22 -08003944/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003945 * This routine will try to nominate the ilb (idle load balancing)
3946 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
3947 * load balancing on behalf of all those cpus. If all the cpus in the system
3948 * go into this tickless mode, then there will be no ilb owner (as there is
3949 * no need for one) and all the cpus will sleep till the next wakeup event
3950 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08003951 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003952 * For the ilb owner, tick is not stopped. And this tick will be used
3953 * for idle load balancing. ilb owner will still be part of
3954 * nohz.cpu_mask..
3955 *
3956 * While stopping the tick, this cpu will become the ilb owner if there
3957 * is no other owner. And will be the owner till that cpu becomes busy
3958 * or if all cpus in the system stop their ticks at which point
3959 * there is no need for ilb owner.
3960 *
3961 * When the ilb owner becomes busy, it nominates another owner, during the
3962 * next busy scheduler_tick()
3963 */
3964int select_nohz_load_balancer(int stop_tick)
3965{
3966 int cpu = smp_processor_id();
3967
3968 if (stop_tick) {
3969 cpu_set(cpu, nohz.cpu_mask);
3970 cpu_rq(cpu)->in_nohz_recently = 1;
3971
3972 /*
3973 * If we are going offline and still the leader, give up!
3974 */
3975 if (cpu_is_offline(cpu) &&
3976 atomic_read(&nohz.load_balancer) == cpu) {
3977 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3978 BUG();
3979 return 0;
3980 }
3981
3982 /* time for ilb owner also to sleep */
3983 if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3984 if (atomic_read(&nohz.load_balancer) == cpu)
3985 atomic_set(&nohz.load_balancer, -1);
3986 return 0;
3987 }
3988
3989 if (atomic_read(&nohz.load_balancer) == -1) {
3990 /* make me the ilb owner */
3991 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
3992 return 1;
3993 } else if (atomic_read(&nohz.load_balancer) == cpu)
3994 return 1;
3995 } else {
3996 if (!cpu_isset(cpu, nohz.cpu_mask))
3997 return 0;
3998
3999 cpu_clear(cpu, nohz.cpu_mask);
4000
4001 if (atomic_read(&nohz.load_balancer) == cpu)
4002 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
4003 BUG();
4004 }
4005 return 0;
4006}
4007#endif
4008
4009static DEFINE_SPINLOCK(balancing);
4010
4011/*
Christoph Lameter7835b982006-12-10 02:20:22 -08004012 * It checks each scheduling domain to see if it is due to be balanced,
4013 * and initiates a balancing operation if so.
4014 *
4015 * Balancing parameters are set up in arch_init_sched_domains.
4016 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02004017static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08004018{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004019 int balance = 1;
4020 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08004021 unsigned long interval;
4022 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004023 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08004024 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02004025 int update_next_balance = 0;
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02004026 int need_serialize;
Mike Travis7c16ec52008-04-04 18:11:11 -07004027 cpumask_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004029 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030 if (!(sd->flags & SD_LOAD_BALANCE))
4031 continue;
4032
4033 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004034 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 interval *= sd->busy_factor;
4036
4037 /* scale ms to jiffies */
4038 interval = msecs_to_jiffies(interval);
4039 if (unlikely(!interval))
4040 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02004041 if (interval > HZ*NR_CPUS/10)
4042 interval = HZ*NR_CPUS/10;
4043
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02004044 need_serialize = sd->flags & SD_SERIALIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02004046 if (need_serialize) {
Christoph Lameter08c183f2006-12-10 02:20:29 -08004047 if (!spin_trylock(&balancing))
4048 goto out;
4049 }
4050
Christoph Lameterc9819f42006-12-10 02:20:25 -08004051 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07004052 if (load_balance(cpu, rq, sd, idle, &balance, &tmp)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07004053 /*
4054 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07004055 * longer idle, or one of our SMT siblings is
4056 * not idle.
4057 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02004058 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08004060 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061 }
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02004062 if (need_serialize)
Christoph Lameter08c183f2006-12-10 02:20:29 -08004063 spin_unlock(&balancing);
4064out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02004065 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08004066 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02004067 update_next_balance = 1;
4068 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08004069
4070 /*
4071 * Stop the load balance at this level. There is another
4072 * CPU in our sched group which is doing load balancing more
4073 * actively.
4074 */
4075 if (!balance)
4076 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02004078
4079 /*
4080 * next_balance will be updated only when there is a need.
4081 * When the cpu is attached to null domain for ex, it will not be
4082 * updated.
4083 */
4084 if (likely(update_next_balance))
4085 rq->next_balance = next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004086}
4087
4088/*
4089 * run_rebalance_domains is triggered when needed from the scheduler tick.
4090 * In CONFIG_NO_HZ case, the idle load balance owner will do the
4091 * rebalancing for all the cpus for whom scheduler ticks are stopped.
4092 */
4093static void run_rebalance_domains(struct softirq_action *h)
4094{
Ingo Molnardd41f592007-07-09 18:51:59 +02004095 int this_cpu = smp_processor_id();
4096 struct rq *this_rq = cpu_rq(this_cpu);
4097 enum cpu_idle_type idle = this_rq->idle_at_tick ?
4098 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004099
Ingo Molnardd41f592007-07-09 18:51:59 +02004100 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004101
4102#ifdef CONFIG_NO_HZ
4103 /*
4104 * If this cpu is the owner for idle load balancing, then do the
4105 * balancing on behalf of the other idle cpus whose ticks are
4106 * stopped.
4107 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004108 if (this_rq->idle_at_tick &&
4109 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004110 cpumask_t cpus = nohz.cpu_mask;
4111 struct rq *rq;
4112 int balance_cpu;
4113
Ingo Molnardd41f592007-07-09 18:51:59 +02004114 cpu_clear(this_cpu, cpus);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004115 for_each_cpu_mask(balance_cpu, cpus) {
4116 /*
4117 * If this cpu gets work to do, stop the load balancing
4118 * work being done for other cpus. Next load
4119 * balancing owner will pick it up.
4120 */
4121 if (need_resched())
4122 break;
4123
Oleg Nesterovde0cf892007-08-12 18:08:19 +02004124 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004125
4126 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004127 if (time_after(this_rq->next_balance, rq->next_balance))
4128 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004129 }
4130 }
4131#endif
4132}
4133
4134/*
4135 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
4136 *
4137 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
4138 * idle load balancing owner or decide to stop the periodic load balancing,
4139 * if the whole system is idle.
4140 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004141static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004142{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004143#ifdef CONFIG_NO_HZ
4144 /*
4145 * If we were in the nohz mode recently and busy at the current
4146 * scheduler tick, then check if we need to nominate new idle
4147 * load balancer.
4148 */
4149 if (rq->in_nohz_recently && !rq->idle_at_tick) {
4150 rq->in_nohz_recently = 0;
4151
4152 if (atomic_read(&nohz.load_balancer) == cpu) {
4153 cpu_clear(cpu, nohz.cpu_mask);
4154 atomic_set(&nohz.load_balancer, -1);
4155 }
4156
4157 if (atomic_read(&nohz.load_balancer) == -1) {
4158 /*
4159 * simple selection for now: Nominate the
4160 * first cpu in the nohz list to be the next
4161 * ilb owner.
4162 *
4163 * TBD: Traverse the sched domains and nominate
4164 * the nearest cpu in the nohz.cpu_mask.
4165 */
4166 int ilb = first_cpu(nohz.cpu_mask);
4167
Mike Travis434d53b2008-04-04 18:11:04 -07004168 if (ilb < nr_cpu_ids)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07004169 resched_cpu(ilb);
4170 }
4171 }
4172
4173 /*
4174 * If this cpu is idle and doing idle load balancing for all the
4175 * cpus with ticks stopped, is it time for that to stop?
4176 */
4177 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
4178 cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
4179 resched_cpu(cpu);
4180 return;
4181 }
4182
4183 /*
4184 * If this cpu is idle and the idle load balancing is done by
4185 * someone else, then no need raise the SCHED_SOFTIRQ
4186 */
4187 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
4188 cpu_isset(cpu, nohz.cpu_mask))
4189 return;
4190#endif
4191 if (time_after_eq(jiffies, rq->next_balance))
4192 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193}
Ingo Molnardd41f592007-07-09 18:51:59 +02004194
4195#else /* CONFIG_SMP */
4196
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197/*
4198 * on UP we do not need to balance between CPUs:
4199 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07004200static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201{
4202}
Ingo Molnardd41f592007-07-09 18:51:59 +02004203
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204#endif
4205
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206DEFINE_PER_CPU(struct kernel_stat, kstat);
4207
4208EXPORT_PER_CPU_SYMBOL(kstat);
4209
4210/*
Ingo Molnar41b86e92007-07-09 18:51:58 +02004211 * Return p->sum_exec_runtime plus any more ns on the sched_clock
4212 * that have not yet been banked in case the task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213 */
Ingo Molnar41b86e92007-07-09 18:51:58 +02004214unsigned long long task_sched_runtime(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004217 u64 ns, delta_exec;
4218 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004219
Ingo Molnar41b86e92007-07-09 18:51:58 +02004220 rq = task_rq_lock(p, &flags);
4221 ns = p->se.sum_exec_runtime;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004222 if (task_current(rq, p)) {
Ingo Molnara8e504d2007-08-09 11:16:47 +02004223 update_rq_clock(rq);
4224 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004225 if ((s64)delta_exec > 0)
4226 ns += delta_exec;
4227 }
4228 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004229
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230 return ns;
4231}
4232
4233/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234 * Account user cpu time to a process.
4235 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236 * @cputime: the cpu time spent in user space since the last update
4237 */
4238void account_user_time(struct task_struct *p, cputime_t cputime)
4239{
4240 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4241 cputime64_t tmp;
4242
4243 p->utime = cputime_add(p->utime, cputime);
4244
4245 /* Add user time to cpustat. */
4246 tmp = cputime_to_cputime64(cputime);
4247 if (TASK_NICE(p) > 0)
4248 cpustat->nice = cputime64_add(cpustat->nice, tmp);
4249 else
4250 cpustat->user = cputime64_add(cpustat->user, tmp);
4251}
4252
4253/*
Laurent Vivier94886b82007-10-15 17:00:19 +02004254 * Account guest cpu time to a process.
4255 * @p: the process that the cpu time gets accounted to
4256 * @cputime: the cpu time spent in virtual machine since the last update
4257 */
Adrian Bunkf7402e02007-10-29 21:18:10 +01004258static void account_guest_time(struct task_struct *p, cputime_t cputime)
Laurent Vivier94886b82007-10-15 17:00:19 +02004259{
4260 cputime64_t tmp;
4261 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4262
4263 tmp = cputime_to_cputime64(cputime);
4264
4265 p->utime = cputime_add(p->utime, cputime);
4266 p->gtime = cputime_add(p->gtime, cputime);
4267
4268 cpustat->user = cputime64_add(cpustat->user, tmp);
4269 cpustat->guest = cputime64_add(cpustat->guest, tmp);
4270}
4271
4272/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07004273 * Account scaled user cpu time to a process.
4274 * @p: the process that the cpu time gets accounted to
4275 * @cputime: the cpu time spent in user space since the last update
4276 */
4277void account_user_time_scaled(struct task_struct *p, cputime_t cputime)
4278{
4279 p->utimescaled = cputime_add(p->utimescaled, cputime);
4280}
4281
4282/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283 * Account system cpu time to a process.
4284 * @p: the process that the cpu time gets accounted to
4285 * @hardirq_offset: the offset to subtract from hardirq_count()
4286 * @cputime: the cpu time spent in kernel space since the last update
4287 */
4288void account_system_time(struct task_struct *p, int hardirq_offset,
4289 cputime_t cputime)
4290{
4291 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004292 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293 cputime64_t tmp;
4294
Harvey Harrison983ed7a2008-04-24 18:17:55 -07004295 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) {
4296 account_guest_time(p, cputime);
4297 return;
4298 }
Laurent Vivier94886b82007-10-15 17:00:19 +02004299
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300 p->stime = cputime_add(p->stime, cputime);
4301
4302 /* Add system time to cpustat. */
4303 tmp = cputime_to_cputime64(cputime);
4304 if (hardirq_count() - hardirq_offset)
4305 cpustat->irq = cputime64_add(cpustat->irq, tmp);
4306 else if (softirq_count())
4307 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004308 else if (p != rq->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309 cpustat->system = cputime64_add(cpustat->system, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004310 else if (atomic_read(&rq->nr_iowait) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
4312 else
4313 cpustat->idle = cputime64_add(cpustat->idle, tmp);
4314 /* Account for system time used */
4315 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316}
4317
4318/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07004319 * Account scaled system cpu time to a process.
4320 * @p: the process that the cpu time gets accounted to
4321 * @hardirq_offset: the offset to subtract from hardirq_count()
4322 * @cputime: the cpu time spent in kernel space since the last update
4323 */
4324void account_system_time_scaled(struct task_struct *p, cputime_t cputime)
4325{
4326 p->stimescaled = cputime_add(p->stimescaled, cputime);
4327}
4328
4329/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330 * Account for involuntary wait time.
4331 * @p: the process from which the cpu time has been stolen
4332 * @steal: the cpu time spent in involuntary wait
4333 */
4334void account_steal_time(struct task_struct *p, cputime_t steal)
4335{
4336 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4337 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07004338 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339
4340 if (p == rq->idle) {
4341 p->stime = cputime_add(p->stime, steal);
4342 if (atomic_read(&rq->nr_iowait) > 0)
4343 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
4344 else
4345 cpustat->idle = cputime64_add(cpustat->idle, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004346 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347 cpustat->steal = cputime64_add(cpustat->steal, tmp);
4348}
4349
Christoph Lameter7835b982006-12-10 02:20:22 -08004350/*
4351 * This function gets called by the timer code, with HZ frequency.
4352 * We call it with interrupts disabled.
4353 *
4354 * It also gets called by the fork code, when changing the parent's
4355 * timeslices.
4356 */
4357void scheduler_tick(void)
4358{
Christoph Lameter7835b982006-12-10 02:20:22 -08004359 int cpu = smp_processor_id();
4360 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004361 struct task_struct *curr = rq->curr;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004362
4363 sched_clock_tick();
Christoph Lameter7835b982006-12-10 02:20:22 -08004364
Ingo Molnardd41f592007-07-09 18:51:59 +02004365 spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004366 update_rq_clock(rq);
Ingo Molnarf1a438d2007-08-09 11:16:45 +02004367 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01004368 curr->sched_class->task_tick(rq, curr, 0);
Ingo Molnardd41f592007-07-09 18:51:59 +02004369 spin_unlock(&rq->lock);
4370
Christoph Lametere418e1c2006-12-10 02:20:23 -08004371#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02004372 rq->idle_at_tick = idle_cpu(cpu);
4373 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08004374#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375}
4376
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377#if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
4378
Srinivasa Ds43627582008-02-23 15:24:04 -08004379void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380{
4381 /*
4382 * Underflow?
4383 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004384 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
4385 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386 preempt_count() += val;
4387 /*
4388 * Spinlock count overflowing soon?
4389 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08004390 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
4391 PREEMPT_MASK - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392}
4393EXPORT_SYMBOL(add_preempt_count);
4394
Srinivasa Ds43627582008-02-23 15:24:04 -08004395void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396{
4397 /*
4398 * Underflow?
4399 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004400 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
4401 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402 /*
4403 * Is the spinlock portion underflowing?
4404 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004405 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
4406 !(preempt_count() & PREEMPT_MASK)))
4407 return;
4408
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409 preempt_count() -= val;
4410}
4411EXPORT_SYMBOL(sub_preempt_count);
4412
4413#endif
4414
4415/*
Ingo Molnardd41f592007-07-09 18:51:59 +02004416 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004418static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419{
Satyam Sharma838225b2007-10-24 18:23:50 +02004420 struct pt_regs *regs = get_irq_regs();
4421
4422 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
4423 prev->comm, prev->pid, preempt_count());
4424
Ingo Molnardd41f592007-07-09 18:51:59 +02004425 debug_show_held_locks(prev);
Arjan van de Vene21f5b12008-05-23 09:05:58 -07004426 print_modules();
Ingo Molnardd41f592007-07-09 18:51:59 +02004427 if (irqs_disabled())
4428 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02004429
4430 if (regs)
4431 show_regs(regs);
4432 else
4433 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02004434}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435
Ingo Molnardd41f592007-07-09 18:51:59 +02004436/*
4437 * Various schedule()-time debugging checks and statistics:
4438 */
4439static inline void schedule_debug(struct task_struct *prev)
4440{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004442 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443 * schedule() atomically, we ignore that path for now.
4444 * Otherwise, whine if we are scheduling when we should not be.
4445 */
Roel Kluin3f33a7c2008-05-13 23:44:11 +02004446 if (unlikely(in_atomic_preempt_off() && !prev->exit_state))
Ingo Molnardd41f592007-07-09 18:51:59 +02004447 __schedule_bug(prev);
4448
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
4450
Ingo Molnar2d723762007-10-15 17:00:12 +02004451 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004452#ifdef CONFIG_SCHEDSTATS
4453 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02004454 schedstat_inc(this_rq(), bkl_count);
4455 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004456 }
4457#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02004458}
4459
4460/*
4461 * Pick up the highest-prio task:
4462 */
4463static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004464pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02004465{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02004466 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02004467 struct task_struct *p;
4468
4469 /*
4470 * Optimization: we know that if all tasks are in
4471 * the fair class we can call that function directly:
4472 */
4473 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004474 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004475 if (likely(p))
4476 return p;
4477 }
4478
4479 class = sched_class_highest;
4480 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004481 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004482 if (p)
4483 return p;
4484 /*
4485 * Will never be NULL as the idle class always
4486 * returns a non-NULL p:
4487 */
4488 class = class->next;
4489 }
4490}
4491
4492/*
4493 * schedule() is the main scheduler function.
4494 */
4495asmlinkage void __sched schedule(void)
4496{
4497 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08004498 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02004499 struct rq *rq;
Mike Galbraithf333fdc2008-05-12 21:20:55 +02004500 int cpu, hrtick = sched_feat(HRTICK);
Ingo Molnardd41f592007-07-09 18:51:59 +02004501
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502need_resched:
4503 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02004504 cpu = smp_processor_id();
4505 rq = cpu_rq(cpu);
4506 rcu_qsctr_inc(cpu);
4507 prev = rq->curr;
4508 switch_count = &prev->nivcsw;
4509
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510 release_kernel_lock(prev);
4511need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512
Ingo Molnardd41f592007-07-09 18:51:59 +02004513 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514
Mike Galbraithf333fdc2008-05-12 21:20:55 +02004515 if (hrtick)
4516 hrtick_clear(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004517
Ingo Molnar1e819952007-10-15 17:00:13 +02004518 /*
4519 * Do the rq-clock update outside the rq lock:
4520 */
4521 local_irq_disable();
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004522 update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02004523 spin_lock(&rq->lock);
4524 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525
Ingo Molnardd41f592007-07-09 18:51:59 +02004526 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
Oleg Nesterov16882c12008-06-08 21:20:41 +04004527 if (unlikely(signal_pending_state(prev->state, prev)))
Ingo Molnardd41f592007-07-09 18:51:59 +02004528 prev->state = TASK_RUNNING;
Oleg Nesterov16882c12008-06-08 21:20:41 +04004529 else
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004530 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02004531 switch_count = &prev->nvcsw;
4532 }
4533
Steven Rostedt9a897c52008-01-25 21:08:22 +01004534#ifdef CONFIG_SMP
4535 if (prev->sched_class->pre_schedule)
4536 prev->sched_class->pre_schedule(rq, prev);
4537#endif
Steven Rostedtf65eda42008-01-25 21:08:07 +01004538
Ingo Molnardd41f592007-07-09 18:51:59 +02004539 if (unlikely(!rq->nr_running))
4540 idle_balance(cpu, rq);
4541
Ingo Molnar31ee5292007-08-09 11:16:49 +02004542 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004543 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545 if (likely(prev != next)) {
David Simner673a90a2008-04-29 10:08:59 +01004546 sched_info_switch(prev, next);
4547
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548 rq->nr_switches++;
4549 rq->curr = next;
4550 ++*switch_count;
4551
Ingo Molnardd41f592007-07-09 18:51:59 +02004552 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004553 /*
4554 * the context switch might have flipped the stack from under
4555 * us, hence refresh the local variables.
4556 */
4557 cpu = smp_processor_id();
4558 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559 } else
4560 spin_unlock_irq(&rq->lock);
4561
Mike Galbraithf333fdc2008-05-12 21:20:55 +02004562 if (hrtick)
4563 hrtick_set(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004564
4565 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004567
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568 preempt_enable_no_resched();
4569 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
4570 goto need_resched;
4571}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572EXPORT_SYMBOL(schedule);
4573
4574#ifdef CONFIG_PREEMPT
4575/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004576 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004577 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004578 * occur there and call schedule directly.
4579 */
4580asmlinkage void __sched preempt_schedule(void)
4581{
4582 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004583
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584 /*
4585 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004586 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07004588 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589 return;
4590
Andi Kleen3a5c3592007-10-15 17:00:14 +02004591 do {
4592 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004593 schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004594 sub_preempt_count(PREEMPT_ACTIVE);
4595
4596 /*
4597 * Check again in case we missed a preemption opportunity
4598 * between schedule and now.
4599 */
4600 barrier();
4601 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603EXPORT_SYMBOL(preempt_schedule);
4604
4605/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004606 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607 * off of irq context.
4608 * Note, that this is called and return with irqs disabled. This will
4609 * protect us against recursive calling from irq.
4610 */
4611asmlinkage void __sched preempt_schedule_irq(void)
4612{
4613 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004614
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004615 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616 BUG_ON(ti->preempt_count || !irqs_disabled());
4617
Andi Kleen3a5c3592007-10-15 17:00:14 +02004618 do {
4619 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004620 local_irq_enable();
4621 schedule();
4622 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004623 sub_preempt_count(PREEMPT_ACTIVE);
4624
4625 /*
4626 * Check again in case we missed a preemption opportunity
4627 * between schedule and now.
4628 */
4629 barrier();
4630 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631}
4632
4633#endif /* CONFIG_PREEMPT */
4634
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004635int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
4636 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004638 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640EXPORT_SYMBOL(default_wake_function);
4641
4642/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004643 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4644 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645 * number) then we wake all the non-exclusive tasks and one exclusive task.
4646 *
4647 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004648 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4650 */
4651static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
4652 int nr_exclusive, int sync, void *key)
4653{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004654 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004656 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004657 unsigned flags = curr->flags;
4658
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004660 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661 break;
4662 }
4663}
4664
4665/**
4666 * __wake_up - wake up threads blocked on a waitqueue.
4667 * @q: the waitqueue
4668 * @mode: which threads
4669 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004670 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004672void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004673 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674{
4675 unsigned long flags;
4676
4677 spin_lock_irqsave(&q->lock, flags);
4678 __wake_up_common(q, mode, nr_exclusive, 0, key);
4679 spin_unlock_irqrestore(&q->lock, flags);
4680}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681EXPORT_SYMBOL(__wake_up);
4682
4683/*
4684 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4685 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004686void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687{
4688 __wake_up_common(q, mode, 1, 0, NULL);
4689}
4690
4691/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07004692 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693 * @q: the waitqueue
4694 * @mode: which threads
4695 * @nr_exclusive: how many wake-one or wake-many threads to wake up
4696 *
4697 * The sync wakeup differs that the waker knows that it will schedule
4698 * away soon, so while the target thread will be woken up, it will not
4699 * be migrated to another CPU - ie. the two threads are 'synchronized'
4700 * with each other. This can prevent needless bouncing between CPUs.
4701 *
4702 * On UP it can prevent extra preemption.
4703 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004704void
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004705__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706{
4707 unsigned long flags;
4708 int sync = 1;
4709
4710 if (unlikely(!q))
4711 return;
4712
4713 if (unlikely(!nr_exclusive))
4714 sync = 0;
4715
4716 spin_lock_irqsave(&q->lock, flags);
4717 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
4718 spin_unlock_irqrestore(&q->lock, flags);
4719}
4720EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4721
Ingo Molnarb15136e2007-10-24 18:23:48 +02004722void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723{
4724 unsigned long flags;
4725
4726 spin_lock_irqsave(&x->wait.lock, flags);
4727 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004728 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729 spin_unlock_irqrestore(&x->wait.lock, flags);
4730}
4731EXPORT_SYMBOL(complete);
4732
Ingo Molnarb15136e2007-10-24 18:23:48 +02004733void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734{
4735 unsigned long flags;
4736
4737 spin_lock_irqsave(&x->wait.lock, flags);
4738 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004739 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740 spin_unlock_irqrestore(&x->wait.lock, flags);
4741}
4742EXPORT_SYMBOL(complete_all);
4743
Andi Kleen8cbbe862007-10-15 17:00:14 +02004744static inline long __sched
4745do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747 if (!x->done) {
4748 DECLARE_WAITQUEUE(wait, current);
4749
4750 wait.flags |= WQ_FLAG_EXCLUSIVE;
4751 __add_wait_queue_tail(&x->wait, &wait);
4752 do {
Matthew Wilcox009e5772007-12-06 12:29:54 -05004753 if ((state == TASK_INTERRUPTIBLE &&
4754 signal_pending(current)) ||
4755 (state == TASK_KILLABLE &&
4756 fatal_signal_pending(current))) {
Oleg Nesterovea71a542008-06-20 18:32:20 +04004757 timeout = -ERESTARTSYS;
4758 break;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004759 }
4760 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004762 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763 spin_lock_irq(&x->wait.lock);
Oleg Nesterovea71a542008-06-20 18:32:20 +04004764 } while (!x->done && timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765 __remove_wait_queue(&x->wait, &wait);
Oleg Nesterovea71a542008-06-20 18:32:20 +04004766 if (!x->done)
4767 return timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004768 }
4769 x->done--;
Oleg Nesterovea71a542008-06-20 18:32:20 +04004770 return timeout ?: 1;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004771}
4772
4773static long __sched
4774wait_for_common(struct completion *x, long timeout, int state)
4775{
4776 might_sleep();
4777
4778 spin_lock_irq(&x->wait.lock);
4779 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004781 return timeout;
4782}
4783
Ingo Molnarb15136e2007-10-24 18:23:48 +02004784void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004785{
4786 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787}
4788EXPORT_SYMBOL(wait_for_completion);
4789
Ingo Molnarb15136e2007-10-24 18:23:48 +02004790unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4792{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004793 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794}
4795EXPORT_SYMBOL(wait_for_completion_timeout);
4796
Andi Kleen8cbbe862007-10-15 17:00:14 +02004797int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798{
Andi Kleen51e97992007-10-18 21:32:55 +02004799 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4800 if (t == -ERESTARTSYS)
4801 return t;
4802 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803}
4804EXPORT_SYMBOL(wait_for_completion_interruptible);
4805
Ingo Molnarb15136e2007-10-24 18:23:48 +02004806unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807wait_for_completion_interruptible_timeout(struct completion *x,
4808 unsigned long timeout)
4809{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004810 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811}
4812EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4813
Matthew Wilcox009e5772007-12-06 12:29:54 -05004814int __sched wait_for_completion_killable(struct completion *x)
4815{
4816 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
4817 if (t == -ERESTARTSYS)
4818 return t;
4819 return 0;
4820}
4821EXPORT_SYMBOL(wait_for_completion_killable);
4822
Andi Kleen8cbbe862007-10-15 17:00:14 +02004823static long __sched
4824sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004825{
4826 unsigned long flags;
4827 wait_queue_t wait;
4828
4829 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830
Andi Kleen8cbbe862007-10-15 17:00:14 +02004831 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832
Andi Kleen8cbbe862007-10-15 17:00:14 +02004833 spin_lock_irqsave(&q->lock, flags);
4834 __add_wait_queue(q, &wait);
4835 spin_unlock(&q->lock);
4836 timeout = schedule_timeout(timeout);
4837 spin_lock_irq(&q->lock);
4838 __remove_wait_queue(q, &wait);
4839 spin_unlock_irqrestore(&q->lock, flags);
4840
4841 return timeout;
4842}
4843
4844void __sched interruptible_sleep_on(wait_queue_head_t *q)
4845{
4846 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848EXPORT_SYMBOL(interruptible_sleep_on);
4849
Ingo Molnar0fec1712007-07-09 18:52:01 +02004850long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004851interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004853 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4856
Ingo Molnar0fec1712007-07-09 18:52:01 +02004857void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004858{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004859 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004861EXPORT_SYMBOL(sleep_on);
4862
Ingo Molnar0fec1712007-07-09 18:52:01 +02004863long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004865 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867EXPORT_SYMBOL(sleep_on_timeout);
4868
Ingo Molnarb29739f2006-06-27 02:54:51 -07004869#ifdef CONFIG_RT_MUTEXES
4870
4871/*
4872 * rt_mutex_setprio - set the current priority of a task
4873 * @p: task
4874 * @prio: prio value (kernel-internal form)
4875 *
4876 * This function changes the 'effective' priority of a task. It does
4877 * not touch ->normal_prio like __setscheduler().
4878 *
4879 * Used by the rt_mutex code to implement priority inheritance logic.
4880 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004881void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07004882{
4883 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004884 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004885 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01004886 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004887
4888 BUG_ON(prio < 0 || prio > MAX_PRIO);
4889
4890 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004891 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004892
Andrew Mortond5f9f942007-05-08 20:27:06 -07004893 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004894 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004895 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004896 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004897 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004898 if (running)
4899 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02004900
4901 if (rt_prio(prio))
4902 p->sched_class = &rt_sched_class;
4903 else
4904 p->sched_class = &fair_sched_class;
4905
Ingo Molnarb29739f2006-06-27 02:54:51 -07004906 p->prio = prio;
4907
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004908 if (running)
4909 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004910 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004911 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004912
4913 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004914 }
4915 task_rq_unlock(rq, &flags);
4916}
4917
4918#endif
4919
Ingo Molnar36c8b582006-07-03 00:25:41 -07004920void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921{
Ingo Molnardd41f592007-07-09 18:51:59 +02004922 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004924 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925
4926 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
4927 return;
4928 /*
4929 * We have to be careful, if called from sys_setpriority(),
4930 * the task might be in the middle of scheduling on another CPU.
4931 */
4932 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004933 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934 /*
4935 * The RT priorities are set via sched_setscheduler(), but we still
4936 * allow the 'normal' nice value to be set - but as expected
4937 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02004938 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939 */
Ingo Molnare05606d2007-07-09 18:51:59 +02004940 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004941 p->static_prio = NICE_TO_PRIO(nice);
4942 goto out_unlock;
4943 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004944 on_rq = p->se.on_rq;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02004945 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004946 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947
Linus Torvalds1da177e2005-04-16 15:20:36 -07004948 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07004949 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004950 old_prio = p->prio;
4951 p->prio = effective_prio(p);
4952 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004953
Ingo Molnardd41f592007-07-09 18:51:59 +02004954 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004955 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07004957 * If the task increased its priority or is running and
4958 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07004960 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961 resched_task(rq->curr);
4962 }
4963out_unlock:
4964 task_rq_unlock(rq, &flags);
4965}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966EXPORT_SYMBOL(set_user_nice);
4967
Matt Mackalle43379f2005-05-01 08:59:00 -07004968/*
4969 * can_nice - check if a task can reduce its nice value
4970 * @p: task
4971 * @nice: nice value
4972 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004973int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07004974{
Matt Mackall024f4742005-08-18 11:24:19 -07004975 /* convert nice value [19,-20] to rlimit style value [1,40] */
4976 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004977
Matt Mackalle43379f2005-05-01 08:59:00 -07004978 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
4979 capable(CAP_SYS_NICE));
4980}
4981
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982#ifdef __ARCH_WANT_SYS_NICE
4983
4984/*
4985 * sys_nice - change the priority of the current process.
4986 * @increment: priority increment
4987 *
4988 * sys_setpriority is a more generic, but much slower function that
4989 * does similar things.
4990 */
4991asmlinkage long sys_nice(int increment)
4992{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004993 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994
4995 /*
4996 * Setpriority might change our priority at the same moment.
4997 * We don't have to worry. Conceptually one call occurs first
4998 * and we have a single winner.
4999 */
Matt Mackalle43379f2005-05-01 08:59:00 -07005000 if (increment < -40)
5001 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002 if (increment > 40)
5003 increment = 40;
5004
5005 nice = PRIO_TO_NICE(current->static_prio) + increment;
5006 if (nice < -20)
5007 nice = -20;
5008 if (nice > 19)
5009 nice = 19;
5010
Matt Mackalle43379f2005-05-01 08:59:00 -07005011 if (increment < 0 && !can_nice(current, nice))
5012 return -EPERM;
5013
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014 retval = security_task_setnice(current, nice);
5015 if (retval)
5016 return retval;
5017
5018 set_user_nice(current, nice);
5019 return 0;
5020}
5021
5022#endif
5023
5024/**
5025 * task_prio - return the priority value of a given task.
5026 * @p: the task in question.
5027 *
5028 * This is the priority value as seen by users in /proc.
5029 * RT tasks are offset by -200. Normal tasks are centered
5030 * around 0, value goes from -16 to +15.
5031 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005032int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033{
5034 return p->prio - MAX_RT_PRIO;
5035}
5036
5037/**
5038 * task_nice - return the nice value of a given task.
5039 * @p: the task in question.
5040 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005041int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042{
5043 return TASK_NICE(p);
5044}
Pavel Roskin150d8be2008-03-05 16:56:37 -05005045EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046
5047/**
5048 * idle_cpu - is a given cpu idle currently?
5049 * @cpu: the processor in question.
5050 */
5051int idle_cpu(int cpu)
5052{
5053 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
5054}
5055
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056/**
5057 * idle_task - return the idle task for a given cpu.
5058 * @cpu: the processor in question.
5059 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005060struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061{
5062 return cpu_rq(cpu)->idle;
5063}
5064
5065/**
5066 * find_process_by_pid - find a process with a matching PID value.
5067 * @pid: the pid in question.
5068 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02005069static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005070{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07005071 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072}
5073
5074/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02005075static void
5076__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077{
Ingo Molnardd41f592007-07-09 18:51:59 +02005078 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005079
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02005081 switch (p->policy) {
5082 case SCHED_NORMAL:
5083 case SCHED_BATCH:
5084 case SCHED_IDLE:
5085 p->sched_class = &fair_sched_class;
5086 break;
5087 case SCHED_FIFO:
5088 case SCHED_RR:
5089 p->sched_class = &rt_sched_class;
5090 break;
5091 }
5092
Linus Torvalds1da177e2005-04-16 15:20:36 -07005093 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005094 p->normal_prio = normal_prio(p);
5095 /* we are holding p->pi_lock already */
5096 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07005097 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005098}
5099
5100/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005101 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102 * @p: the task in question.
5103 * @policy: new policy.
5104 * @param: structure containing the new RT priority.
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005105 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005106 * NOTE that the task may be already dead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005108int sched_setscheduler(struct task_struct *p, int policy,
5109 struct sched_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02005111 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01005113 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005114 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115
Steven Rostedt66e53932006-06-27 02:54:44 -07005116 /* may grab non-irq protected spin_locks */
5117 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118recheck:
5119 /* double check policy once rq lock held */
5120 if (policy < 0)
5121 policy = oldpolicy = p->policy;
5122 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02005123 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
5124 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08005125 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126 /*
5127 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02005128 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
5129 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130 */
5131 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005132 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04005133 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005134 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02005135 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005136 return -EINVAL;
5137
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005138 /*
5139 * Allow unprivileged RT tasks to decrease priority:
5140 */
5141 if (!capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02005142 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005143 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005144
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005145 if (!lock_task_sighand(p, &flags))
5146 return -ESRCH;
5147 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
5148 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005149
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005150 /* can't set/change the rt policy */
5151 if (policy != p->policy && !rlim_rtprio)
5152 return -EPERM;
5153
5154 /* can't increase priority */
5155 if (param->sched_priority > p->rt_priority &&
5156 param->sched_priority > rlim_rtprio)
5157 return -EPERM;
5158 }
Ingo Molnardd41f592007-07-09 18:51:59 +02005159 /*
5160 * Like positive nice levels, dont allow tasks to
5161 * move out of SCHED_IDLE either:
5162 */
5163 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
5164 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005165
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005166 /* can't change other user's priorities */
5167 if ((current->euid != p->euid) &&
5168 (current->euid != p->uid))
5169 return -EPERM;
5170 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005171
Peter Zijlstrab68aa232008-02-13 15:45:40 +01005172#ifdef CONFIG_RT_GROUP_SCHED
5173 /*
5174 * Do not allow realtime tasks into groups that have no runtime
5175 * assigned.
5176 */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02005177 if (rt_policy(policy) && task_group(p)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01005178 return -EPERM;
5179#endif
5180
Linus Torvalds1da177e2005-04-16 15:20:36 -07005181 retval = security_task_setscheduler(p, policy, param);
5182 if (retval)
5183 return retval;
5184 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07005185 * make sure no PI-waiters arrive (or leave) while we are
5186 * changing the priority of the task:
5187 */
5188 spin_lock_irqsave(&p->pi_lock, flags);
5189 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190 * To be able to change p->policy safely, the apropriate
5191 * runqueue lock must be held.
5192 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07005193 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005194 /* recheck policy now with rq lock held */
5195 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
5196 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005197 __task_rq_unlock(rq);
5198 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199 goto recheck;
5200 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02005201 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005202 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01005203 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005204 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005205 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005206 if (running)
5207 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02005208
Linus Torvalds1da177e2005-04-16 15:20:36 -07005209 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02005210 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02005211
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005212 if (running)
5213 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005214 if (on_rq) {
5215 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01005216
5217 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07005219 __task_rq_unlock(rq);
5220 spin_unlock_irqrestore(&p->pi_lock, flags);
5221
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07005222 rt_mutex_adjust_pi(p);
5223
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224 return 0;
5225}
5226EXPORT_SYMBOL_GPL(sched_setscheduler);
5227
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005228static int
5229do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005230{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231 struct sched_param lparam;
5232 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005233 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005234
5235 if (!param || pid < 0)
5236 return -EINVAL;
5237 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
5238 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005239
5240 rcu_read_lock();
5241 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005243 if (p != NULL)
5244 retval = sched_setscheduler(p, policy, &lparam);
5245 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07005246
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247 return retval;
5248}
5249
5250/**
5251 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
5252 * @pid: the pid in question.
5253 * @policy: new policy.
5254 * @param: structure containing the new RT priority.
5255 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005256asmlinkage long
5257sys_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005258{
Jason Baronc21761f2006-01-18 17:43:03 -08005259 /* negative values for policy are not valid */
5260 if (policy < 0)
5261 return -EINVAL;
5262
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263 return do_sched_setscheduler(pid, policy, param);
5264}
5265
5266/**
5267 * sys_sched_setparam - set/change the RT priority of a thread
5268 * @pid: the pid in question.
5269 * @param: structure containing the new RT priority.
5270 */
5271asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
5272{
5273 return do_sched_setscheduler(pid, -1, param);
5274}
5275
5276/**
5277 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
5278 * @pid: the pid in question.
5279 */
5280asmlinkage long sys_sched_getscheduler(pid_t pid)
5281{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005282 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005283 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005284
5285 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005286 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005287
5288 retval = -ESRCH;
5289 read_lock(&tasklist_lock);
5290 p = find_process_by_pid(pid);
5291 if (p) {
5292 retval = security_task_getscheduler(p);
5293 if (!retval)
5294 retval = p->policy;
5295 }
5296 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297 return retval;
5298}
5299
5300/**
5301 * sys_sched_getscheduler - get the RT priority of a thread
5302 * @pid: the pid in question.
5303 * @param: structure containing the RT priority.
5304 */
5305asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
5306{
5307 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005308 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005309 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310
5311 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005312 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005313
5314 read_lock(&tasklist_lock);
5315 p = find_process_by_pid(pid);
5316 retval = -ESRCH;
5317 if (!p)
5318 goto out_unlock;
5319
5320 retval = security_task_getscheduler(p);
5321 if (retval)
5322 goto out_unlock;
5323
5324 lp.sched_priority = p->rt_priority;
5325 read_unlock(&tasklist_lock);
5326
5327 /*
5328 * This one might sleep, we cannot do it with a spinlock held ...
5329 */
5330 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
5331
Linus Torvalds1da177e2005-04-16 15:20:36 -07005332 return retval;
5333
5334out_unlock:
5335 read_unlock(&tasklist_lock);
5336 return retval;
5337}
5338
Mike Travisb53e9212008-04-04 18:11:08 -07005339long sched_setaffinity(pid_t pid, const cpumask_t *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341 cpumask_t cpus_allowed;
Mike Travisb53e9212008-04-04 18:11:08 -07005342 cpumask_t new_mask = *in_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005343 struct task_struct *p;
5344 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005346 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005347 read_lock(&tasklist_lock);
5348
5349 p = find_process_by_pid(pid);
5350 if (!p) {
5351 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005352 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353 return -ESRCH;
5354 }
5355
5356 /*
5357 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005358 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359 * usage count and then drop tasklist_lock.
5360 */
5361 get_task_struct(p);
5362 read_unlock(&tasklist_lock);
5363
5364 retval = -EPERM;
5365 if ((current->euid != p->euid) && (current->euid != p->uid) &&
5366 !capable(CAP_SYS_NICE))
5367 goto out_unlock;
5368
David Quigleye7834f82006-06-23 02:03:59 -07005369 retval = security_task_setscheduler(p, 0, NULL);
5370 if (retval)
5371 goto out_unlock;
5372
Mike Travisf9a86fc2008-04-04 18:11:07 -07005373 cpuset_cpus_allowed(p, &cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374 cpus_and(new_mask, new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005375 again:
Mike Travis7c16ec52008-04-04 18:11:11 -07005376 retval = set_cpus_allowed_ptr(p, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377
Paul Menage8707d8b2007-10-18 23:40:22 -07005378 if (!retval) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07005379 cpuset_cpus_allowed(p, &cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005380 if (!cpus_subset(new_mask, cpus_allowed)) {
5381 /*
5382 * We must have raced with a concurrent cpuset
5383 * update. Just reset the cpus_allowed to the
5384 * cpuset's cpus_allowed
5385 */
5386 new_mask = cpus_allowed;
5387 goto again;
5388 }
5389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005390out_unlock:
5391 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005392 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005393 return retval;
5394}
5395
5396static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
5397 cpumask_t *new_mask)
5398{
5399 if (len < sizeof(cpumask_t)) {
5400 memset(new_mask, 0, sizeof(cpumask_t));
5401 } else if (len > sizeof(cpumask_t)) {
5402 len = sizeof(cpumask_t);
5403 }
5404 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
5405}
5406
5407/**
5408 * sys_sched_setaffinity - set the cpu affinity of a process
5409 * @pid: pid of the process
5410 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5411 * @user_mask_ptr: user-space pointer to the new cpu mask
5412 */
5413asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
5414 unsigned long __user *user_mask_ptr)
5415{
5416 cpumask_t new_mask;
5417 int retval;
5418
5419 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
5420 if (retval)
5421 return retval;
5422
Mike Travisb53e9212008-04-04 18:11:08 -07005423 return sched_setaffinity(pid, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005424}
5425
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426long sched_getaffinity(pid_t pid, cpumask_t *mask)
5427{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005428 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005430
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005431 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005432 read_lock(&tasklist_lock);
5433
5434 retval = -ESRCH;
5435 p = find_process_by_pid(pid);
5436 if (!p)
5437 goto out_unlock;
5438
David Quigleye7834f82006-06-23 02:03:59 -07005439 retval = security_task_getscheduler(p);
5440 if (retval)
5441 goto out_unlock;
5442
Jack Steiner2f7016d2006-02-01 03:05:18 -08005443 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005444
5445out_unlock:
5446 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005447 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005448
Ulrich Drepper9531b622007-08-09 11:16:46 +02005449 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005450}
5451
5452/**
5453 * sys_sched_getaffinity - get the cpu affinity of a process
5454 * @pid: pid of the process
5455 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5456 * @user_mask_ptr: user-space pointer to hold the current cpu mask
5457 */
5458asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
5459 unsigned long __user *user_mask_ptr)
5460{
5461 int ret;
5462 cpumask_t mask;
5463
5464 if (len < sizeof(cpumask_t))
5465 return -EINVAL;
5466
5467 ret = sched_getaffinity(pid, &mask);
5468 if (ret < 0)
5469 return ret;
5470
5471 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
5472 return -EFAULT;
5473
5474 return sizeof(cpumask_t);
5475}
5476
5477/**
5478 * sys_sched_yield - yield the current processor to other threads.
5479 *
Ingo Molnardd41f592007-07-09 18:51:59 +02005480 * This function yields the current CPU to other tasks. If there are no
5481 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005482 */
5483asmlinkage long sys_sched_yield(void)
5484{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005485 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005486
Ingo Molnar2d723762007-10-15 17:00:12 +02005487 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02005488 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005489
5490 /*
5491 * Since we are going to call schedule() anyway, there's
5492 * no need to preempt or enable interrupts:
5493 */
5494 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07005495 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496 _raw_spin_unlock(&rq->lock);
5497 preempt_enable_no_resched();
5498
5499 schedule();
5500
5501 return 0;
5502}
5503
Andrew Mortone7b38402006-06-30 01:56:00 -07005504static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005505{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07005506#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
5507 __might_sleep(__FILE__, __LINE__);
5508#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07005509 /*
5510 * The BKS might be reacquired before we have dropped
5511 * PREEMPT_ACTIVE, which could trigger a second
5512 * cond_resched() call.
5513 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005514 do {
5515 add_preempt_count(PREEMPT_ACTIVE);
5516 schedule();
5517 sub_preempt_count(PREEMPT_ACTIVE);
5518 } while (need_resched());
5519}
5520
Herbert Xu02b67cc32008-01-25 21:08:28 +01005521int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005522{
Ingo Molnar94142322006-12-29 16:48:13 -08005523 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
5524 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525 __cond_resched();
5526 return 1;
5527 }
5528 return 0;
5529}
Herbert Xu02b67cc32008-01-25 21:08:28 +01005530EXPORT_SYMBOL(_cond_resched);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005531
5532/*
5533 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
5534 * call schedule, and on return reacquire the lock.
5535 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005536 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07005537 * operations here to prevent schedule() from being called twice (once via
5538 * spin_unlock(), once by hand).
5539 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005540int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005541{
Nick Piggin95c354f2008-01-30 13:31:20 +01005542 int resched = need_resched() && system_state == SYSTEM_RUNNING;
Jan Kara6df3cec2005-06-13 15:52:32 -07005543 int ret = 0;
5544
Nick Piggin95c354f2008-01-30 13:31:20 +01005545 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005546 spin_unlock(lock);
Nick Piggin95c354f2008-01-30 13:31:20 +01005547 if (resched && need_resched())
5548 __cond_resched();
5549 else
5550 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07005551 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005552 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005553 }
Jan Kara6df3cec2005-06-13 15:52:32 -07005554 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005555}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005556EXPORT_SYMBOL(cond_resched_lock);
5557
5558int __sched cond_resched_softirq(void)
5559{
5560 BUG_ON(!in_softirq());
5561
Ingo Molnar94142322006-12-29 16:48:13 -08005562 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07005563 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005564 __cond_resched();
5565 local_bh_disable();
5566 return 1;
5567 }
5568 return 0;
5569}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005570EXPORT_SYMBOL(cond_resched_softirq);
5571
Linus Torvalds1da177e2005-04-16 15:20:36 -07005572/**
5573 * yield - yield the current processor to other threads.
5574 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005575 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005576 * thread runnable and calls sys_sched_yield().
5577 */
5578void __sched yield(void)
5579{
5580 set_current_state(TASK_RUNNING);
5581 sys_sched_yield();
5582}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005583EXPORT_SYMBOL(yield);
5584
5585/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005586 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07005587 * that process accounting knows that this is a task in IO wait state.
5588 *
5589 * But don't do that if it is a deliberate, throttling IO wait (this task
5590 * has set its backing_dev_info: the queue against which it should throttle)
5591 */
5592void __sched io_schedule(void)
5593{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005594 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005595
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005596 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005597 atomic_inc(&rq->nr_iowait);
5598 schedule();
5599 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005600 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005601}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005602EXPORT_SYMBOL(io_schedule);
5603
5604long __sched io_schedule_timeout(long timeout)
5605{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005606 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005607 long ret;
5608
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005609 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005610 atomic_inc(&rq->nr_iowait);
5611 ret = schedule_timeout(timeout);
5612 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005613 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005614 return ret;
5615}
5616
5617/**
5618 * sys_sched_get_priority_max - return maximum RT priority.
5619 * @policy: scheduling class.
5620 *
5621 * this syscall returns the maximum rt_priority that can be used
5622 * by a given scheduling class.
5623 */
5624asmlinkage long sys_sched_get_priority_max(int policy)
5625{
5626 int ret = -EINVAL;
5627
5628 switch (policy) {
5629 case SCHED_FIFO:
5630 case SCHED_RR:
5631 ret = MAX_USER_RT_PRIO-1;
5632 break;
5633 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005634 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005635 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005636 ret = 0;
5637 break;
5638 }
5639 return ret;
5640}
5641
5642/**
5643 * sys_sched_get_priority_min - return minimum RT priority.
5644 * @policy: scheduling class.
5645 *
5646 * this syscall returns the minimum rt_priority that can be used
5647 * by a given scheduling class.
5648 */
5649asmlinkage long sys_sched_get_priority_min(int policy)
5650{
5651 int ret = -EINVAL;
5652
5653 switch (policy) {
5654 case SCHED_FIFO:
5655 case SCHED_RR:
5656 ret = 1;
5657 break;
5658 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005659 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005660 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005661 ret = 0;
5662 }
5663 return ret;
5664}
5665
5666/**
5667 * sys_sched_rr_get_interval - return the default timeslice of a process.
5668 * @pid: pid of the process.
5669 * @interval: userspace pointer to the timeslice value.
5670 *
5671 * this syscall writes the default timeslice value of a given process
5672 * into the user-space timespec buffer. A value of '0' means infinity.
5673 */
5674asmlinkage
5675long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
5676{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005677 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005678 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005679 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005680 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005681
5682 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005683 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005684
5685 retval = -ESRCH;
5686 read_lock(&tasklist_lock);
5687 p = find_process_by_pid(pid);
5688 if (!p)
5689 goto out_unlock;
5690
5691 retval = security_task_getscheduler(p);
5692 if (retval)
5693 goto out_unlock;
5694
Ingo Molnar77034932007-12-04 17:04:39 +01005695 /*
5696 * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
5697 * tasks that are on an otherwise idle runqueue:
5698 */
5699 time_slice = 0;
5700 if (p->policy == SCHED_RR) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005701 time_slice = DEF_TIMESLICE;
Miao Xie1868f952008-03-07 09:35:06 +08005702 } else if (p->policy != SCHED_FIFO) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005703 struct sched_entity *se = &p->se;
5704 unsigned long flags;
5705 struct rq *rq;
5706
5707 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01005708 if (rq->cfs.load.weight)
5709 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005710 task_rq_unlock(rq, &flags);
5711 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005712 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005713 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005714 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005715 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005716
Linus Torvalds1da177e2005-04-16 15:20:36 -07005717out_unlock:
5718 read_unlock(&tasklist_lock);
5719 return retval;
5720}
5721
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005722static const char stat_nam[] = "RSDTtZX";
Ingo Molnar36c8b582006-07-03 00:25:41 -07005723
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005724void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005725{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005726 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005727 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005728
Linus Torvalds1da177e2005-04-16 15:20:36 -07005729 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005730 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005731 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005732#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005733 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005734 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005735 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005736 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005737#else
5738 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005739 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005740 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005741 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742#endif
5743#ifdef CONFIG_DEBUG_STACK_USAGE
5744 {
Al Viro10ebffd2005-11-13 16:06:56 -08005745 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005746 while (!*n)
5747 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08005748 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005749 }
5750#endif
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07005751 printk(KERN_CONT "%5lu %5d %6d\n", free,
Roland McGrathfcfd50a2008-01-09 00:03:23 -08005752 task_pid_nr(p), task_pid_nr(p->real_parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005753
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01005754 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005755}
5756
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005757void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005758{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005759 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005760
Ingo Molnar4bd77322007-07-11 21:21:47 +02005761#if BITS_PER_LONG == 32
5762 printk(KERN_INFO
5763 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005764#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02005765 printk(KERN_INFO
5766 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005767#endif
5768 read_lock(&tasklist_lock);
5769 do_each_thread(g, p) {
5770 /*
5771 * reset the NMI-timeout, listing all files on a slow
5772 * console might take alot of time:
5773 */
5774 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07005775 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005776 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005777 } while_each_thread(g, p);
5778
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07005779 touch_all_softlockup_watchdogs();
5780
Ingo Molnardd41f592007-07-09 18:51:59 +02005781#ifdef CONFIG_SCHED_DEBUG
5782 sysrq_sched_debug_show();
5783#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005784 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005785 /*
5786 * Only show locks if all tasks are dumped:
5787 */
5788 if (state_filter == -1)
5789 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005790}
5791
Ingo Molnar1df21052007-07-09 18:51:58 +02005792void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5793{
Ingo Molnardd41f592007-07-09 18:51:59 +02005794 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02005795}
5796
Ingo Molnarf340c0d2005-06-28 16:40:42 +02005797/**
5798 * init_idle - set up an idle thread for a given CPU
5799 * @idle: task in question
5800 * @cpu: cpu the idle task belongs to
5801 *
5802 * NOTE: this function does not set the idle thread's NEED_RESCHED
5803 * flag, to make booting more robust.
5804 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07005805void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005806{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005807 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808 unsigned long flags;
5809
Ingo Molnardd41f592007-07-09 18:51:59 +02005810 __sched_fork(idle);
5811 idle->se.exec_start = sched_clock();
5812
Ingo Molnarb29739f2006-06-27 02:54:51 -07005813 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005814 idle->cpus_allowed = cpumask_of_cpu(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005815 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005816
5817 spin_lock_irqsave(&rq->lock, flags);
5818 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07005819#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
5820 idle->oncpu = 1;
5821#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822 spin_unlock_irqrestore(&rq->lock, flags);
5823
5824 /* Set the preempt count _outside_ the spinlocks! */
Linus Torvalds8e3e0762008-05-10 20:58:02 -07005825#if defined(CONFIG_PREEMPT)
5826 task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0);
5827#else
Al Viroa1261f52005-11-13 16:06:55 -08005828 task_thread_info(idle)->preempt_count = 0;
Linus Torvalds8e3e0762008-05-10 20:58:02 -07005829#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02005830 /*
5831 * The idle tasks have their own, simple scheduling class:
5832 */
5833 idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005834}
5835
5836/*
5837 * In a system that switches off the HZ timer nohz_cpu_mask
5838 * indicates which cpus entered this state. This is used
5839 * in the rcu update to wait only for active cpus. For system
5840 * which do not switch off the HZ timer nohz_cpu_mask should
5841 * always be CPU_MASK_NONE.
5842 */
5843cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
5844
Ingo Molnar19978ca2007-11-09 22:39:38 +01005845/*
5846 * Increase the granularity value when there are more CPUs,
5847 * because with more CPUs the 'effective latency' as visible
5848 * to users decreases. But the relationship is not linear,
5849 * so pick a second-best guess by going with the log2 of the
5850 * number of CPUs.
5851 *
5852 * This idea comes from the SD scheduler of Con Kolivas:
5853 */
5854static inline void sched_init_granularity(void)
5855{
5856 unsigned int factor = 1 + ilog2(num_online_cpus());
5857 const unsigned long limit = 200000000;
5858
5859 sysctl_sched_min_granularity *= factor;
5860 if (sysctl_sched_min_granularity > limit)
5861 sysctl_sched_min_granularity = limit;
5862
5863 sysctl_sched_latency *= factor;
5864 if (sysctl_sched_latency > limit)
5865 sysctl_sched_latency = limit;
5866
5867 sysctl_sched_wakeup_granularity *= factor;
Ingo Molnar19978ca2007-11-09 22:39:38 +01005868}
5869
Linus Torvalds1da177e2005-04-16 15:20:36 -07005870#ifdef CONFIG_SMP
5871/*
5872 * This is how migration works:
5873 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07005874 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875 * runqueue and wake up that CPU's migration thread.
5876 * 2) we down() the locked semaphore => thread blocks.
5877 * 3) migration thread wakes up (implicitly it forces the migrated
5878 * thread off the CPU)
5879 * 4) it gets the migration request and checks whether the migrated
5880 * task is still in the wrong runqueue.
5881 * 5) if it's in the wrong runqueue then the migration thread removes
5882 * it and puts it into the right queue.
5883 * 6) migration thread up()s the semaphore.
5884 * 7) we wake up and the migration is done.
5885 */
5886
5887/*
5888 * Change a given task's CPU affinity. Migrate the thread to a
5889 * proper CPU and schedule it away if the CPU it's executing on
5890 * is removed from the allowed bitmask.
5891 *
5892 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005893 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07005894 * call is not atomic; no spinlocks may be held.
5895 */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005896int set_cpus_allowed_ptr(struct task_struct *p, const cpumask_t *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005897{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005898 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005899 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005900 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005901 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005902
5903 rq = task_rq_lock(p, &flags);
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005904 if (!cpus_intersects(*new_mask, cpu_online_map)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005905 ret = -EINVAL;
5906 goto out;
5907 }
5908
David Rientjes9985b0b2008-06-05 12:57:11 -07005909 if (unlikely((p->flags & PF_THREAD_BOUND) && p != current &&
5910 !cpus_equal(p->cpus_allowed, *new_mask))) {
5911 ret = -EINVAL;
5912 goto out;
5913 }
5914
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005915 if (p->sched_class->set_cpus_allowed)
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005916 p->sched_class->set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005917 else {
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005918 p->cpus_allowed = *new_mask;
5919 p->rt.nr_cpus_allowed = cpus_weight(*new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005920 }
5921
Linus Torvalds1da177e2005-04-16 15:20:36 -07005922 /* Can the task run on the task's current CPU? If so, we're done */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005923 if (cpu_isset(task_cpu(p), *new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005924 goto out;
5925
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005926 if (migrate_task(p, any_online_cpu(*new_mask), &req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927 /* Need help from migration thread: drop lock and wait. */
5928 task_rq_unlock(rq, &flags);
5929 wake_up_process(rq->migration_thread);
5930 wait_for_completion(&req.done);
5931 tlb_migrate_finish(p->mm);
5932 return 0;
5933 }
5934out:
5935 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005936
Linus Torvalds1da177e2005-04-16 15:20:36 -07005937 return ret;
5938}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005939EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005940
5941/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005942 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07005943 * this because either it can't run here any more (set_cpus_allowed()
5944 * away from this CPU, or CPU going down), or because we're
5945 * attempting to rebalance this task on exec (sched_exec).
5946 *
5947 * So we race with normal scheduler movements, but that's OK, as long
5948 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07005949 *
5950 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005951 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07005952static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005953{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005954 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02005955 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005956
5957 if (unlikely(cpu_is_offline(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07005958 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005959
5960 rq_src = cpu_rq(src_cpu);
5961 rq_dest = cpu_rq(dest_cpu);
5962
5963 double_rq_lock(rq_src, rq_dest);
5964 /* Already moved. */
5965 if (task_cpu(p) != src_cpu)
5966 goto out;
5967 /* Affinity changed (again). */
5968 if (!cpu_isset(dest_cpu, p->cpus_allowed))
5969 goto out;
5970
Ingo Molnardd41f592007-07-09 18:51:59 +02005971 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005972 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005973 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005974
Linus Torvalds1da177e2005-04-16 15:20:36 -07005975 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005976 if (on_rq) {
5977 activate_task(rq_dest, p, 0);
5978 check_preempt_curr(rq_dest, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005979 }
Kirill Korotaevefc30812006-06-27 02:54:32 -07005980 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981out:
5982 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005983 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005984}
5985
5986/*
5987 * migration_thread - this is a highprio system thread that performs
5988 * thread migration by bumping thread off CPU then 'pushing' onto
5989 * another runqueue.
5990 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005991static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005992{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005994 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005995
5996 rq = cpu_rq(cpu);
5997 BUG_ON(rq->migration_thread != current);
5998
5999 set_current_state(TASK_INTERRUPTIBLE);
6000 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006001 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006002 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006003
Linus Torvalds1da177e2005-04-16 15:20:36 -07006004 spin_lock_irq(&rq->lock);
6005
6006 if (cpu_is_offline(cpu)) {
6007 spin_unlock_irq(&rq->lock);
6008 goto wait_to_die;
6009 }
6010
6011 if (rq->active_balance) {
6012 active_load_balance(rq, cpu);
6013 rq->active_balance = 0;
6014 }
6015
6016 head = &rq->migration_queue;
6017
6018 if (list_empty(head)) {
6019 spin_unlock_irq(&rq->lock);
6020 schedule();
6021 set_current_state(TASK_INTERRUPTIBLE);
6022 continue;
6023 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07006024 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006025 list_del_init(head->next);
6026
Nick Piggin674311d2005-06-25 14:57:27 -07006027 spin_unlock(&rq->lock);
6028 __migrate_task(req->task, cpu, req->dest_cpu);
6029 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006030
6031 complete(&req->done);
6032 }
6033 __set_current_state(TASK_RUNNING);
6034 return 0;
6035
6036wait_to_die:
6037 /* Wait for kthread_stop */
6038 set_current_state(TASK_INTERRUPTIBLE);
6039 while (!kthread_should_stop()) {
6040 schedule();
6041 set_current_state(TASK_INTERRUPTIBLE);
6042 }
6043 __set_current_state(TASK_RUNNING);
6044 return 0;
6045}
6046
6047#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006048
6049static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
6050{
6051 int ret;
6052
6053 local_irq_disable();
6054 ret = __migrate_task(p, src_cpu, dest_cpu);
6055 local_irq_enable();
6056 return ret;
6057}
6058
Kirill Korotaev054b9102006-12-10 02:20:11 -08006059/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006060 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08006061 * NOTE: interrupts should be disabled by the caller
6062 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006063static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006064{
Kirill Korotaevefc30812006-06-27 02:54:32 -07006065 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006066 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006067 struct rq *rq;
6068 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006069
Andi Kleen3a5c3592007-10-15 17:00:14 +02006070 do {
6071 /* On same node? */
6072 mask = node_to_cpumask(cpu_to_node(dead_cpu));
6073 cpus_and(mask, mask, p->cpus_allowed);
6074 dest_cpu = any_online_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006075
Andi Kleen3a5c3592007-10-15 17:00:14 +02006076 /* On any allowed CPU? */
Mike Travis434d53b2008-04-04 18:11:04 -07006077 if (dest_cpu >= nr_cpu_ids)
Andi Kleen3a5c3592007-10-15 17:00:14 +02006078 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079
Andi Kleen3a5c3592007-10-15 17:00:14 +02006080 /* No more Mr. Nice Guy. */
Mike Travis434d53b2008-04-04 18:11:04 -07006081 if (dest_cpu >= nr_cpu_ids) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07006082 cpumask_t cpus_allowed;
6083
6084 cpuset_cpus_allowed_locked(p, &cpus_allowed);
Cliff Wickman470fd6462007-10-18 23:40:46 -07006085 /*
6086 * Try to stay on the same cpuset, where the
6087 * current cpuset may be a subset of all cpus.
6088 * The cpuset_cpus_allowed_locked() variant of
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006089 * cpuset_cpus_allowed() will not block. It must be
Cliff Wickman470fd6462007-10-18 23:40:46 -07006090 * called within calls to cpuset_lock/cpuset_unlock.
6091 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02006092 rq = task_rq_lock(p, &flags);
Cliff Wickman470fd6462007-10-18 23:40:46 -07006093 p->cpus_allowed = cpus_allowed;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006094 dest_cpu = any_online_cpu(p->cpus_allowed);
6095 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006096
Andi Kleen3a5c3592007-10-15 17:00:14 +02006097 /*
6098 * Don't tell them about moving exiting tasks or
6099 * kernel threads (both mm NULL), since they never
6100 * leave kernel.
6101 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006102 if (p->mm && printk_ratelimit()) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02006103 printk(KERN_INFO "process %d (%s) no "
6104 "longer affine to cpu%d\n",
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006105 task_pid_nr(p), p->comm, dead_cpu);
6106 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02006107 }
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006108 } while (!__migrate_task_irq(p, dead_cpu, dest_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006109}
6110
6111/*
6112 * While a dead CPU has no uninterruptible tasks queued at this point,
6113 * it might still have a nonzero ->nr_uninterruptible counter, because
6114 * for performance reasons the counter is not stricly tracking tasks to
6115 * their home CPUs. So we just add the counter to another CPU's counter,
6116 * to keep the global sum constant after CPU-down:
6117 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07006118static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006119{
Mike Travis7c16ec52008-04-04 18:11:11 -07006120 struct rq *rq_dest = cpu_rq(any_online_cpu(*CPU_MASK_ALL_PTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006121 unsigned long flags;
6122
6123 local_irq_save(flags);
6124 double_rq_lock(rq_src, rq_dest);
6125 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
6126 rq_src->nr_uninterruptible = 0;
6127 double_rq_unlock(rq_src, rq_dest);
6128 local_irq_restore(flags);
6129}
6130
6131/* Run through task list and migrate tasks from the dead cpu. */
6132static void migrate_live_tasks(int src_cpu)
6133{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006134 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006135
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006136 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006137
Ingo Molnar48f24c42006-07-03 00:25:40 -07006138 do_each_thread(t, p) {
6139 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006140 continue;
6141
Ingo Molnar48f24c42006-07-03 00:25:40 -07006142 if (task_cpu(p) == src_cpu)
6143 move_task_off_dead_cpu(src_cpu, p);
6144 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006145
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006146 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006147}
6148
Ingo Molnardd41f592007-07-09 18:51:59 +02006149/*
6150 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01006151 * It does so by boosting its priority to highest possible.
6152 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006153 */
6154void sched_idle_next(void)
6155{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006156 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07006157 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006158 struct task_struct *p = rq->idle;
6159 unsigned long flags;
6160
6161 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006162 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006163
Ingo Molnar48f24c42006-07-03 00:25:40 -07006164 /*
6165 * Strictly not necessary since rest of the CPUs are stopped by now
6166 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006167 */
6168 spin_lock_irqsave(&rq->lock, flags);
6169
Ingo Molnardd41f592007-07-09 18:51:59 +02006170 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006171
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01006172 update_rq_clock(rq);
6173 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006174
6175 spin_unlock_irqrestore(&rq->lock, flags);
6176}
6177
Ingo Molnar48f24c42006-07-03 00:25:40 -07006178/*
6179 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07006180 * offline.
6181 */
6182void idle_task_exit(void)
6183{
6184 struct mm_struct *mm = current->active_mm;
6185
6186 BUG_ON(cpu_online(smp_processor_id()));
6187
6188 if (mm != &init_mm)
6189 switch_mm(mm, &init_mm, current);
6190 mmdrop(mm);
6191}
6192
Kirill Korotaev054b9102006-12-10 02:20:11 -08006193/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006194static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006195{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006196 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006197
6198 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07006199 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006200
6201 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07006202 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006203
Ingo Molnar48f24c42006-07-03 00:25:40 -07006204 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006205
6206 /*
6207 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006208 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07006209 * fine.
6210 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006211 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006212 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006213 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006214
Ingo Molnar48f24c42006-07-03 00:25:40 -07006215 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006216}
6217
6218/* release_task() removes task from tasklist, so we won't find dead tasks. */
6219static void migrate_dead_tasks(unsigned int dead_cpu)
6220{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006221 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02006222 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006223
Ingo Molnardd41f592007-07-09 18:51:59 +02006224 for ( ; ; ) {
6225 if (!rq->nr_running)
6226 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02006227 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02006228 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02006229 if (!next)
6230 break;
6231 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02006232
Linus Torvalds1da177e2005-04-16 15:20:36 -07006233 }
6234}
6235#endif /* CONFIG_HOTPLUG_CPU */
6236
Nick Piggine692ab52007-07-26 13:40:43 +02006237#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
6238
6239static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006240 {
6241 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006242 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006243 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01006244 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02006245};
6246
6247static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006248 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006249 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006250 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006251 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006252 .child = sd_ctl_dir,
6253 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01006254 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02006255};
6256
6257static struct ctl_table *sd_alloc_ctl_entry(int n)
6258{
6259 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02006260 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02006261
Nick Piggine692ab52007-07-26 13:40:43 +02006262 return entry;
6263}
6264
Milton Miller6382bc92007-10-15 17:00:19 +02006265static void sd_free_ctl_entry(struct ctl_table **tablep)
6266{
Milton Millercd7900762007-10-17 16:55:11 +02006267 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02006268
Milton Millercd7900762007-10-17 16:55:11 +02006269 /*
6270 * In the intermediate directories, both the child directory and
6271 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006272 * will always be set. In the lowest directory the names are
Milton Millercd7900762007-10-17 16:55:11 +02006273 * static strings and all have proc handlers.
6274 */
6275 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02006276 if (entry->child)
6277 sd_free_ctl_entry(&entry->child);
Milton Millercd7900762007-10-17 16:55:11 +02006278 if (entry->proc_handler == NULL)
6279 kfree(entry->procname);
6280 }
Milton Miller6382bc92007-10-15 17:00:19 +02006281
6282 kfree(*tablep);
6283 *tablep = NULL;
6284}
6285
Nick Piggine692ab52007-07-26 13:40:43 +02006286static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02006287set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02006288 const char *procname, void *data, int maxlen,
6289 mode_t mode, proc_handler *proc_handler)
6290{
Nick Piggine692ab52007-07-26 13:40:43 +02006291 entry->procname = procname;
6292 entry->data = data;
6293 entry->maxlen = maxlen;
6294 entry->mode = mode;
6295 entry->proc_handler = proc_handler;
6296}
6297
6298static struct ctl_table *
6299sd_alloc_ctl_domain_table(struct sched_domain *sd)
6300{
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006301 struct ctl_table *table = sd_alloc_ctl_entry(12);
Nick Piggine692ab52007-07-26 13:40:43 +02006302
Milton Millerad1cdc12007-10-15 17:00:19 +02006303 if (table == NULL)
6304 return NULL;
6305
Alexey Dobriyane0361852007-08-09 11:16:46 +02006306 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006307 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006308 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006309 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006310 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006311 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006312 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006313 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006314 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006315 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006316 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006317 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006318 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006319 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006320 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02006321 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006322 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02006323 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006324 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02006325 &sd->cache_nice_tries,
6326 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006327 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02006328 sizeof(int), 0644, proc_dointvec_minmax);
Milton Miller6323469f2007-10-15 17:00:19 +02006329 /* &table[11] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02006330
6331 return table;
6332}
6333
Ingo Molnar9a4e7152007-11-28 15:52:56 +01006334static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02006335{
6336 struct ctl_table *entry, *table;
6337 struct sched_domain *sd;
6338 int domain_num = 0, i;
6339 char buf[32];
6340
6341 for_each_domain(cpu, sd)
6342 domain_num++;
6343 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02006344 if (table == NULL)
6345 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02006346
6347 i = 0;
6348 for_each_domain(cpu, sd) {
6349 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006350 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006351 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006352 entry->child = sd_alloc_ctl_domain_table(sd);
6353 entry++;
6354 i++;
6355 }
6356 return table;
6357}
6358
6359static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02006360static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006361{
6362 int i, cpu_num = num_online_cpus();
6363 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
6364 char buf[32];
6365
Milton Miller73785472007-10-24 18:23:48 +02006366 WARN_ON(sd_ctl_dir[0].child);
6367 sd_ctl_dir[0].child = entry;
6368
Milton Millerad1cdc12007-10-15 17:00:19 +02006369 if (entry == NULL)
6370 return;
6371
Milton Miller97b6ea72007-10-15 17:00:19 +02006372 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02006373 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006374 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006375 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006376 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02006377 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02006378 }
Milton Miller73785472007-10-24 18:23:48 +02006379
6380 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02006381 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
6382}
Milton Miller6382bc92007-10-15 17:00:19 +02006383
Milton Miller73785472007-10-24 18:23:48 +02006384/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02006385static void unregister_sched_domain_sysctl(void)
6386{
Milton Miller73785472007-10-24 18:23:48 +02006387 if (sd_sysctl_header)
6388 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02006389 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02006390 if (sd_ctl_dir[0].child)
6391 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02006392}
Nick Piggine692ab52007-07-26 13:40:43 +02006393#else
Milton Miller6382bc92007-10-15 17:00:19 +02006394static void register_sched_domain_sysctl(void)
6395{
6396}
6397static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006398{
6399}
6400#endif
6401
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006402static void set_rq_online(struct rq *rq)
6403{
6404 if (!rq->online) {
6405 const struct sched_class *class;
6406
6407 cpu_set(rq->cpu, rq->rd->online);
6408 rq->online = 1;
6409
6410 for_each_class(class) {
6411 if (class->rq_online)
6412 class->rq_online(rq);
6413 }
6414 }
6415}
6416
6417static void set_rq_offline(struct rq *rq)
6418{
6419 if (rq->online) {
6420 const struct sched_class *class;
6421
6422 for_each_class(class) {
6423 if (class->rq_offline)
6424 class->rq_offline(rq);
6425 }
6426
6427 cpu_clear(rq->cpu, rq->rd->online);
6428 rq->online = 0;
6429 }
6430}
6431
Linus Torvalds1da177e2005-04-16 15:20:36 -07006432/*
6433 * migration_call - callback that gets triggered when a CPU is added.
6434 * Here we can start up the necessary migration thread for the new CPU.
6435 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006436static int __cpuinit
6437migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006438{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006439 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006440 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006441 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006442 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006443
6444 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006445
Linus Torvalds1da177e2005-04-16 15:20:36 -07006446 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006447 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02006448 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006449 if (IS_ERR(p))
6450 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006451 kthread_bind(p, cpu);
6452 /* Must be high prio: stop_machine expects to yield to it. */
6453 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02006454 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006455 task_rq_unlock(rq, &flags);
6456 cpu_rq(cpu)->migration_thread = p;
6457 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006458
Linus Torvalds1da177e2005-04-16 15:20:36 -07006459 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006460 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006461 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006462 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006463
6464 /* Update our root-domain */
6465 rq = cpu_rq(cpu);
6466 spin_lock_irqsave(&rq->lock, flags);
6467 if (rq->rd) {
6468 BUG_ON(!cpu_isset(cpu, rq->rd->span));
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006469
6470 set_rq_online(rq);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006471 }
6472 spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006473 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006474
Linus Torvalds1da177e2005-04-16 15:20:36 -07006475#ifdef CONFIG_HOTPLUG_CPU
6476 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006477 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07006478 if (!cpu_rq(cpu)->migration_thread)
6479 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006480 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08006481 kthread_bind(cpu_rq(cpu)->migration_thread,
6482 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006483 kthread_stop(cpu_rq(cpu)->migration_thread);
6484 cpu_rq(cpu)->migration_thread = NULL;
6485 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006486
Linus Torvalds1da177e2005-04-16 15:20:36 -07006487 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006488 case CPU_DEAD_FROZEN:
Cliff Wickman470fd6462007-10-18 23:40:46 -07006489 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006490 migrate_live_tasks(cpu);
6491 rq = cpu_rq(cpu);
6492 kthread_stop(rq->migration_thread);
6493 rq->migration_thread = NULL;
6494 /* Idle task back to normal (off runqueue, low prio) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006495 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02006496 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006497 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006498 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02006499 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
6500 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006501 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006502 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd6462007-10-18 23:40:46 -07006503 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006504 migrate_nr_uninterruptible(rq);
6505 BUG_ON(rq->nr_running != 0);
6506
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006507 /*
6508 * No need to migrate the tasks: it was best-effort if
6509 * they didn't take sched_hotcpu_mutex. Just wake up
6510 * the requestors.
6511 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006512 spin_lock_irq(&rq->lock);
6513 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006514 struct migration_req *req;
6515
Linus Torvalds1da177e2005-04-16 15:20:36 -07006516 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07006517 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006518 list_del_init(&req->list);
6519 complete(&req->done);
6520 }
6521 spin_unlock_irq(&rq->lock);
6522 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006523
Gregory Haskins08f503b2008-03-10 17:59:11 -04006524 case CPU_DYING:
6525 case CPU_DYING_FROZEN:
Gregory Haskins57d885f2008-01-25 21:08:18 +01006526 /* Update our root-domain */
6527 rq = cpu_rq(cpu);
6528 spin_lock_irqsave(&rq->lock, flags);
6529 if (rq->rd) {
6530 BUG_ON(!cpu_isset(cpu, rq->rd->span));
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006531 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006532 }
6533 spin_unlock_irqrestore(&rq->lock, flags);
6534 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006535#endif
6536 }
6537 return NOTIFY_OK;
6538}
6539
6540/* Register at highest priority so that task migration (migrate_all_tasks)
6541 * happens before everything else.
6542 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07006543static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006544 .notifier_call = migration_call,
6545 .priority = 10
6546};
6547
Adrian Bunke6fe6642007-11-09 22:39:39 +01006548void __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006549{
6550 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07006551 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006552
6553 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07006554 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
6555 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006556 migration_call(&migration_notifier, CPU_ONLINE, cpu);
6557 register_cpu_notifier(&migration_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006558}
6559#endif
6560
6561#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07006562
Ingo Molnar3e9830d2007-10-15 17:00:13 +02006563#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006564
Gautham R Shenoy099f98c2008-05-29 20:56:32 +05306565static inline const char *sd_level_to_string(enum sched_domain_level lvl)
6566{
6567 switch (lvl) {
6568 case SD_LV_NONE:
6569 return "NONE";
6570 case SD_LV_SIBLING:
6571 return "SIBLING";
6572 case SD_LV_MC:
6573 return "MC";
6574 case SD_LV_CPU:
6575 return "CPU";
6576 case SD_LV_NODE:
6577 return "NODE";
6578 case SD_LV_ALLNODES:
6579 return "ALLNODES";
6580 case SD_LV_MAX:
6581 return "MAX";
6582
6583 }
6584 return "MAX";
6585}
6586
Mike Travis7c16ec52008-04-04 18:11:11 -07006587static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
6588 cpumask_t *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006589{
6590 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07006591 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006592
Mike Travis434d53b2008-04-04 18:11:04 -07006593 cpulist_scnprintf(str, sizeof(str), sd->span);
Mike Travis7c16ec52008-04-04 18:11:11 -07006594 cpus_clear(*groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006595
6596 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
6597
6598 if (!(sd->flags & SD_LOAD_BALANCE)) {
6599 printk("does not load-balance\n");
6600 if (sd->parent)
6601 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
6602 " has parent");
6603 return -1;
6604 }
6605
Gautham R Shenoy099f98c2008-05-29 20:56:32 +05306606 printk(KERN_CONT "span %s level %s\n",
6607 str, sd_level_to_string(sd->level));
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006608
6609 if (!cpu_isset(cpu, sd->span)) {
6610 printk(KERN_ERR "ERROR: domain->span does not contain "
6611 "CPU%d\n", cpu);
6612 }
6613 if (!cpu_isset(cpu, group->cpumask)) {
6614 printk(KERN_ERR "ERROR: domain->groups does not contain"
6615 " CPU%d\n", cpu);
6616 }
6617
6618 printk(KERN_DEBUG "%*s groups:", level + 1, "");
6619 do {
6620 if (!group) {
6621 printk("\n");
6622 printk(KERN_ERR "ERROR: group is NULL\n");
6623 break;
6624 }
6625
6626 if (!group->__cpu_power) {
6627 printk(KERN_CONT "\n");
6628 printk(KERN_ERR "ERROR: domain->cpu_power not "
6629 "set\n");
6630 break;
6631 }
6632
6633 if (!cpus_weight(group->cpumask)) {
6634 printk(KERN_CONT "\n");
6635 printk(KERN_ERR "ERROR: empty group\n");
6636 break;
6637 }
6638
Mike Travis7c16ec52008-04-04 18:11:11 -07006639 if (cpus_intersects(*groupmask, group->cpumask)) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006640 printk(KERN_CONT "\n");
6641 printk(KERN_ERR "ERROR: repeated CPUs\n");
6642 break;
6643 }
6644
Mike Travis7c16ec52008-04-04 18:11:11 -07006645 cpus_or(*groupmask, *groupmask, group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006646
Mike Travis434d53b2008-04-04 18:11:04 -07006647 cpulist_scnprintf(str, sizeof(str), group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006648 printk(KERN_CONT " %s", str);
6649
6650 group = group->next;
6651 } while (group != sd->groups);
6652 printk(KERN_CONT "\n");
6653
Mike Travis7c16ec52008-04-04 18:11:11 -07006654 if (!cpus_equal(sd->span, *groupmask))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006655 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
6656
Mike Travis7c16ec52008-04-04 18:11:11 -07006657 if (sd->parent && !cpus_subset(*groupmask, sd->parent->span))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006658 printk(KERN_ERR "ERROR: parent span is not a superset "
6659 "of domain->span\n");
6660 return 0;
6661}
6662
Linus Torvalds1da177e2005-04-16 15:20:36 -07006663static void sched_domain_debug(struct sched_domain *sd, int cpu)
6664{
Mike Travis7c16ec52008-04-04 18:11:11 -07006665 cpumask_t *groupmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006666 int level = 0;
6667
Nick Piggin41c7ce92005-06-25 14:57:24 -07006668 if (!sd) {
6669 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6670 return;
6671 }
6672
Linus Torvalds1da177e2005-04-16 15:20:36 -07006673 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6674
Mike Travis7c16ec52008-04-04 18:11:11 -07006675 groupmask = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
6676 if (!groupmask) {
6677 printk(KERN_DEBUG "Cannot load-balance (out of memory)\n");
6678 return;
6679 }
6680
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006681 for (;;) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006682 if (sched_domain_debug_one(sd, cpu, level, groupmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006683 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006684 level++;
6685 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006686 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006687 break;
6688 }
Mike Travis7c16ec52008-04-04 18:11:11 -07006689 kfree(groupmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006690}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006691#else /* !CONFIG_SCHED_DEBUG */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006692# define sched_domain_debug(sd, cpu) do { } while (0)
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006693#endif /* CONFIG_SCHED_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006694
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006695static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006696{
6697 if (cpus_weight(sd->span) == 1)
6698 return 1;
6699
6700 /* Following flags need at least 2 groups */
6701 if (sd->flags & (SD_LOAD_BALANCE |
6702 SD_BALANCE_NEWIDLE |
6703 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006704 SD_BALANCE_EXEC |
6705 SD_SHARE_CPUPOWER |
6706 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006707 if (sd->groups != sd->groups->next)
6708 return 0;
6709 }
6710
6711 /* Following flags don't use groups */
6712 if (sd->flags & (SD_WAKE_IDLE |
6713 SD_WAKE_AFFINE |
6714 SD_WAKE_BALANCE))
6715 return 0;
6716
6717 return 1;
6718}
6719
Ingo Molnar48f24c42006-07-03 00:25:40 -07006720static int
6721sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006722{
6723 unsigned long cflags = sd->flags, pflags = parent->flags;
6724
6725 if (sd_degenerate(parent))
6726 return 1;
6727
6728 if (!cpus_equal(sd->span, parent->span))
6729 return 0;
6730
6731 /* Does parent contain flags not in child? */
6732 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
6733 if (cflags & SD_WAKE_AFFINE)
6734 pflags &= ~SD_WAKE_BALANCE;
6735 /* Flags needing groups don't count if only 1 group in parent */
6736 if (parent->groups == parent->groups->next) {
6737 pflags &= ~(SD_LOAD_BALANCE |
6738 SD_BALANCE_NEWIDLE |
6739 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006740 SD_BALANCE_EXEC |
6741 SD_SHARE_CPUPOWER |
6742 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006743 }
6744 if (~cflags & pflags)
6745 return 0;
6746
6747 return 1;
6748}
6749
Gregory Haskins57d885f2008-01-25 21:08:18 +01006750static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6751{
6752 unsigned long flags;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006753
6754 spin_lock_irqsave(&rq->lock, flags);
6755
6756 if (rq->rd) {
6757 struct root_domain *old_rd = rq->rd;
6758
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006759 if (cpu_isset(rq->cpu, old_rd->online))
6760 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006761
Gregory Haskinsdc938522008-01-25 21:08:26 +01006762 cpu_clear(rq->cpu, old_rd->span);
Gregory Haskinsdc938522008-01-25 21:08:26 +01006763
Gregory Haskins57d885f2008-01-25 21:08:18 +01006764 if (atomic_dec_and_test(&old_rd->refcount))
6765 kfree(old_rd);
6766 }
6767
6768 atomic_inc(&rd->refcount);
6769 rq->rd = rd;
6770
Gregory Haskinsdc938522008-01-25 21:08:26 +01006771 cpu_set(rq->cpu, rd->span);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006772 if (cpu_isset(rq->cpu, cpu_online_map))
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006773 set_rq_online(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006774
6775 spin_unlock_irqrestore(&rq->lock, flags);
6776}
6777
Gregory Haskinsdc938522008-01-25 21:08:26 +01006778static void init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006779{
6780 memset(rd, 0, sizeof(*rd));
6781
Gregory Haskinsdc938522008-01-25 21:08:26 +01006782 cpus_clear(rd->span);
6783 cpus_clear(rd->online);
Gregory Haskins6e0534f2008-05-12 21:21:01 +02006784
6785 cpupri_init(&rd->cpupri);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006786}
6787
6788static void init_defrootdomain(void)
6789{
Gregory Haskinsdc938522008-01-25 21:08:26 +01006790 init_rootdomain(&def_root_domain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006791 atomic_set(&def_root_domain.refcount, 1);
6792}
6793
Gregory Haskinsdc938522008-01-25 21:08:26 +01006794static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006795{
6796 struct root_domain *rd;
6797
6798 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6799 if (!rd)
6800 return NULL;
6801
Gregory Haskinsdc938522008-01-25 21:08:26 +01006802 init_rootdomain(rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006803
6804 return rd;
6805}
6806
Linus Torvalds1da177e2005-04-16 15:20:36 -07006807/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01006808 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07006809 * hold the hotplug lock.
6810 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01006811static void
6812cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006813{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006814 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006815 struct sched_domain *tmp;
6816
6817 /* Remove the sched domains which do not contribute to scheduling. */
6818 for (tmp = sd; tmp; tmp = tmp->parent) {
6819 struct sched_domain *parent = tmp->parent;
6820 if (!parent)
6821 break;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006822 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006823 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006824 if (parent->parent)
6825 parent->parent->child = tmp;
6826 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07006827 }
6828
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006829 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006830 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006831 if (sd)
6832 sd->child = NULL;
6833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006834
6835 sched_domain_debug(sd, cpu);
6836
Gregory Haskins57d885f2008-01-25 21:08:18 +01006837 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07006838 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006839}
6840
6841/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08006842static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006843
6844/* Setup the mask of cpus configured for isolated domains */
6845static int __init isolated_cpu_setup(char *str)
6846{
6847 int ints[NR_CPUS], i;
6848
6849 str = get_options(str, ARRAY_SIZE(ints), ints);
6850 cpus_clear(cpu_isolated_map);
6851 for (i = 1; i <= ints[0]; i++)
6852 if (ints[i] < NR_CPUS)
6853 cpu_set(ints[i], cpu_isolated_map);
6854 return 1;
6855}
6856
Ingo Molnar8927f492007-10-15 17:00:13 +02006857__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006858
6859/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006860 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
6861 * to a function which identifies what group(along with sched group) a CPU
6862 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
6863 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006864 *
6865 * init_sched_build_groups will build a circular linked list of the groups
6866 * covered by the given span, and will set each group's ->cpumask correctly,
6867 * and ->cpu_power to 0.
6868 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006869static void
Mike Travis7c16ec52008-04-04 18:11:11 -07006870init_sched_build_groups(const cpumask_t *span, const cpumask_t *cpu_map,
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006871 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006872 struct sched_group **sg,
6873 cpumask_t *tmpmask),
6874 cpumask_t *covered, cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006875{
6876 struct sched_group *first = NULL, *last = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006877 int i;
6878
Mike Travis7c16ec52008-04-04 18:11:11 -07006879 cpus_clear(*covered);
6880
6881 for_each_cpu_mask(i, *span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006882 struct sched_group *sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07006883 int group = group_fn(i, cpu_map, &sg, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006884 int j;
6885
Mike Travis7c16ec52008-04-04 18:11:11 -07006886 if (cpu_isset(i, *covered))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006887 continue;
6888
Mike Travis7c16ec52008-04-04 18:11:11 -07006889 cpus_clear(sg->cpumask);
Eric Dumazet5517d862007-05-08 00:32:57 -07006890 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006891
Mike Travis7c16ec52008-04-04 18:11:11 -07006892 for_each_cpu_mask(j, *span) {
6893 if (group_fn(j, cpu_map, NULL, tmpmask) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006894 continue;
6895
Mike Travis7c16ec52008-04-04 18:11:11 -07006896 cpu_set(j, *covered);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006897 cpu_set(j, sg->cpumask);
6898 }
6899 if (!first)
6900 first = sg;
6901 if (last)
6902 last->next = sg;
6903 last = sg;
6904 }
6905 last->next = first;
6906}
6907
John Hawkes9c1cfda2005-09-06 15:18:14 -07006908#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07006909
John Hawkes9c1cfda2005-09-06 15:18:14 -07006910#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006911
John Hawkes9c1cfda2005-09-06 15:18:14 -07006912/**
6913 * find_next_best_node - find the next node to include in a sched_domain
6914 * @node: node whose sched_domain we're building
6915 * @used_nodes: nodes already in the sched_domain
6916 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006917 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07006918 * finds the closest node not already in the @used_nodes map.
6919 *
6920 * Should use nodemask_t.
6921 */
Mike Travisc5f59f02008-04-04 18:11:10 -07006922static int find_next_best_node(int node, nodemask_t *used_nodes)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006923{
6924 int i, n, val, min_val, best_node = 0;
6925
6926 min_val = INT_MAX;
6927
6928 for (i = 0; i < MAX_NUMNODES; i++) {
6929 /* Start at @node */
6930 n = (node + i) % MAX_NUMNODES;
6931
6932 if (!nr_cpus_node(n))
6933 continue;
6934
6935 /* Skip already used nodes */
Mike Travisc5f59f02008-04-04 18:11:10 -07006936 if (node_isset(n, *used_nodes))
John Hawkes9c1cfda2005-09-06 15:18:14 -07006937 continue;
6938
6939 /* Simple min distance search */
6940 val = node_distance(node, n);
6941
6942 if (val < min_val) {
6943 min_val = val;
6944 best_node = n;
6945 }
6946 }
6947
Mike Travisc5f59f02008-04-04 18:11:10 -07006948 node_set(best_node, *used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006949 return best_node;
6950}
6951
6952/**
6953 * sched_domain_node_span - get a cpumask for a node's sched_domain
6954 * @node: node whose cpumask we're constructing
Randy Dunlap73486722008-04-22 10:07:22 -07006955 * @span: resulting cpumask
John Hawkes9c1cfda2005-09-06 15:18:14 -07006956 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006957 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07006958 * should be one that prevents unnecessary balancing, but also spreads tasks
6959 * out optimally.
6960 */
Mike Travis4bdbaad32008-04-15 16:35:52 -07006961static void sched_domain_node_span(int node, cpumask_t *span)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006962{
Mike Travisc5f59f02008-04-04 18:11:10 -07006963 nodemask_t used_nodes;
Mike Travisc5f59f02008-04-04 18:11:10 -07006964 node_to_cpumask_ptr(nodemask, node);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006965 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006966
Mike Travis4bdbaad32008-04-15 16:35:52 -07006967 cpus_clear(*span);
Mike Travisc5f59f02008-04-04 18:11:10 -07006968 nodes_clear(used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006969
Mike Travis4bdbaad32008-04-15 16:35:52 -07006970 cpus_or(*span, *span, *nodemask);
Mike Travisc5f59f02008-04-04 18:11:10 -07006971 node_set(node, used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006972
6973 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
Mike Travisc5f59f02008-04-04 18:11:10 -07006974 int next_node = find_next_best_node(node, &used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006975
Mike Travisc5f59f02008-04-04 18:11:10 -07006976 node_to_cpumask_ptr_next(nodemask, next_node);
Mike Travis4bdbaad32008-04-15 16:35:52 -07006977 cpus_or(*span, *span, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006978 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006979}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006980#endif /* CONFIG_NUMA */
John Hawkes9c1cfda2005-09-06 15:18:14 -07006981
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006982int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006983
John Hawkes9c1cfda2005-09-06 15:18:14 -07006984/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07006985 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07006986 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006987#ifdef CONFIG_SCHED_SMT
6988static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006989static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006990
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006991static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006992cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6993 cpumask_t *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006994{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006995 if (sg)
6996 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006997 return cpu;
6998}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006999#endif /* CONFIG_SCHED_SMT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007000
Ingo Molnar48f24c42006-07-03 00:25:40 -07007001/*
7002 * multi-core sched-domains:
7003 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007004#ifdef CONFIG_SCHED_MC
7005static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007006static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007007#endif /* CONFIG_SCHED_MC */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007008
7009#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007010static int
Mike Travis7c16ec52008-04-04 18:11:11 -07007011cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
7012 cpumask_t *mask)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007013{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007014 int group;
Mike Travis7c16ec52008-04-04 18:11:11 -07007015
7016 *mask = per_cpu(cpu_sibling_map, cpu);
7017 cpus_and(*mask, *mask, *cpu_map);
7018 group = first_cpu(*mask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007019 if (sg)
7020 *sg = &per_cpu(sched_group_core, group);
7021 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007022}
7023#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007024static int
Mike Travis7c16ec52008-04-04 18:11:11 -07007025cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
7026 cpumask_t *unused)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007027{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007028 if (sg)
7029 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007030 return cpu;
7031}
7032#endif
7033
Linus Torvalds1da177e2005-04-16 15:20:36 -07007034static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007035static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07007036
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007037static int
Mike Travis7c16ec52008-04-04 18:11:11 -07007038cpu_to_phys_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
7039 cpumask_t *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007040{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007041 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007042#ifdef CONFIG_SCHED_MC
Mike Travis7c16ec52008-04-04 18:11:11 -07007043 *mask = cpu_coregroup_map(cpu);
7044 cpus_and(*mask, *mask, *cpu_map);
7045 group = first_cpu(*mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007046#elif defined(CONFIG_SCHED_SMT)
Mike Travis7c16ec52008-04-04 18:11:11 -07007047 *mask = per_cpu(cpu_sibling_map, cpu);
7048 cpus_and(*mask, *mask, *cpu_map);
7049 group = first_cpu(*mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007050#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007051 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007052#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007053 if (sg)
7054 *sg = &per_cpu(sched_group_phys, group);
7055 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007056}
7057
7058#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07007059/*
7060 * The init_sched_build_groups can't handle what we want to do with node
7061 * groups, so roll our own. Now each node has its own list of groups which
7062 * gets dynamically allocated.
7063 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007064static DEFINE_PER_CPU(struct sched_domain, node_domains);
Mike Travis434d53b2008-04-04 18:11:04 -07007065static struct sched_group ***sched_group_nodes_bycpu;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007066
7067static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007068static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007069
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007070static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007071 struct sched_group **sg, cpumask_t *nodemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007072{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007073 int group;
7074
Mike Travis7c16ec52008-04-04 18:11:11 -07007075 *nodemask = node_to_cpumask(cpu_to_node(cpu));
7076 cpus_and(*nodemask, *nodemask, *cpu_map);
7077 group = first_cpu(*nodemask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007078
7079 if (sg)
7080 *sg = &per_cpu(sched_group_allnodes, group);
7081 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007082}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007083
Siddha, Suresh B08069032006-03-27 01:15:23 -08007084static void init_numa_sched_groups_power(struct sched_group *group_head)
7085{
7086 struct sched_group *sg = group_head;
7087 int j;
7088
7089 if (!sg)
7090 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02007091 do {
7092 for_each_cpu_mask(j, sg->cpumask) {
7093 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08007094
Andi Kleen3a5c3592007-10-15 17:00:14 +02007095 sd = &per_cpu(phys_domains, j);
7096 if (j != first_cpu(sd->groups->cpumask)) {
7097 /*
7098 * Only add "power" once for each
7099 * physical package.
7100 */
7101 continue;
7102 }
7103
7104 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08007105 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02007106 sg = sg->next;
7107 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08007108}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007109#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007110
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007111#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007112/* Free memory allocated for various sched_group structures */
Mike Travis7c16ec52008-04-04 18:11:11 -07007113static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007114{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007115 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007116
7117 for_each_cpu_mask(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007118 struct sched_group **sched_group_nodes
7119 = sched_group_nodes_bycpu[cpu];
7120
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007121 if (!sched_group_nodes)
7122 continue;
7123
7124 for (i = 0; i < MAX_NUMNODES; i++) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007125 struct sched_group *oldsg, *sg = sched_group_nodes[i];
7126
Mike Travis7c16ec52008-04-04 18:11:11 -07007127 *nodemask = node_to_cpumask(i);
7128 cpus_and(*nodemask, *nodemask, *cpu_map);
7129 if (cpus_empty(*nodemask))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007130 continue;
7131
7132 if (sg == NULL)
7133 continue;
7134 sg = sg->next;
7135next_sg:
7136 oldsg = sg;
7137 sg = sg->next;
7138 kfree(oldsg);
7139 if (oldsg != sched_group_nodes[i])
7140 goto next_sg;
7141 }
7142 kfree(sched_group_nodes);
7143 sched_group_nodes_bycpu[cpu] = NULL;
7144 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007145}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007146#else /* !CONFIG_NUMA */
Mike Travis7c16ec52008-04-04 18:11:11 -07007147static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007148{
7149}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007150#endif /* CONFIG_NUMA */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007151
Linus Torvalds1da177e2005-04-16 15:20:36 -07007152/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007153 * Initialize sched groups cpu_power.
7154 *
7155 * cpu_power indicates the capacity of sched group, which is used while
7156 * distributing the load between different sched groups in a sched domain.
7157 * Typically cpu_power for all the groups in a sched domain will be same unless
7158 * there are asymmetries in the topology. If there are asymmetries, group
7159 * having more cpu_power will pickup more load compared to the group having
7160 * less cpu_power.
7161 *
7162 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
7163 * the maximum number of tasks a group can handle in the presence of other idle
7164 * or lightly loaded groups in the same sched domain.
7165 */
7166static void init_sched_groups_power(int cpu, struct sched_domain *sd)
7167{
7168 struct sched_domain *child;
7169 struct sched_group *group;
7170
7171 WARN_ON(!sd || !sd->groups);
7172
7173 if (cpu != first_cpu(sd->groups->cpumask))
7174 return;
7175
7176 child = sd->child;
7177
Eric Dumazet5517d862007-05-08 00:32:57 -07007178 sd->groups->__cpu_power = 0;
7179
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007180 /*
7181 * For perf policy, if the groups in child domain share resources
7182 * (for example cores sharing some portions of the cache hierarchy
7183 * or SMT), then set this domain groups cpu_power such that each group
7184 * can handle only one task, when there are other idle groups in the
7185 * same sched domain.
7186 */
7187 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
7188 (child->flags &
7189 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07007190 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007191 return;
7192 }
7193
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007194 /*
7195 * add cpu_power of each child group to this groups cpu_power
7196 */
7197 group = child->groups;
7198 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07007199 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007200 group = group->next;
7201 } while (group != child->groups);
7202}
7203
7204/*
Mike Travis7c16ec52008-04-04 18:11:11 -07007205 * Initializers for schedule domains
7206 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
7207 */
7208
7209#define SD_INIT(sd, type) sd_init_##type(sd)
7210#define SD_INIT_FUNC(type) \
7211static noinline void sd_init_##type(struct sched_domain *sd) \
7212{ \
7213 memset(sd, 0, sizeof(*sd)); \
7214 *sd = SD_##type##_INIT; \
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007215 sd->level = SD_LV_##type; \
Mike Travis7c16ec52008-04-04 18:11:11 -07007216}
7217
7218SD_INIT_FUNC(CPU)
7219#ifdef CONFIG_NUMA
7220 SD_INIT_FUNC(ALLNODES)
7221 SD_INIT_FUNC(NODE)
7222#endif
7223#ifdef CONFIG_SCHED_SMT
7224 SD_INIT_FUNC(SIBLING)
7225#endif
7226#ifdef CONFIG_SCHED_MC
7227 SD_INIT_FUNC(MC)
7228#endif
7229
7230/*
7231 * To minimize stack usage kmalloc room for cpumasks and share the
7232 * space as the usage in build_sched_domains() dictates. Used only
7233 * if the amount of space is significant.
7234 */
7235struct allmasks {
7236 cpumask_t tmpmask; /* make this one first */
7237 union {
7238 cpumask_t nodemask;
7239 cpumask_t this_sibling_map;
7240 cpumask_t this_core_map;
7241 };
7242 cpumask_t send_covered;
7243
7244#ifdef CONFIG_NUMA
7245 cpumask_t domainspan;
7246 cpumask_t covered;
7247 cpumask_t notcovered;
7248#endif
7249};
7250
7251#if NR_CPUS > 128
7252#define SCHED_CPUMASK_ALLOC 1
7253#define SCHED_CPUMASK_FREE(v) kfree(v)
7254#define SCHED_CPUMASK_DECLARE(v) struct allmasks *v
7255#else
7256#define SCHED_CPUMASK_ALLOC 0
7257#define SCHED_CPUMASK_FREE(v)
7258#define SCHED_CPUMASK_DECLARE(v) struct allmasks _v, *v = &_v
7259#endif
7260
7261#define SCHED_CPUMASK_VAR(v, a) cpumask_t *v = (cpumask_t *) \
7262 ((unsigned long)(a) + offsetof(struct allmasks, v))
7263
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007264static int default_relax_domain_level = -1;
7265
7266static int __init setup_relax_domain_level(char *str)
7267{
Li Zefan30e0e172008-05-13 10:27:17 +08007268 unsigned long val;
7269
7270 val = simple_strtoul(str, NULL, 0);
7271 if (val < SD_LV_MAX)
7272 default_relax_domain_level = val;
7273
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007274 return 1;
7275}
7276__setup("relax_domain_level=", setup_relax_domain_level);
7277
7278static void set_domain_attribute(struct sched_domain *sd,
7279 struct sched_domain_attr *attr)
7280{
7281 int request;
7282
7283 if (!attr || attr->relax_domain_level < 0) {
7284 if (default_relax_domain_level < 0)
7285 return;
7286 else
7287 request = default_relax_domain_level;
7288 } else
7289 request = attr->relax_domain_level;
7290 if (request < sd->level) {
7291 /* turn off idle balance on this domain */
7292 sd->flags &= ~(SD_WAKE_IDLE|SD_BALANCE_NEWIDLE);
7293 } else {
7294 /* turn on idle balance on this domain */
7295 sd->flags |= (SD_WAKE_IDLE_FAR|SD_BALANCE_NEWIDLE);
7296 }
7297}
7298
Mike Travis7c16ec52008-04-04 18:11:11 -07007299/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007300 * Build sched domains for a given set of cpus and attach the sched domains
7301 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07007302 */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007303static int __build_sched_domains(const cpumask_t *cpu_map,
7304 struct sched_domain_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007305{
7306 int i;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007307 struct root_domain *rd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007308 SCHED_CPUMASK_DECLARE(allmasks);
7309 cpumask_t *tmpmask;
John Hawkesd1b55132005-09-06 15:18:14 -07007310#ifdef CONFIG_NUMA
7311 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007312 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07007313
7314 /*
7315 * Allocate the per-node list of sched groups
7316 */
Milton Miller5cf9f062007-10-15 17:00:19 +02007317 sched_group_nodes = kcalloc(MAX_NUMNODES, sizeof(struct sched_group *),
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007318 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07007319 if (!sched_group_nodes) {
7320 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007321 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07007322 }
John Hawkesd1b55132005-09-06 15:18:14 -07007323#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007324
Gregory Haskinsdc938522008-01-25 21:08:26 +01007325 rd = alloc_rootdomain();
Gregory Haskins57d885f2008-01-25 21:08:18 +01007326 if (!rd) {
7327 printk(KERN_WARNING "Cannot alloc root domain\n");
Mike Travis7c16ec52008-04-04 18:11:11 -07007328#ifdef CONFIG_NUMA
7329 kfree(sched_group_nodes);
7330#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007331 return -ENOMEM;
7332 }
7333
Mike Travis7c16ec52008-04-04 18:11:11 -07007334#if SCHED_CPUMASK_ALLOC
7335 /* get space for all scratch cpumask variables */
7336 allmasks = kmalloc(sizeof(*allmasks), GFP_KERNEL);
7337 if (!allmasks) {
7338 printk(KERN_WARNING "Cannot alloc cpumask array\n");
7339 kfree(rd);
7340#ifdef CONFIG_NUMA
7341 kfree(sched_group_nodes);
7342#endif
7343 return -ENOMEM;
7344 }
7345#endif
7346 tmpmask = (cpumask_t *)allmasks;
7347
7348
7349#ifdef CONFIG_NUMA
7350 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
7351#endif
7352
Linus Torvalds1da177e2005-04-16 15:20:36 -07007353 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007354 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007355 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007356 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007357 struct sched_domain *sd = NULL, *p;
Mike Travis7c16ec52008-04-04 18:11:11 -07007358 SCHED_CPUMASK_VAR(nodemask, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007359
Mike Travis7c16ec52008-04-04 18:11:11 -07007360 *nodemask = node_to_cpumask(cpu_to_node(i));
7361 cpus_and(*nodemask, *nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007362
7363#ifdef CONFIG_NUMA
Ingo Molnardd41f592007-07-09 18:51:59 +02007364 if (cpus_weight(*cpu_map) >
Mike Travis7c16ec52008-04-04 18:11:11 -07007365 SD_NODES_PER_DOMAIN*cpus_weight(*nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007366 sd = &per_cpu(allnodes_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007367 SD_INIT(sd, ALLNODES);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007368 set_domain_attribute(sd, attr);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007369 sd->span = *cpu_map;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02007370 sd->first_cpu = first_cpu(sd->span);
Mike Travis7c16ec52008-04-04 18:11:11 -07007371 cpu_to_allnodes_group(i, cpu_map, &sd->groups, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007372 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007373 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007374 } else
7375 p = NULL;
7376
Linus Torvalds1da177e2005-04-16 15:20:36 -07007377 sd = &per_cpu(node_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007378 SD_INIT(sd, NODE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007379 set_domain_attribute(sd, attr);
Mike Travis4bdbaad32008-04-15 16:35:52 -07007380 sched_domain_node_span(cpu_to_node(i), &sd->span);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02007381 sd->first_cpu = first_cpu(sd->span);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007382 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007383 if (p)
7384 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007385 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007386#endif
7387
7388 p = sd;
7389 sd = &per_cpu(phys_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007390 SD_INIT(sd, CPU);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007391 set_domain_attribute(sd, attr);
Mike Travis7c16ec52008-04-04 18:11:11 -07007392 sd->span = *nodemask;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02007393 sd->first_cpu = first_cpu(sd->span);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007394 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007395 if (p)
7396 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007397 cpu_to_phys_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007398
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007399#ifdef CONFIG_SCHED_MC
7400 p = sd;
7401 sd = &per_cpu(core_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007402 SD_INIT(sd, MC);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007403 set_domain_attribute(sd, attr);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007404 sd->span = cpu_coregroup_map(i);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02007405 sd->first_cpu = first_cpu(sd->span);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007406 cpus_and(sd->span, sd->span, *cpu_map);
7407 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007408 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007409 cpu_to_core_group(i, cpu_map, &sd->groups, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007410#endif
7411
Linus Torvalds1da177e2005-04-16 15:20:36 -07007412#ifdef CONFIG_SCHED_SMT
7413 p = sd;
7414 sd = &per_cpu(cpu_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007415 SD_INIT(sd, SIBLING);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007416 set_domain_attribute(sd, attr);
Mike Travisd5a74302007-10-16 01:24:05 -07007417 sd->span = per_cpu(cpu_sibling_map, i);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02007418 sd->first_cpu = first_cpu(sd->span);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007419 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007420 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007421 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007422 cpu_to_cpu_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007423#endif
7424 }
7425
7426#ifdef CONFIG_SCHED_SMT
7427 /* Set up CPU (sibling) groups */
John Hawkes9c1cfda2005-09-06 15:18:14 -07007428 for_each_cpu_mask(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007429 SCHED_CPUMASK_VAR(this_sibling_map, allmasks);
7430 SCHED_CPUMASK_VAR(send_covered, allmasks);
7431
7432 *this_sibling_map = per_cpu(cpu_sibling_map, i);
7433 cpus_and(*this_sibling_map, *this_sibling_map, *cpu_map);
7434 if (i != first_cpu(*this_sibling_map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007435 continue;
7436
Ingo Molnardd41f592007-07-09 18:51:59 +02007437 init_sched_build_groups(this_sibling_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007438 &cpu_to_cpu_group,
7439 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007440 }
7441#endif
7442
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007443#ifdef CONFIG_SCHED_MC
7444 /* Set up multi-core groups */
7445 for_each_cpu_mask(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007446 SCHED_CPUMASK_VAR(this_core_map, allmasks);
7447 SCHED_CPUMASK_VAR(send_covered, allmasks);
7448
7449 *this_core_map = cpu_coregroup_map(i);
7450 cpus_and(*this_core_map, *this_core_map, *cpu_map);
7451 if (i != first_cpu(*this_core_map))
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007452 continue;
Mike Travis7c16ec52008-04-04 18:11:11 -07007453
Ingo Molnardd41f592007-07-09 18:51:59 +02007454 init_sched_build_groups(this_core_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007455 &cpu_to_core_group,
7456 send_covered, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007457 }
7458#endif
7459
Linus Torvalds1da177e2005-04-16 15:20:36 -07007460 /* Set up physical groups */
7461 for (i = 0; i < MAX_NUMNODES; i++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007462 SCHED_CPUMASK_VAR(nodemask, allmasks);
7463 SCHED_CPUMASK_VAR(send_covered, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007464
Mike Travis7c16ec52008-04-04 18:11:11 -07007465 *nodemask = node_to_cpumask(i);
7466 cpus_and(*nodemask, *nodemask, *cpu_map);
7467 if (cpus_empty(*nodemask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007468 continue;
7469
Mike Travis7c16ec52008-04-04 18:11:11 -07007470 init_sched_build_groups(nodemask, cpu_map,
7471 &cpu_to_phys_group,
7472 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007473 }
7474
7475#ifdef CONFIG_NUMA
7476 /* Set up node groups */
Mike Travis7c16ec52008-04-04 18:11:11 -07007477 if (sd_allnodes) {
7478 SCHED_CPUMASK_VAR(send_covered, allmasks);
7479
7480 init_sched_build_groups(cpu_map, cpu_map,
7481 &cpu_to_allnodes_group,
7482 send_covered, tmpmask);
7483 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007484
7485 for (i = 0; i < MAX_NUMNODES; i++) {
7486 /* Set up node groups */
7487 struct sched_group *sg, *prev;
Mike Travis7c16ec52008-04-04 18:11:11 -07007488 SCHED_CPUMASK_VAR(nodemask, allmasks);
7489 SCHED_CPUMASK_VAR(domainspan, allmasks);
7490 SCHED_CPUMASK_VAR(covered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007491 int j;
7492
Mike Travis7c16ec52008-04-04 18:11:11 -07007493 *nodemask = node_to_cpumask(i);
7494 cpus_clear(*covered);
7495
7496 cpus_and(*nodemask, *nodemask, *cpu_map);
7497 if (cpus_empty(*nodemask)) {
John Hawkesd1b55132005-09-06 15:18:14 -07007498 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007499 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07007500 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007501
Mike Travis4bdbaad32008-04-15 16:35:52 -07007502 sched_domain_node_span(i, domainspan);
Mike Travis7c16ec52008-04-04 18:11:11 -07007503 cpus_and(*domainspan, *domainspan, *cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007504
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007505 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007506 if (!sg) {
7507 printk(KERN_WARNING "Can not alloc domain group for "
7508 "node %d\n", i);
7509 goto error;
7510 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007511 sched_group_nodes[i] = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007512 for_each_cpu_mask(j, *nodemask) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007513 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02007514
John Hawkes9c1cfda2005-09-06 15:18:14 -07007515 sd = &per_cpu(node_domains, j);
7516 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007517 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007518 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007519 sg->cpumask = *nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007520 sg->next = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007521 cpus_or(*covered, *covered, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007522 prev = sg;
7523
7524 for (j = 0; j < MAX_NUMNODES; j++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007525 SCHED_CPUMASK_VAR(notcovered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007526 int n = (i + j) % MAX_NUMNODES;
Mike Travisc5f59f02008-04-04 18:11:10 -07007527 node_to_cpumask_ptr(pnodemask, n);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007528
Mike Travis7c16ec52008-04-04 18:11:11 -07007529 cpus_complement(*notcovered, *covered);
7530 cpus_and(*tmpmask, *notcovered, *cpu_map);
7531 cpus_and(*tmpmask, *tmpmask, *domainspan);
7532 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007533 break;
7534
Mike Travis7c16ec52008-04-04 18:11:11 -07007535 cpus_and(*tmpmask, *tmpmask, *pnodemask);
7536 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007537 continue;
7538
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007539 sg = kmalloc_node(sizeof(struct sched_group),
7540 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007541 if (!sg) {
7542 printk(KERN_WARNING
7543 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007544 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007545 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007546 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007547 sg->cpumask = *tmpmask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007548 sg->next = prev->next;
Mike Travis7c16ec52008-04-04 18:11:11 -07007549 cpus_or(*covered, *covered, *tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007550 prev->next = sg;
7551 prev = sg;
7552 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007554#endif
7555
7556 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007557#ifdef CONFIG_SCHED_SMT
7558 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007559 struct sched_domain *sd = &per_cpu(cpu_domains, i);
7560
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007561 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007562 }
7563#endif
7564#ifdef CONFIG_SCHED_MC
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007565 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007566 struct sched_domain *sd = &per_cpu(core_domains, i);
7567
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007568 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007569 }
7570#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007571
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007572 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007573 struct sched_domain *sd = &per_cpu(phys_domains, i);
7574
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007575 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007576 }
7577
John Hawkes9c1cfda2005-09-06 15:18:14 -07007578#ifdef CONFIG_NUMA
Siddha, Suresh B08069032006-03-27 01:15:23 -08007579 for (i = 0; i < MAX_NUMNODES; i++)
7580 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007581
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007582 if (sd_allnodes) {
7583 struct sched_group *sg;
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07007584
Mike Travis7c16ec52008-04-04 18:11:11 -07007585 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg,
7586 tmpmask);
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07007587 init_numa_sched_groups_power(sg);
7588 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007589#endif
7590
Linus Torvalds1da177e2005-04-16 15:20:36 -07007591 /* Attach the domains */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007592 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007593 struct sched_domain *sd;
7594#ifdef CONFIG_SCHED_SMT
7595 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007596#elif defined(CONFIG_SCHED_MC)
7597 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007598#else
7599 sd = &per_cpu(phys_domains, i);
7600#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007601 cpu_attach_domain(sd, rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007602 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007603
Mike Travis7c16ec52008-04-04 18:11:11 -07007604 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007605 return 0;
7606
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007607#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007608error:
Mike Travis7c16ec52008-04-04 18:11:11 -07007609 free_sched_groups(cpu_map, tmpmask);
7610 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007611 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007612#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007613}
Paul Jackson029190c2007-10-18 23:40:20 -07007614
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007615static int build_sched_domains(const cpumask_t *cpu_map)
7616{
7617 return __build_sched_domains(cpu_map, NULL);
7618}
7619
Paul Jackson029190c2007-10-18 23:40:20 -07007620static cpumask_t *doms_cur; /* current sched domains */
7621static int ndoms_cur; /* number of sched domains in 'doms_cur' */
Ingo Molnar4285f5942008-05-16 17:47:14 +02007622static struct sched_domain_attr *dattr_cur;
7623 /* attribues of custom domains in 'doms_cur' */
Paul Jackson029190c2007-10-18 23:40:20 -07007624
7625/*
7626 * Special case: If a kmalloc of a doms_cur partition (array of
7627 * cpumask_t) fails, then fallback to a single sched domain,
7628 * as determined by the single cpumask_t fallback_doms.
7629 */
7630static cpumask_t fallback_doms;
7631
Heiko Carstens22e52b02008-03-12 18:31:59 +01007632void __attribute__((weak)) arch_update_cpu_topology(void)
7633{
7634}
7635
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007636/*
Max Krasnyansky5c8e1ed2008-05-29 11:17:01 -07007637 * Free current domain masks.
7638 * Called after all cpus are attached to NULL domain.
7639 */
7640static void free_sched_domains(void)
7641{
7642 ndoms_cur = 0;
7643 if (doms_cur != &fallback_doms)
7644 kfree(doms_cur);
7645 doms_cur = &fallback_doms;
7646}
7647
7648/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007649 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07007650 * For now this just excludes isolated cpus, but could be used to
7651 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007652 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007653static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007654{
Milton Miller73785472007-10-24 18:23:48 +02007655 int err;
7656
Heiko Carstens22e52b02008-03-12 18:31:59 +01007657 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07007658 ndoms_cur = 1;
7659 doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
7660 if (!doms_cur)
7661 doms_cur = &fallback_doms;
7662 cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007663 dattr_cur = NULL;
Milton Miller73785472007-10-24 18:23:48 +02007664 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02007665 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02007666
7667 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007668}
7669
Mike Travis7c16ec52008-04-04 18:11:11 -07007670static void arch_destroy_sched_domains(const cpumask_t *cpu_map,
7671 cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007672{
Mike Travis7c16ec52008-04-04 18:11:11 -07007673 free_sched_groups(cpu_map, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007674}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007675
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007676/*
7677 * Detach sched domains from a group of cpus specified in cpu_map
7678 * These cpus will now be attached to the NULL domain
7679 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08007680static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007681{
Mike Travis7c16ec52008-04-04 18:11:11 -07007682 cpumask_t tmpmask;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007683 int i;
7684
Milton Miller6382bc92007-10-15 17:00:19 +02007685 unregister_sched_domain_sysctl();
7686
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007687 for_each_cpu_mask(i, *cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01007688 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007689 synchronize_sched();
Mike Travis7c16ec52008-04-04 18:11:11 -07007690 arch_destroy_sched_domains(cpu_map, &tmpmask);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007691}
7692
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007693/* handle null as "default" */
7694static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
7695 struct sched_domain_attr *new, int idx_new)
7696{
7697 struct sched_domain_attr tmp;
7698
7699 /* fast path */
7700 if (!new && !cur)
7701 return 1;
7702
7703 tmp = SD_ATTR_INIT;
7704 return !memcmp(cur ? (cur + idx_cur) : &tmp,
7705 new ? (new + idx_new) : &tmp,
7706 sizeof(struct sched_domain_attr));
7707}
7708
Paul Jackson029190c2007-10-18 23:40:20 -07007709/*
7710 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007711 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07007712 * doms_new[] to the current sched domain partitioning, doms_cur[].
7713 * It destroys each deleted domain and builds each new domain.
7714 *
7715 * 'doms_new' is an array of cpumask_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007716 * The masks don't intersect (don't overlap.) We should setup one
7717 * sched domain for each mask. CPUs not in any of the cpumasks will
7718 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07007719 * current 'doms_cur' domains and in the new 'doms_new', we can leave
7720 * it as it is.
7721 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007722 * The passed in 'doms_new' should be kmalloc'd. This routine takes
7723 * ownership of it and will kfree it when done with it. If the caller
Paul Jackson029190c2007-10-18 23:40:20 -07007724 * failed the kmalloc call, then it can pass in doms_new == NULL,
7725 * and partition_sched_domains() will fallback to the single partition
7726 * 'fallback_doms'.
7727 *
7728 * Call with hotplug lock held
7729 */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007730void partition_sched_domains(int ndoms_new, cpumask_t *doms_new,
7731 struct sched_domain_attr *dattr_new)
Paul Jackson029190c2007-10-18 23:40:20 -07007732{
7733 int i, j;
7734
Heiko Carstens712555e2008-04-28 11:33:07 +02007735 mutex_lock(&sched_domains_mutex);
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007736
Milton Miller73785472007-10-24 18:23:48 +02007737 /* always unregister in case we don't destroy any domains */
7738 unregister_sched_domain_sysctl();
7739
Paul Jackson029190c2007-10-18 23:40:20 -07007740 if (doms_new == NULL) {
7741 ndoms_new = 1;
7742 doms_new = &fallback_doms;
7743 cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007744 dattr_new = NULL;
Paul Jackson029190c2007-10-18 23:40:20 -07007745 }
7746
7747 /* Destroy deleted domains */
7748 for (i = 0; i < ndoms_cur; i++) {
7749 for (j = 0; j < ndoms_new; j++) {
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007750 if (cpus_equal(doms_cur[i], doms_new[j])
7751 && dattrs_equal(dattr_cur, i, dattr_new, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007752 goto match1;
7753 }
7754 /* no match - a current sched domain not in new doms_new[] */
7755 detach_destroy_domains(doms_cur + i);
7756match1:
7757 ;
7758 }
7759
7760 /* Build new domains */
7761 for (i = 0; i < ndoms_new; i++) {
7762 for (j = 0; j < ndoms_cur; j++) {
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007763 if (cpus_equal(doms_new[i], doms_cur[j])
7764 && dattrs_equal(dattr_new, i, dattr_cur, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007765 goto match2;
7766 }
7767 /* no match - add a new doms_new */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007768 __build_sched_domains(doms_new + i,
7769 dattr_new ? dattr_new + i : NULL);
Paul Jackson029190c2007-10-18 23:40:20 -07007770match2:
7771 ;
7772 }
7773
7774 /* Remember the new sched domains */
7775 if (doms_cur != &fallback_doms)
7776 kfree(doms_cur);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007777 kfree(dattr_cur); /* kfree(NULL) is safe */
Paul Jackson029190c2007-10-18 23:40:20 -07007778 doms_cur = doms_new;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007779 dattr_cur = dattr_new;
Paul Jackson029190c2007-10-18 23:40:20 -07007780 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02007781
7782 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007783
Heiko Carstens712555e2008-04-28 11:33:07 +02007784 mutex_unlock(&sched_domains_mutex);
Paul Jackson029190c2007-10-18 23:40:20 -07007785}
7786
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007787#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Heiko Carstens9aefd0a2008-03-12 18:31:58 +01007788int arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007789{
7790 int err;
7791
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007792 get_online_cpus();
Heiko Carstens712555e2008-04-28 11:33:07 +02007793 mutex_lock(&sched_domains_mutex);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007794 detach_destroy_domains(&cpu_online_map);
Max Krasnyansky5c8e1ed2008-05-29 11:17:01 -07007795 free_sched_domains();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007796 err = arch_init_sched_domains(&cpu_online_map);
Heiko Carstens712555e2008-04-28 11:33:07 +02007797 mutex_unlock(&sched_domains_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007798 put_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007799
7800 return err;
7801}
7802
7803static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
7804{
7805 int ret;
7806
7807 if (buf[0] != '0' && buf[0] != '1')
7808 return -EINVAL;
7809
7810 if (smt)
7811 sched_smt_power_savings = (buf[0] == '1');
7812 else
7813 sched_mc_power_savings = (buf[0] == '1');
7814
7815 ret = arch_reinit_sched_domains();
7816
7817 return ret ? ret : count;
7818}
7819
Adrian Bunk6707de002007-08-12 18:08:19 +02007820#ifdef CONFIG_SCHED_MC
7821static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
7822{
7823 return sprintf(page, "%u\n", sched_mc_power_savings);
7824}
7825static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
7826 const char *buf, size_t count)
7827{
7828 return sched_power_savings_store(buf, count, 0);
7829}
7830static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
7831 sched_mc_power_savings_store);
7832#endif
7833
7834#ifdef CONFIG_SCHED_SMT
7835static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
7836{
7837 return sprintf(page, "%u\n", sched_smt_power_savings);
7838}
7839static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
7840 const char *buf, size_t count)
7841{
7842 return sched_power_savings_store(buf, count, 1);
7843}
7844static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
7845 sched_smt_power_savings_store);
7846#endif
7847
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007848int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
7849{
7850 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007851
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007852#ifdef CONFIG_SCHED_SMT
7853 if (smt_capable())
7854 err = sysfs_create_file(&cls->kset.kobj,
7855 &attr_sched_smt_power_savings.attr);
7856#endif
7857#ifdef CONFIG_SCHED_MC
7858 if (!err && mc_capable())
7859 err = sysfs_create_file(&cls->kset.kobj,
7860 &attr_sched_mc_power_savings.attr);
7861#endif
7862 return err;
7863}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007864#endif /* CONFIG_SCHED_MC || CONFIG_SCHED_SMT */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007865
Linus Torvalds1da177e2005-04-16 15:20:36 -07007866/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007867 * Force a reinitialization of the sched domains hierarchy. The domains
Linus Torvalds1da177e2005-04-16 15:20:36 -07007868 * and groups cannot be updated in place without racing with the balancing
Nick Piggin41c7ce92005-06-25 14:57:24 -07007869 * code, so we temporarily attach all running cpus to the NULL domain
Linus Torvalds1da177e2005-04-16 15:20:36 -07007870 * which will prevent rebalancing while the sched domains are recalculated.
7871 */
7872static int update_sched_domains(struct notifier_block *nfb,
7873 unsigned long action, void *hcpu)
7874{
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007875 int cpu = (int)(long)hcpu;
7876
Linus Torvalds1da177e2005-04-16 15:20:36 -07007877 switch (action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007878 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007879 case CPU_DOWN_PREPARE_FROZEN:
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007880 disable_runtime(cpu_rq(cpu));
7881 /* fall-through */
7882 case CPU_UP_PREPARE:
7883 case CPU_UP_PREPARE_FROZEN:
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007884 detach_destroy_domains(&cpu_online_map);
Max Krasnyansky5c8e1ed2008-05-29 11:17:01 -07007885 free_sched_domains();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007886 return NOTIFY_OK;
7887
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007888
Linus Torvalds1da177e2005-04-16 15:20:36 -07007889 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007890 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007891 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007892 case CPU_ONLINE_FROZEN:
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007893 enable_runtime(cpu_rq(cpu));
7894 /* fall-through */
7895 case CPU_UP_CANCELED:
7896 case CPU_UP_CANCELED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007897 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007898 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007899 /*
7900 * Fall through and re-initialise the domains.
7901 */
7902 break;
7903 default:
7904 return NOTIFY_DONE;
7905 }
7906
Max Krasnyansky5c8e1ed2008-05-29 11:17:01 -07007907#ifndef CONFIG_CPUSETS
7908 /*
7909 * Create default domain partitioning if cpusets are disabled.
7910 * Otherwise we let cpusets rebuild the domains based on the
7911 * current setup.
7912 */
7913
Linus Torvalds1da177e2005-04-16 15:20:36 -07007914 /* The hotplug lock is already held by cpu_up/cpu_down */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007915 arch_init_sched_domains(&cpu_online_map);
Max Krasnyansky5c8e1ed2008-05-29 11:17:01 -07007916#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007917
7918 return NOTIFY_OK;
7919}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007920
7921void __init sched_init_smp(void)
7922{
Nick Piggin5c1e1762006-10-03 01:14:04 -07007923 cpumask_t non_isolated_cpus;
7924
Mike Travis434d53b2008-04-04 18:11:04 -07007925#if defined(CONFIG_NUMA)
7926 sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **),
7927 GFP_KERNEL);
7928 BUG_ON(sched_group_nodes_bycpu == NULL);
7929#endif
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007930 get_online_cpus();
Heiko Carstens712555e2008-04-28 11:33:07 +02007931 mutex_lock(&sched_domains_mutex);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007932 arch_init_sched_domains(&cpu_online_map);
Nathan Lynche5e56732007-01-10 23:15:28 -08007933 cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007934 if (cpus_empty(non_isolated_cpus))
7935 cpu_set(smp_processor_id(), non_isolated_cpus);
Heiko Carstens712555e2008-04-28 11:33:07 +02007936 mutex_unlock(&sched_domains_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007937 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007938 /* XXX: Theoretical race here - CPU may be hotplugged now */
7939 hotcpu_notifier(update_sched_domains, 0);
Peter Zijlstrab328ca12008-04-29 10:02:46 +02007940 init_hrtick();
Nick Piggin5c1e1762006-10-03 01:14:04 -07007941
7942 /* Move init over to a non-isolated CPU */
Mike Travis7c16ec52008-04-04 18:11:11 -07007943 if (set_cpus_allowed_ptr(current, &non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07007944 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01007945 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007946}
7947#else
7948void __init sched_init_smp(void)
7949{
Ingo Molnar19978ca2007-11-09 22:39:38 +01007950 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007951}
7952#endif /* CONFIG_SMP */
7953
7954int in_sched_functions(unsigned long addr)
7955{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007956 return in_lock_functions(addr) ||
7957 (addr >= (unsigned long)__sched_text_start
7958 && addr < (unsigned long)__sched_text_end);
7959}
7960
Alexey Dobriyana9957442007-10-15 17:00:13 +02007961static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02007962{
7963 cfs_rq->tasks_timeline = RB_ROOT;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02007964 INIT_LIST_HEAD(&cfs_rq->tasks);
Ingo Molnardd41f592007-07-09 18:51:59 +02007965#ifdef CONFIG_FAIR_GROUP_SCHED
7966 cfs_rq->rq = rq;
7967#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02007968 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02007969}
7970
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007971static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
7972{
7973 struct rt_prio_array *array;
7974 int i;
7975
7976 array = &rt_rq->active;
7977 for (i = 0; i < MAX_RT_PRIO; i++) {
Dmitry Adamushko20b63312008-06-11 00:58:30 +02007978 INIT_LIST_HEAD(array->queue + i);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007979 __clear_bit(i, array->bitmap);
7980 }
7981 /* delimiter for bitsearch: */
7982 __set_bit(MAX_RT_PRIO, array->bitmap);
7983
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007984#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra48d5e252008-01-25 21:08:31 +01007985 rt_rq->highest_prio = MAX_RT_PRIO;
7986#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007987#ifdef CONFIG_SMP
7988 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007989 rt_rq->overloaded = 0;
7990#endif
7991
7992 rt_rq->rt_time = 0;
7993 rt_rq->rt_throttled = 0;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007994 rt_rq->rt_runtime = 0;
7995 spin_lock_init(&rt_rq->rt_runtime_lock);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007996
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007997#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01007998 rt_rq->rt_nr_boosted = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007999 rt_rq->rq = rq;
8000#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008001}
8002
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008003#ifdef CONFIG_FAIR_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008004static void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq,
8005 struct sched_entity *se, int cpu, int add,
8006 struct sched_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008007{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008008 struct rq *rq = cpu_rq(cpu);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008009 tg->cfs_rq[cpu] = cfs_rq;
8010 init_cfs_rq(cfs_rq, rq);
8011 cfs_rq->tg = tg;
8012 if (add)
8013 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
8014
8015 tg->se[cpu] = se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02008016 /* se could be NULL for init_task_group */
8017 if (!se)
8018 return;
8019
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008020 if (!parent)
8021 se->cfs_rq = &rq->cfs;
8022 else
8023 se->cfs_rq = parent->my_q;
8024
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008025 se->my_q = cfs_rq;
8026 se->load.weight = tg->shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02008027 se->load.inv_weight = 0;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008028 se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008029}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008030#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008031
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008032#ifdef CONFIG_RT_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008033static void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq,
8034 struct sched_rt_entity *rt_se, int cpu, int add,
8035 struct sched_rt_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008036{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008037 struct rq *rq = cpu_rq(cpu);
8038
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008039 tg->rt_rq[cpu] = rt_rq;
8040 init_rt_rq(rt_rq, rq);
8041 rt_rq->tg = tg;
8042 rt_rq->rt_se = rt_se;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008043 rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008044 if (add)
8045 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
8046
8047 tg->rt_se[cpu] = rt_se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02008048 if (!rt_se)
8049 return;
8050
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008051 if (!parent)
8052 rt_se->rt_rq = &rq->rt;
8053 else
8054 rt_se->rt_rq = parent->my_q;
8055
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008056 rt_se->my_q = rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008057 rt_se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008058 INIT_LIST_HEAD(&rt_se->run_list);
8059}
8060#endif
8061
Linus Torvalds1da177e2005-04-16 15:20:36 -07008062void __init sched_init(void)
8063{
Ingo Molnardd41f592007-07-09 18:51:59 +02008064 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07008065 unsigned long alloc_size = 0, ptr;
8066
8067#ifdef CONFIG_FAIR_GROUP_SCHED
8068 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
8069#endif
8070#ifdef CONFIG_RT_GROUP_SCHED
8071 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
8072#endif
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008073#ifdef CONFIG_USER_SCHED
8074 alloc_size *= 2;
8075#endif
Mike Travis434d53b2008-04-04 18:11:04 -07008076 /*
8077 * As sched_init() is called before page_alloc is setup,
8078 * we use alloc_bootmem().
8079 */
8080 if (alloc_size) {
David Miller5a9d3222008-04-24 20:46:20 -07008081 ptr = (unsigned long)alloc_bootmem(alloc_size);
Mike Travis434d53b2008-04-04 18:11:04 -07008082
8083#ifdef CONFIG_FAIR_GROUP_SCHED
8084 init_task_group.se = (struct sched_entity **)ptr;
8085 ptr += nr_cpu_ids * sizeof(void **);
8086
8087 init_task_group.cfs_rq = (struct cfs_rq **)ptr;
8088 ptr += nr_cpu_ids * sizeof(void **);
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008089
8090#ifdef CONFIG_USER_SCHED
8091 root_task_group.se = (struct sched_entity **)ptr;
8092 ptr += nr_cpu_ids * sizeof(void **);
8093
8094 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
8095 ptr += nr_cpu_ids * sizeof(void **);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008096#endif /* CONFIG_USER_SCHED */
8097#endif /* CONFIG_FAIR_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07008098#ifdef CONFIG_RT_GROUP_SCHED
8099 init_task_group.rt_se = (struct sched_rt_entity **)ptr;
8100 ptr += nr_cpu_ids * sizeof(void **);
8101
8102 init_task_group.rt_rq = (struct rt_rq **)ptr;
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008103 ptr += nr_cpu_ids * sizeof(void **);
8104
8105#ifdef CONFIG_USER_SCHED
8106 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
8107 ptr += nr_cpu_ids * sizeof(void **);
8108
8109 root_task_group.rt_rq = (struct rt_rq **)ptr;
8110 ptr += nr_cpu_ids * sizeof(void **);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008111#endif /* CONFIG_USER_SCHED */
8112#endif /* CONFIG_RT_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07008113 }
Ingo Molnardd41f592007-07-09 18:51:59 +02008114
Gregory Haskins57d885f2008-01-25 21:08:18 +01008115#ifdef CONFIG_SMP
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008116 init_aggregate();
Gregory Haskins57d885f2008-01-25 21:08:18 +01008117 init_defrootdomain();
8118#endif
8119
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008120 init_rt_bandwidth(&def_rt_bandwidth,
8121 global_rt_period(), global_rt_runtime());
8122
8123#ifdef CONFIG_RT_GROUP_SCHED
8124 init_rt_bandwidth(&init_task_group.rt_bandwidth,
8125 global_rt_period(), global_rt_runtime());
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008126#ifdef CONFIG_USER_SCHED
8127 init_rt_bandwidth(&root_task_group.rt_bandwidth,
8128 global_rt_period(), RUNTIME_INF);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008129#endif /* CONFIG_USER_SCHED */
8130#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008131
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008132#ifdef CONFIG_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008133 list_add(&init_task_group.list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008134 INIT_LIST_HEAD(&init_task_group.children);
8135
8136#ifdef CONFIG_USER_SCHED
8137 INIT_LIST_HEAD(&root_task_group.children);
8138 init_task_group.parent = &root_task_group;
8139 list_add(&init_task_group.siblings, &root_task_group.children);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008140#endif /* CONFIG_USER_SCHED */
8141#endif /* CONFIG_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008142
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08008143 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07008144 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008145
8146 rq = cpu_rq(i);
8147 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07008148 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07008149 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008150 init_cfs_rq(&rq->cfs, rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008151 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008152#ifdef CONFIG_FAIR_GROUP_SCHED
8153 init_task_group.shares = init_task_group_load;
8154 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008155#ifdef CONFIG_CGROUP_SCHED
8156 /*
8157 * How much cpu bandwidth does init_task_group get?
8158 *
8159 * In case of task-groups formed thr' the cgroup filesystem, it
8160 * gets 100% of the cpu resources in the system. This overall
8161 * system cpu resource is divided among the tasks of
8162 * init_task_group and its child task-groups in a fair manner,
8163 * based on each entity's (task or task-group's) weight
8164 * (se->load.weight).
8165 *
8166 * In other words, if init_task_group has 10 tasks of weight
8167 * 1024) and two child groups A0 and A1 (of weight 1024 each),
8168 * then A0's share of the cpu resource is:
8169 *
8170 * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
8171 *
8172 * We achieve this by letting init_task_group's tasks sit
8173 * directly in rq->cfs (i.e init_task_group->se[] = NULL).
8174 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008175 init_tg_cfs_entry(&init_task_group, &rq->cfs, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008176#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008177 root_task_group.shares = NICE_0_LOAD;
8178 init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, 0, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008179 /*
8180 * In case of task-groups formed thr' the user id of tasks,
8181 * init_task_group represents tasks belonging to root user.
8182 * Hence it forms a sibling of all subsequent groups formed.
8183 * In this case, init_task_group gets only a fraction of overall
8184 * system cpu resource, based on the weight assigned to root
8185 * user's cpu share (INIT_TASK_GROUP_LOAD). This is accomplished
8186 * by letting tasks of init_task_group sit in a separate cfs_rq
8187 * (init_cfs_rq) and having one entity represent this group of
8188 * tasks in rq->cfs (i.e init_task_group->se[] != NULL).
8189 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008190 init_tg_cfs_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008191 &per_cpu(init_cfs_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008192 &per_cpu(init_sched_entity, i), i, 1,
8193 root_task_group.se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008194
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008195#endif
Dhaval Giani354d60c2008-04-19 19:44:59 +02008196#endif /* CONFIG_FAIR_GROUP_SCHED */
8197
8198 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008199#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008200 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008201#ifdef CONFIG_CGROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008202 init_tg_rt_entry(&init_task_group, &rq->rt, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008203#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008204 init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, 0, NULL);
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008205 init_tg_rt_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008206 &per_cpu(init_rt_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008207 &per_cpu(init_sched_rt_entity, i), i, 1,
8208 root_task_group.rt_se[i]);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008209#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008210#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07008211
Ingo Molnardd41f592007-07-09 18:51:59 +02008212 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
8213 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008214#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07008215 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01008216 rq->rd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008217 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008218 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008219 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07008220 rq->cpu = i;
Gregory Haskins1f11eb62008-06-04 15:04:05 -04008221 rq->online = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008222 rq->migration_thread = NULL;
8223 INIT_LIST_HEAD(&rq->migration_queue);
Gregory Haskinsdc938522008-01-25 21:08:26 +01008224 rq_attach_root(rq, &def_root_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008225#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01008226 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008227 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008228 }
8229
Peter Williams2dd73a42006-06-27 02:54:34 -07008230 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008231
Avi Kivitye107be32007-07-26 13:40:43 +02008232#ifdef CONFIG_PREEMPT_NOTIFIERS
8233 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
8234#endif
8235
Christoph Lameterc9819f42006-12-10 02:20:25 -08008236#ifdef CONFIG_SMP
8237 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL);
8238#endif
8239
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008240#ifdef CONFIG_RT_MUTEXES
8241 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
8242#endif
8243
Linus Torvalds1da177e2005-04-16 15:20:36 -07008244 /*
8245 * The boot idle thread does lazy MMU switching as well:
8246 */
8247 atomic_inc(&init_mm.mm_count);
8248 enter_lazy_tlb(&init_mm, current);
8249
8250 /*
8251 * Make us the idle thread. Technically, schedule() should not be
8252 * called from this thread, however somewhere below it might be,
8253 * but because we are the idle thread, we just pick up running again
8254 * when this runqueue becomes "idle".
8255 */
8256 init_idle(current, smp_processor_id());
Ingo Molnardd41f592007-07-09 18:51:59 +02008257 /*
8258 * During early bootup we pretend to be a normal task:
8259 */
8260 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01008261
8262 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008263}
8264
8265#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
8266void __might_sleep(char *file, int line)
8267{
Ingo Molnar48f24c42006-07-03 00:25:40 -07008268#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07008269 static unsigned long prev_jiffy; /* ratelimiting */
8270
8271 if ((in_atomic() || irqs_disabled()) &&
8272 system_state == SYSTEM_RUNNING && !oops_in_progress) {
8273 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
8274 return;
8275 prev_jiffy = jiffies;
Ingo Molnar91368d72006-03-23 03:00:54 -08008276 printk(KERN_ERR "BUG: sleeping function called from invalid"
Linus Torvalds1da177e2005-04-16 15:20:36 -07008277 " context at %s:%d\n", file, line);
8278 printk("in_atomic():%d, irqs_disabled():%d\n",
8279 in_atomic(), irqs_disabled());
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08008280 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08008281 if (irqs_disabled())
8282 print_irqtrace_events(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008283 dump_stack();
8284 }
8285#endif
8286}
8287EXPORT_SYMBOL(__might_sleep);
8288#endif
8289
8290#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008291static void normalize_task(struct rq *rq, struct task_struct *p)
8292{
8293 int on_rq;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02008294
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008295 update_rq_clock(rq);
8296 on_rq = p->se.on_rq;
8297 if (on_rq)
8298 deactivate_task(rq, p, 0);
8299 __setscheduler(rq, p, SCHED_NORMAL, 0);
8300 if (on_rq) {
8301 activate_task(rq, p, 0);
8302 resched_task(rq->curr);
8303 }
8304}
8305
Linus Torvalds1da177e2005-04-16 15:20:36 -07008306void normalize_rt_tasks(void)
8307{
Ingo Molnara0f98a12007-06-17 18:37:45 +02008308 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008309 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07008310 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008311
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008312 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008313 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02008314 /*
8315 * Only normalize user tasks:
8316 */
8317 if (!p->mm)
8318 continue;
8319
Ingo Molnardd41f592007-07-09 18:51:59 +02008320 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008321#ifdef CONFIG_SCHEDSTATS
8322 p->se.wait_start = 0;
8323 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008324 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008325#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02008326
8327 if (!rt_task(p)) {
8328 /*
8329 * Renice negative nice level userspace
8330 * tasks back to 0:
8331 */
8332 if (TASK_NICE(p) < 0 && p->mm)
8333 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008334 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02008335 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008336
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008337 spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07008338 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008339
Ingo Molnar178be792007-10-15 17:00:18 +02008340 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008341
Ingo Molnarb29739f2006-06-27 02:54:51 -07008342 __task_rq_unlock(rq);
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008343 spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008344 } while_each_thread(g, p);
8345
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008346 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008347}
8348
8349#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07008350
8351#ifdef CONFIG_IA64
8352/*
8353 * These functions are only useful for the IA64 MCA handling.
8354 *
8355 * They can only be called when the whole system has been
8356 * stopped - every CPU needs to be quiescent, and no scheduling
8357 * activity can take place. Using them for anything else would
8358 * be a serious bug, and as a result, they aren't even visible
8359 * under any other configuration.
8360 */
8361
8362/**
8363 * curr_task - return the current task for a given cpu.
8364 * @cpu: the processor in question.
8365 *
8366 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8367 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008368struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008369{
8370 return cpu_curr(cpu);
8371}
8372
8373/**
8374 * set_curr_task - set the current task for a given cpu.
8375 * @cpu: the processor in question.
8376 * @p: the task pointer to set.
8377 *
8378 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008379 * are serviced on a separate stack. It allows the architecture to switch the
8380 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07008381 * must be called with all CPU's synchronized, and interrupts disabled, the
8382 * and caller must save the original value of the current task (see
8383 * curr_task() above) and restore that value before reenabling interrupts and
8384 * re-starting the system.
8385 *
8386 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8387 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008388void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008389{
8390 cpu_curr(cpu) = p;
8391}
8392
8393#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008394
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008395#ifdef CONFIG_FAIR_GROUP_SCHED
8396static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008397{
8398 int i;
8399
8400 for_each_possible_cpu(i) {
8401 if (tg->cfs_rq)
8402 kfree(tg->cfs_rq[i]);
8403 if (tg->se)
8404 kfree(tg->se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008405 }
8406
8407 kfree(tg->cfs_rq);
8408 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008409}
8410
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008411static
8412int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008413{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008414 struct cfs_rq *cfs_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008415 struct sched_entity *se, *parent_se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008416 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008417 int i;
8418
Mike Travis434d53b2008-04-04 18:11:04 -07008419 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008420 if (!tg->cfs_rq)
8421 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008422 tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008423 if (!tg->se)
8424 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008425
8426 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008427
8428 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008429 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008430
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008431 cfs_rq = kmalloc_node(sizeof(struct cfs_rq),
8432 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008433 if (!cfs_rq)
8434 goto err;
8435
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008436 se = kmalloc_node(sizeof(struct sched_entity),
8437 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008438 if (!se)
8439 goto err;
8440
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008441 parent_se = parent ? parent->se[i] : NULL;
8442 init_tg_cfs_entry(tg, cfs_rq, se, i, 0, parent_se);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008443 }
8444
8445 return 1;
8446
8447 err:
8448 return 0;
8449}
8450
8451static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8452{
8453 list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list,
8454 &cpu_rq(cpu)->leaf_cfs_rq_list);
8455}
8456
8457static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8458{
8459 list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list);
8460}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008461#else /* !CONFG_FAIR_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008462static inline void free_fair_sched_group(struct task_group *tg)
8463{
8464}
8465
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008466static inline
8467int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008468{
8469 return 1;
8470}
8471
8472static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8473{
8474}
8475
8476static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8477{
8478}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008479#endif /* CONFIG_FAIR_GROUP_SCHED */
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008480
8481#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008482static void free_rt_sched_group(struct task_group *tg)
8483{
8484 int i;
8485
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008486 destroy_rt_bandwidth(&tg->rt_bandwidth);
8487
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008488 for_each_possible_cpu(i) {
8489 if (tg->rt_rq)
8490 kfree(tg->rt_rq[i]);
8491 if (tg->rt_se)
8492 kfree(tg->rt_se[i]);
8493 }
8494
8495 kfree(tg->rt_rq);
8496 kfree(tg->rt_se);
8497}
8498
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008499static
8500int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008501{
8502 struct rt_rq *rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008503 struct sched_rt_entity *rt_se, *parent_se;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008504 struct rq *rq;
8505 int i;
8506
Mike Travis434d53b2008-04-04 18:11:04 -07008507 tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008508 if (!tg->rt_rq)
8509 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008510 tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008511 if (!tg->rt_se)
8512 goto err;
8513
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008514 init_rt_bandwidth(&tg->rt_bandwidth,
8515 ktime_to_ns(def_rt_bandwidth.rt_period), 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008516
8517 for_each_possible_cpu(i) {
8518 rq = cpu_rq(i);
8519
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008520 rt_rq = kmalloc_node(sizeof(struct rt_rq),
8521 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
8522 if (!rt_rq)
8523 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008524
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008525 rt_se = kmalloc_node(sizeof(struct sched_rt_entity),
8526 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
8527 if (!rt_se)
8528 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008529
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008530 parent_se = parent ? parent->rt_se[i] : NULL;
8531 init_tg_rt_entry(tg, rt_rq, rt_se, i, 0, parent_se);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008532 }
8533
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008534 return 1;
8535
8536 err:
8537 return 0;
8538}
8539
8540static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8541{
8542 list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list,
8543 &cpu_rq(cpu)->leaf_rt_rq_list);
8544}
8545
8546static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8547{
8548 list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list);
8549}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008550#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008551static inline void free_rt_sched_group(struct task_group *tg)
8552{
8553}
8554
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008555static inline
8556int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008557{
8558 return 1;
8559}
8560
8561static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8562{
8563}
8564
8565static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8566{
8567}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008568#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008569
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008570#ifdef CONFIG_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008571static void free_sched_group(struct task_group *tg)
8572{
8573 free_fair_sched_group(tg);
8574 free_rt_sched_group(tg);
8575 kfree(tg);
8576}
8577
8578/* allocate runqueue etc for a new task group */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008579struct task_group *sched_create_group(struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008580{
8581 struct task_group *tg;
8582 unsigned long flags;
8583 int i;
8584
8585 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
8586 if (!tg)
8587 return ERR_PTR(-ENOMEM);
8588
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008589 if (!alloc_fair_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008590 goto err;
8591
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008592 if (!alloc_rt_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008593 goto err;
8594
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008595 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008596 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008597 register_fair_sched_group(tg, i);
8598 register_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008599 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008600 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008601
8602 WARN_ON(!parent); /* root should already exist */
8603
8604 tg->parent = parent;
8605 list_add_rcu(&tg->siblings, &parent->children);
8606 INIT_LIST_HEAD(&tg->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008607 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008608
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008609 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008610
8611err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008612 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008613 return ERR_PTR(-ENOMEM);
8614}
8615
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008616/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008617static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008618{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008619 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008620 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008621}
8622
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008623/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008624void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008625{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008626 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008627 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008628
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008629 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008630 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008631 unregister_fair_sched_group(tg, i);
8632 unregister_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008633 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008634 list_del_rcu(&tg->list);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008635 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008636 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008637
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008638 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008639 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008640}
8641
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008642/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02008643 * The caller of this function should have put the task in its new group
8644 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
8645 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008646 */
8647void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008648{
8649 int on_rq, running;
8650 unsigned long flags;
8651 struct rq *rq;
8652
8653 rq = task_rq_lock(tsk, &flags);
8654
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008655 update_rq_clock(rq);
8656
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01008657 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008658 on_rq = tsk->se.on_rq;
8659
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008660 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008661 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008662 if (unlikely(running))
8663 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008664
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008665 set_task_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008666
Peter Zijlstra810b3812008-02-29 15:21:01 -05008667#ifdef CONFIG_FAIR_GROUP_SCHED
8668 if (tsk->sched_class->moved_group)
8669 tsk->sched_class->moved_group(tsk);
8670#endif
8671
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008672 if (unlikely(running))
8673 tsk->sched_class->set_curr_task(rq);
8674 if (on_rq)
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02008675 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008676
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008677 task_rq_unlock(rq, &flags);
8678}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008679#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008680
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008681#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008682static void __set_se_shares(struct sched_entity *se, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008683{
8684 struct cfs_rq *cfs_rq = se->cfs_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008685 int on_rq;
8686
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008687 on_rq = se->on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008688 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008689 dequeue_entity(cfs_rq, se, 0);
8690
8691 se->load.weight = shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02008692 se->load.inv_weight = 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008693
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008694 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008695 enqueue_entity(cfs_rq, se, 0);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008696}
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008697
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008698static void set_se_shares(struct sched_entity *se, unsigned long shares)
8699{
8700 struct cfs_rq *cfs_rq = se->cfs_rq;
8701 struct rq *rq = cfs_rq->rq;
8702 unsigned long flags;
8703
8704 spin_lock_irqsave(&rq->lock, flags);
8705 __set_se_shares(se, shares);
8706 spin_unlock_irqrestore(&rq->lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008707}
8708
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008709static DEFINE_MUTEX(shares_mutex);
8710
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008711int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008712{
8713 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008714 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +01008715
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008716 /*
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008717 * We can't change the weight of the root cgroup.
8718 */
8719 if (!tg->se[0])
8720 return -EINVAL;
8721
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008722 if (shares < MIN_SHARES)
8723 shares = MIN_SHARES;
Miao Xiecb4ad1f2008-04-28 12:54:56 +08008724 else if (shares > MAX_SHARES)
8725 shares = MAX_SHARES;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008726
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008727 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008728 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008729 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008730
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008731 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008732 for_each_possible_cpu(i)
8733 unregister_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008734 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008735 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008736
8737 /* wait for any ongoing reference to this group to finish */
8738 synchronize_sched();
8739
8740 /*
8741 * Now we are free to modify the group's share on each cpu
8742 * w/o tripping rebalance_share or load_balance_fair.
8743 */
8744 tg->shares = shares;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008745 for_each_possible_cpu(i) {
8746 /*
8747 * force a rebalance
8748 */
8749 cfs_rq_set_shares(tg->cfs_rq[i], 0);
Miao Xiecb4ad1f2008-04-28 12:54:56 +08008750 set_se_shares(tg->se[i], shares);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008751 }
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008752
8753 /*
8754 * Enable load balance activity on this group, by inserting it back on
8755 * each cpu's rq->leaf_cfs_rq_list.
8756 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008757 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008758 for_each_possible_cpu(i)
8759 register_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008760 list_add_rcu(&tg->siblings, &tg->parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008761 spin_unlock_irqrestore(&task_group_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008762done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008763 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008764 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008765}
8766
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008767unsigned long sched_group_shares(struct task_group *tg)
8768{
8769 return tg->shares;
8770}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008771#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008772
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008773#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008774/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008775 * Ensure that the real time constraints are schedulable.
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008776 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008777static DEFINE_MUTEX(rt_constraints_mutex);
8778
8779static unsigned long to_ratio(u64 period, u64 runtime)
8780{
8781 if (runtime == RUNTIME_INF)
8782 return 1ULL << 16;
8783
Roman Zippel6f6d6a12008-05-01 04:34:28 -07008784 return div64_u64(runtime << 16, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008785}
8786
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008787#ifdef CONFIG_CGROUP_SCHED
8788static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
8789{
Peter Zijlstra10b612f2008-06-19 14:22:27 +02008790 struct task_group *tgi, *parent = tg->parent;
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008791 unsigned long total = 0;
8792
8793 if (!parent) {
8794 if (global_rt_period() < period)
8795 return 0;
8796
8797 return to_ratio(period, runtime) <
8798 to_ratio(global_rt_period(), global_rt_runtime());
8799 }
8800
8801 if (ktime_to_ns(parent->rt_bandwidth.rt_period) < period)
8802 return 0;
8803
8804 rcu_read_lock();
8805 list_for_each_entry_rcu(tgi, &parent->children, siblings) {
8806 if (tgi == tg)
8807 continue;
8808
8809 total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period),
8810 tgi->rt_bandwidth.rt_runtime);
8811 }
8812 rcu_read_unlock();
8813
Peter Zijlstra10b612f2008-06-19 14:22:27 +02008814 return total + to_ratio(period, runtime) <=
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008815 to_ratio(ktime_to_ns(parent->rt_bandwidth.rt_period),
8816 parent->rt_bandwidth.rt_runtime);
8817}
8818#elif defined CONFIG_USER_SCHED
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008819static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008820{
8821 struct task_group *tgi;
8822 unsigned long total = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008823 unsigned long global_ratio =
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008824 to_ratio(global_rt_period(), global_rt_runtime());
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008825
8826 rcu_read_lock();
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008827 list_for_each_entry_rcu(tgi, &task_groups, list) {
8828 if (tgi == tg)
8829 continue;
8830
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008831 total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period),
8832 tgi->rt_bandwidth.rt_runtime);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008833 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008834 rcu_read_unlock();
8835
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008836 return total + to_ratio(period, runtime) < global_ratio;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008837}
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008838#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008839
Dhaval Giani521f1a242008-02-28 15:21:56 +05308840/* Must be called with tasklist_lock held */
8841static inline int tg_has_rt_tasks(struct task_group *tg)
8842{
8843 struct task_struct *g, *p;
8844 do_each_thread(g, p) {
8845 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
8846 return 1;
8847 } while_each_thread(g, p);
8848 return 0;
8849}
8850
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008851static int tg_set_bandwidth(struct task_group *tg,
8852 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008853{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008854 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008855
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008856 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05308857 read_lock(&tasklist_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008858 if (rt_runtime == 0 && tg_has_rt_tasks(tg)) {
Dhaval Giani521f1a242008-02-28 15:21:56 +05308859 err = -EBUSY;
8860 goto unlock;
8861 }
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008862 if (!__rt_schedulable(tg, rt_period, rt_runtime)) {
8863 err = -EINVAL;
8864 goto unlock;
8865 }
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008866
8867 spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008868 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
8869 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008870
8871 for_each_possible_cpu(i) {
8872 struct rt_rq *rt_rq = tg->rt_rq[i];
8873
8874 spin_lock(&rt_rq->rt_runtime_lock);
8875 rt_rq->rt_runtime = rt_runtime;
8876 spin_unlock(&rt_rq->rt_runtime_lock);
8877 }
8878 spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008879 unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05308880 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008881 mutex_unlock(&rt_constraints_mutex);
8882
8883 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008884}
8885
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008886int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
8887{
8888 u64 rt_runtime, rt_period;
8889
8890 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8891 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
8892 if (rt_runtime_us < 0)
8893 rt_runtime = RUNTIME_INF;
8894
8895 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8896}
8897
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008898long sched_group_rt_runtime(struct task_group *tg)
8899{
8900 u64 rt_runtime_us;
8901
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008902 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008903 return -1;
8904
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008905 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008906 do_div(rt_runtime_us, NSEC_PER_USEC);
8907 return rt_runtime_us;
8908}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008909
8910int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
8911{
8912 u64 rt_runtime, rt_period;
8913
8914 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
8915 rt_runtime = tg->rt_bandwidth.rt_runtime;
8916
8917 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8918}
8919
8920long sched_group_rt_period(struct task_group *tg)
8921{
8922 u64 rt_period_us;
8923
8924 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
8925 do_div(rt_period_us, NSEC_PER_USEC);
8926 return rt_period_us;
8927}
8928
8929static int sched_rt_global_constraints(void)
8930{
Peter Zijlstra10b612f2008-06-19 14:22:27 +02008931 struct task_group *tg = &root_task_group;
8932 u64 rt_runtime, rt_period;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008933 int ret = 0;
8934
Peter Zijlstra10b612f2008-06-19 14:22:27 +02008935 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8936 rt_runtime = tg->rt_bandwidth.rt_runtime;
8937
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008938 mutex_lock(&rt_constraints_mutex);
Peter Zijlstra10b612f2008-06-19 14:22:27 +02008939 if (!__rt_schedulable(tg, rt_period, rt_runtime))
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008940 ret = -EINVAL;
8941 mutex_unlock(&rt_constraints_mutex);
8942
8943 return ret;
8944}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008945#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008946static int sched_rt_global_constraints(void)
8947{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008948 unsigned long flags;
8949 int i;
8950
8951 spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
8952 for_each_possible_cpu(i) {
8953 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
8954
8955 spin_lock(&rt_rq->rt_runtime_lock);
8956 rt_rq->rt_runtime = global_rt_runtime();
8957 spin_unlock(&rt_rq->rt_runtime_lock);
8958 }
8959 spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
8960
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008961 return 0;
8962}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008963#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008964
8965int sched_rt_handler(struct ctl_table *table, int write,
8966 struct file *filp, void __user *buffer, size_t *lenp,
8967 loff_t *ppos)
8968{
8969 int ret;
8970 int old_period, old_runtime;
8971 static DEFINE_MUTEX(mutex);
8972
8973 mutex_lock(&mutex);
8974 old_period = sysctl_sched_rt_period;
8975 old_runtime = sysctl_sched_rt_runtime;
8976
8977 ret = proc_dointvec(table, write, filp, buffer, lenp, ppos);
8978
8979 if (!ret && write) {
8980 ret = sched_rt_global_constraints();
8981 if (ret) {
8982 sysctl_sched_rt_period = old_period;
8983 sysctl_sched_rt_runtime = old_runtime;
8984 } else {
8985 def_rt_bandwidth.rt_runtime = global_rt_runtime();
8986 def_rt_bandwidth.rt_period =
8987 ns_to_ktime(global_rt_period());
8988 }
8989 }
8990 mutex_unlock(&mutex);
8991
8992 return ret;
8993}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008994
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008995#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008996
8997/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008998static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008999{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009000 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
9001 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009002}
9003
9004static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02009005cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009006{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009007 struct task_group *tg, *parent;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009008
Paul Menage2b01dfe2007-10-24 18:23:50 +02009009 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009010 /* This is early initialization for the top cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02009011 init_task_group.css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009012 return &init_task_group.css;
9013 }
9014
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009015 parent = cgroup_tg(cgrp->parent);
9016 tg = sched_create_group(parent);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009017 if (IS_ERR(tg))
9018 return ERR_PTR(-ENOMEM);
9019
9020 /* Bind the cgroup to task_group object we just created */
Paul Menage2b01dfe2007-10-24 18:23:50 +02009021 tg->css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009022
9023 return &tg->css;
9024}
9025
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009026static void
9027cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009028{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009029 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009030
9031 sched_destroy_group(tg);
9032}
9033
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009034static int
9035cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
9036 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009037{
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009038#ifdef CONFIG_RT_GROUP_SCHED
9039 /* Don't accept realtime tasks when there is no way for them to run */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009040 if (rt_task(tsk) && cgroup_tg(cgrp)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009041 return -EINVAL;
9042#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009043 /* We don't support RT-tasks being in separate groups */
9044 if (tsk->sched_class != &fair_sched_class)
9045 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009046#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009047
9048 return 0;
9049}
9050
9051static void
Paul Menage2b01dfe2007-10-24 18:23:50 +02009052cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009053 struct cgroup *old_cont, struct task_struct *tsk)
9054{
9055 sched_move_task(tsk);
9056}
9057
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009058#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagef4c753b2008-04-29 00:59:56 -07009059static int cpu_shares_write_u64(struct cgroup *cgrp, struct cftype *cftype,
Paul Menage2b01dfe2007-10-24 18:23:50 +02009060 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009061{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009062 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009063}
9064
Paul Menagef4c753b2008-04-29 00:59:56 -07009065static u64 cpu_shares_read_u64(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009066{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009067 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009068
9069 return (u64) tg->shares;
9070}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009071#endif /* CONFIG_FAIR_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009072
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009073#ifdef CONFIG_RT_GROUP_SCHED
Mirco Tischler0c708142008-05-14 16:05:46 -07009074static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
Paul Menage06ecb272008-04-29 01:00:06 -07009075 s64 val)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009076{
Paul Menage06ecb272008-04-29 01:00:06 -07009077 return sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009078}
9079
Paul Menage06ecb272008-04-29 01:00:06 -07009080static s64 cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009081{
Paul Menage06ecb272008-04-29 01:00:06 -07009082 return sched_group_rt_runtime(cgroup_tg(cgrp));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009083}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009084
9085static int cpu_rt_period_write_uint(struct cgroup *cgrp, struct cftype *cftype,
9086 u64 rt_period_us)
9087{
9088 return sched_group_set_rt_period(cgroup_tg(cgrp), rt_period_us);
9089}
9090
9091static u64 cpu_rt_period_read_uint(struct cgroup *cgrp, struct cftype *cft)
9092{
9093 return sched_group_rt_period(cgroup_tg(cgrp));
9094}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009095#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009096
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009097static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009098#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009099 {
9100 .name = "shares",
Paul Menagef4c753b2008-04-29 00:59:56 -07009101 .read_u64 = cpu_shares_read_u64,
9102 .write_u64 = cpu_shares_write_u64,
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009103 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009104#endif
9105#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009106 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009107 .name = "rt_runtime_us",
Paul Menage06ecb272008-04-29 01:00:06 -07009108 .read_s64 = cpu_rt_runtime_read,
9109 .write_s64 = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009110 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009111 {
9112 .name = "rt_period_us",
Paul Menagef4c753b2008-04-29 00:59:56 -07009113 .read_u64 = cpu_rt_period_read_uint,
9114 .write_u64 = cpu_rt_period_write_uint,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009115 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009116#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009117};
9118
9119static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
9120{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009121 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009122}
9123
9124struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01009125 .name = "cpu",
9126 .create = cpu_cgroup_create,
9127 .destroy = cpu_cgroup_destroy,
9128 .can_attach = cpu_cgroup_can_attach,
9129 .attach = cpu_cgroup_attach,
9130 .populate = cpu_cgroup_populate,
9131 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009132 .early_init = 1,
9133};
9134
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009135#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009136
9137#ifdef CONFIG_CGROUP_CPUACCT
9138
9139/*
9140 * CPU accounting code for task groups.
9141 *
9142 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
9143 * (balbir@in.ibm.com).
9144 */
9145
9146/* track cpu usage of a group of tasks */
9147struct cpuacct {
9148 struct cgroup_subsys_state css;
9149 /* cpuusage holds pointer to a u64-type object on every cpu */
9150 u64 *cpuusage;
9151};
9152
9153struct cgroup_subsys cpuacct_subsys;
9154
9155/* return cpu accounting group corresponding to this container */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309156static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009157{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309158 return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id),
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009159 struct cpuacct, css);
9160}
9161
9162/* return cpu accounting group to which this task belongs */
9163static inline struct cpuacct *task_ca(struct task_struct *tsk)
9164{
9165 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
9166 struct cpuacct, css);
9167}
9168
9169/* create a new cpu accounting group */
9170static struct cgroup_subsys_state *cpuacct_create(
Dhaval Giani32cd7562008-02-29 10:02:43 +05309171 struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009172{
9173 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
9174
9175 if (!ca)
9176 return ERR_PTR(-ENOMEM);
9177
9178 ca->cpuusage = alloc_percpu(u64);
9179 if (!ca->cpuusage) {
9180 kfree(ca);
9181 return ERR_PTR(-ENOMEM);
9182 }
9183
9184 return &ca->css;
9185}
9186
9187/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009188static void
Dhaval Giani32cd7562008-02-29 10:02:43 +05309189cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009190{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309191 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009192
9193 free_percpu(ca->cpuusage);
9194 kfree(ca);
9195}
9196
9197/* return total cpu usage (in nanoseconds) of a group */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309198static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009199{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309200 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009201 u64 totalcpuusage = 0;
9202 int i;
9203
9204 for_each_possible_cpu(i) {
9205 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
9206
9207 /*
9208 * Take rq->lock to make 64-bit addition safe on 32-bit
9209 * platforms.
9210 */
9211 spin_lock_irq(&cpu_rq(i)->lock);
9212 totalcpuusage += *cpuusage;
9213 spin_unlock_irq(&cpu_rq(i)->lock);
9214 }
9215
9216 return totalcpuusage;
9217}
9218
Dhaval Giani0297b802008-02-29 10:02:44 +05309219static int cpuusage_write(struct cgroup *cgrp, struct cftype *cftype,
9220 u64 reset)
9221{
9222 struct cpuacct *ca = cgroup_ca(cgrp);
9223 int err = 0;
9224 int i;
9225
9226 if (reset) {
9227 err = -EINVAL;
9228 goto out;
9229 }
9230
9231 for_each_possible_cpu(i) {
9232 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
9233
9234 spin_lock_irq(&cpu_rq(i)->lock);
9235 *cpuusage = 0;
9236 spin_unlock_irq(&cpu_rq(i)->lock);
9237 }
9238out:
9239 return err;
9240}
9241
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009242static struct cftype files[] = {
9243 {
9244 .name = "usage",
Paul Menagef4c753b2008-04-29 00:59:56 -07009245 .read_u64 = cpuusage_read,
9246 .write_u64 = cpuusage_write,
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009247 },
9248};
9249
Dhaval Giani32cd7562008-02-29 10:02:43 +05309250static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009251{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309252 return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files));
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009253}
9254
9255/*
9256 * charge this task's execution time to its accounting group.
9257 *
9258 * called with rq->lock held.
9259 */
9260static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
9261{
9262 struct cpuacct *ca;
9263
9264 if (!cpuacct_subsys.active)
9265 return;
9266
9267 ca = task_ca(tsk);
9268 if (ca) {
9269 u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk));
9270
9271 *cpuusage += cputime;
9272 }
9273}
9274
9275struct cgroup_subsys cpuacct_subsys = {
9276 .name = "cpuacct",
9277 .create = cpuacct_create,
9278 .destroy = cpuacct_destroy,
9279 .populate = cpuacct_populate,
9280 .subsys_id = cpuacct_subsys_id,
9281};
9282#endif /* CONFIG_CGROUP_CPUACCT */