blob: 90329f1f8941762e99e89a5dac135ffce735f2d7 [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 */
Gregory Haskins45c01e82008-05-12 21:20:41 +0200156 struct list_head xqueue[MAX_RT_PRIO]; /* exclusive queue */
157 struct list_head squeue[MAX_RT_PRIO]; /* shared queue */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200158};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200160struct rt_bandwidth {
Ingo Molnarea736ed2008-03-25 13:51:45 +0100161 /* nests inside the rq lock: */
162 spinlock_t rt_runtime_lock;
163 ktime_t rt_period;
164 u64 rt_runtime;
165 struct hrtimer rt_period_timer;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200166};
167
168static struct rt_bandwidth def_rt_bandwidth;
169
170static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun);
171
172static enum hrtimer_restart sched_rt_period_timer(struct hrtimer *timer)
173{
174 struct rt_bandwidth *rt_b =
175 container_of(timer, struct rt_bandwidth, rt_period_timer);
176 ktime_t now;
177 int overrun;
178 int idle = 0;
179
180 for (;;) {
181 now = hrtimer_cb_get_time(timer);
182 overrun = hrtimer_forward(timer, now, rt_b->rt_period);
183
184 if (!overrun)
185 break;
186
187 idle = do_sched_rt_period_timer(rt_b, overrun);
188 }
189
190 return idle ? HRTIMER_NORESTART : HRTIMER_RESTART;
191}
192
193static
194void init_rt_bandwidth(struct rt_bandwidth *rt_b, u64 period, u64 runtime)
195{
196 rt_b->rt_period = ns_to_ktime(period);
197 rt_b->rt_runtime = runtime;
198
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200199 spin_lock_init(&rt_b->rt_runtime_lock);
200
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200201 hrtimer_init(&rt_b->rt_period_timer,
202 CLOCK_MONOTONIC, HRTIMER_MODE_REL);
203 rt_b->rt_period_timer.function = sched_rt_period_timer;
204 rt_b->rt_period_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
205}
206
207static void start_rt_bandwidth(struct rt_bandwidth *rt_b)
208{
209 ktime_t now;
210
211 if (rt_b->rt_runtime == RUNTIME_INF)
212 return;
213
214 if (hrtimer_active(&rt_b->rt_period_timer))
215 return;
216
217 spin_lock(&rt_b->rt_runtime_lock);
218 for (;;) {
219 if (hrtimer_active(&rt_b->rt_period_timer))
220 break;
221
222 now = hrtimer_cb_get_time(&rt_b->rt_period_timer);
223 hrtimer_forward(&rt_b->rt_period_timer, now, rt_b->rt_period);
224 hrtimer_start(&rt_b->rt_period_timer,
225 rt_b->rt_period_timer.expires,
226 HRTIMER_MODE_ABS);
227 }
228 spin_unlock(&rt_b->rt_runtime_lock);
229}
230
231#ifdef CONFIG_RT_GROUP_SCHED
232static void destroy_rt_bandwidth(struct rt_bandwidth *rt_b)
233{
234 hrtimer_cancel(&rt_b->rt_period_timer);
235}
236#endif
237
Heiko Carstens712555e2008-04-28 11:33:07 +0200238/*
239 * sched_domains_mutex serializes calls to arch_init_sched_domains,
240 * detach_destroy_domains and partition_sched_domains.
241 */
242static DEFINE_MUTEX(sched_domains_mutex);
243
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100244#ifdef CONFIG_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200245
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700246#include <linux/cgroup.h>
247
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200248struct cfs_rq;
249
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100250static LIST_HEAD(task_groups);
251
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200252/* task group related information */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200253struct task_group {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100254#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700255 struct cgroup_subsys_state css;
256#endif
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100257
258#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200259 /* schedulable entities of this group on each cpu */
260 struct sched_entity **se;
261 /* runqueue "owned" by this group on each cpu */
262 struct cfs_rq **cfs_rq;
263 unsigned long shares;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100264#endif
265
266#ifdef CONFIG_RT_GROUP_SCHED
267 struct sched_rt_entity **rt_se;
268 struct rt_rq **rt_rq;
269
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200270 struct rt_bandwidth rt_bandwidth;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100271#endif
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100272
Srivatsa Vaddagiriae8393e2007-10-29 21:18:11 +0100273 struct rcu_head rcu;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100274 struct list_head list;
Peter Zijlstraf473aa52008-04-19 19:45:00 +0200275
276 struct task_group *parent;
277 struct list_head siblings;
278 struct list_head children;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200279};
280
Dhaval Giani354d60c2008-04-19 19:44:59 +0200281#ifdef CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200282
283/*
284 * Root task group.
285 * Every UID task group (including init_task_group aka UID-0) will
286 * be a child to this group.
287 */
288struct task_group root_task_group;
289
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100290#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200291/* Default task group's sched entity on each cpu */
292static DEFINE_PER_CPU(struct sched_entity, init_sched_entity);
293/* Default task group's cfs_rq on each cpu */
294static DEFINE_PER_CPU(struct cfs_rq, init_cfs_rq) ____cacheline_aligned_in_smp;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100295#endif
296
297#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100298static DEFINE_PER_CPU(struct sched_rt_entity, init_sched_rt_entity);
299static DEFINE_PER_CPU(struct rt_rq, init_rt_rq) ____cacheline_aligned_in_smp;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100300#endif
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200301#else
302#define root_task_group init_task_group
Dhaval Giani354d60c2008-04-19 19:44:59 +0200303#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100304
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100305/* task_group_lock serializes add/remove of task groups and also changes to
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100306 * a task group's cpu shares.
307 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100308static DEFINE_SPINLOCK(task_group_lock);
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100309
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100310#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100311#ifdef CONFIG_USER_SCHED
Ingo Molnar0eab9142008-01-25 21:08:19 +0100312# define INIT_TASK_GROUP_LOAD (2*NICE_0_LOAD)
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200313#else
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100314# define INIT_TASK_GROUP_LOAD NICE_0_LOAD
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200315#endif
316
Miao Xiecb4ad1f2008-04-28 12:54:56 +0800317/*
318 * A weight of 0, 1 or ULONG_MAX can cause arithmetics problems.
319 * (The default weight is 1024 - so there's no practical
320 * limitation from this.)
321 */
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200322#define MIN_SHARES 2
Miao Xiecb4ad1f2008-04-28 12:54:56 +0800323#define MAX_SHARES (ULONG_MAX - 1)
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200324
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100325static int init_task_group_load = INIT_TASK_GROUP_LOAD;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100326#endif
327
328/* Default task group.
329 * Every task in system belong to this group at bootup.
330 */
Mike Travis434d53b2008-04-04 18:11:04 -0700331struct task_group init_task_group;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200332
333/* return group to which a task belongs */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200334static inline struct task_group *task_group(struct task_struct *p)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200335{
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200336 struct task_group *tg;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200337
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100338#ifdef CONFIG_USER_SCHED
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200339 tg = p->user->tg;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100340#elif defined(CONFIG_CGROUP_SCHED)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700341 tg = container_of(task_subsys_state(p, cpu_cgroup_subsys_id),
342 struct task_group, css);
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200343#else
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100344 tg = &init_task_group;
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200345#endif
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200346 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200347}
348
349/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100350static inline void set_task_rq(struct task_struct *p, unsigned int cpu)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200351{
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100352#ifdef CONFIG_FAIR_GROUP_SCHED
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +0100353 p->se.cfs_rq = task_group(p)->cfs_rq[cpu];
354 p->se.parent = task_group(p)->se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100355#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100356
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100357#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100358 p->rt.rt_rq = task_group(p)->rt_rq[cpu];
359 p->rt.parent = task_group(p)->rt_se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100360#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200361}
362
363#else
364
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100365static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200366
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100367#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200368
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200369/* CFS-related fields in a runqueue */
370struct cfs_rq {
371 struct load_weight load;
372 unsigned long nr_running;
373
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200374 u64 exec_clock;
Ingo Molnare9acbff2007-10-15 17:00:04 +0200375 u64 min_vruntime;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200376
377 struct rb_root tasks_timeline;
378 struct rb_node *rb_leftmost;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +0200379
380 struct list_head tasks;
381 struct list_head *balance_iterator;
382
383 /*
384 * 'curr' points to currently running entity on this cfs_rq.
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200385 * It is set to NULL otherwise (i.e when none are currently running).
386 */
Peter Zijlstraaa2ac252008-03-14 21:12:12 +0100387 struct sched_entity *curr, *next;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200388
389 unsigned long nr_spread_over;
390
Ingo Molnar62160e32007-10-15 17:00:03 +0200391#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200392 struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */
393
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100394 /*
395 * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200396 * a hierarchy). Non-leaf lrqs hold other higher schedulable entities
397 * (like users, containers etc.)
398 *
399 * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This
400 * list is used during load balance.
401 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100402 struct list_head leaf_cfs_rq_list;
403 struct task_group *tg; /* group that "owns" this runqueue */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200404#endif
405};
406
407/* Real-Time classes' related field in a runqueue: */
408struct rt_rq {
409 struct rt_prio_array active;
Steven Rostedt63489e42008-01-25 21:08:03 +0100410 unsigned long rt_nr_running;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100411#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100412 int highest_prio; /* highest queued rt task prio */
413#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100414#ifdef CONFIG_SMP
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100415 unsigned long rt_nr_migratory;
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100416 int overloaded;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100417#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100418 int rt_throttled;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100419 u64 rt_time;
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200420 u64 rt_runtime;
Ingo Molnarea736ed2008-03-25 13:51:45 +0100421 /* Nests inside the rq lock: */
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200422 spinlock_t rt_runtime_lock;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100423
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100424#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100425 unsigned long rt_nr_boosted;
426
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100427 struct rq *rq;
428 struct list_head leaf_rt_rq_list;
429 struct task_group *tg;
430 struct sched_rt_entity *rt_se;
431#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200432};
433
Gregory Haskins57d885f2008-01-25 21:08:18 +0100434#ifdef CONFIG_SMP
435
436/*
437 * We add the notion of a root-domain which will be used to define per-domain
Ingo Molnar0eab9142008-01-25 21:08:19 +0100438 * variables. Each exclusive cpuset essentially defines an island domain by
439 * fully partitioning the member cpus from any other cpuset. Whenever a new
Gregory Haskins57d885f2008-01-25 21:08:18 +0100440 * exclusive cpuset is created, we also create and attach a new root-domain
441 * object.
442 *
Gregory Haskins57d885f2008-01-25 21:08:18 +0100443 */
444struct root_domain {
445 atomic_t refcount;
446 cpumask_t span;
447 cpumask_t online;
Gregory Haskins637f5082008-01-25 21:08:18 +0100448
Ingo Molnar0eab9142008-01-25 21:08:19 +0100449 /*
Gregory Haskins637f5082008-01-25 21:08:18 +0100450 * The "RT overload" flag: it gets set if a CPU has more than
451 * one runnable RT task.
452 */
453 cpumask_t rto_mask;
Ingo Molnar0eab9142008-01-25 21:08:19 +0100454 atomic_t rto_count;
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200455#ifdef CONFIG_SMP
456 struct cpupri cpupri;
457#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +0100458};
459
Gregory Haskinsdc938522008-01-25 21:08:26 +0100460/*
461 * By default the system creates a single root-domain with all cpus as
462 * members (mimicking the global state we have today).
463 */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100464static struct root_domain def_root_domain;
465
466#endif
467
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200468/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 * This is the main, per-CPU runqueue data structure.
470 *
471 * Locking rule: those places that want to lock multiple runqueues
472 * (such as the load balancing or the thread migration code), lock
473 * acquire operations must be ordered by ascending &runqueue.
474 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700475struct rq {
Ingo Molnard8016492007-10-18 21:32:55 +0200476 /* runqueue lock: */
477 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 /*
480 * nr_running and cpu_load should be in the same cacheline because
481 * remote CPUs use both these fields when doing load calculation.
482 */
483 unsigned long nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200484 #define CPU_LOAD_IDX_MAX 5
485 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
Siddha, Suresh Bbdecea32007-05-08 00:32:48 -0700486 unsigned char idle_at_tick;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700487#ifdef CONFIG_NO_HZ
Guillaume Chazarain15934a32008-04-19 19:44:57 +0200488 unsigned long last_tick_seen;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700489 unsigned char in_nohz_recently;
490#endif
Ingo Molnard8016492007-10-18 21:32:55 +0200491 /* capture load from *all* tasks on this cpu: */
492 struct load_weight load;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200493 unsigned long nr_load_updates;
494 u64 nr_switches;
495
496 struct cfs_rq cfs;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100497 struct rt_rq rt;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100498
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200499#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnard8016492007-10-18 21:32:55 +0200500 /* list of leaf cfs_rq on this cpu: */
501 struct list_head leaf_cfs_rq_list;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100502#endif
503#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100504 struct list_head leaf_rt_rq_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 /*
508 * This is part of a global counter where only the total sum
509 * over all CPUs matters. A task can increase this counter on
510 * one CPU and if it got migrated afterwards it may decrease
511 * it on another CPU. Always updated under the runqueue lock:
512 */
513 unsigned long nr_uninterruptible;
514
Ingo Molnar36c8b582006-07-03 00:25:41 -0700515 struct task_struct *curr, *idle;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800516 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 struct mm_struct *prev_mm;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200518
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200519 u64 clock;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 atomic_t nr_iowait;
522
523#ifdef CONFIG_SMP
Ingo Molnar0eab9142008-01-25 21:08:19 +0100524 struct root_domain *rd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 struct sched_domain *sd;
526
527 /* For active balancing */
528 int active_balance;
529 int push_cpu;
Ingo Molnard8016492007-10-18 21:32:55 +0200530 /* cpu of this runqueue: */
531 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Ingo Molnar36c8b582006-07-03 00:25:41 -0700533 struct task_struct *migration_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 struct list_head migration_queue;
535#endif
536
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100537#ifdef CONFIG_SCHED_HRTICK
538 unsigned long hrtick_flags;
539 ktime_t hrtick_expire;
540 struct hrtimer hrtick_timer;
541#endif
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543#ifdef CONFIG_SCHEDSTATS
544 /* latency stats */
545 struct sched_info rq_sched_info;
546
547 /* sys_sched_yield() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200548 unsigned int yld_exp_empty;
549 unsigned int yld_act_empty;
550 unsigned int yld_both_empty;
551 unsigned int yld_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553 /* schedule() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200554 unsigned int sched_switch;
555 unsigned int sched_count;
556 unsigned int sched_goidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 /* try_to_wake_up() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200559 unsigned int ttwu_count;
560 unsigned int ttwu_local;
Ingo Molnarb8efb562007-10-15 17:00:10 +0200561
562 /* BKL stats */
Ken Chen480b9432007-10-18 21:32:56 +0200563 unsigned int bkl_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564#endif
Ingo Molnarfcb99372006-07-03 00:25:10 -0700565 struct lock_class_key rq_lock_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566};
567
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700568static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Ingo Molnardd41f592007-07-09 18:51:59 +0200570static inline void check_preempt_curr(struct rq *rq, struct task_struct *p)
571{
572 rq->curr->sched_class->check_preempt_curr(rq, p);
573}
574
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700575static inline int cpu_of(struct rq *rq)
576{
577#ifdef CONFIG_SMP
578 return rq->cpu;
579#else
580 return 0;
581#endif
582}
583
Ingo Molnar20d315d2007-07-09 18:51:58 +0200584/*
Nick Piggin674311d2005-06-25 14:57:27 -0700585 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700586 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700587 *
588 * The domain tree of any CPU may only be accessed from within
589 * preempt-disabled sections.
590 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700591#define for_each_domain(cpu, __sd) \
592 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
595#define this_rq() (&__get_cpu_var(runqueues))
596#define task_rq(p) cpu_rq(task_cpu(p))
597#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
598
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200599static inline void update_rq_clock(struct rq *rq)
600{
601 rq->clock = sched_clock_cpu(cpu_of(rq));
602}
603
Ingo Molnare436d802007-07-19 21:28:35 +0200604/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200605 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
606 */
607#ifdef CONFIG_SCHED_DEBUG
608# define const_debug __read_mostly
609#else
610# define const_debug static const
611#endif
612
613/*
614 * Debugging: various feature bits
615 */
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200616
617#define SCHED_FEAT(name, enabled) \
618 __SCHED_FEAT_##name ,
619
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200620enum {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200621#include "sched_features.h"
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200622};
623
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200624#undef SCHED_FEAT
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200625
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200626#define SCHED_FEAT(name, enabled) \
627 (1UL << __SCHED_FEAT_##name) * enabled |
628
629const_debug unsigned int sysctl_sched_features =
630#include "sched_features.h"
631 0;
632
633#undef SCHED_FEAT
634
635#ifdef CONFIG_SCHED_DEBUG
636#define SCHED_FEAT(name, enabled) \
637 #name ,
638
Harvey Harrison983ed7a2008-04-24 18:17:55 -0700639static __read_mostly char *sched_feat_names[] = {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200640#include "sched_features.h"
641 NULL
642};
643
644#undef SCHED_FEAT
645
Harvey Harrison983ed7a2008-04-24 18:17:55 -0700646static int sched_feat_open(struct inode *inode, struct file *filp)
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200647{
648 filp->private_data = inode->i_private;
649 return 0;
650}
651
652static ssize_t
653sched_feat_read(struct file *filp, char __user *ubuf,
654 size_t cnt, loff_t *ppos)
655{
656 char *buf;
657 int r = 0;
658 int len = 0;
659 int i;
660
661 for (i = 0; sched_feat_names[i]; i++) {
662 len += strlen(sched_feat_names[i]);
663 len += 4;
664 }
665
666 buf = kmalloc(len + 2, GFP_KERNEL);
667 if (!buf)
668 return -ENOMEM;
669
670 for (i = 0; sched_feat_names[i]; i++) {
671 if (sysctl_sched_features & (1UL << i))
672 r += sprintf(buf + r, "%s ", sched_feat_names[i]);
673 else
Ingo Molnarc24b7c52008-04-18 10:55:34 +0200674 r += sprintf(buf + r, "NO_%s ", sched_feat_names[i]);
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200675 }
676
677 r += sprintf(buf + r, "\n");
678 WARN_ON(r >= len + 2);
679
680 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
681
682 kfree(buf);
683
684 return r;
685}
686
687static ssize_t
688sched_feat_write(struct file *filp, const char __user *ubuf,
689 size_t cnt, loff_t *ppos)
690{
691 char buf[64];
692 char *cmp = buf;
693 int neg = 0;
694 int i;
695
696 if (cnt > 63)
697 cnt = 63;
698
699 if (copy_from_user(&buf, ubuf, cnt))
700 return -EFAULT;
701
702 buf[cnt] = 0;
703
Ingo Molnarc24b7c52008-04-18 10:55:34 +0200704 if (strncmp(buf, "NO_", 3) == 0) {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200705 neg = 1;
706 cmp += 3;
707 }
708
709 for (i = 0; sched_feat_names[i]; i++) {
710 int len = strlen(sched_feat_names[i]);
711
712 if (strncmp(cmp, sched_feat_names[i], len) == 0) {
713 if (neg)
714 sysctl_sched_features &= ~(1UL << i);
715 else
716 sysctl_sched_features |= (1UL << i);
717 break;
718 }
719 }
720
721 if (!sched_feat_names[i])
722 return -EINVAL;
723
724 filp->f_pos += cnt;
725
726 return cnt;
727}
728
729static struct file_operations sched_feat_fops = {
730 .open = sched_feat_open,
731 .read = sched_feat_read,
732 .write = sched_feat_write,
733};
734
735static __init int sched_init_debug(void)
736{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200737 debugfs_create_file("sched_features", 0644, NULL, NULL,
738 &sched_feat_fops);
739
740 return 0;
741}
742late_initcall(sched_init_debug);
743
744#endif
745
746#define sched_feat(x) (sysctl_sched_features & (1UL << __SCHED_FEAT_##x))
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200747
748/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100749 * Number of tasks to iterate in a single balance run.
750 * Limited because this is done with IRQs disabled.
751 */
752const_debug unsigned int sysctl_sched_nr_migrate = 32;
753
754/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100755 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100756 * default: 1s
757 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100758unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100759
Ingo Molnar6892b752008-02-13 14:02:36 +0100760static __read_mostly int scheduler_running;
761
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100762/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100763 * part of the period that we allow rt tasks to run in us.
764 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100765 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100766int sysctl_sched_rt_runtime = 950000;
767
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200768static inline u64 global_rt_period(void)
769{
770 return (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
771}
772
773static inline u64 global_rt_runtime(void)
774{
775 if (sysctl_sched_rt_period < 0)
776 return RUNTIME_INF;
777
778 return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC;
779}
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100780
Ingo Molnar690229a2008-04-23 09:31:35 +0200781unsigned long long time_sync_thresh = 100000;
Ingo Molnar27ec4402008-02-28 21:00:21 +0100782
783static DEFINE_PER_CPU(unsigned long long, time_offset);
784static DEFINE_PER_CPU(unsigned long long, prev_cpu_time);
785
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100786/*
Ingo Molnar27ec4402008-02-28 21:00:21 +0100787 * Global lock which we take every now and then to synchronize
788 * the CPUs time. This method is not warp-safe, but it's good
789 * enough to synchronize slowly diverging time sources and thus
790 * it's good enough for tracing:
Ingo Molnare436d802007-07-19 21:28:35 +0200791 */
Ingo Molnar27ec4402008-02-28 21:00:21 +0100792static DEFINE_SPINLOCK(time_sync_lock);
793static unsigned long long prev_global_time;
794
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200795static unsigned long long __sync_cpu_clock(unsigned long long time, int cpu)
Ingo Molnar27ec4402008-02-28 21:00:21 +0100796{
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200797 /*
798 * We want this inlined, to not get tracer function calls
799 * in this critical section:
800 */
801 spin_acquire(&time_sync_lock.dep_map, 0, 0, _THIS_IP_);
802 __raw_spin_lock(&time_sync_lock.raw_lock);
Ingo Molnar27ec4402008-02-28 21:00:21 +0100803
804 if (time < prev_global_time) {
805 per_cpu(time_offset, cpu) += prev_global_time - time;
806 time = prev_global_time;
807 } else {
808 prev_global_time = time;
809 }
810
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200811 __raw_spin_unlock(&time_sync_lock.raw_lock);
812 spin_release(&time_sync_lock.dep_map, 1, _THIS_IP_);
Ingo Molnar27ec4402008-02-28 21:00:21 +0100813
814 return time;
815}
816
817static unsigned long long __cpu_clock(int cpu)
Ingo Molnare436d802007-07-19 21:28:35 +0200818{
Ingo Molnare436d802007-07-19 21:28:35 +0200819 unsigned long long now;
Ingo Molnare436d802007-07-19 21:28:35 +0200820
Ingo Molnar8ced5f62007-12-07 19:02:47 +0100821 /*
822 * Only call sched_clock() if the scheduler has already been
823 * initialized (some code might call cpu_clock() very early):
824 */
Ingo Molnar6892b752008-02-13 14:02:36 +0100825 if (unlikely(!scheduler_running))
826 return 0;
827
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200828 now = sched_clock_cpu(cpu);
Ingo Molnare436d802007-07-19 21:28:35 +0200829
830 return now;
831}
Ingo Molnar27ec4402008-02-28 21:00:21 +0100832
833/*
834 * For kernel-internal use: high-speed (but slightly incorrect) per-cpu
835 * clock constructed from sched_clock():
836 */
837unsigned long long cpu_clock(int cpu)
838{
839 unsigned long long prev_cpu_time, time, delta_time;
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200840 unsigned long flags;
Ingo Molnar27ec4402008-02-28 21:00:21 +0100841
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200842 local_irq_save(flags);
Ingo Molnar27ec4402008-02-28 21:00:21 +0100843 prev_cpu_time = per_cpu(prev_cpu_time, cpu);
844 time = __cpu_clock(cpu) + per_cpu(time_offset, cpu);
845 delta_time = time-prev_cpu_time;
846
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200847 if (unlikely(delta_time > time_sync_thresh)) {
Ingo Molnar27ec4402008-02-28 21:00:21 +0100848 time = __sync_cpu_clock(time, cpu);
Ingo Molnardfbf4a12008-04-23 09:24:06 +0200849 per_cpu(prev_cpu_time, cpu) = time;
850 }
851 local_irq_restore(flags);
Ingo Molnar27ec4402008-02-28 21:00:21 +0100852
853 return time;
854}
Paul E. McKenneya58f6f22007-10-15 17:00:14 +0200855EXPORT_SYMBOL_GPL(cpu_clock);
Ingo Molnare436d802007-07-19 21:28:35 +0200856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700858# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700860#ifndef finish_arch_switch
861# define finish_arch_switch(prev) do { } while (0)
862#endif
863
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100864static inline int task_current(struct rq *rq, struct task_struct *p)
865{
866 return rq->curr == p;
867}
868
Nick Piggin4866cde2005-06-25 14:57:23 -0700869#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700870static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700871{
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100872 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700873}
874
Ingo Molnar70b97a72006-07-03 00:25:42 -0700875static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700876{
877}
878
Ingo Molnar70b97a72006-07-03 00:25:42 -0700879static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700880{
Ingo Molnarda04c032005-09-13 11:17:59 +0200881#ifdef CONFIG_DEBUG_SPINLOCK
882 /* this is a valid case when another task releases the spinlock */
883 rq->lock.owner = current;
884#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700885 /*
886 * If we are tracking spinlock dependencies then we have to
887 * fix up the runqueue lock - which gets 'carried over' from
888 * prev into current:
889 */
890 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
891
Nick Piggin4866cde2005-06-25 14:57:23 -0700892 spin_unlock_irq(&rq->lock);
893}
894
895#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700896static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700897{
898#ifdef CONFIG_SMP
899 return p->oncpu;
900#else
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100901 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700902#endif
903}
904
Ingo Molnar70b97a72006-07-03 00:25:42 -0700905static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700906{
907#ifdef CONFIG_SMP
908 /*
909 * We can optimise this out completely for !SMP, because the
910 * SMP rebalancing from interrupt is the only thing that cares
911 * here.
912 */
913 next->oncpu = 1;
914#endif
915#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
916 spin_unlock_irq(&rq->lock);
917#else
918 spin_unlock(&rq->lock);
919#endif
920}
921
Ingo Molnar70b97a72006-07-03 00:25:42 -0700922static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700923{
924#ifdef CONFIG_SMP
925 /*
926 * After ->oncpu is cleared, the task can be moved to a different CPU.
927 * We must ensure this doesn't happen until the switch is completely
928 * finished.
929 */
930 smp_wmb();
931 prev->oncpu = 0;
932#endif
933#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
934 local_irq_enable();
935#endif
936}
937#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
939/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700940 * __task_rq_lock - lock the runqueue a given task resides on.
941 * Must be called interrupts disabled.
942 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700943static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700944 __acquires(rq->lock)
945{
Andi Kleen3a5c3592007-10-15 17:00:14 +0200946 for (;;) {
947 struct rq *rq = task_rq(p);
948 spin_lock(&rq->lock);
949 if (likely(rq == task_rq(p)))
950 return rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -0700951 spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700952 }
Ingo Molnarb29739f2006-06-27 02:54:51 -0700953}
954
955/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 * task_rq_lock - lock the runqueue a given task resides on and disable
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100957 * interrupts. Note the ordering: we can safely lookup the task_rq without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 * explicitly disabling preemption.
959 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700960static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 __acquires(rq->lock)
962{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700963 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Andi Kleen3a5c3592007-10-15 17:00:14 +0200965 for (;;) {
966 local_irq_save(*flags);
967 rq = task_rq(p);
968 spin_lock(&rq->lock);
969 if (likely(rq == task_rq(p)))
970 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 spin_unlock_irqrestore(&rq->lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973}
974
Alexey Dobriyana9957442007-10-15 17:00:13 +0200975static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700976 __releases(rq->lock)
977{
978 spin_unlock(&rq->lock);
979}
980
Ingo Molnar70b97a72006-07-03 00:25:42 -0700981static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 __releases(rq->lock)
983{
984 spin_unlock_irqrestore(&rq->lock, *flags);
985}
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -0800988 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 */
Alexey Dobriyana9957442007-10-15 17:00:13 +0200990static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 __acquires(rq->lock)
992{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700993 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
995 local_irq_disable();
996 rq = this_rq();
997 spin_lock(&rq->lock);
998
999 return rq;
1000}
1001
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001002static void __resched_task(struct task_struct *p, int tif_bit);
1003
1004static inline void resched_task(struct task_struct *p)
1005{
1006 __resched_task(p, TIF_NEED_RESCHED);
1007}
1008
1009#ifdef CONFIG_SCHED_HRTICK
1010/*
1011 * Use HR-timers to deliver accurate preemption points.
1012 *
1013 * Its all a bit involved since we cannot program an hrt while holding the
1014 * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a
1015 * reschedule event.
1016 *
1017 * When we get rescheduled we reprogram the hrtick_timer outside of the
1018 * rq->lock.
1019 */
1020static inline void resched_hrt(struct task_struct *p)
1021{
1022 __resched_task(p, TIF_HRTICK_RESCHED);
1023}
1024
1025static inline void resched_rq(struct rq *rq)
1026{
1027 unsigned long flags;
1028
1029 spin_lock_irqsave(&rq->lock, flags);
1030 resched_task(rq->curr);
1031 spin_unlock_irqrestore(&rq->lock, flags);
1032}
1033
1034enum {
1035 HRTICK_SET, /* re-programm hrtick_timer */
1036 HRTICK_RESET, /* not a new slice */
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001037 HRTICK_BLOCK, /* stop hrtick operations */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001038};
1039
1040/*
1041 * Use hrtick when:
1042 * - enabled by features
1043 * - hrtimer is actually high res
1044 */
1045static inline int hrtick_enabled(struct rq *rq)
1046{
1047 if (!sched_feat(HRTICK))
1048 return 0;
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001049 if (unlikely(test_bit(HRTICK_BLOCK, &rq->hrtick_flags)))
1050 return 0;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001051 return hrtimer_is_hres_active(&rq->hrtick_timer);
1052}
1053
1054/*
1055 * Called to set the hrtick timer state.
1056 *
1057 * called with rq->lock held and irqs disabled
1058 */
1059static void hrtick_start(struct rq *rq, u64 delay, int reset)
1060{
1061 assert_spin_locked(&rq->lock);
1062
1063 /*
1064 * preempt at: now + delay
1065 */
1066 rq->hrtick_expire =
1067 ktime_add_ns(rq->hrtick_timer.base->get_time(), delay);
1068 /*
1069 * indicate we need to program the timer
1070 */
1071 __set_bit(HRTICK_SET, &rq->hrtick_flags);
1072 if (reset)
1073 __set_bit(HRTICK_RESET, &rq->hrtick_flags);
1074
1075 /*
1076 * New slices are called from the schedule path and don't need a
1077 * forced reschedule.
1078 */
1079 if (reset)
1080 resched_hrt(rq->curr);
1081}
1082
1083static void hrtick_clear(struct rq *rq)
1084{
1085 if (hrtimer_active(&rq->hrtick_timer))
1086 hrtimer_cancel(&rq->hrtick_timer);
1087}
1088
1089/*
1090 * Update the timer from the possible pending state.
1091 */
1092static void hrtick_set(struct rq *rq)
1093{
1094 ktime_t time;
1095 int set, reset;
1096 unsigned long flags;
1097
1098 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1099
1100 spin_lock_irqsave(&rq->lock, flags);
1101 set = __test_and_clear_bit(HRTICK_SET, &rq->hrtick_flags);
1102 reset = __test_and_clear_bit(HRTICK_RESET, &rq->hrtick_flags);
1103 time = rq->hrtick_expire;
1104 clear_thread_flag(TIF_HRTICK_RESCHED);
1105 spin_unlock_irqrestore(&rq->lock, flags);
1106
1107 if (set) {
1108 hrtimer_start(&rq->hrtick_timer, time, HRTIMER_MODE_ABS);
1109 if (reset && !hrtimer_active(&rq->hrtick_timer))
1110 resched_rq(rq);
1111 } else
1112 hrtick_clear(rq);
1113}
1114
1115/*
1116 * High-resolution timer tick.
1117 * Runs from hardirq context with interrupts disabled.
1118 */
1119static enum hrtimer_restart hrtick(struct hrtimer *timer)
1120{
1121 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
1122
1123 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1124
1125 spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02001126 update_rq_clock(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001127 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
1128 spin_unlock(&rq->lock);
1129
1130 return HRTIMER_NORESTART;
1131}
1132
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001133static void hotplug_hrtick_disable(int cpu)
1134{
1135 struct rq *rq = cpu_rq(cpu);
1136 unsigned long flags;
1137
1138 spin_lock_irqsave(&rq->lock, flags);
1139 rq->hrtick_flags = 0;
1140 __set_bit(HRTICK_BLOCK, &rq->hrtick_flags);
1141 spin_unlock_irqrestore(&rq->lock, flags);
1142
1143 hrtick_clear(rq);
1144}
1145
1146static void hotplug_hrtick_enable(int cpu)
1147{
1148 struct rq *rq = cpu_rq(cpu);
1149 unsigned long flags;
1150
1151 spin_lock_irqsave(&rq->lock, flags);
1152 __clear_bit(HRTICK_BLOCK, &rq->hrtick_flags);
1153 spin_unlock_irqrestore(&rq->lock, flags);
1154}
1155
1156static int
1157hotplug_hrtick(struct notifier_block *nfb, unsigned long action, void *hcpu)
1158{
1159 int cpu = (int)(long)hcpu;
1160
1161 switch (action) {
1162 case CPU_UP_CANCELED:
1163 case CPU_UP_CANCELED_FROZEN:
1164 case CPU_DOWN_PREPARE:
1165 case CPU_DOWN_PREPARE_FROZEN:
1166 case CPU_DEAD:
1167 case CPU_DEAD_FROZEN:
1168 hotplug_hrtick_disable(cpu);
1169 return NOTIFY_OK;
1170
1171 case CPU_UP_PREPARE:
1172 case CPU_UP_PREPARE_FROZEN:
1173 case CPU_DOWN_FAILED:
1174 case CPU_DOWN_FAILED_FROZEN:
1175 case CPU_ONLINE:
1176 case CPU_ONLINE_FROZEN:
1177 hotplug_hrtick_enable(cpu);
1178 return NOTIFY_OK;
1179 }
1180
1181 return NOTIFY_DONE;
1182}
1183
1184static void init_hrtick(void)
1185{
1186 hotcpu_notifier(hotplug_hrtick, 0);
1187}
1188
1189static void init_rq_hrtick(struct rq *rq)
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001190{
1191 rq->hrtick_flags = 0;
1192 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1193 rq->hrtick_timer.function = hrtick;
1194 rq->hrtick_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
1195}
1196
1197void hrtick_resched(void)
1198{
1199 struct rq *rq;
1200 unsigned long flags;
1201
1202 if (!test_thread_flag(TIF_HRTICK_RESCHED))
1203 return;
1204
1205 local_irq_save(flags);
1206 rq = cpu_rq(smp_processor_id());
1207 hrtick_set(rq);
1208 local_irq_restore(flags);
1209}
1210#else
1211static inline void hrtick_clear(struct rq *rq)
1212{
1213}
1214
1215static inline void hrtick_set(struct rq *rq)
1216{
1217}
1218
1219static inline void init_rq_hrtick(struct rq *rq)
1220{
1221}
1222
1223void hrtick_resched(void)
1224{
1225}
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001226
1227static inline void init_hrtick(void)
1228{
1229}
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001230#endif
1231
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001232/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001233 * resched_task - mark a task 'to be rescheduled now'.
1234 *
1235 * On UP this means the setting of the need_resched flag, on SMP it
1236 * might also involve a cross-CPU call to trigger the scheduler on
1237 * the target CPU.
1238 */
1239#ifdef CONFIG_SMP
1240
1241#ifndef tsk_is_polling
1242#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1243#endif
1244
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001245static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001246{
1247 int cpu;
1248
1249 assert_spin_locked(&task_rq(p)->lock);
1250
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001251 if (unlikely(test_tsk_thread_flag(p, tif_bit)))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001252 return;
1253
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001254 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001255
1256 cpu = task_cpu(p);
1257 if (cpu == smp_processor_id())
1258 return;
1259
1260 /* NEED_RESCHED must be visible before we test polling */
1261 smp_mb();
1262 if (!tsk_is_polling(p))
1263 smp_send_reschedule(cpu);
1264}
1265
1266static void resched_cpu(int cpu)
1267{
1268 struct rq *rq = cpu_rq(cpu);
1269 unsigned long flags;
1270
1271 if (!spin_trylock_irqsave(&rq->lock, flags))
1272 return;
1273 resched_task(cpu_curr(cpu));
1274 spin_unlock_irqrestore(&rq->lock, flags);
1275}
Thomas Gleixner06d83082008-03-22 09:20:24 +01001276
1277#ifdef CONFIG_NO_HZ
1278/*
1279 * When add_timer_on() enqueues a timer into the timer wheel of an
1280 * idle CPU then this timer might expire before the next timer event
1281 * which is scheduled to wake up that CPU. In case of a completely
1282 * idle system the next event might even be infinite time into the
1283 * future. wake_up_idle_cpu() ensures that the CPU is woken up and
1284 * leaves the inner idle loop so the newly added timer is taken into
1285 * account when the CPU goes back to idle and evaluates the timer
1286 * wheel for the next timer event.
1287 */
1288void wake_up_idle_cpu(int cpu)
1289{
1290 struct rq *rq = cpu_rq(cpu);
1291
1292 if (cpu == smp_processor_id())
1293 return;
1294
1295 /*
1296 * This is safe, as this function is called with the timer
1297 * wheel base lock of (cpu) held. When the CPU is on the way
1298 * to idle and has not yet set rq->curr to idle then it will
1299 * be serialized on the timer wheel base lock and take the new
1300 * timer into account automatically.
1301 */
1302 if (rq->curr != rq->idle)
1303 return;
1304
1305 /*
1306 * We can set TIF_RESCHED on the idle task of the other CPU
1307 * lockless. The worst case is that the other CPU runs the
1308 * idle task through an additional NOOP schedule()
1309 */
1310 set_tsk_thread_flag(rq->idle, TIF_NEED_RESCHED);
1311
1312 /* NEED_RESCHED must be visible before we test polling */
1313 smp_mb();
1314 if (!tsk_is_polling(rq->idle))
1315 smp_send_reschedule(cpu);
1316}
1317#endif
1318
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001319#else
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001320static void __resched_task(struct task_struct *p, int tif_bit)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001321{
1322 assert_spin_locked(&task_rq(p)->lock);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001323 set_tsk_thread_flag(p, tif_bit);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001324}
1325#endif
1326
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001327#if BITS_PER_LONG == 32
1328# define WMULT_CONST (~0UL)
1329#else
1330# define WMULT_CONST (1UL << 32)
1331#endif
1332
1333#define WMULT_SHIFT 32
1334
Ingo Molnar194081e2007-08-09 11:16:51 +02001335/*
1336 * Shift right and round:
1337 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001338#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +02001339
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +02001340static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001341calc_delta_mine(unsigned long delta_exec, unsigned long weight,
1342 struct load_weight *lw)
1343{
1344 u64 tmp;
1345
Peter Zijlstrae05510d2008-05-05 23:56:17 +02001346 if (!lw->inv_weight)
1347 lw->inv_weight = 1 + (WMULT_CONST-lw->weight/2)/(lw->weight+1);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001348
1349 tmp = (u64)delta_exec * weight;
1350 /*
1351 * Check whether we'd overflow the 64-bit multiplication:
1352 */
Ingo Molnar194081e2007-08-09 11:16:51 +02001353 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001354 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +02001355 WMULT_SHIFT/2);
1356 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001357 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001358
Ingo Molnarecf691d2007-08-02 17:41:40 +02001359 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001360}
1361
Ingo Molnarf9305d42008-05-29 11:23:17 +02001362static inline unsigned long
1363calc_delta_fair(unsigned long delta_exec, struct load_weight *lw)
1364{
1365 return calc_delta_mine(delta_exec, NICE_0_LOAD, lw);
1366}
1367
Ingo Molnar10919852007-10-15 17:00:04 +02001368static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001369{
1370 lw->weight += inc;
Ingo Molnare89996a2008-03-14 23:48:28 +01001371 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001372}
1373
Ingo Molnar10919852007-10-15 17:00:04 +02001374static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001375{
1376 lw->weight -= dec;
Ingo Molnare89996a2008-03-14 23:48:28 +01001377 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001378}
1379
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001381 * To aid in avoiding the subversion of "niceness" due to uneven distribution
1382 * of tasks with abnormal "nice" values across CPUs the contribution that
1383 * each task makes to its run queue's load is weighted according to its
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001384 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
Peter Williams2dd73a42006-06-27 02:54:34 -07001385 * scaled version of the new time slice allocation that they receive on time
1386 * slice expiry etc.
1387 */
1388
Ingo Molnardd41f592007-07-09 18:51:59 +02001389#define WEIGHT_IDLEPRIO 2
1390#define WMULT_IDLEPRIO (1 << 31)
1391
1392/*
1393 * Nice levels are multiplicative, with a gentle 10% change for every
1394 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
1395 * nice 1, it will get ~10% less CPU time than another CPU-bound task
1396 * that remained on nice 0.
1397 *
1398 * The "10% effect" is relative and cumulative: from _any_ nice level,
1399 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee2007-07-16 09:46:30 +02001400 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
1401 * If a task goes up by ~10% and another task goes down by ~10% then
1402 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +02001403 */
1404static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001405 /* -20 */ 88761, 71755, 56483, 46273, 36291,
1406 /* -15 */ 29154, 23254, 18705, 14949, 11916,
1407 /* -10 */ 9548, 7620, 6100, 4904, 3906,
1408 /* -5 */ 3121, 2501, 1991, 1586, 1277,
1409 /* 0 */ 1024, 820, 655, 526, 423,
1410 /* 5 */ 335, 272, 215, 172, 137,
1411 /* 10 */ 110, 87, 70, 56, 45,
1412 /* 15 */ 36, 29, 23, 18, 15,
Ingo Molnardd41f592007-07-09 18:51:59 +02001413};
1414
Ingo Molnar5714d2d2007-07-16 09:46:31 +02001415/*
1416 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
1417 *
1418 * In cases where the weight does not change often, we can use the
1419 * precalculated inverse to speed up arithmetics by turning divisions
1420 * into multiplications:
1421 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001422static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001423 /* -20 */ 48388, 59856, 76040, 92818, 118348,
1424 /* -15 */ 147320, 184698, 229616, 287308, 360437,
1425 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
1426 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
1427 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
1428 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
1429 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
1430 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +02001431};
Peter Williams2dd73a42006-06-27 02:54:34 -07001432
Ingo Molnardd41f592007-07-09 18:51:59 +02001433static void activate_task(struct rq *rq, struct task_struct *p, int wakeup);
1434
1435/*
1436 * runqueue iterator, to support SMP load-balancing between different
1437 * scheduling classes, without having to expose their internal data
1438 * structures to the load-balancing proper:
1439 */
1440struct rq_iterator {
1441 void *arg;
1442 struct task_struct *(*start)(void *);
1443 struct task_struct *(*next)(void *);
1444};
1445
Peter Williamse1d14842007-10-24 18:23:51 +02001446#ifdef CONFIG_SMP
1447static unsigned long
1448balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
1449 unsigned long max_load_move, struct sched_domain *sd,
1450 enum cpu_idle_type idle, int *all_pinned,
1451 int *this_best_prio, struct rq_iterator *iterator);
1452
1453static int
1454iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
1455 struct sched_domain *sd, enum cpu_idle_type idle,
1456 struct rq_iterator *iterator);
Peter Williamse1d14842007-10-24 18:23:51 +02001457#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001458
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001459#ifdef CONFIG_CGROUP_CPUACCT
1460static void cpuacct_charge(struct task_struct *tsk, u64 cputime);
1461#else
1462static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
1463#endif
1464
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001465static inline void inc_cpu_load(struct rq *rq, unsigned long load)
1466{
1467 update_load_add(&rq->load, load);
1468}
1469
1470static inline void dec_cpu_load(struct rq *rq, unsigned long load)
1471{
1472 update_load_sub(&rq->load, load);
1473}
1474
Gregory Haskinse7693a32008-01-25 21:08:09 +01001475#ifdef CONFIG_SMP
1476static unsigned long source_load(int cpu, int type);
1477static unsigned long target_load(int cpu, int type);
1478static unsigned long cpu_avg_load_per_task(int cpu);
1479static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd);
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001480#else /* CONFIG_SMP */
1481
1482#ifdef CONFIG_FAIR_GROUP_SCHED
1483static void cfs_rq_set_shares(struct cfs_rq *cfs_rq, unsigned long shares)
1484{
1485}
1486#endif
1487
Gregory Haskinse7693a32008-01-25 21:08:09 +01001488#endif /* CONFIG_SMP */
1489
Ingo Molnardd41f592007-07-09 18:51:59 +02001490#include "sched_stats.h"
Ingo Molnardd41f592007-07-09 18:51:59 +02001491#include "sched_idletask.c"
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001492#include "sched_fair.c"
1493#include "sched_rt.c"
Ingo Molnardd41f592007-07-09 18:51:59 +02001494#ifdef CONFIG_SCHED_DEBUG
1495# include "sched_debug.c"
1496#endif
1497
1498#define sched_class_highest (&rt_sched_class)
1499
Ingo Molnar6363ca52008-05-29 11:28:57 +02001500static inline void inc_load(struct rq *rq, const struct task_struct *p)
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001501{
Ingo Molnar6363ca52008-05-29 11:28:57 +02001502 update_load_add(&rq->load, p->se.load.weight);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01001503}
1504
Ingo Molnar6363ca52008-05-29 11:28:57 +02001505static inline void dec_load(struct rq *rq, const struct task_struct *p)
1506{
1507 update_load_sub(&rq->load, p->se.load.weight);
1508}
1509
1510static void inc_nr_running(struct task_struct *p, struct rq *rq)
1511{
1512 rq->nr_running++;
1513 inc_load(rq, p);
1514}
1515
1516static void dec_nr_running(struct task_struct *p, struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001517{
1518 rq->nr_running--;
Ingo Molnar6363ca52008-05-29 11:28:57 +02001519 dec_load(rq, p);
Ingo Molnar9c217242007-08-02 17:41:40 +02001520}
1521
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001522static void set_load_weight(struct task_struct *p)
1523{
1524 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001525 p->se.load.weight = prio_to_weight[0] * 2;
1526 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
1527 return;
1528 }
1529
1530 /*
1531 * SCHED_IDLE tasks get minimal weight:
1532 */
1533 if (p->policy == SCHED_IDLE) {
1534 p->se.load.weight = WEIGHT_IDLEPRIO;
1535 p->se.load.inv_weight = WMULT_IDLEPRIO;
1536 return;
1537 }
1538
1539 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
1540 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001541}
1542
Ingo Molnar8159f872007-08-09 11:16:49 +02001543static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001544{
1545 sched_info_queued(p);
Ingo Molnarfd390f62007-08-09 11:16:48 +02001546 p->sched_class->enqueue_task(rq, p, wakeup);
Ingo Molnardd41f592007-07-09 18:51:59 +02001547 p->se.on_rq = 1;
1548}
1549
Ingo Molnar69be72c2007-08-09 11:16:49 +02001550static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnardd41f592007-07-09 18:51:59 +02001551{
Ingo Molnarf02231e2007-08-09 11:16:48 +02001552 p->sched_class->dequeue_task(rq, p, sleep);
Ingo Molnardd41f592007-07-09 18:51:59 +02001553 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001554}
1555
1556/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001557 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001558 */
Ingo Molnar14531182007-07-09 18:51:59 +02001559static inline int __normal_prio(struct task_struct *p)
1560{
Ingo Molnardd41f592007-07-09 18:51:59 +02001561 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02001562}
1563
1564/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07001565 * Calculate the expected normal priority: i.e. priority
1566 * without taking RT-inheritance into account. Might be
1567 * boosted by interactivity modifiers. Changes upon fork,
1568 * setprio syscalls, and whenever the interactivity
1569 * estimator recalculates.
1570 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001571static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001572{
1573 int prio;
1574
Ingo Molnare05606d2007-07-09 18:51:59 +02001575 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07001576 prio = MAX_RT_PRIO-1 - p->rt_priority;
1577 else
1578 prio = __normal_prio(p);
1579 return prio;
1580}
1581
1582/*
1583 * Calculate the current priority, i.e. the priority
1584 * taken into account by the scheduler. This value might
1585 * be boosted by RT tasks, or might be boosted by
1586 * interactivity modifiers. Will be RT if the task got
1587 * RT-boosted. If not then it returns p->normal_prio.
1588 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001589static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001590{
1591 p->normal_prio = normal_prio(p);
1592 /*
1593 * If we are RT tasks or we were boosted to RT priority,
1594 * keep the priority unchanged. Otherwise, update priority
1595 * to the normal priority:
1596 */
1597 if (!rt_prio(p->prio))
1598 return p->normal_prio;
1599 return p->prio;
1600}
1601
1602/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001603 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001605static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001607 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001608 rq->nr_uninterruptible--;
1609
Ingo Molnar8159f872007-08-09 11:16:49 +02001610 enqueue_task(rq, p, wakeup);
Ingo Molnar6363ca52008-05-29 11:28:57 +02001611 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612}
1613
1614/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 * deactivate_task - remove a task from the runqueue.
1616 */
Ingo Molnar2e1cb742007-08-09 11:16:49 +02001617static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001619 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001620 rq->nr_uninterruptible++;
1621
Ingo Molnar69be72c2007-08-09 11:16:49 +02001622 dequeue_task(rq, p, sleep);
Ingo Molnar6363ca52008-05-29 11:28:57 +02001623 dec_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624}
1625
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626/**
1627 * task_curr - is this task currently executing on a CPU?
1628 * @p: the task in question.
1629 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001630inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631{
1632 return cpu_curr(task_cpu(p)) == p;
1633}
1634
Peter Williams2dd73a42006-06-27 02:54:34 -07001635/* Used instead of source_load when we know the type == 0 */
1636unsigned long weighted_cpuload(const int cpu)
1637{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02001638 return cpu_rq(cpu)->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02001639}
1640
1641static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1642{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001643 set_task_rq(p, cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001644#ifdef CONFIG_SMP
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01001645 /*
1646 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
1647 * successfuly executed on another CPU. We must ensure that updates of
1648 * per-task data have been completed by this moment.
1649 */
1650 smp_wmb();
Ingo Molnardd41f592007-07-09 18:51:59 +02001651 task_thread_info(p)->cpu = cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02001652#endif
Peter Williams2dd73a42006-06-27 02:54:34 -07001653}
1654
Steven Rostedtcb469842008-01-25 21:08:22 +01001655static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1656 const struct sched_class *prev_class,
1657 int oldprio, int running)
1658{
1659 if (prev_class != p->sched_class) {
1660 if (prev_class->switched_from)
1661 prev_class->switched_from(rq, p, running);
1662 p->sched_class->switched_to(rq, p, running);
1663 } else
1664 p->sched_class->prio_changed(rq, p, oldprio, running);
1665}
1666
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +02001668
Ingo Molnarcc367732007-10-15 17:00:18 +02001669/*
1670 * Is this task likely cache-hot:
1671 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001672static int
Ingo Molnarcc367732007-10-15 17:00:18 +02001673task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
1674{
1675 s64 delta;
1676
Ingo Molnarf540a602008-03-15 17:10:34 +01001677 /*
1678 * Buddy candidates are cache hot:
1679 */
Ingo Molnard25ce4c2008-03-17 09:36:53 +01001680 if (sched_feat(CACHE_HOT_BUDDY) && (&p->se == cfs_rq_of(&p->se)->next))
Ingo Molnarf540a602008-03-15 17:10:34 +01001681 return 1;
1682
Ingo Molnarcc367732007-10-15 17:00:18 +02001683 if (p->sched_class != &fair_sched_class)
1684 return 0;
1685
Ingo Molnar6bc16652007-10-15 17:00:18 +02001686 if (sysctl_sched_migration_cost == -1)
1687 return 1;
1688 if (sysctl_sched_migration_cost == 0)
1689 return 0;
1690
Ingo Molnarcc367732007-10-15 17:00:18 +02001691 delta = now - p->se.exec_start;
1692
1693 return delta < (s64)sysctl_sched_migration_cost;
1694}
1695
1696
Ingo Molnardd41f592007-07-09 18:51:59 +02001697void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02001698{
Ingo Molnardd41f592007-07-09 18:51:59 +02001699 int old_cpu = task_cpu(p);
1700 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001701 struct cfs_rq *old_cfsrq = task_cfs_rq(p),
1702 *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02001703 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001704
1705 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001706
1707#ifdef CONFIG_SCHEDSTATS
1708 if (p->se.wait_start)
1709 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001710 if (p->se.sleep_start)
1711 p->se.sleep_start -= clock_offset;
1712 if (p->se.block_start)
1713 p->se.block_start -= clock_offset;
Ingo Molnarcc367732007-10-15 17:00:18 +02001714 if (old_cpu != new_cpu) {
1715 schedstat_inc(p, se.nr_migrations);
1716 if (task_hot(p, old_rq->clock, NULL))
1717 schedstat_inc(p, se.nr_forced2_migrations);
1718 }
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001719#endif
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001720 p->se.vruntime -= old_cfsrq->min_vruntime -
1721 new_cfsrq->min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02001722
1723 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02001724}
1725
Ingo Molnar70b97a72006-07-03 00:25:42 -07001726struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
Ingo Molnar36c8b582006-07-03 00:25:41 -07001729 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 int dest_cpu;
1731
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001733};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
1735/*
1736 * The task's runqueue lock must be held.
1737 * Returns true if you have to wait for migration thread.
1738 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001739static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07001740migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001742 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
1744 /*
1745 * If the task is not on a runqueue (and not running), then
1746 * it is sufficient to simply update the task's cpu field.
1747 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001748 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 set_task_cpu(p, dest_cpu);
1750 return 0;
1751 }
1752
1753 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 req->task = p;
1755 req->dest_cpu = dest_cpu;
1756 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07001757
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 return 1;
1759}
1760
1761/*
1762 * wait_task_inactive - wait for a thread to unschedule.
1763 *
1764 * The caller must ensure that the task *will* unschedule sometime soon,
1765 * else this function might spin for a *long* time. This function can't
1766 * be called with interrupts off, or it may introduce deadlock with
1767 * smp_call_function() if an IPI is sent by the same process we are
1768 * waiting to become inactive.
1769 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001770void wait_task_inactive(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771{
1772 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001773 int running, on_rq;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001774 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
Andi Kleen3a5c3592007-10-15 17:00:14 +02001776 for (;;) {
1777 /*
1778 * We do the initial early heuristics without holding
1779 * any task-queue locks at all. We'll only try to get
1780 * the runqueue lock when things look like they will
1781 * work out!
1782 */
1783 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001784
Andi Kleen3a5c3592007-10-15 17:00:14 +02001785 /*
1786 * If the task is actively running on another CPU
1787 * still, just relax and busy-wait without holding
1788 * any locks.
1789 *
1790 * NOTE! Since we don't hold any locks, it's not
1791 * even sure that "rq" stays as the right runqueue!
1792 * But we don't care, since "task_running()" will
1793 * return false if the runqueue has changed and p
1794 * is actually now running somewhere else!
1795 */
1796 while (task_running(rq, p))
1797 cpu_relax();
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001798
Andi Kleen3a5c3592007-10-15 17:00:14 +02001799 /*
1800 * Ok, time to look more closely! We need the rq
1801 * lock now, to be *sure*. If we're wrong, we'll
1802 * just go back and repeat.
1803 */
1804 rq = task_rq_lock(p, &flags);
1805 running = task_running(rq, p);
1806 on_rq = p->se.on_rq;
1807 task_rq_unlock(rq, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001808
Andi Kleen3a5c3592007-10-15 17:00:14 +02001809 /*
1810 * Was it really running after all now that we
1811 * checked with the proper locks actually held?
1812 *
1813 * Oops. Go back and try again..
1814 */
1815 if (unlikely(running)) {
1816 cpu_relax();
1817 continue;
1818 }
1819
1820 /*
1821 * It's not enough that it's not actively running,
1822 * it must be off the runqueue _entirely_, and not
1823 * preempted!
1824 *
1825 * So if it wa still runnable (but just not actively
1826 * running right now), it's preempted, and we should
1827 * yield - it could be a while.
1828 */
1829 if (unlikely(on_rq)) {
1830 schedule_timeout_uninterruptible(1);
1831 continue;
1832 }
1833
1834 /*
1835 * Ahh, all good. It wasn't running, and it wasn't
1836 * runnable, which means that it will never become
1837 * running in the future either. We're all done!
1838 */
1839 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841}
1842
1843/***
1844 * kick_process - kick a running thread to enter/exit the kernel
1845 * @p: the to-be-kicked thread
1846 *
1847 * Cause a process which is running on another CPU to enter
1848 * kernel-mode, without any delay. (to get signals handled.)
1849 *
1850 * NOTE: this function doesnt have to take the runqueue lock,
1851 * because all it wants to ensure is that the remote task enters
1852 * the kernel. If the IPI races and the task has been migrated
1853 * to another CPU then no harm is done and the purpose has been
1854 * achieved as well.
1855 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001856void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857{
1858 int cpu;
1859
1860 preempt_disable();
1861 cpu = task_cpu(p);
1862 if ((cpu != smp_processor_id()) && task_curr(p))
1863 smp_send_reschedule(cpu);
1864 preempt_enable();
1865}
1866
1867/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001868 * Return a low guess at the load of a migration-source cpu weighted
1869 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 *
1871 * We want to under-estimate the load of migration sources, to
1872 * balance conservatively.
1873 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001874static unsigned long source_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08001875{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001876 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001877 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001878
Peter Williams2dd73a42006-06-27 02:54:34 -07001879 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001880 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001881
Ingo Molnardd41f592007-07-09 18:51:59 +02001882 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883}
1884
1885/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001886 * Return a high guess at the load of a migration-target cpu weighted
1887 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001889static unsigned long target_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08001890{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001891 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001892 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001893
Peter Williams2dd73a42006-06-27 02:54:34 -07001894 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001895 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001896
Ingo Molnardd41f592007-07-09 18:51:59 +02001897 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07001898}
1899
1900/*
1901 * Return the average load per task on the cpu's run queue
1902 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001903static unsigned long cpu_avg_load_per_task(int cpu)
Peter Williams2dd73a42006-06-27 02:54:34 -07001904{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001905 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001906 unsigned long total = weighted_cpuload(cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07001907 unsigned long n = rq->nr_running;
1908
Ingo Molnardd41f592007-07-09 18:51:59 +02001909 return n ? total / n : SCHED_LOAD_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910}
1911
Nick Piggin147cbb42005-06-25 14:57:19 -07001912/*
1913 * find_idlest_group finds and returns the least busy CPU group within the
1914 * domain.
1915 */
1916static struct sched_group *
1917find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
1918{
1919 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
1920 unsigned long min_load = ULONG_MAX, this_load = 0;
1921 int load_idx = sd->forkexec_idx;
1922 int imbalance = 100 + (sd->imbalance_pct-100)/2;
1923
1924 do {
1925 unsigned long load, avg_load;
1926 int local_group;
1927 int i;
1928
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001929 /* Skip over this group if it has no CPUs allowed */
1930 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
Andi Kleen3a5c3592007-10-15 17:00:14 +02001931 continue;
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001932
Nick Piggin147cbb42005-06-25 14:57:19 -07001933 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07001934
1935 /* Tally up the load of all CPUs in the group */
1936 avg_load = 0;
1937
1938 for_each_cpu_mask(i, group->cpumask) {
1939 /* Bias balancing toward cpus of our domain */
1940 if (local_group)
1941 load = source_load(i, load_idx);
1942 else
1943 load = target_load(i, load_idx);
1944
1945 avg_load += load;
1946 }
1947
1948 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07001949 avg_load = sg_div_cpu_power(group,
1950 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07001951
1952 if (local_group) {
1953 this_load = avg_load;
1954 this = group;
1955 } else if (avg_load < min_load) {
1956 min_load = avg_load;
1957 idlest = group;
1958 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02001959 } while (group = group->next, group != sd->groups);
Nick Piggin147cbb42005-06-25 14:57:19 -07001960
1961 if (!idlest || 100*this_load < imbalance*min_load)
1962 return NULL;
1963 return idlest;
1964}
1965
1966/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07001967 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07001968 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07001969static int
Mike Travis7c16ec52008-04-04 18:11:11 -07001970find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu,
1971 cpumask_t *tmp)
Nick Piggin147cbb42005-06-25 14:57:19 -07001972{
1973 unsigned long load, min_load = ULONG_MAX;
1974 int idlest = -1;
1975 int i;
1976
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001977 /* Traverse only the allowed CPUs */
Mike Travis7c16ec52008-04-04 18:11:11 -07001978 cpus_and(*tmp, group->cpumask, p->cpus_allowed);
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001979
Mike Travis7c16ec52008-04-04 18:11:11 -07001980 for_each_cpu_mask(i, *tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07001981 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07001982
1983 if (load < min_load || (load == min_load && i == this_cpu)) {
1984 min_load = load;
1985 idlest = i;
1986 }
1987 }
1988
1989 return idlest;
1990}
1991
Nick Piggin476d1392005-06-25 14:57:29 -07001992/*
1993 * sched_balance_self: balance the current task (running on cpu) in domains
1994 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
1995 * SD_BALANCE_EXEC.
1996 *
1997 * Balance, ie. select the least loaded group.
1998 *
1999 * Returns the target CPU number, or the same CPU if no balancing is needed.
2000 *
2001 * preempt must be disabled.
2002 */
2003static int sched_balance_self(int cpu, int flag)
2004{
2005 struct task_struct *t = current;
2006 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07002007
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002008 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02002009 /*
2010 * If power savings logic is enabled for a domain, stop there.
2011 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002012 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
2013 break;
Nick Piggin476d1392005-06-25 14:57:29 -07002014 if (tmp->flags & flag)
2015 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002016 }
Nick Piggin476d1392005-06-25 14:57:29 -07002017
2018 while (sd) {
Mike Travis7c16ec52008-04-04 18:11:11 -07002019 cpumask_t span, tmpmask;
Nick Piggin476d1392005-06-25 14:57:29 -07002020 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002021 int new_cpu, weight;
2022
2023 if (!(sd->flags & flag)) {
2024 sd = sd->child;
2025 continue;
2026 }
Nick Piggin476d1392005-06-25 14:57:29 -07002027
2028 span = sd->span;
2029 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002030 if (!group) {
2031 sd = sd->child;
2032 continue;
2033 }
Nick Piggin476d1392005-06-25 14:57:29 -07002034
Mike Travis7c16ec52008-04-04 18:11:11 -07002035 new_cpu = find_idlest_cpu(group, t, cpu, &tmpmask);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002036 if (new_cpu == -1 || new_cpu == cpu) {
2037 /* Now try balancing at a lower domain level of cpu */
2038 sd = sd->child;
2039 continue;
2040 }
Nick Piggin476d1392005-06-25 14:57:29 -07002041
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002042 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07002043 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07002044 sd = NULL;
2045 weight = cpus_weight(span);
2046 for_each_domain(cpu, tmp) {
2047 if (weight <= cpus_weight(tmp->span))
2048 break;
2049 if (tmp->flags & flag)
2050 sd = tmp;
2051 }
2052 /* while loop will break here if sd == NULL */
2053 }
2054
2055 return cpu;
2056}
2057
2058#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060/***
2061 * try_to_wake_up - wake up a thread
2062 * @p: the to-be-woken-up thread
2063 * @state: the mask of task states that can be woken
2064 * @sync: do a synchronous wakeup?
2065 *
2066 * Put it on the run-queue if it's not already there. The "current"
2067 * thread is always on the run-queue (except when the actual
2068 * re-schedule is in progress), and as such you're allowed to do
2069 * the simpler "current->state = TASK_RUNNING" to mark yourself
2070 * runnable without the overhead of this.
2071 *
2072 * returns failure only if the task is already active.
2073 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002074static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075{
Ingo Molnarcc367732007-10-15 17:00:18 +02002076 int cpu, orig_cpu, this_cpu, success = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 unsigned long flags;
2078 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002079 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
Ingo Molnarb85d0662008-03-16 20:03:22 +01002081 if (!sched_feat(SYNC_WAKEUPS))
2082 sync = 0;
2083
Linus Torvalds04e2f172008-02-23 18:05:03 -08002084 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 rq = task_rq_lock(p, &flags);
2086 old_state = p->state;
2087 if (!(old_state & state))
2088 goto out;
2089
Ingo Molnardd41f592007-07-09 18:51:59 +02002090 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 goto out_running;
2092
2093 cpu = task_cpu(p);
Ingo Molnarcc367732007-10-15 17:00:18 +02002094 orig_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 this_cpu = smp_processor_id();
2096
2097#ifdef CONFIG_SMP
2098 if (unlikely(task_running(rq, p)))
2099 goto out_activate;
2100
Dmitry Adamushko5d2f5a62008-01-25 21:08:21 +01002101 cpu = p->sched_class->select_task_rq(p, sync);
2102 if (cpu != orig_cpu) {
2103 set_task_cpu(p, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 task_rq_unlock(rq, &flags);
2105 /* might preempt at this point */
2106 rq = task_rq_lock(p, &flags);
2107 old_state = p->state;
2108 if (!(old_state & state))
2109 goto out;
Ingo Molnardd41f592007-07-09 18:51:59 +02002110 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 goto out_running;
2112
2113 this_cpu = smp_processor_id();
2114 cpu = task_cpu(p);
2115 }
2116
Gregory Haskinse7693a32008-01-25 21:08:09 +01002117#ifdef CONFIG_SCHEDSTATS
2118 schedstat_inc(rq, ttwu_count);
2119 if (cpu == this_cpu)
2120 schedstat_inc(rq, ttwu_local);
2121 else {
2122 struct sched_domain *sd;
2123 for_each_domain(this_cpu, sd) {
2124 if (cpu_isset(cpu, sd->span)) {
2125 schedstat_inc(sd, ttwu_wake_remote);
2126 break;
2127 }
2128 }
2129 }
Gregory Haskinse7693a32008-01-25 21:08:09 +01002130#endif
2131
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132out_activate:
2133#endif /* CONFIG_SMP */
Ingo Molnarcc367732007-10-15 17:00:18 +02002134 schedstat_inc(p, se.nr_wakeups);
2135 if (sync)
2136 schedstat_inc(p, se.nr_wakeups_sync);
2137 if (orig_cpu != cpu)
2138 schedstat_inc(p, se.nr_wakeups_migrate);
2139 if (cpu == this_cpu)
2140 schedstat_inc(p, se.nr_wakeups_local);
2141 else
2142 schedstat_inc(p, se.nr_wakeups_remote);
Ingo Molnar2daa3572007-08-09 11:16:51 +02002143 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02002144 activate_task(rq, p, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 success = 1;
2146
2147out_running:
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002148 check_preempt_curr(rq, p);
2149
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01002151#ifdef CONFIG_SMP
2152 if (p->sched_class->task_wake_up)
2153 p->sched_class->task_wake_up(rq, p);
2154#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155out:
2156 task_rq_unlock(rq, &flags);
2157
2158 return success;
2159}
2160
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002161int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002163 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165EXPORT_SYMBOL(wake_up_process);
2166
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002167int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168{
2169 return try_to_wake_up(p, state, 0);
2170}
2171
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172/*
2173 * Perform scheduler related setup for a newly forked process p.
2174 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02002175 *
2176 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002178static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179{
Ingo Molnardd41f592007-07-09 18:51:59 +02002180 p->se.exec_start = 0;
2181 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02002182 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002183 p->se.last_wakeup = 0;
2184 p->se.avg_overlap = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002185
2186#ifdef CONFIG_SCHEDSTATS
2187 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002188 p->se.sum_sleep_runtime = 0;
2189 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002190 p->se.block_start = 0;
2191 p->se.sleep_max = 0;
2192 p->se.block_max = 0;
2193 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02002194 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002195 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002196#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002197
Peter Zijlstrafa717062008-01-25 21:08:27 +01002198 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02002199 p->se.on_rq = 0;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02002200 INIT_LIST_HEAD(&p->se.group_node);
Nick Piggin476d1392005-06-25 14:57:29 -07002201
Avi Kivitye107be32007-07-26 13:40:43 +02002202#ifdef CONFIG_PREEMPT_NOTIFIERS
2203 INIT_HLIST_HEAD(&p->preempt_notifiers);
2204#endif
2205
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 /*
2207 * We mark the process as running here, but have not actually
2208 * inserted it onto the runqueue yet. This guarantees that
2209 * nobody will actually run it, and a signal or other external
2210 * event cannot wake it up and insert it on the runqueue either.
2211 */
2212 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02002213}
2214
2215/*
2216 * fork()/clone()-time setup:
2217 */
2218void sched_fork(struct task_struct *p, int clone_flags)
2219{
2220 int cpu = get_cpu();
2221
2222 __sched_fork(p);
2223
2224#ifdef CONFIG_SMP
2225 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
2226#endif
Ingo Molnar02e4bac2007-10-15 17:00:11 +02002227 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002228
2229 /*
2230 * Make sure we do not leak PI boosting priority to the child:
2231 */
2232 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02002233 if (!rt_prio(p->prio))
2234 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002235
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002236#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02002237 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002238 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08002240#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07002241 p->oncpu = 0;
2242#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07002244 /* Want to start with kernel preemption disabled. */
Al Viroa1261f52005-11-13 16:06:55 -08002245 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002247 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248}
2249
2250/*
2251 * wake_up_new_task - wake up a newly created task for the first time.
2252 *
2253 * This function will do some initial scheduler statistics housekeeping
2254 * that must be done for every newly created context, then puts the task
2255 * on the runqueue and wakes it.
2256 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002257void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258{
2259 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002260 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
2262 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02002264 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
2266 p->prio = effective_prio(p);
2267
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02002268 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002269 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02002272 * Let the scheduling class do new task startup
2273 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02002275 p->sched_class->task_new(rq, p);
Ingo Molnar6363ca52008-05-29 11:28:57 +02002276 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002278 check_preempt_curr(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002279#ifdef CONFIG_SMP
2280 if (p->sched_class->task_wake_up)
2281 p->sched_class->task_wake_up(rq, p);
2282#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02002283 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284}
2285
Avi Kivitye107be32007-07-26 13:40:43 +02002286#ifdef CONFIG_PREEMPT_NOTIFIERS
2287
2288/**
Randy Dunlap421cee22007-07-31 00:37:50 -07002289 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
2290 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002291 */
2292void preempt_notifier_register(struct preempt_notifier *notifier)
2293{
2294 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2295}
2296EXPORT_SYMBOL_GPL(preempt_notifier_register);
2297
2298/**
2299 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002300 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002301 *
2302 * This is safe to call from within a preemption notifier.
2303 */
2304void preempt_notifier_unregister(struct preempt_notifier *notifier)
2305{
2306 hlist_del(&notifier->link);
2307}
2308EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2309
2310static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2311{
2312 struct preempt_notifier *notifier;
2313 struct hlist_node *node;
2314
2315 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2316 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2317}
2318
2319static void
2320fire_sched_out_preempt_notifiers(struct task_struct *curr,
2321 struct task_struct *next)
2322{
2323 struct preempt_notifier *notifier;
2324 struct hlist_node *node;
2325
2326 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2327 notifier->ops->sched_out(notifier, next);
2328}
2329
2330#else
2331
2332static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2333{
2334}
2335
2336static void
2337fire_sched_out_preempt_notifiers(struct task_struct *curr,
2338 struct task_struct *next)
2339{
2340}
2341
2342#endif
2343
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002345 * prepare_task_switch - prepare to switch tasks
2346 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002347 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002348 * @next: the task we are going to switch to.
2349 *
2350 * This is called with the rq lock held and interrupts off. It must
2351 * be paired with a subsequent finish_task_switch after the context
2352 * switch.
2353 *
2354 * prepare_task_switch sets up locking and calls architecture specific
2355 * hooks.
2356 */
Avi Kivitye107be32007-07-26 13:40:43 +02002357static inline void
2358prepare_task_switch(struct rq *rq, struct task_struct *prev,
2359 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002360{
Avi Kivitye107be32007-07-26 13:40:43 +02002361 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002362 prepare_lock_switch(rq, next);
2363 prepare_arch_switch(next);
2364}
2365
2366/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002368 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 * @prev: the thread we just switched away from.
2370 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002371 * finish_task_switch must be called after the context switch, paired
2372 * with a prepare_task_switch call before the context switch.
2373 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2374 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 *
2376 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002377 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 * with the lock held can cause deadlocks; see schedule() for
2379 * details.)
2380 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002381static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 __releases(rq->lock)
2383{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002385 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
2387 rq->prev_mm = NULL;
2388
2389 /*
2390 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002391 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002392 * schedule one last time. The schedule call will never return, and
2393 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002394 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 * still held, otherwise prev could be scheduled on another cpu, die
2396 * there before we look at prev->state, and then the reference would
2397 * be dropped twice.
2398 * Manfred Spraul <manfred@colorfullife.com>
2399 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002400 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002401 finish_arch_switch(prev);
2402 finish_lock_switch(rq, prev);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002403#ifdef CONFIG_SMP
2404 if (current->sched_class->post_schedule)
2405 current->sched_class->post_schedule(rq);
2406#endif
Steven Rostedte8fa1362008-01-25 21:08:05 +01002407
Avi Kivitye107be32007-07-26 13:40:43 +02002408 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 if (mm)
2410 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002411 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002412 /*
2413 * Remove function-return probe instances associated with this
2414 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002415 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002416 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419}
2420
2421/**
2422 * schedule_tail - first thing a freshly forked thread must call.
2423 * @prev: the thread we just switched away from.
2424 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002425asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 __releases(rq->lock)
2427{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002428 struct rq *rq = this_rq();
2429
Nick Piggin4866cde2005-06-25 14:57:23 -07002430 finish_task_switch(rq, prev);
2431#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2432 /* In this case, finish_task_switch does not reenable preemption */
2433 preempt_enable();
2434#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002436 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437}
2438
2439/*
2440 * context_switch - switch to the new MM and the new
2441 * thread's register state.
2442 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002443static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002444context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002445 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446{
Ingo Molnardd41f592007-07-09 18:51:59 +02002447 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448
Avi Kivitye107be32007-07-26 13:40:43 +02002449 prepare_task_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002450 mm = next->mm;
2451 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002452 /*
2453 * For paravirt, this is coupled with an exit in switch_to to
2454 * combine the page table reload and the switch backend into
2455 * one hypercall.
2456 */
2457 arch_enter_lazy_cpu_mode();
2458
Ingo Molnardd41f592007-07-09 18:51:59 +02002459 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 next->active_mm = oldmm;
2461 atomic_inc(&oldmm->mm_count);
2462 enter_lazy_tlb(oldmm, next);
2463 } else
2464 switch_mm(oldmm, mm, next);
2465
Ingo Molnardd41f592007-07-09 18:51:59 +02002466 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 rq->prev_mm = oldmm;
2469 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002470 /*
2471 * Since the runqueue lock will be released by the next
2472 * task (which is an invalid locking op but in the case
2473 * of the scheduler it's an obvious special-case), so we
2474 * do an early lockdep release here:
2475 */
2476#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002477 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002478#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479
2480 /* Here we just switch the register state and the stack. */
2481 switch_to(prev, next, prev);
2482
Ingo Molnardd41f592007-07-09 18:51:59 +02002483 barrier();
2484 /*
2485 * this_rq must be evaluated again because prev may have moved
2486 * CPUs since it called schedule(), thus the 'rq' on its stack
2487 * frame will be invalid.
2488 */
2489 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490}
2491
2492/*
2493 * nr_running, nr_uninterruptible and nr_context_switches:
2494 *
2495 * externally visible scheduler statistics: current number of runnable
2496 * threads, current number of uninterruptible-sleeping threads, total
2497 * number of context switches performed since bootup.
2498 */
2499unsigned long nr_running(void)
2500{
2501 unsigned long i, sum = 0;
2502
2503 for_each_online_cpu(i)
2504 sum += cpu_rq(i)->nr_running;
2505
2506 return sum;
2507}
2508
2509unsigned long nr_uninterruptible(void)
2510{
2511 unsigned long i, sum = 0;
2512
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002513 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 sum += cpu_rq(i)->nr_uninterruptible;
2515
2516 /*
2517 * Since we read the counters lockless, it might be slightly
2518 * inaccurate. Do not allow it to go below zero though:
2519 */
2520 if (unlikely((long)sum < 0))
2521 sum = 0;
2522
2523 return sum;
2524}
2525
2526unsigned long long nr_context_switches(void)
2527{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002528 int i;
2529 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002531 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 sum += cpu_rq(i)->nr_switches;
2533
2534 return sum;
2535}
2536
2537unsigned long nr_iowait(void)
2538{
2539 unsigned long i, sum = 0;
2540
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002541 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2543
2544 return sum;
2545}
2546
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002547unsigned long nr_active(void)
2548{
2549 unsigned long i, running = 0, uninterruptible = 0;
2550
2551 for_each_online_cpu(i) {
2552 running += cpu_rq(i)->nr_running;
2553 uninterruptible += cpu_rq(i)->nr_uninterruptible;
2554 }
2555
2556 if (unlikely((long)uninterruptible < 0))
2557 uninterruptible = 0;
2558
2559 return running + uninterruptible;
2560}
2561
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002563 * Update rq->cpu_load[] statistics. This function is usually called every
2564 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07002565 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002566static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002567{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02002568 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02002569 int i, scale;
2570
2571 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02002572
2573 /* Update our load: */
2574 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
2575 unsigned long old_load, new_load;
2576
2577 /* scale is effectively 1 << i now, and >> i divides by scale */
2578
2579 old_load = this_rq->cpu_load[i];
2580 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02002581 /*
2582 * Round up the averaging division if load is increasing. This
2583 * prevents us from getting stuck on 9 if the load is 10, for
2584 * example.
2585 */
2586 if (new_load > old_load)
2587 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02002588 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2589 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002590}
2591
Ingo Molnardd41f592007-07-09 18:51:59 +02002592#ifdef CONFIG_SMP
2593
Ingo Molnar48f24c42006-07-03 00:25:40 -07002594/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 * double_rq_lock - safely lock two runqueues
2596 *
2597 * Note this does not disable interrupts like task_rq_lock,
2598 * you need to do so manually before calling.
2599 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002600static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 __acquires(rq1->lock)
2602 __acquires(rq2->lock)
2603{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002604 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 if (rq1 == rq2) {
2606 spin_lock(&rq1->lock);
2607 __acquire(rq2->lock); /* Fake it out ;) */
2608 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002609 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 spin_lock(&rq1->lock);
2611 spin_lock(&rq2->lock);
2612 } else {
2613 spin_lock(&rq2->lock);
2614 spin_lock(&rq1->lock);
2615 }
2616 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002617 update_rq_clock(rq1);
2618 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619}
2620
2621/*
2622 * double_rq_unlock - safely unlock two runqueues
2623 *
2624 * Note this does not restore interrupts like task_rq_unlock,
2625 * you need to do so manually after calling.
2626 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002627static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 __releases(rq1->lock)
2629 __releases(rq2->lock)
2630{
2631 spin_unlock(&rq1->lock);
2632 if (rq1 != rq2)
2633 spin_unlock(&rq2->lock);
2634 else
2635 __release(rq2->lock);
2636}
2637
2638/*
2639 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
2640 */
Steven Rostedte8fa1362008-01-25 21:08:05 +01002641static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 __releases(this_rq->lock)
2643 __acquires(busiest->lock)
2644 __acquires(this_rq->lock)
2645{
Steven Rostedte8fa1362008-01-25 21:08:05 +01002646 int ret = 0;
2647
Kirill Korotaev054b9102006-12-10 02:20:11 -08002648 if (unlikely(!irqs_disabled())) {
2649 /* printk() doesn't work good under rq->lock */
2650 spin_unlock(&this_rq->lock);
2651 BUG_ON(1);
2652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002654 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 spin_unlock(&this_rq->lock);
2656 spin_lock(&busiest->lock);
2657 spin_lock(&this_rq->lock);
Steven Rostedte8fa1362008-01-25 21:08:05 +01002658 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 } else
2660 spin_lock(&busiest->lock);
2661 }
Steven Rostedte8fa1362008-01-25 21:08:05 +01002662 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663}
2664
2665/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 * If dest_cpu is allowed for this process, migrate the task to it.
2667 * This is accomplished by forcing the cpu_allowed mask to only
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002668 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 * the cpu_allowed mask is restored.
2670 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002671static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002673 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002675 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
2677 rq = task_rq_lock(p, &flags);
2678 if (!cpu_isset(dest_cpu, p->cpus_allowed)
2679 || unlikely(cpu_is_offline(dest_cpu)))
2680 goto out;
2681
2682 /* force the process onto the specified CPU */
2683 if (migrate_task(p, dest_cpu, &req)) {
2684 /* Need to wait for migration thread (might exit: take ref). */
2685 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002686
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 get_task_struct(mt);
2688 task_rq_unlock(rq, &flags);
2689 wake_up_process(mt);
2690 put_task_struct(mt);
2691 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07002692
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 return;
2694 }
2695out:
2696 task_rq_unlock(rq, &flags);
2697}
2698
2699/*
Nick Piggin476d1392005-06-25 14:57:29 -07002700 * sched_exec - execve() is a valuable balancing opportunity, because at
2701 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 */
2703void sched_exec(void)
2704{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002706 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002708 if (new_cpu != this_cpu)
2709 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710}
2711
2712/*
2713 * pull_task - move a task from a remote runqueue to the local runqueue.
2714 * Both runqueues must be locked.
2715 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002716static void pull_task(struct rq *src_rq, struct task_struct *p,
2717 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02002719 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002721 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 /*
2723 * Note that idle threads have a prio of MAX_PRIO, for this test
2724 * to be always true for them.
2725 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002726 check_preempt_curr(this_rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727}
2728
2729/*
2730 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
2731 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002732static
Ingo Molnar70b97a72006-07-03 00:25:42 -07002733int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002734 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002735 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736{
2737 /*
2738 * We do not migrate tasks that are:
2739 * 1) running (obviously), or
2740 * 2) cannot be migrated to this CPU due to cpus_allowed, or
2741 * 3) are cache-hot on their current CPU.
2742 */
Ingo Molnarcc367732007-10-15 17:00:18 +02002743 if (!cpu_isset(this_cpu, p->cpus_allowed)) {
2744 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002746 }
Nick Piggin81026792005-06-25 14:57:07 -07002747 *all_pinned = 0;
2748
Ingo Molnarcc367732007-10-15 17:00:18 +02002749 if (task_running(rq, p)) {
2750 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07002751 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
Ingo Molnarda84d962007-10-15 17:00:18 +02002754 /*
2755 * Aggressive migration if:
2756 * 1) task is cache cold, or
2757 * 2) too many balance attempts have failed.
2758 */
2759
Ingo Molnar6bc16652007-10-15 17:00:18 +02002760 if (!task_hot(p, rq->clock, sd) ||
2761 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002762#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02002763 if (task_hot(p, rq->clock, sd)) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002764 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02002765 schedstat_inc(p, se.nr_forced_migrations);
2766 }
Ingo Molnarda84d962007-10-15 17:00:18 +02002767#endif
2768 return 1;
2769 }
2770
Ingo Molnarcc367732007-10-15 17:00:18 +02002771 if (task_hot(p, rq->clock, sd)) {
2772 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02002773 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 return 1;
2776}
2777
Peter Williamse1d14842007-10-24 18:23:51 +02002778static unsigned long
2779balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
2780 unsigned long max_load_move, struct sched_domain *sd,
2781 enum cpu_idle_type idle, int *all_pinned,
2782 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02002783{
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002784 int loops = 0, pulled = 0, pinned = 0, skip_for_load;
Ingo Molnardd41f592007-07-09 18:51:59 +02002785 struct task_struct *p;
2786 long rem_load_move = max_load_move;
2787
Peter Williamse1d14842007-10-24 18:23:51 +02002788 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002789 goto out;
2790
2791 pinned = 1;
2792
2793 /*
2794 * Start the load-balancing iterator:
2795 */
2796 p = iterator->start(iterator->arg);
2797next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002798 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02002799 goto out;
2800 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002801 * To help distribute high priority tasks across CPUs we don't
Ingo Molnardd41f592007-07-09 18:51:59 +02002802 * skip a task if it will be the highest priority task (i.e. smallest
2803 * prio value) on its new queue regardless of its load weight
2804 */
2805 skip_for_load = (p->se.load.weight >> 1) > rem_load_move +
2806 SCHED_LOAD_SCALE_FUZZ;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002807 if ((skip_for_load && p->prio >= *this_best_prio) ||
Ingo Molnardd41f592007-07-09 18:51:59 +02002808 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002809 p = iterator->next(iterator->arg);
2810 goto next;
2811 }
2812
2813 pull_task(busiest, p, this_rq, this_cpu);
2814 pulled++;
2815 rem_load_move -= p->se.load.weight;
2816
2817 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002818 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002819 */
Peter Williamse1d14842007-10-24 18:23:51 +02002820 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002821 if (p->prio < *this_best_prio)
2822 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02002823 p = iterator->next(iterator->arg);
2824 goto next;
2825 }
2826out:
2827 /*
Peter Williamse1d14842007-10-24 18:23:51 +02002828 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02002829 * so we can safely collect pull_task() stats here rather than
2830 * inside pull_task().
2831 */
2832 schedstat_add(sd, lb_gained[idle], pulled);
2833
2834 if (all_pinned)
2835 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02002836
2837 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02002838}
Ingo Molnar48f24c42006-07-03 00:25:40 -07002839
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840/*
Peter Williams43010652007-08-09 11:16:46 +02002841 * move_tasks tries to move up to max_load_move weighted load from busiest to
2842 * this_rq, as part of a balancing operation within domain "sd".
2843 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 *
2845 * Called with both runqueues locked.
2846 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002847static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02002848 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002849 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07002850 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002852 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02002853 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002854 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855
Ingo Molnardd41f592007-07-09 18:51:59 +02002856 do {
Peter Williams43010652007-08-09 11:16:46 +02002857 total_load_moved +=
2858 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02002859 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002860 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02002861 class = class->next;
Peter Williams43010652007-08-09 11:16:46 +02002862 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863
Peter Williams43010652007-08-09 11:16:46 +02002864 return total_load_moved > 0;
2865}
2866
Peter Williamse1d14842007-10-24 18:23:51 +02002867static int
2868iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2869 struct sched_domain *sd, enum cpu_idle_type idle,
2870 struct rq_iterator *iterator)
2871{
2872 struct task_struct *p = iterator->start(iterator->arg);
2873 int pinned = 0;
2874
2875 while (p) {
2876 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
2877 pull_task(busiest, p, this_rq, this_cpu);
2878 /*
2879 * Right now, this is only the second place pull_task()
2880 * is called, so we can safely collect pull_task()
2881 * stats here rather than inside pull_task().
2882 */
2883 schedstat_inc(sd, lb_gained[idle]);
2884
2885 return 1;
2886 }
2887 p = iterator->next(iterator->arg);
2888 }
2889
2890 return 0;
2891}
2892
Peter Williams43010652007-08-09 11:16:46 +02002893/*
2894 * move_one_task tries to move exactly one task from busiest to this_rq, as
2895 * part of active balancing operations within "domain".
2896 * Returns 1 if successful and 0 otherwise.
2897 *
2898 * Called with both runqueues locked.
2899 */
2900static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2901 struct sched_domain *sd, enum cpu_idle_type idle)
2902{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002903 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02002904
2905 for (class = sched_class_highest; class; class = class->next)
Peter Williamse1d14842007-10-24 18:23:51 +02002906 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02002907 return 1;
2908
2909 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910}
2911
2912/*
2913 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07002914 * domain. It calculates and returns the amount of weighted load which
2915 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 */
2917static struct sched_group *
2918find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02002919 unsigned long *imbalance, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07002920 int *sd_idle, const cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921{
2922 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
2923 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002924 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07002925 unsigned long busiest_load_per_task, busiest_nr_running;
2926 unsigned long this_load_per_task, this_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02002927 int load_idx, group_imb = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002928#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2929 int power_savings_balance = 1;
2930 unsigned long leader_nr_running = 0, min_load_per_task = 0;
2931 unsigned long min_nr_running = ULONG_MAX;
2932 struct sched_group *group_min = NULL, *group_leader = NULL;
2933#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
2935 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002936 busiest_load_per_task = busiest_nr_running = 0;
2937 this_load_per_task = this_nr_running = 0;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002938 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002939 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002940 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002941 load_idx = sd->newidle_idx;
2942 else
2943 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944
2945 do {
Ken Chen908a7c12007-10-17 16:55:11 +02002946 unsigned long load, group_capacity, max_cpu_load, min_cpu_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 int local_group;
2948 int i;
Ken Chen908a7c12007-10-17 16:55:11 +02002949 int __group_imb = 0;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002950 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002951 unsigned long sum_nr_running, sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952
2953 local_group = cpu_isset(this_cpu, group->cpumask);
2954
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002955 if (local_group)
2956 balance_cpu = first_cpu(group->cpumask);
2957
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07002959 sum_weighted_load = sum_nr_running = avg_load = 0;
Ken Chen908a7c12007-10-17 16:55:11 +02002960 max_cpu_load = 0;
2961 min_cpu_load = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962
2963 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002964 struct rq *rq;
2965
2966 if (!cpu_isset(i, *cpus))
2967 continue;
2968
2969 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07002970
Suresh Siddha9439aab2007-07-19 21:28:35 +02002971 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07002972 *sd_idle = 0;
2973
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002975 if (local_group) {
2976 if (idle_cpu(i) && !first_idle_cpu) {
2977 first_idle_cpu = 1;
2978 balance_cpu = i;
2979 }
2980
Nick Piggina2000572006-02-10 01:51:02 -08002981 load = target_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02002982 } else {
Nick Piggina2000572006-02-10 01:51:02 -08002983 load = source_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02002984 if (load > max_cpu_load)
2985 max_cpu_load = load;
2986 if (min_cpu_load > load)
2987 min_cpu_load = load;
2988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989
2990 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07002991 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002992 sum_weighted_load += weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 }
2994
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002995 /*
2996 * First idle cpu or the first cpu(busiest) in this sched group
2997 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02002998 * domains. In the newly idle case, we will allow all the cpu's
2999 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003000 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02003001 if (idle != CPU_NEWLY_IDLE && local_group &&
3002 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003003 *balance = 0;
3004 goto ret;
3005 }
3006
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07003008 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009
3010 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07003011 avg_load = sg_div_cpu_power(group,
3012 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013
Ken Chen908a7c12007-10-17 16:55:11 +02003014 if ((max_cpu_load - min_cpu_load) > SCHED_LOAD_SCALE)
3015 __group_imb = 1;
3016
Eric Dumazet5517d862007-05-08 00:32:57 -07003017 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003018
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 if (local_group) {
3020 this_load = avg_load;
3021 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003022 this_nr_running = sum_nr_running;
3023 this_load_per_task = sum_weighted_load;
3024 } else if (avg_load > max_load &&
Ken Chen908a7c12007-10-17 16:55:11 +02003025 (sum_nr_running > group_capacity || __group_imb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 max_load = avg_load;
3027 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003028 busiest_nr_running = sum_nr_running;
3029 busiest_load_per_task = sum_weighted_load;
Ken Chen908a7c12007-10-17 16:55:11 +02003030 group_imb = __group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003032
3033#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3034 /*
3035 * Busy processors will not participate in power savings
3036 * balance.
3037 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003038 if (idle == CPU_NOT_IDLE ||
3039 !(sd->flags & SD_POWERSAVINGS_BALANCE))
3040 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003041
3042 /*
3043 * If the local group is idle or completely loaded
3044 * no need to do power savings balance at this domain
3045 */
3046 if (local_group && (this_nr_running >= group_capacity ||
3047 !this_nr_running))
3048 power_savings_balance = 0;
3049
Ingo Molnardd41f592007-07-09 18:51:59 +02003050 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003051 * If a group is already running at full capacity or idle,
3052 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02003053 */
3054 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003055 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02003056 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003057
Ingo Molnardd41f592007-07-09 18:51:59 +02003058 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003059 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003060 * This is the group from where we need to pick up the load
3061 * for saving power
3062 */
3063 if ((sum_nr_running < min_nr_running) ||
3064 (sum_nr_running == min_nr_running &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003065 first_cpu(group->cpumask) <
3066 first_cpu(group_min->cpumask))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003067 group_min = group;
3068 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003069 min_load_per_task = sum_weighted_load /
3070 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003071 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003072
Ingo Molnardd41f592007-07-09 18:51:59 +02003073 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003074 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02003075 * capacity but still has some space to pick up some load
3076 * from other group and save more power
3077 */
3078 if (sum_nr_running <= group_capacity - 1) {
3079 if (sum_nr_running > leader_nr_running ||
3080 (sum_nr_running == leader_nr_running &&
3081 first_cpu(group->cpumask) >
3082 first_cpu(group_leader->cpumask))) {
3083 group_leader = group;
3084 leader_nr_running = sum_nr_running;
3085 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07003086 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003087group_next:
3088#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 group = group->next;
3090 } while (group != sd->groups);
3091
Peter Williams2dd73a42006-06-27 02:54:34 -07003092 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 goto out_balanced;
3094
3095 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
3096
3097 if (this_load >= avg_load ||
3098 100*max_load <= sd->imbalance_pct*this_load)
3099 goto out_balanced;
3100
Peter Williams2dd73a42006-06-27 02:54:34 -07003101 busiest_load_per_task /= busiest_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003102 if (group_imb)
3103 busiest_load_per_task = min(busiest_load_per_task, avg_load);
3104
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 /*
3106 * We're trying to get all the cpus to the average_load, so we don't
3107 * want to push ourselves above the average load, nor do we wish to
3108 * reduce the max loaded cpu below the average load, as either of these
3109 * actions would just result in more rebalancing later, and ping-pong
3110 * tasks around. Thus we look for the minimum possible imbalance.
3111 * Negative imbalances (*we* are more loaded than anyone else) will
3112 * be counted as no imbalance for these purposes -- we can't fix that
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003113 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 * appear as very large values with unsigned longs.
3115 */
Peter Williams2dd73a42006-06-27 02:54:34 -07003116 if (max_load <= busiest_load_per_task)
3117 goto out_balanced;
3118
3119 /*
3120 * In the presence of smp nice balancing, certain scenarios can have
3121 * max load less than avg load(as we skip the groups at or below
3122 * its cpu_power, while calculating max_load..)
3123 */
3124 if (max_load < avg_load) {
3125 *imbalance = 0;
3126 goto small_imbalance;
3127 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003128
3129 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07003130 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003131
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07003133 *imbalance = min(max_pull * busiest->__cpu_power,
3134 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 / SCHED_LOAD_SCALE;
3136
Peter Williams2dd73a42006-06-27 02:54:34 -07003137 /*
3138 * if *imbalance is less than the average load per runnable task
3139 * there is no gaurantee that any tasks will be moved so we'll have
3140 * a think about bumping its value to force at least one task to be
3141 * moved
3142 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003143 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07003144 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07003145 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146
Peter Williams2dd73a42006-06-27 02:54:34 -07003147small_imbalance:
3148 pwr_move = pwr_now = 0;
3149 imbn = 2;
3150 if (this_nr_running) {
3151 this_load_per_task /= this_nr_running;
3152 if (busiest_load_per_task > this_load_per_task)
3153 imbn = 1;
3154 } else
3155 this_load_per_task = SCHED_LOAD_SCALE;
3156
Ingo Molnardd41f592007-07-09 18:51:59 +02003157 if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >=
3158 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07003159 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160 return busiest;
3161 }
3162
3163 /*
3164 * OK, we don't have enough imbalance to justify moving tasks,
3165 * however we may be able to increase total CPU power used by
3166 * moving them.
3167 */
3168
Eric Dumazet5517d862007-05-08 00:32:57 -07003169 pwr_now += busiest->__cpu_power *
3170 min(busiest_load_per_task, max_load);
3171 pwr_now += this->__cpu_power *
3172 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 pwr_now /= SCHED_LOAD_SCALE;
3174
3175 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07003176 tmp = sg_div_cpu_power(busiest,
3177 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07003179 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07003180 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181
3182 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07003183 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003184 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07003185 tmp = sg_div_cpu_power(this,
3186 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 else
Eric Dumazet5517d862007-05-08 00:32:57 -07003188 tmp = sg_div_cpu_power(this,
3189 busiest_load_per_task * SCHED_LOAD_SCALE);
3190 pwr_move += this->__cpu_power *
3191 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 pwr_move /= SCHED_LOAD_SCALE;
3193
3194 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003195 if (pwr_move > pwr_now)
3196 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 }
3198
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 return busiest;
3200
3201out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003202#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003203 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003204 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003206 if (this == group_leader && group_leader != group_min) {
3207 *imbalance = min_load_per_task;
3208 return group_min;
3209 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003210#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003211ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 *imbalance = 0;
3213 return NULL;
3214}
3215
3216/*
3217 * find_busiest_queue - find the busiest runqueue among the cpus in group.
3218 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003219static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003220find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003221 unsigned long imbalance, const cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003223 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07003224 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225 int i;
3226
3227 for_each_cpu_mask(i, group->cpumask) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003228 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003229
3230 if (!cpu_isset(i, *cpus))
3231 continue;
3232
Ingo Molnar48f24c42006-07-03 00:25:40 -07003233 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02003234 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235
Ingo Molnardd41f592007-07-09 18:51:59 +02003236 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07003237 continue;
3238
Ingo Molnardd41f592007-07-09 18:51:59 +02003239 if (wl > max_load) {
3240 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003241 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 }
3243 }
3244
3245 return busiest;
3246}
3247
3248/*
Nick Piggin77391d72005-06-25 14:57:30 -07003249 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
3250 * so long as it is large enough.
3251 */
3252#define MAX_PINNED_INTERVAL 512
3253
3254/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3256 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003258static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003259 struct sched_domain *sd, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003260 int *balance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261{
Peter Williams43010652007-08-09 11:16:46 +02003262 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003265 struct rq *busiest;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003266 unsigned long flags;
Nick Piggin5969fe02005-09-10 00:26:19 -07003267
Mike Travis7c16ec52008-04-04 18:11:11 -07003268 cpus_setall(*cpus);
3269
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003270 /*
3271 * When power savings policy is enabled for the parent domain, idle
3272 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02003273 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003274 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003275 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003276 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003277 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003278 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279
Ingo Molnar2d723762007-10-15 17:00:12 +02003280 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003282redo:
3283 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003284 cpus, balance);
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003285
Chen, Kenneth W06066712006-12-10 02:20:35 -08003286 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003287 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003288
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 if (!group) {
3290 schedstat_inc(sd, lb_nobusyg[idle]);
3291 goto out_balanced;
3292 }
3293
Mike Travis7c16ec52008-04-04 18:11:11 -07003294 busiest = find_busiest_queue(group, idle, imbalance, cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295 if (!busiest) {
3296 schedstat_inc(sd, lb_nobusyq[idle]);
3297 goto out_balanced;
3298 }
3299
Nick Piggindb935db2005-06-25 14:57:11 -07003300 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301
3302 schedstat_add(sd, lb_imbalance[idle], imbalance);
3303
Peter Williams43010652007-08-09 11:16:46 +02003304 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 if (busiest->nr_running > 1) {
3306 /*
3307 * Attempt to move tasks. If find_busiest_group has found
3308 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02003309 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 * correctly treated as an imbalance.
3311 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003312 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07003313 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02003314 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07003315 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07003316 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003317 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07003318
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003319 /*
3320 * some other cpu did the load balance for us.
3321 */
Peter Williams43010652007-08-09 11:16:46 +02003322 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003323 resched_cpu(this_cpu);
3324
Nick Piggin81026792005-06-25 14:57:07 -07003325 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003326 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003327 cpu_clear(cpu_of(busiest), *cpus);
3328 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003329 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07003330 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332 }
Nick Piggin81026792005-06-25 14:57:07 -07003333
Peter Williams43010652007-08-09 11:16:46 +02003334 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335 schedstat_inc(sd, lb_failed[idle]);
3336 sd->nr_balance_failed++;
3337
3338 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003340 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003341
3342 /* don't kick the migration_thread, if the curr
3343 * task on busiest cpu can't be moved to this_cpu
3344 */
3345 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003346 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003347 all_pinned = 1;
3348 goto out_one_pinned;
3349 }
3350
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 if (!busiest->active_balance) {
3352 busiest->active_balance = 1;
3353 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07003354 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003356 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07003357 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358 wake_up_process(busiest->migration_thread);
3359
3360 /*
3361 * We've kicked active balancing, reset the failure
3362 * counter.
3363 */
Nick Piggin39507452005-06-25 14:57:09 -07003364 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365 }
Nick Piggin81026792005-06-25 14:57:07 -07003366 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367 sd->nr_balance_failed = 0;
3368
Nick Piggin81026792005-06-25 14:57:07 -07003369 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370 /* We were unbalanced, so reset the balancing interval */
3371 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07003372 } else {
3373 /*
3374 * If we've begun active balancing, start to back off. This
3375 * case may not be covered by the all_pinned logic if there
3376 * is only 1 task on the busy runqueue (because we don't call
3377 * move_tasks).
3378 */
3379 if (sd->balance_interval < sd->max_interval)
3380 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381 }
3382
Peter Williams43010652007-08-09 11:16:46 +02003383 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003384 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Ingo Molnar6363ca52008-05-29 11:28:57 +02003385 return -1;
3386 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387
3388out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389 schedstat_inc(sd, lb_balanced[idle]);
3390
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003391 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003392
3393out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07003395 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
3396 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 sd->balance_interval *= 2;
3398
Ingo Molnar48f24c42006-07-03 00:25:40 -07003399 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003400 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Ingo Molnar6363ca52008-05-29 11:28:57 +02003401 return -1;
3402 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403}
3404
3405/*
3406 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3407 * tasks if there is an imbalance.
3408 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003409 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410 * this_rq is locked.
3411 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003412static int
Mike Travis7c16ec52008-04-04 18:11:11 -07003413load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd,
3414 cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415{
3416 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003417 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02003419 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07003420 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003421 int all_pinned = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07003422
3423 cpus_setall(*cpus);
Nick Piggin5969fe02005-09-10 00:26:19 -07003424
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003425 /*
3426 * When power savings policy is enabled for the parent domain, idle
3427 * sibling can pick up load irrespective of busy siblings. In this case,
3428 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003429 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003430 */
3431 if (sd->flags & SD_SHARE_CPUPOWER &&
3432 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003433 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434
Ingo Molnar2d723762007-10-15 17:00:12 +02003435 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003436redo:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003437 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Mike Travis7c16ec52008-04-04 18:11:11 -07003438 &sd_idle, cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003440 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003441 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442 }
3443
Mike Travis7c16ec52008-04-04 18:11:11 -07003444 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance, cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07003445 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003446 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003447 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 }
3449
Nick Piggindb935db2005-06-25 14:57:11 -07003450 BUG_ON(busiest == this_rq);
3451
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003452 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003453
Peter Williams43010652007-08-09 11:16:46 +02003454 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003455 if (busiest->nr_running > 1) {
3456 /* Attempt to move tasks */
3457 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003458 /* this_rq->clock is already updated */
3459 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02003460 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003461 imbalance, sd, CPU_NEWLY_IDLE,
3462 &all_pinned);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003463 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003464
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003465 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003466 cpu_clear(cpu_of(busiest), *cpus);
3467 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003468 goto redo;
3469 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003470 }
3471
Peter Williams43010652007-08-09 11:16:46 +02003472 if (!ld_moved) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003473 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003474 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3475 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003476 return -1;
3477 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003478 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479
Peter Williams43010652007-08-09 11:16:46 +02003480 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003481
3482out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003483 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003484 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003485 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003486 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003487 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003488
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003489 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490}
3491
3492/*
3493 * idle_balance is called by schedule() if this_cpu is about to become
3494 * idle. Attempts to pull tasks from other CPUs.
3495 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003496static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497{
3498 struct sched_domain *sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02003499 int pulled_task = -1;
3500 unsigned long next_balance = jiffies + HZ;
Mike Travis7c16ec52008-04-04 18:11:11 -07003501 cpumask_t tmpmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502
3503 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003504 unsigned long interval;
3505
3506 if (!(sd->flags & SD_LOAD_BALANCE))
3507 continue;
3508
3509 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003510 /* If we've pulled tasks over stop searching: */
Mike Travis7c16ec52008-04-04 18:11:11 -07003511 pulled_task = load_balance_newidle(this_cpu, this_rq,
3512 sd, &tmpmask);
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003513
3514 interval = msecs_to_jiffies(sd->balance_interval);
3515 if (time_after(next_balance, sd->last_balance + interval))
3516 next_balance = sd->last_balance + interval;
3517 if (pulled_task)
3518 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003520 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003521 /*
3522 * We are going idle. next_balance may be set based on
3523 * a busy processor. So reset next_balance.
3524 */
3525 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02003526 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527}
3528
3529/*
3530 * active_load_balance is run by migration threads. It pushes running tasks
3531 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
3532 * running on each physical CPU where possible, and avoids physical /
3533 * logical imbalances.
3534 *
3535 * Called with busiest_rq locked.
3536 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003537static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538{
Nick Piggin39507452005-06-25 14:57:09 -07003539 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003540 struct sched_domain *sd;
3541 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07003542
Ingo Molnar48f24c42006-07-03 00:25:40 -07003543 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07003544 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07003545 return;
3546
3547 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548
3549 /*
Nick Piggin39507452005-06-25 14:57:09 -07003550 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003551 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07003552 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553 */
Nick Piggin39507452005-06-25 14:57:09 -07003554 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555
Nick Piggin39507452005-06-25 14:57:09 -07003556 /* move a task from busiest_rq to target_rq */
3557 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003558 update_rq_clock(busiest_rq);
3559 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560
Nick Piggin39507452005-06-25 14:57:09 -07003561 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003562 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07003563 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003564 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07003565 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567
Ingo Molnar48f24c42006-07-03 00:25:40 -07003568 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003569 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570
Peter Williams43010652007-08-09 11:16:46 +02003571 if (move_one_task(target_rq, target_cpu, busiest_rq,
3572 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07003573 schedstat_inc(sd, alb_pushed);
3574 else
3575 schedstat_inc(sd, alb_failed);
3576 }
Nick Piggin39507452005-06-25 14:57:09 -07003577 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578}
3579
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003580#ifdef CONFIG_NO_HZ
3581static struct {
3582 atomic_t load_balancer;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003583 cpumask_t cpu_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003584} nohz ____cacheline_aligned = {
3585 .load_balancer = ATOMIC_INIT(-1),
3586 .cpu_mask = CPU_MASK_NONE,
3587};
3588
Christoph Lameter7835b982006-12-10 02:20:22 -08003589/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003590 * This routine will try to nominate the ilb (idle load balancing)
3591 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
3592 * load balancing on behalf of all those cpus. If all the cpus in the system
3593 * go into this tickless mode, then there will be no ilb owner (as there is
3594 * no need for one) and all the cpus will sleep till the next wakeup event
3595 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08003596 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003597 * For the ilb owner, tick is not stopped. And this tick will be used
3598 * for idle load balancing. ilb owner will still be part of
3599 * nohz.cpu_mask..
3600 *
3601 * While stopping the tick, this cpu will become the ilb owner if there
3602 * is no other owner. And will be the owner till that cpu becomes busy
3603 * or if all cpus in the system stop their ticks at which point
3604 * there is no need for ilb owner.
3605 *
3606 * When the ilb owner becomes busy, it nominates another owner, during the
3607 * next busy scheduler_tick()
3608 */
3609int select_nohz_load_balancer(int stop_tick)
3610{
3611 int cpu = smp_processor_id();
3612
3613 if (stop_tick) {
3614 cpu_set(cpu, nohz.cpu_mask);
3615 cpu_rq(cpu)->in_nohz_recently = 1;
3616
3617 /*
3618 * If we are going offline and still the leader, give up!
3619 */
3620 if (cpu_is_offline(cpu) &&
3621 atomic_read(&nohz.load_balancer) == cpu) {
3622 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3623 BUG();
3624 return 0;
3625 }
3626
3627 /* time for ilb owner also to sleep */
3628 if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3629 if (atomic_read(&nohz.load_balancer) == cpu)
3630 atomic_set(&nohz.load_balancer, -1);
3631 return 0;
3632 }
3633
3634 if (atomic_read(&nohz.load_balancer) == -1) {
3635 /* make me the ilb owner */
3636 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
3637 return 1;
3638 } else if (atomic_read(&nohz.load_balancer) == cpu)
3639 return 1;
3640 } else {
3641 if (!cpu_isset(cpu, nohz.cpu_mask))
3642 return 0;
3643
3644 cpu_clear(cpu, nohz.cpu_mask);
3645
3646 if (atomic_read(&nohz.load_balancer) == cpu)
3647 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3648 BUG();
3649 }
3650 return 0;
3651}
3652#endif
3653
3654static DEFINE_SPINLOCK(balancing);
3655
3656/*
Christoph Lameter7835b982006-12-10 02:20:22 -08003657 * It checks each scheduling domain to see if it is due to be balanced,
3658 * and initiates a balancing operation if so.
3659 *
3660 * Balancing parameters are set up in arch_init_sched_domains.
3661 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02003662static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08003663{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003664 int balance = 1;
3665 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08003666 unsigned long interval;
3667 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003668 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08003669 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003670 int update_next_balance = 0;
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02003671 int need_serialize;
Mike Travis7c16ec52008-04-04 18:11:11 -07003672 cpumask_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003674 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675 if (!(sd->flags & SD_LOAD_BALANCE))
3676 continue;
3677
3678 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003679 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680 interval *= sd->busy_factor;
3681
3682 /* scale ms to jiffies */
3683 interval = msecs_to_jiffies(interval);
3684 if (unlikely(!interval))
3685 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02003686 if (interval > HZ*NR_CPUS/10)
3687 interval = HZ*NR_CPUS/10;
3688
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02003689 need_serialize = sd->flags & SD_SERIALIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02003691 if (need_serialize) {
Christoph Lameter08c183f2006-12-10 02:20:29 -08003692 if (!spin_trylock(&balancing))
3693 goto out;
3694 }
3695
Christoph Lameterc9819f42006-12-10 02:20:25 -08003696 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003697 if (load_balance(cpu, rq, sd, idle, &balance, &tmp)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003698 /*
3699 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07003700 * longer idle, or one of our SMT siblings is
3701 * not idle.
3702 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003703 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003705 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706 }
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02003707 if (need_serialize)
Christoph Lameter08c183f2006-12-10 02:20:29 -08003708 spin_unlock(&balancing);
3709out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02003710 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08003711 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003712 update_next_balance = 1;
3713 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003714
3715 /*
3716 * Stop the load balance at this level. There is another
3717 * CPU in our sched group which is doing load balancing more
3718 * actively.
3719 */
3720 if (!balance)
3721 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02003723
3724 /*
3725 * next_balance will be updated only when there is a need.
3726 * When the cpu is attached to null domain for ex, it will not be
3727 * updated.
3728 */
3729 if (likely(update_next_balance))
3730 rq->next_balance = next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003731}
3732
3733/*
3734 * run_rebalance_domains is triggered when needed from the scheduler tick.
3735 * In CONFIG_NO_HZ case, the idle load balance owner will do the
3736 * rebalancing for all the cpus for whom scheduler ticks are stopped.
3737 */
3738static void run_rebalance_domains(struct softirq_action *h)
3739{
Ingo Molnardd41f592007-07-09 18:51:59 +02003740 int this_cpu = smp_processor_id();
3741 struct rq *this_rq = cpu_rq(this_cpu);
3742 enum cpu_idle_type idle = this_rq->idle_at_tick ?
3743 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003744
Ingo Molnardd41f592007-07-09 18:51:59 +02003745 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003746
3747#ifdef CONFIG_NO_HZ
3748 /*
3749 * If this cpu is the owner for idle load balancing, then do the
3750 * balancing on behalf of the other idle cpus whose ticks are
3751 * stopped.
3752 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003753 if (this_rq->idle_at_tick &&
3754 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003755 cpumask_t cpus = nohz.cpu_mask;
3756 struct rq *rq;
3757 int balance_cpu;
3758
Ingo Molnardd41f592007-07-09 18:51:59 +02003759 cpu_clear(this_cpu, cpus);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003760 for_each_cpu_mask(balance_cpu, cpus) {
3761 /*
3762 * If this cpu gets work to do, stop the load balancing
3763 * work being done for other cpus. Next load
3764 * balancing owner will pick it up.
3765 */
3766 if (need_resched())
3767 break;
3768
Oleg Nesterovde0cf892007-08-12 18:08:19 +02003769 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003770
3771 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003772 if (time_after(this_rq->next_balance, rq->next_balance))
3773 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003774 }
3775 }
3776#endif
3777}
3778
3779/*
3780 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
3781 *
3782 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
3783 * idle load balancing owner or decide to stop the periodic load balancing,
3784 * if the whole system is idle.
3785 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003786static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003787{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003788#ifdef CONFIG_NO_HZ
3789 /*
3790 * If we were in the nohz mode recently and busy at the current
3791 * scheduler tick, then check if we need to nominate new idle
3792 * load balancer.
3793 */
3794 if (rq->in_nohz_recently && !rq->idle_at_tick) {
3795 rq->in_nohz_recently = 0;
3796
3797 if (atomic_read(&nohz.load_balancer) == cpu) {
3798 cpu_clear(cpu, nohz.cpu_mask);
3799 atomic_set(&nohz.load_balancer, -1);
3800 }
3801
3802 if (atomic_read(&nohz.load_balancer) == -1) {
3803 /*
3804 * simple selection for now: Nominate the
3805 * first cpu in the nohz list to be the next
3806 * ilb owner.
3807 *
3808 * TBD: Traverse the sched domains and nominate
3809 * the nearest cpu in the nohz.cpu_mask.
3810 */
3811 int ilb = first_cpu(nohz.cpu_mask);
3812
Mike Travis434d53b2008-04-04 18:11:04 -07003813 if (ilb < nr_cpu_ids)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003814 resched_cpu(ilb);
3815 }
3816 }
3817
3818 /*
3819 * If this cpu is idle and doing idle load balancing for all the
3820 * cpus with ticks stopped, is it time for that to stop?
3821 */
3822 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
3823 cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3824 resched_cpu(cpu);
3825 return;
3826 }
3827
3828 /*
3829 * If this cpu is idle and the idle load balancing is done by
3830 * someone else, then no need raise the SCHED_SOFTIRQ
3831 */
3832 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
3833 cpu_isset(cpu, nohz.cpu_mask))
3834 return;
3835#endif
3836 if (time_after_eq(jiffies, rq->next_balance))
3837 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838}
Ingo Molnardd41f592007-07-09 18:51:59 +02003839
3840#else /* CONFIG_SMP */
3841
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842/*
3843 * on UP we do not need to balance between CPUs:
3844 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003845static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846{
3847}
Ingo Molnardd41f592007-07-09 18:51:59 +02003848
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849#endif
3850
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851DEFINE_PER_CPU(struct kernel_stat, kstat);
3852
3853EXPORT_PER_CPU_SYMBOL(kstat);
3854
3855/*
Ingo Molnar41b86e92007-07-09 18:51:58 +02003856 * Return p->sum_exec_runtime plus any more ns on the sched_clock
3857 * that have not yet been banked in case the task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858 */
Ingo Molnar41b86e92007-07-09 18:51:58 +02003859unsigned long long task_sched_runtime(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003862 u64 ns, delta_exec;
3863 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003864
Ingo Molnar41b86e92007-07-09 18:51:58 +02003865 rq = task_rq_lock(p, &flags);
3866 ns = p->se.sum_exec_runtime;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01003867 if (task_current(rq, p)) {
Ingo Molnara8e504d2007-08-09 11:16:47 +02003868 update_rq_clock(rq);
3869 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003870 if ((s64)delta_exec > 0)
3871 ns += delta_exec;
3872 }
3873 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003874
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875 return ns;
3876}
3877
3878/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879 * Account user cpu time to a process.
3880 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881 * @cputime: the cpu time spent in user space since the last update
3882 */
3883void account_user_time(struct task_struct *p, cputime_t cputime)
3884{
3885 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3886 cputime64_t tmp;
3887
3888 p->utime = cputime_add(p->utime, cputime);
3889
3890 /* Add user time to cpustat. */
3891 tmp = cputime_to_cputime64(cputime);
3892 if (TASK_NICE(p) > 0)
3893 cpustat->nice = cputime64_add(cpustat->nice, tmp);
3894 else
3895 cpustat->user = cputime64_add(cpustat->user, tmp);
3896}
3897
3898/*
Laurent Vivier94886b82007-10-15 17:00:19 +02003899 * Account guest cpu time to a process.
3900 * @p: the process that the cpu time gets accounted to
3901 * @cputime: the cpu time spent in virtual machine since the last update
3902 */
Adrian Bunkf7402e02007-10-29 21:18:10 +01003903static void account_guest_time(struct task_struct *p, cputime_t cputime)
Laurent Vivier94886b82007-10-15 17:00:19 +02003904{
3905 cputime64_t tmp;
3906 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3907
3908 tmp = cputime_to_cputime64(cputime);
3909
3910 p->utime = cputime_add(p->utime, cputime);
3911 p->gtime = cputime_add(p->gtime, cputime);
3912
3913 cpustat->user = cputime64_add(cpustat->user, tmp);
3914 cpustat->guest = cputime64_add(cpustat->guest, tmp);
3915}
3916
3917/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07003918 * Account scaled user cpu time to a process.
3919 * @p: the process that the cpu time gets accounted to
3920 * @cputime: the cpu time spent in user space since the last update
3921 */
3922void account_user_time_scaled(struct task_struct *p, cputime_t cputime)
3923{
3924 p->utimescaled = cputime_add(p->utimescaled, cputime);
3925}
3926
3927/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 * Account system cpu time to a process.
3929 * @p: the process that the cpu time gets accounted to
3930 * @hardirq_offset: the offset to subtract from hardirq_count()
3931 * @cputime: the cpu time spent in kernel space since the last update
3932 */
3933void account_system_time(struct task_struct *p, int hardirq_offset,
3934 cputime_t cputime)
3935{
3936 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003937 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938 cputime64_t tmp;
3939
Harvey Harrison983ed7a2008-04-24 18:17:55 -07003940 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) {
3941 account_guest_time(p, cputime);
3942 return;
3943 }
Laurent Vivier94886b82007-10-15 17:00:19 +02003944
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945 p->stime = cputime_add(p->stime, cputime);
3946
3947 /* Add system time to cpustat. */
3948 tmp = cputime_to_cputime64(cputime);
3949 if (hardirq_count() - hardirq_offset)
3950 cpustat->irq = cputime64_add(cpustat->irq, tmp);
3951 else if (softirq_count())
3952 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003953 else if (p != rq->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954 cpustat->system = cputime64_add(cpustat->system, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003955 else if (atomic_read(&rq->nr_iowait) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3957 else
3958 cpustat->idle = cputime64_add(cpustat->idle, tmp);
3959 /* Account for system time used */
3960 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961}
3962
3963/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07003964 * Account scaled system cpu time to a process.
3965 * @p: the process that the cpu time gets accounted to
3966 * @hardirq_offset: the offset to subtract from hardirq_count()
3967 * @cputime: the cpu time spent in kernel space since the last update
3968 */
3969void account_system_time_scaled(struct task_struct *p, cputime_t cputime)
3970{
3971 p->stimescaled = cputime_add(p->stimescaled, cputime);
3972}
3973
3974/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 * Account for involuntary wait time.
3976 * @p: the process from which the cpu time has been stolen
3977 * @steal: the cpu time spent in involuntary wait
3978 */
3979void account_steal_time(struct task_struct *p, cputime_t steal)
3980{
3981 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3982 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07003983 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984
3985 if (p == rq->idle) {
3986 p->stime = cputime_add(p->stime, steal);
3987 if (atomic_read(&rq->nr_iowait) > 0)
3988 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3989 else
3990 cpustat->idle = cputime64_add(cpustat->idle, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08003991 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992 cpustat->steal = cputime64_add(cpustat->steal, tmp);
3993}
3994
Christoph Lameter7835b982006-12-10 02:20:22 -08003995/*
3996 * This function gets called by the timer code, with HZ frequency.
3997 * We call it with interrupts disabled.
3998 *
3999 * It also gets called by the fork code, when changing the parent's
4000 * timeslices.
4001 */
4002void scheduler_tick(void)
4003{
Christoph Lameter7835b982006-12-10 02:20:22 -08004004 int cpu = smp_processor_id();
4005 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004006 struct task_struct *curr = rq->curr;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004007
4008 sched_clock_tick();
Christoph Lameter7835b982006-12-10 02:20:22 -08004009
Ingo Molnardd41f592007-07-09 18:51:59 +02004010 spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004011 update_rq_clock(rq);
Ingo Molnarf1a438d2007-08-09 11:16:45 +02004012 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01004013 curr->sched_class->task_tick(rq, curr, 0);
Ingo Molnardd41f592007-07-09 18:51:59 +02004014 spin_unlock(&rq->lock);
4015
Christoph Lametere418e1c2006-12-10 02:20:23 -08004016#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02004017 rq->idle_at_tick = idle_cpu(cpu);
4018 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08004019#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020}
4021
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022#if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
4023
Srinivasa Ds43627582008-02-23 15:24:04 -08004024void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025{
4026 /*
4027 * Underflow?
4028 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004029 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
4030 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031 preempt_count() += val;
4032 /*
4033 * Spinlock count overflowing soon?
4034 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08004035 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
4036 PREEMPT_MASK - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037}
4038EXPORT_SYMBOL(add_preempt_count);
4039
Srinivasa Ds43627582008-02-23 15:24:04 -08004040void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041{
4042 /*
4043 * Underflow?
4044 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004045 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
4046 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047 /*
4048 * Is the spinlock portion underflowing?
4049 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004050 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
4051 !(preempt_count() & PREEMPT_MASK)))
4052 return;
4053
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054 preempt_count() -= val;
4055}
4056EXPORT_SYMBOL(sub_preempt_count);
4057
4058#endif
4059
4060/*
Ingo Molnardd41f592007-07-09 18:51:59 +02004061 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004063static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064{
Satyam Sharma838225b2007-10-24 18:23:50 +02004065 struct pt_regs *regs = get_irq_regs();
4066
4067 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
4068 prev->comm, prev->pid, preempt_count());
4069
Ingo Molnardd41f592007-07-09 18:51:59 +02004070 debug_show_held_locks(prev);
4071 if (irqs_disabled())
4072 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02004073
4074 if (regs)
4075 show_regs(regs);
4076 else
4077 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02004078}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079
Ingo Molnardd41f592007-07-09 18:51:59 +02004080/*
4081 * Various schedule()-time debugging checks and statistics:
4082 */
4083static inline void schedule_debug(struct task_struct *prev)
4084{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004086 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087 * schedule() atomically, we ignore that path for now.
4088 * Otherwise, whine if we are scheduling when we should not be.
4089 */
Roel Kluin3f33a7c2008-05-13 23:44:11 +02004090 if (unlikely(in_atomic_preempt_off() && !prev->exit_state))
Ingo Molnardd41f592007-07-09 18:51:59 +02004091 __schedule_bug(prev);
4092
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
4094
Ingo Molnar2d723762007-10-15 17:00:12 +02004095 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004096#ifdef CONFIG_SCHEDSTATS
4097 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02004098 schedstat_inc(this_rq(), bkl_count);
4099 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004100 }
4101#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02004102}
4103
4104/*
4105 * Pick up the highest-prio task:
4106 */
4107static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004108pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02004109{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02004110 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02004111 struct task_struct *p;
4112
4113 /*
4114 * Optimization: we know that if all tasks are in
4115 * the fair class we can call that function directly:
4116 */
4117 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004118 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004119 if (likely(p))
4120 return p;
4121 }
4122
4123 class = sched_class_highest;
4124 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004125 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004126 if (p)
4127 return p;
4128 /*
4129 * Will never be NULL as the idle class always
4130 * returns a non-NULL p:
4131 */
4132 class = class->next;
4133 }
4134}
4135
4136/*
4137 * schedule() is the main scheduler function.
4138 */
4139asmlinkage void __sched schedule(void)
4140{
4141 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08004142 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02004143 struct rq *rq;
Mike Galbraithf333fdc2008-05-12 21:20:55 +02004144 int cpu, hrtick = sched_feat(HRTICK);
Ingo Molnardd41f592007-07-09 18:51:59 +02004145
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146need_resched:
4147 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02004148 cpu = smp_processor_id();
4149 rq = cpu_rq(cpu);
4150 rcu_qsctr_inc(cpu);
4151 prev = rq->curr;
4152 switch_count = &prev->nivcsw;
4153
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154 release_kernel_lock(prev);
4155need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156
Ingo Molnardd41f592007-07-09 18:51:59 +02004157 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158
Mike Galbraithf333fdc2008-05-12 21:20:55 +02004159 if (hrtick)
4160 hrtick_clear(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004161
Ingo Molnar1e819952007-10-15 17:00:13 +02004162 /*
4163 * Do the rq-clock update outside the rq lock:
4164 */
4165 local_irq_disable();
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004166 update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02004167 spin_lock(&rq->lock);
4168 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169
Ingo Molnardd41f592007-07-09 18:51:59 +02004170 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
4171 if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
Roel Kluin23e3c3c2008-03-13 17:41:59 +01004172 signal_pending(prev))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02004173 prev->state = TASK_RUNNING;
4174 } else {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004175 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02004176 }
4177 switch_count = &prev->nvcsw;
4178 }
4179
Steven Rostedt9a897c52008-01-25 21:08:22 +01004180#ifdef CONFIG_SMP
4181 if (prev->sched_class->pre_schedule)
4182 prev->sched_class->pre_schedule(rq, prev);
4183#endif
Steven Rostedtf65eda42008-01-25 21:08:07 +01004184
Ingo Molnardd41f592007-07-09 18:51:59 +02004185 if (unlikely(!rq->nr_running))
4186 idle_balance(cpu, rq);
4187
Ingo Molnar31ee5292007-08-09 11:16:49 +02004188 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004189 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191 if (likely(prev != next)) {
David Simner673a90a2008-04-29 10:08:59 +01004192 sched_info_switch(prev, next);
4193
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194 rq->nr_switches++;
4195 rq->curr = next;
4196 ++*switch_count;
4197
Ingo Molnardd41f592007-07-09 18:51:59 +02004198 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004199 /*
4200 * the context switch might have flipped the stack from under
4201 * us, hence refresh the local variables.
4202 */
4203 cpu = smp_processor_id();
4204 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205 } else
4206 spin_unlock_irq(&rq->lock);
4207
Mike Galbraithf333fdc2008-05-12 21:20:55 +02004208 if (hrtick)
4209 hrtick_set(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004210
4211 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004213
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214 preempt_enable_no_resched();
4215 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
4216 goto need_resched;
4217}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218EXPORT_SYMBOL(schedule);
4219
4220#ifdef CONFIG_PREEMPT
4221/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004222 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004223 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224 * occur there and call schedule directly.
4225 */
4226asmlinkage void __sched preempt_schedule(void)
4227{
4228 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004229
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230 /*
4231 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004232 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07004234 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235 return;
4236
Andi Kleen3a5c3592007-10-15 17:00:14 +02004237 do {
4238 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004239 schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004240 sub_preempt_count(PREEMPT_ACTIVE);
4241
4242 /*
4243 * Check again in case we missed a preemption opportunity
4244 * between schedule and now.
4245 */
4246 barrier();
4247 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249EXPORT_SYMBOL(preempt_schedule);
4250
4251/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004252 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253 * off of irq context.
4254 * Note, that this is called and return with irqs disabled. This will
4255 * protect us against recursive calling from irq.
4256 */
4257asmlinkage void __sched preempt_schedule_irq(void)
4258{
4259 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004260
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004261 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262 BUG_ON(ti->preempt_count || !irqs_disabled());
4263
Andi Kleen3a5c3592007-10-15 17:00:14 +02004264 do {
4265 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004266 local_irq_enable();
4267 schedule();
4268 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004269 sub_preempt_count(PREEMPT_ACTIVE);
4270
4271 /*
4272 * Check again in case we missed a preemption opportunity
4273 * between schedule and now.
4274 */
4275 barrier();
4276 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277}
4278
4279#endif /* CONFIG_PREEMPT */
4280
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004281int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
4282 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004284 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286EXPORT_SYMBOL(default_wake_function);
4287
4288/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004289 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4290 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291 * number) then we wake all the non-exclusive tasks and one exclusive task.
4292 *
4293 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004294 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4296 */
4297static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
4298 int nr_exclusive, int sync, void *key)
4299{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004300 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004302 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004303 unsigned flags = curr->flags;
4304
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004306 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307 break;
4308 }
4309}
4310
4311/**
4312 * __wake_up - wake up threads blocked on a waitqueue.
4313 * @q: the waitqueue
4314 * @mode: which threads
4315 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004316 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004318void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004319 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320{
4321 unsigned long flags;
4322
4323 spin_lock_irqsave(&q->lock, flags);
4324 __wake_up_common(q, mode, nr_exclusive, 0, key);
4325 spin_unlock_irqrestore(&q->lock, flags);
4326}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327EXPORT_SYMBOL(__wake_up);
4328
4329/*
4330 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4331 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004332void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333{
4334 __wake_up_common(q, mode, 1, 0, NULL);
4335}
4336
4337/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07004338 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339 * @q: the waitqueue
4340 * @mode: which threads
4341 * @nr_exclusive: how many wake-one or wake-many threads to wake up
4342 *
4343 * The sync wakeup differs that the waker knows that it will schedule
4344 * away soon, so while the target thread will be woken up, it will not
4345 * be migrated to another CPU - ie. the two threads are 'synchronized'
4346 * with each other. This can prevent needless bouncing between CPUs.
4347 *
4348 * On UP it can prevent extra preemption.
4349 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004350void
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004351__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352{
4353 unsigned long flags;
4354 int sync = 1;
4355
4356 if (unlikely(!q))
4357 return;
4358
4359 if (unlikely(!nr_exclusive))
4360 sync = 0;
4361
4362 spin_lock_irqsave(&q->lock, flags);
4363 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
4364 spin_unlock_irqrestore(&q->lock, flags);
4365}
4366EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4367
Ingo Molnarb15136e2007-10-24 18:23:48 +02004368void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369{
4370 unsigned long flags;
4371
4372 spin_lock_irqsave(&x->wait.lock, flags);
4373 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004374 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375 spin_unlock_irqrestore(&x->wait.lock, flags);
4376}
4377EXPORT_SYMBOL(complete);
4378
Ingo Molnarb15136e2007-10-24 18:23:48 +02004379void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380{
4381 unsigned long flags;
4382
4383 spin_lock_irqsave(&x->wait.lock, flags);
4384 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004385 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386 spin_unlock_irqrestore(&x->wait.lock, flags);
4387}
4388EXPORT_SYMBOL(complete_all);
4389
Andi Kleen8cbbe862007-10-15 17:00:14 +02004390static inline long __sched
4391do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393 if (!x->done) {
4394 DECLARE_WAITQUEUE(wait, current);
4395
4396 wait.flags |= WQ_FLAG_EXCLUSIVE;
4397 __add_wait_queue_tail(&x->wait, &wait);
4398 do {
Matthew Wilcox009e5772007-12-06 12:29:54 -05004399 if ((state == TASK_INTERRUPTIBLE &&
4400 signal_pending(current)) ||
4401 (state == TASK_KILLABLE &&
4402 fatal_signal_pending(current))) {
Andi Kleen8cbbe862007-10-15 17:00:14 +02004403 __remove_wait_queue(&x->wait, &wait);
4404 return -ERESTARTSYS;
4405 }
4406 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004408 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409 spin_lock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004410 if (!timeout) {
4411 __remove_wait_queue(&x->wait, &wait);
4412 return timeout;
4413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414 } while (!x->done);
4415 __remove_wait_queue(&x->wait, &wait);
4416 }
4417 x->done--;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004418 return timeout;
4419}
4420
4421static long __sched
4422wait_for_common(struct completion *x, long timeout, int state)
4423{
4424 might_sleep();
4425
4426 spin_lock_irq(&x->wait.lock);
4427 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004429 return timeout;
4430}
4431
Ingo Molnarb15136e2007-10-24 18:23:48 +02004432void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004433{
4434 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435}
4436EXPORT_SYMBOL(wait_for_completion);
4437
Ingo Molnarb15136e2007-10-24 18:23:48 +02004438unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4440{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004441 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442}
4443EXPORT_SYMBOL(wait_for_completion_timeout);
4444
Andi Kleen8cbbe862007-10-15 17:00:14 +02004445int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446{
Andi Kleen51e97992007-10-18 21:32:55 +02004447 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4448 if (t == -ERESTARTSYS)
4449 return t;
4450 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451}
4452EXPORT_SYMBOL(wait_for_completion_interruptible);
4453
Ingo Molnarb15136e2007-10-24 18:23:48 +02004454unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455wait_for_completion_interruptible_timeout(struct completion *x,
4456 unsigned long timeout)
4457{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004458 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459}
4460EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4461
Matthew Wilcox009e5772007-12-06 12:29:54 -05004462int __sched wait_for_completion_killable(struct completion *x)
4463{
4464 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
4465 if (t == -ERESTARTSYS)
4466 return t;
4467 return 0;
4468}
4469EXPORT_SYMBOL(wait_for_completion_killable);
4470
Andi Kleen8cbbe862007-10-15 17:00:14 +02004471static long __sched
4472sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004473{
4474 unsigned long flags;
4475 wait_queue_t wait;
4476
4477 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478
Andi Kleen8cbbe862007-10-15 17:00:14 +02004479 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480
Andi Kleen8cbbe862007-10-15 17:00:14 +02004481 spin_lock_irqsave(&q->lock, flags);
4482 __add_wait_queue(q, &wait);
4483 spin_unlock(&q->lock);
4484 timeout = schedule_timeout(timeout);
4485 spin_lock_irq(&q->lock);
4486 __remove_wait_queue(q, &wait);
4487 spin_unlock_irqrestore(&q->lock, flags);
4488
4489 return timeout;
4490}
4491
4492void __sched interruptible_sleep_on(wait_queue_head_t *q)
4493{
4494 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496EXPORT_SYMBOL(interruptible_sleep_on);
4497
Ingo Molnar0fec1712007-07-09 18:52:01 +02004498long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004499interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004501 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4504
Ingo Molnar0fec1712007-07-09 18:52:01 +02004505void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004507 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509EXPORT_SYMBOL(sleep_on);
4510
Ingo Molnar0fec1712007-07-09 18:52:01 +02004511long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004513 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515EXPORT_SYMBOL(sleep_on_timeout);
4516
Ingo Molnarb29739f2006-06-27 02:54:51 -07004517#ifdef CONFIG_RT_MUTEXES
4518
4519/*
4520 * rt_mutex_setprio - set the current priority of a task
4521 * @p: task
4522 * @prio: prio value (kernel-internal form)
4523 *
4524 * This function changes the 'effective' priority of a task. It does
4525 * not touch ->normal_prio like __setscheduler().
4526 *
4527 * Used by the rt_mutex code to implement priority inheritance logic.
4528 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004529void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07004530{
4531 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004532 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004533 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01004534 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004535
4536 BUG_ON(prio < 0 || prio > MAX_PRIO);
4537
4538 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004539 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004540
Andrew Mortond5f9f942007-05-08 20:27:06 -07004541 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004542 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004543 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004544 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004545 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004546 if (running)
4547 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02004548
4549 if (rt_prio(prio))
4550 p->sched_class = &rt_sched_class;
4551 else
4552 p->sched_class = &fair_sched_class;
4553
Ingo Molnarb29739f2006-06-27 02:54:51 -07004554 p->prio = prio;
4555
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004556 if (running)
4557 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004558 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004559 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004560
4561 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004562 }
4563 task_rq_unlock(rq, &flags);
4564}
4565
4566#endif
4567
Ingo Molnar36c8b582006-07-03 00:25:41 -07004568void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569{
Ingo Molnardd41f592007-07-09 18:51:59 +02004570 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004572 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573
4574 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
4575 return;
4576 /*
4577 * We have to be careful, if called from sys_setpriority(),
4578 * the task might be in the middle of scheduling on another CPU.
4579 */
4580 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004581 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582 /*
4583 * The RT priorities are set via sched_setscheduler(), but we still
4584 * allow the 'normal' nice value to be set - but as expected
4585 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02004586 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587 */
Ingo Molnare05606d2007-07-09 18:51:59 +02004588 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589 p->static_prio = NICE_TO_PRIO(nice);
4590 goto out_unlock;
4591 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004592 on_rq = p->se.on_rq;
Ingo Molnar6363ca52008-05-29 11:28:57 +02004593 if (on_rq) {
Ingo Molnar69be72c2007-08-09 11:16:49 +02004594 dequeue_task(rq, p, 0);
Ingo Molnar6363ca52008-05-29 11:28:57 +02004595 dec_load(rq, p);
4596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07004599 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004600 old_prio = p->prio;
4601 p->prio = effective_prio(p);
4602 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603
Ingo Molnardd41f592007-07-09 18:51:59 +02004604 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004605 enqueue_task(rq, p, 0);
Ingo Molnar6363ca52008-05-29 11:28:57 +02004606 inc_load(rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07004608 * If the task increased its priority or is running and
4609 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07004611 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612 resched_task(rq->curr);
4613 }
4614out_unlock:
4615 task_rq_unlock(rq, &flags);
4616}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617EXPORT_SYMBOL(set_user_nice);
4618
Matt Mackalle43379f2005-05-01 08:59:00 -07004619/*
4620 * can_nice - check if a task can reduce its nice value
4621 * @p: task
4622 * @nice: nice value
4623 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004624int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07004625{
Matt Mackall024f4742005-08-18 11:24:19 -07004626 /* convert nice value [19,-20] to rlimit style value [1,40] */
4627 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004628
Matt Mackalle43379f2005-05-01 08:59:00 -07004629 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
4630 capable(CAP_SYS_NICE));
4631}
4632
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633#ifdef __ARCH_WANT_SYS_NICE
4634
4635/*
4636 * sys_nice - change the priority of the current process.
4637 * @increment: priority increment
4638 *
4639 * sys_setpriority is a more generic, but much slower function that
4640 * does similar things.
4641 */
4642asmlinkage long sys_nice(int increment)
4643{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004644 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645
4646 /*
4647 * Setpriority might change our priority at the same moment.
4648 * We don't have to worry. Conceptually one call occurs first
4649 * and we have a single winner.
4650 */
Matt Mackalle43379f2005-05-01 08:59:00 -07004651 if (increment < -40)
4652 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653 if (increment > 40)
4654 increment = 40;
4655
4656 nice = PRIO_TO_NICE(current->static_prio) + increment;
4657 if (nice < -20)
4658 nice = -20;
4659 if (nice > 19)
4660 nice = 19;
4661
Matt Mackalle43379f2005-05-01 08:59:00 -07004662 if (increment < 0 && !can_nice(current, nice))
4663 return -EPERM;
4664
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665 retval = security_task_setnice(current, nice);
4666 if (retval)
4667 return retval;
4668
4669 set_user_nice(current, nice);
4670 return 0;
4671}
4672
4673#endif
4674
4675/**
4676 * task_prio - return the priority value of a given task.
4677 * @p: the task in question.
4678 *
4679 * This is the priority value as seen by users in /proc.
4680 * RT tasks are offset by -200. Normal tasks are centered
4681 * around 0, value goes from -16 to +15.
4682 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004683int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684{
4685 return p->prio - MAX_RT_PRIO;
4686}
4687
4688/**
4689 * task_nice - return the nice value of a given task.
4690 * @p: the task in question.
4691 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004692int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693{
4694 return TASK_NICE(p);
4695}
Pavel Roskin150d8be2008-03-05 16:56:37 -05004696EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697
4698/**
4699 * idle_cpu - is a given cpu idle currently?
4700 * @cpu: the processor in question.
4701 */
4702int idle_cpu(int cpu)
4703{
4704 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
4705}
4706
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707/**
4708 * idle_task - return the idle task for a given cpu.
4709 * @cpu: the processor in question.
4710 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004711struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712{
4713 return cpu_rq(cpu)->idle;
4714}
4715
4716/**
4717 * find_process_by_pid - find a process with a matching PID value.
4718 * @pid: the pid in question.
4719 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02004720static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07004722 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723}
4724
4725/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02004726static void
4727__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728{
Ingo Molnardd41f592007-07-09 18:51:59 +02004729 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004730
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02004732 switch (p->policy) {
4733 case SCHED_NORMAL:
4734 case SCHED_BATCH:
4735 case SCHED_IDLE:
4736 p->sched_class = &fair_sched_class;
4737 break;
4738 case SCHED_FIFO:
4739 case SCHED_RR:
4740 p->sched_class = &rt_sched_class;
4741 break;
4742 }
4743
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004745 p->normal_prio = normal_prio(p);
4746 /* we are holding p->pi_lock already */
4747 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07004748 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749}
4750
4751/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004752 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753 * @p: the task in question.
4754 * @policy: new policy.
4755 * @param: structure containing the new RT priority.
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004756 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004757 * NOTE that the task may be already dead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004759int sched_setscheduler(struct task_struct *p, int policy,
4760 struct sched_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004762 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01004764 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004765 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766
Steven Rostedt66e53932006-06-27 02:54:44 -07004767 /* may grab non-irq protected spin_locks */
4768 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769recheck:
4770 /* double check policy once rq lock held */
4771 if (policy < 0)
4772 policy = oldpolicy = p->policy;
4773 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02004774 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
4775 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08004776 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777 /*
4778 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02004779 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
4780 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781 */
4782 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004783 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04004784 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02004786 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787 return -EINVAL;
4788
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004789 /*
4790 * Allow unprivileged RT tasks to decrease priority:
4791 */
4792 if (!capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02004793 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004794 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004795
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004796 if (!lock_task_sighand(p, &flags))
4797 return -ESRCH;
4798 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
4799 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004800
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004801 /* can't set/change the rt policy */
4802 if (policy != p->policy && !rlim_rtprio)
4803 return -EPERM;
4804
4805 /* can't increase priority */
4806 if (param->sched_priority > p->rt_priority &&
4807 param->sched_priority > rlim_rtprio)
4808 return -EPERM;
4809 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004810 /*
4811 * Like positive nice levels, dont allow tasks to
4812 * move out of SCHED_IDLE either:
4813 */
4814 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
4815 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004816
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004817 /* can't change other user's priorities */
4818 if ((current->euid != p->euid) &&
4819 (current->euid != p->uid))
4820 return -EPERM;
4821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822
Peter Zijlstrab68aa232008-02-13 15:45:40 +01004823#ifdef CONFIG_RT_GROUP_SCHED
4824 /*
4825 * Do not allow realtime tasks into groups that have no runtime
4826 * assigned.
4827 */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02004828 if (rt_policy(policy) && task_group(p)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01004829 return -EPERM;
4830#endif
4831
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832 retval = security_task_setscheduler(p, policy, param);
4833 if (retval)
4834 return retval;
4835 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07004836 * make sure no PI-waiters arrive (or leave) while we are
4837 * changing the priority of the task:
4838 */
4839 spin_lock_irqsave(&p->pi_lock, flags);
4840 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841 * To be able to change p->policy safely, the apropriate
4842 * runqueue lock must be held.
4843 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07004844 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845 /* recheck policy now with rq lock held */
4846 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
4847 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004848 __task_rq_unlock(rq);
4849 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850 goto recheck;
4851 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02004852 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004853 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004854 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004855 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004856 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004857 if (running)
4858 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02004859
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004861 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02004862
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004863 if (running)
4864 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004865 if (on_rq) {
4866 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004867
4868 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004869 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07004870 __task_rq_unlock(rq);
4871 spin_unlock_irqrestore(&p->pi_lock, flags);
4872
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07004873 rt_mutex_adjust_pi(p);
4874
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875 return 0;
4876}
4877EXPORT_SYMBOL_GPL(sched_setscheduler);
4878
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004879static int
4880do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882 struct sched_param lparam;
4883 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004884 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004885
4886 if (!param || pid < 0)
4887 return -EINVAL;
4888 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
4889 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004890
4891 rcu_read_lock();
4892 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004894 if (p != NULL)
4895 retval = sched_setscheduler(p, policy, &lparam);
4896 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07004897
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898 return retval;
4899}
4900
4901/**
4902 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
4903 * @pid: the pid in question.
4904 * @policy: new policy.
4905 * @param: structure containing the new RT priority.
4906 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004907asmlinkage long
4908sys_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909{
Jason Baronc21761f2006-01-18 17:43:03 -08004910 /* negative values for policy are not valid */
4911 if (policy < 0)
4912 return -EINVAL;
4913
Linus Torvalds1da177e2005-04-16 15:20:36 -07004914 return do_sched_setscheduler(pid, policy, param);
4915}
4916
4917/**
4918 * sys_sched_setparam - set/change the RT priority of a thread
4919 * @pid: the pid in question.
4920 * @param: structure containing the new RT priority.
4921 */
4922asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
4923{
4924 return do_sched_setscheduler(pid, -1, param);
4925}
4926
4927/**
4928 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
4929 * @pid: the pid in question.
4930 */
4931asmlinkage long sys_sched_getscheduler(pid_t pid)
4932{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004933 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004934 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935
4936 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004937 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004938
4939 retval = -ESRCH;
4940 read_lock(&tasklist_lock);
4941 p = find_process_by_pid(pid);
4942 if (p) {
4943 retval = security_task_getscheduler(p);
4944 if (!retval)
4945 retval = p->policy;
4946 }
4947 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004948 return retval;
4949}
4950
4951/**
4952 * sys_sched_getscheduler - get the RT priority of a thread
4953 * @pid: the pid in question.
4954 * @param: structure containing the RT priority.
4955 */
4956asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
4957{
4958 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004959 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004960 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961
4962 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004963 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964
4965 read_lock(&tasklist_lock);
4966 p = find_process_by_pid(pid);
4967 retval = -ESRCH;
4968 if (!p)
4969 goto out_unlock;
4970
4971 retval = security_task_getscheduler(p);
4972 if (retval)
4973 goto out_unlock;
4974
4975 lp.sched_priority = p->rt_priority;
4976 read_unlock(&tasklist_lock);
4977
4978 /*
4979 * This one might sleep, we cannot do it with a spinlock held ...
4980 */
4981 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
4982
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983 return retval;
4984
4985out_unlock:
4986 read_unlock(&tasklist_lock);
4987 return retval;
4988}
4989
Mike Travisb53e9212008-04-04 18:11:08 -07004990long sched_setaffinity(pid_t pid, const cpumask_t *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992 cpumask_t cpus_allowed;
Mike Travisb53e9212008-04-04 18:11:08 -07004993 cpumask_t new_mask = *in_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004994 struct task_struct *p;
4995 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004996
Gautham R Shenoy95402b32008-01-25 21:08:02 +01004997 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998 read_lock(&tasklist_lock);
4999
5000 p = find_process_by_pid(pid);
5001 if (!p) {
5002 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005003 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004 return -ESRCH;
5005 }
5006
5007 /*
5008 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005009 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010 * usage count and then drop tasklist_lock.
5011 */
5012 get_task_struct(p);
5013 read_unlock(&tasklist_lock);
5014
5015 retval = -EPERM;
5016 if ((current->euid != p->euid) && (current->euid != p->uid) &&
5017 !capable(CAP_SYS_NICE))
5018 goto out_unlock;
5019
David Quigleye7834f82006-06-23 02:03:59 -07005020 retval = security_task_setscheduler(p, 0, NULL);
5021 if (retval)
5022 goto out_unlock;
5023
Mike Travisf9a86fc2008-04-04 18:11:07 -07005024 cpuset_cpus_allowed(p, &cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025 cpus_and(new_mask, new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005026 again:
Mike Travis7c16ec52008-04-04 18:11:11 -07005027 retval = set_cpus_allowed_ptr(p, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028
Paul Menage8707d8b2007-10-18 23:40:22 -07005029 if (!retval) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07005030 cpuset_cpus_allowed(p, &cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005031 if (!cpus_subset(new_mask, cpus_allowed)) {
5032 /*
5033 * We must have raced with a concurrent cpuset
5034 * update. Just reset the cpus_allowed to the
5035 * cpuset's cpus_allowed
5036 */
5037 new_mask = cpus_allowed;
5038 goto again;
5039 }
5040 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041out_unlock:
5042 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005043 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044 return retval;
5045}
5046
5047static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
5048 cpumask_t *new_mask)
5049{
5050 if (len < sizeof(cpumask_t)) {
5051 memset(new_mask, 0, sizeof(cpumask_t));
5052 } else if (len > sizeof(cpumask_t)) {
5053 len = sizeof(cpumask_t);
5054 }
5055 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
5056}
5057
5058/**
5059 * sys_sched_setaffinity - set the cpu affinity of a process
5060 * @pid: pid of the process
5061 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5062 * @user_mask_ptr: user-space pointer to the new cpu mask
5063 */
5064asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
5065 unsigned long __user *user_mask_ptr)
5066{
5067 cpumask_t new_mask;
5068 int retval;
5069
5070 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
5071 if (retval)
5072 return retval;
5073
Mike Travisb53e9212008-04-04 18:11:08 -07005074 return sched_setaffinity(pid, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075}
5076
5077/*
5078 * Represents all cpu's present in the system
5079 * In systems capable of hotplug, this map could dynamically grow
5080 * as new cpu's are detected in the system via any platform specific
5081 * method, such as ACPI for e.g.
5082 */
5083
Andi Kleen4cef0c62006-01-11 22:44:57 +01005084cpumask_t cpu_present_map __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085EXPORT_SYMBOL(cpu_present_map);
5086
5087#ifndef CONFIG_SMP
Andi Kleen4cef0c62006-01-11 22:44:57 +01005088cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07005089EXPORT_SYMBOL(cpu_online_map);
5090
Andi Kleen4cef0c62006-01-11 22:44:57 +01005091cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07005092EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005093#endif
5094
5095long sched_getaffinity(pid_t pid, cpumask_t *mask)
5096{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005097 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005098 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005099
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005100 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101 read_lock(&tasklist_lock);
5102
5103 retval = -ESRCH;
5104 p = find_process_by_pid(pid);
5105 if (!p)
5106 goto out_unlock;
5107
David Quigleye7834f82006-06-23 02:03:59 -07005108 retval = security_task_getscheduler(p);
5109 if (retval)
5110 goto out_unlock;
5111
Jack Steiner2f7016d2006-02-01 03:05:18 -08005112 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113
5114out_unlock:
5115 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005116 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117
Ulrich Drepper9531b622007-08-09 11:16:46 +02005118 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005119}
5120
5121/**
5122 * sys_sched_getaffinity - get the cpu affinity of a process
5123 * @pid: pid of the process
5124 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5125 * @user_mask_ptr: user-space pointer to hold the current cpu mask
5126 */
5127asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
5128 unsigned long __user *user_mask_ptr)
5129{
5130 int ret;
5131 cpumask_t mask;
5132
5133 if (len < sizeof(cpumask_t))
5134 return -EINVAL;
5135
5136 ret = sched_getaffinity(pid, &mask);
5137 if (ret < 0)
5138 return ret;
5139
5140 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
5141 return -EFAULT;
5142
5143 return sizeof(cpumask_t);
5144}
5145
5146/**
5147 * sys_sched_yield - yield the current processor to other threads.
5148 *
Ingo Molnardd41f592007-07-09 18:51:59 +02005149 * This function yields the current CPU to other tasks. If there are no
5150 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005151 */
5152asmlinkage long sys_sched_yield(void)
5153{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005154 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155
Ingo Molnar2d723762007-10-15 17:00:12 +02005156 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02005157 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158
5159 /*
5160 * Since we are going to call schedule() anyway, there's
5161 * no need to preempt or enable interrupts:
5162 */
5163 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07005164 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165 _raw_spin_unlock(&rq->lock);
5166 preempt_enable_no_resched();
5167
5168 schedule();
5169
5170 return 0;
5171}
5172
Andrew Mortone7b38402006-06-30 01:56:00 -07005173static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07005175#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
5176 __might_sleep(__FILE__, __LINE__);
5177#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07005178 /*
5179 * The BKS might be reacquired before we have dropped
5180 * PREEMPT_ACTIVE, which could trigger a second
5181 * cond_resched() call.
5182 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183 do {
5184 add_preempt_count(PREEMPT_ACTIVE);
5185 schedule();
5186 sub_preempt_count(PREEMPT_ACTIVE);
5187 } while (need_resched());
5188}
5189
Herbert Xu02b67cc2008-01-25 21:08:28 +01005190int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005191{
Ingo Molnar94142322006-12-29 16:48:13 -08005192 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
5193 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005194 __cond_resched();
5195 return 1;
5196 }
5197 return 0;
5198}
Herbert Xu02b67cc2008-01-25 21:08:28 +01005199EXPORT_SYMBOL(_cond_resched);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005200
5201/*
5202 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
5203 * call schedule, and on return reacquire the lock.
5204 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005205 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07005206 * operations here to prevent schedule() from being called twice (once via
5207 * spin_unlock(), once by hand).
5208 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005209int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210{
Nick Piggin95c354f2008-01-30 13:31:20 +01005211 int resched = need_resched() && system_state == SYSTEM_RUNNING;
Jan Kara6df3cec2005-06-13 15:52:32 -07005212 int ret = 0;
5213
Nick Piggin95c354f2008-01-30 13:31:20 +01005214 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215 spin_unlock(lock);
Nick Piggin95c354f2008-01-30 13:31:20 +01005216 if (resched && need_resched())
5217 __cond_resched();
5218 else
5219 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07005220 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222 }
Jan Kara6df3cec2005-06-13 15:52:32 -07005223 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225EXPORT_SYMBOL(cond_resched_lock);
5226
5227int __sched cond_resched_softirq(void)
5228{
5229 BUG_ON(!in_softirq());
5230
Ingo Molnar94142322006-12-29 16:48:13 -08005231 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d82562007-05-23 13:58:18 -07005232 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005233 __cond_resched();
5234 local_bh_disable();
5235 return 1;
5236 }
5237 return 0;
5238}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005239EXPORT_SYMBOL(cond_resched_softirq);
5240
Linus Torvalds1da177e2005-04-16 15:20:36 -07005241/**
5242 * yield - yield the current processor to other threads.
5243 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005244 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005245 * thread runnable and calls sys_sched_yield().
5246 */
5247void __sched yield(void)
5248{
5249 set_current_state(TASK_RUNNING);
5250 sys_sched_yield();
5251}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252EXPORT_SYMBOL(yield);
5253
5254/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005255 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07005256 * that process accounting knows that this is a task in IO wait state.
5257 *
5258 * But don't do that if it is a deliberate, throttling IO wait (this task
5259 * has set its backing_dev_info: the queue against which it should throttle)
5260 */
5261void __sched io_schedule(void)
5262{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005263 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005265 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266 atomic_inc(&rq->nr_iowait);
5267 schedule();
5268 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005269 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271EXPORT_SYMBOL(io_schedule);
5272
5273long __sched io_schedule_timeout(long timeout)
5274{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005275 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276 long ret;
5277
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005278 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279 atomic_inc(&rq->nr_iowait);
5280 ret = schedule_timeout(timeout);
5281 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005282 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005283 return ret;
5284}
5285
5286/**
5287 * sys_sched_get_priority_max - return maximum RT priority.
5288 * @policy: scheduling class.
5289 *
5290 * this syscall returns the maximum rt_priority that can be used
5291 * by a given scheduling class.
5292 */
5293asmlinkage long sys_sched_get_priority_max(int policy)
5294{
5295 int ret = -EINVAL;
5296
5297 switch (policy) {
5298 case SCHED_FIFO:
5299 case SCHED_RR:
5300 ret = MAX_USER_RT_PRIO-1;
5301 break;
5302 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005303 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005304 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005305 ret = 0;
5306 break;
5307 }
5308 return ret;
5309}
5310
5311/**
5312 * sys_sched_get_priority_min - return minimum RT priority.
5313 * @policy: scheduling class.
5314 *
5315 * this syscall returns the minimum rt_priority that can be used
5316 * by a given scheduling class.
5317 */
5318asmlinkage long sys_sched_get_priority_min(int policy)
5319{
5320 int ret = -EINVAL;
5321
5322 switch (policy) {
5323 case SCHED_FIFO:
5324 case SCHED_RR:
5325 ret = 1;
5326 break;
5327 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005328 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005329 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330 ret = 0;
5331 }
5332 return ret;
5333}
5334
5335/**
5336 * sys_sched_rr_get_interval - return the default timeslice of a process.
5337 * @pid: pid of the process.
5338 * @interval: userspace pointer to the timeslice value.
5339 *
5340 * this syscall writes the default timeslice value of a given process
5341 * into the user-space timespec buffer. A value of '0' means infinity.
5342 */
5343asmlinkage
5344long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
5345{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005346 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005347 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005348 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350
5351 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005352 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353
5354 retval = -ESRCH;
5355 read_lock(&tasklist_lock);
5356 p = find_process_by_pid(pid);
5357 if (!p)
5358 goto out_unlock;
5359
5360 retval = security_task_getscheduler(p);
5361 if (retval)
5362 goto out_unlock;
5363
Ingo Molnar77034932007-12-04 17:04:39 +01005364 /*
5365 * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
5366 * tasks that are on an otherwise idle runqueue:
5367 */
5368 time_slice = 0;
5369 if (p->policy == SCHED_RR) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005370 time_slice = DEF_TIMESLICE;
Miao Xie1868f952008-03-07 09:35:06 +08005371 } else if (p->policy != SCHED_FIFO) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005372 struct sched_entity *se = &p->se;
5373 unsigned long flags;
5374 struct rq *rq;
5375
5376 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01005377 if (rq->cfs.load.weight)
5378 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005379 task_rq_unlock(rq, &flags);
5380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005381 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005382 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005385
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386out_unlock:
5387 read_unlock(&tasklist_lock);
5388 return retval;
5389}
5390
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005391static const char stat_nam[] = "RSDTtZX";
Ingo Molnar36c8b582006-07-03 00:25:41 -07005392
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005393void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005395 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005396 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005397
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005399 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005400 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005401#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005402 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005403 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005404 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005405 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005406#else
5407 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005408 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005410 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411#endif
5412#ifdef CONFIG_DEBUG_STACK_USAGE
5413 {
Al Viro10ebffd2005-11-13 16:06:56 -08005414 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415 while (!*n)
5416 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08005417 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005418 }
5419#endif
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07005420 printk(KERN_CONT "%5lu %5d %6d\n", free,
Roland McGrathfcfd50a2008-01-09 00:03:23 -08005421 task_pid_nr(p), task_pid_nr(p->real_parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01005423 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005424}
5425
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005426void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005428 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429
Ingo Molnar4bd77322007-07-11 21:21:47 +02005430#if BITS_PER_LONG == 32
5431 printk(KERN_INFO
5432 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005433#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02005434 printk(KERN_INFO
5435 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436#endif
5437 read_lock(&tasklist_lock);
5438 do_each_thread(g, p) {
5439 /*
5440 * reset the NMI-timeout, listing all files on a slow
5441 * console might take alot of time:
5442 */
5443 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07005444 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005445 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005446 } while_each_thread(g, p);
5447
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07005448 touch_all_softlockup_watchdogs();
5449
Ingo Molnardd41f592007-07-09 18:51:59 +02005450#ifdef CONFIG_SCHED_DEBUG
5451 sysrq_sched_debug_show();
5452#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005453 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005454 /*
5455 * Only show locks if all tasks are dumped:
5456 */
5457 if (state_filter == -1)
5458 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005459}
5460
Ingo Molnar1df21052007-07-09 18:51:58 +02005461void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5462{
Ingo Molnardd41f592007-07-09 18:51:59 +02005463 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02005464}
5465
Ingo Molnarf340c0d2005-06-28 16:40:42 +02005466/**
5467 * init_idle - set up an idle thread for a given CPU
5468 * @idle: task in question
5469 * @cpu: cpu the idle task belongs to
5470 *
5471 * NOTE: this function does not set the idle thread's NEED_RESCHED
5472 * flag, to make booting more robust.
5473 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07005474void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005476 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005477 unsigned long flags;
5478
Ingo Molnardd41f592007-07-09 18:51:59 +02005479 __sched_fork(idle);
5480 idle->se.exec_start = sched_clock();
5481
Ingo Molnarb29739f2006-06-27 02:54:51 -07005482 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483 idle->cpus_allowed = cpumask_of_cpu(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005484 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005485
5486 spin_lock_irqsave(&rq->lock, flags);
5487 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07005488#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
5489 idle->oncpu = 1;
5490#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005491 spin_unlock_irqrestore(&rq->lock, flags);
5492
5493 /* Set the preempt count _outside_ the spinlocks! */
Linus Torvalds8e3e0762008-05-10 20:58:02 -07005494#if defined(CONFIG_PREEMPT)
5495 task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0);
5496#else
Al Viroa1261f52005-11-13 16:06:55 -08005497 task_thread_info(idle)->preempt_count = 0;
Linus Torvalds8e3e0762008-05-10 20:58:02 -07005498#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02005499 /*
5500 * The idle tasks have their own, simple scheduling class:
5501 */
5502 idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503}
5504
5505/*
5506 * In a system that switches off the HZ timer nohz_cpu_mask
5507 * indicates which cpus entered this state. This is used
5508 * in the rcu update to wait only for active cpus. For system
5509 * which do not switch off the HZ timer nohz_cpu_mask should
5510 * always be CPU_MASK_NONE.
5511 */
5512cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
5513
Ingo Molnar19978ca2007-11-09 22:39:38 +01005514/*
5515 * Increase the granularity value when there are more CPUs,
5516 * because with more CPUs the 'effective latency' as visible
5517 * to users decreases. But the relationship is not linear,
5518 * so pick a second-best guess by going with the log2 of the
5519 * number of CPUs.
5520 *
5521 * This idea comes from the SD scheduler of Con Kolivas:
5522 */
5523static inline void sched_init_granularity(void)
5524{
5525 unsigned int factor = 1 + ilog2(num_online_cpus());
5526 const unsigned long limit = 200000000;
5527
5528 sysctl_sched_min_granularity *= factor;
5529 if (sysctl_sched_min_granularity > limit)
5530 sysctl_sched_min_granularity = limit;
5531
5532 sysctl_sched_latency *= factor;
5533 if (sysctl_sched_latency > limit)
5534 sysctl_sched_latency = limit;
5535
5536 sysctl_sched_wakeup_granularity *= factor;
Ingo Molnar19978ca2007-11-09 22:39:38 +01005537}
5538
Linus Torvalds1da177e2005-04-16 15:20:36 -07005539#ifdef CONFIG_SMP
5540/*
5541 * This is how migration works:
5542 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07005543 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005544 * runqueue and wake up that CPU's migration thread.
5545 * 2) we down() the locked semaphore => thread blocks.
5546 * 3) migration thread wakes up (implicitly it forces the migrated
5547 * thread off the CPU)
5548 * 4) it gets the migration request and checks whether the migrated
5549 * task is still in the wrong runqueue.
5550 * 5) if it's in the wrong runqueue then the migration thread removes
5551 * it and puts it into the right queue.
5552 * 6) migration thread up()s the semaphore.
5553 * 7) we wake up and the migration is done.
5554 */
5555
5556/*
5557 * Change a given task's CPU affinity. Migrate the thread to a
5558 * proper CPU and schedule it away if the CPU it's executing on
5559 * is removed from the allowed bitmask.
5560 *
5561 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005562 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563 * call is not atomic; no spinlocks may be held.
5564 */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005565int set_cpus_allowed_ptr(struct task_struct *p, const cpumask_t *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005566{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005567 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005568 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005569 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005570 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005571
5572 rq = task_rq_lock(p, &flags);
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005573 if (!cpus_intersects(*new_mask, cpu_online_map)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005574 ret = -EINVAL;
5575 goto out;
5576 }
5577
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005578 if (p->sched_class->set_cpus_allowed)
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005579 p->sched_class->set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005580 else {
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005581 p->cpus_allowed = *new_mask;
5582 p->rt.nr_cpus_allowed = cpus_weight(*new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005583 }
5584
Linus Torvalds1da177e2005-04-16 15:20:36 -07005585 /* Can the task run on the task's current CPU? If so, we're done */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005586 if (cpu_isset(task_cpu(p), *new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005587 goto out;
5588
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005589 if (migrate_task(p, any_online_cpu(*new_mask), &req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590 /* Need help from migration thread: drop lock and wait. */
5591 task_rq_unlock(rq, &flags);
5592 wake_up_process(rq->migration_thread);
5593 wait_for_completion(&req.done);
5594 tlb_migrate_finish(p->mm);
5595 return 0;
5596 }
5597out:
5598 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005599
Linus Torvalds1da177e2005-04-16 15:20:36 -07005600 return ret;
5601}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005602EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005603
5604/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005605 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07005606 * this because either it can't run here any more (set_cpus_allowed()
5607 * away from this CPU, or CPU going down), or because we're
5608 * attempting to rebalance this task on exec (sched_exec).
5609 *
5610 * So we race with normal scheduler movements, but that's OK, as long
5611 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07005612 *
5613 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005614 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07005615static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005616{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005617 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02005618 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005619
5620 if (unlikely(cpu_is_offline(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07005621 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005622
5623 rq_src = cpu_rq(src_cpu);
5624 rq_dest = cpu_rq(dest_cpu);
5625
5626 double_rq_lock(rq_src, rq_dest);
5627 /* Already moved. */
5628 if (task_cpu(p) != src_cpu)
5629 goto out;
5630 /* Affinity changed (again). */
5631 if (!cpu_isset(dest_cpu, p->cpus_allowed))
5632 goto out;
5633
Ingo Molnardd41f592007-07-09 18:51:59 +02005634 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005635 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005636 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005637
Linus Torvalds1da177e2005-04-16 15:20:36 -07005638 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005639 if (on_rq) {
5640 activate_task(rq_dest, p, 0);
5641 check_preempt_curr(rq_dest, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005642 }
Kirill Korotaevefc30812006-06-27 02:54:32 -07005643 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005644out:
5645 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005646 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005647}
5648
5649/*
5650 * migration_thread - this is a highprio system thread that performs
5651 * thread migration by bumping thread off CPU then 'pushing' onto
5652 * another runqueue.
5653 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005654static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005655{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005656 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005657 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005658
5659 rq = cpu_rq(cpu);
5660 BUG_ON(rq->migration_thread != current);
5661
5662 set_current_state(TASK_INTERRUPTIBLE);
5663 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005664 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005665 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005666
Linus Torvalds1da177e2005-04-16 15:20:36 -07005667 spin_lock_irq(&rq->lock);
5668
5669 if (cpu_is_offline(cpu)) {
5670 spin_unlock_irq(&rq->lock);
5671 goto wait_to_die;
5672 }
5673
5674 if (rq->active_balance) {
5675 active_load_balance(rq, cpu);
5676 rq->active_balance = 0;
5677 }
5678
5679 head = &rq->migration_queue;
5680
5681 if (list_empty(head)) {
5682 spin_unlock_irq(&rq->lock);
5683 schedule();
5684 set_current_state(TASK_INTERRUPTIBLE);
5685 continue;
5686 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07005687 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005688 list_del_init(head->next);
5689
Nick Piggin674311d2005-06-25 14:57:27 -07005690 spin_unlock(&rq->lock);
5691 __migrate_task(req->task, cpu, req->dest_cpu);
5692 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005693
5694 complete(&req->done);
5695 }
5696 __set_current_state(TASK_RUNNING);
5697 return 0;
5698
5699wait_to_die:
5700 /* Wait for kthread_stop */
5701 set_current_state(TASK_INTERRUPTIBLE);
5702 while (!kthread_should_stop()) {
5703 schedule();
5704 set_current_state(TASK_INTERRUPTIBLE);
5705 }
5706 __set_current_state(TASK_RUNNING);
5707 return 0;
5708}
5709
5710#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005711
5712static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
5713{
5714 int ret;
5715
5716 local_irq_disable();
5717 ret = __migrate_task(p, src_cpu, dest_cpu);
5718 local_irq_enable();
5719 return ret;
5720}
5721
Kirill Korotaev054b9102006-12-10 02:20:11 -08005722/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02005723 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08005724 * NOTE: interrupts should be disabled by the caller
5725 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005726static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005727{
Kirill Korotaevefc30812006-06-27 02:54:32 -07005728 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005729 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005730 struct rq *rq;
5731 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005732
Andi Kleen3a5c3592007-10-15 17:00:14 +02005733 do {
5734 /* On same node? */
5735 mask = node_to_cpumask(cpu_to_node(dead_cpu));
5736 cpus_and(mask, mask, p->cpus_allowed);
5737 dest_cpu = any_online_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005738
Andi Kleen3a5c3592007-10-15 17:00:14 +02005739 /* On any allowed CPU? */
Mike Travis434d53b2008-04-04 18:11:04 -07005740 if (dest_cpu >= nr_cpu_ids)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005741 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005742
Andi Kleen3a5c3592007-10-15 17:00:14 +02005743 /* No more Mr. Nice Guy. */
Mike Travis434d53b2008-04-04 18:11:04 -07005744 if (dest_cpu >= nr_cpu_ids) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07005745 cpumask_t cpus_allowed;
5746
5747 cpuset_cpus_allowed_locked(p, &cpus_allowed);
Cliff Wickman470fd642007-10-18 23:40:46 -07005748 /*
5749 * Try to stay on the same cpuset, where the
5750 * current cpuset may be a subset of all cpus.
5751 * The cpuset_cpus_allowed_locked() variant of
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005752 * cpuset_cpus_allowed() will not block. It must be
Cliff Wickman470fd642007-10-18 23:40:46 -07005753 * called within calls to cpuset_lock/cpuset_unlock.
5754 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02005755 rq = task_rq_lock(p, &flags);
Cliff Wickman470fd642007-10-18 23:40:46 -07005756 p->cpus_allowed = cpus_allowed;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005757 dest_cpu = any_online_cpu(p->cpus_allowed);
5758 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005759
Andi Kleen3a5c3592007-10-15 17:00:14 +02005760 /*
5761 * Don't tell them about moving exiting tasks or
5762 * kernel threads (both mm NULL), since they never
5763 * leave kernel.
5764 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005765 if (p->mm && printk_ratelimit()) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02005766 printk(KERN_INFO "process %d (%s) no "
5767 "longer affine to cpu%d\n",
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005768 task_pid_nr(p), p->comm, dead_cpu);
5769 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02005770 }
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005771 } while (!__migrate_task_irq(p, dead_cpu, dest_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005772}
5773
5774/*
5775 * While a dead CPU has no uninterruptible tasks queued at this point,
5776 * it might still have a nonzero ->nr_uninterruptible counter, because
5777 * for performance reasons the counter is not stricly tracking tasks to
5778 * their home CPUs. So we just add the counter to another CPU's counter,
5779 * to keep the global sum constant after CPU-down:
5780 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07005781static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005782{
Mike Travis7c16ec52008-04-04 18:11:11 -07005783 struct rq *rq_dest = cpu_rq(any_online_cpu(*CPU_MASK_ALL_PTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005784 unsigned long flags;
5785
5786 local_irq_save(flags);
5787 double_rq_lock(rq_src, rq_dest);
5788 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
5789 rq_src->nr_uninterruptible = 0;
5790 double_rq_unlock(rq_src, rq_dest);
5791 local_irq_restore(flags);
5792}
5793
5794/* Run through task list and migrate tasks from the dead cpu. */
5795static void migrate_live_tasks(int src_cpu)
5796{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005797 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005798
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005799 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005800
Ingo Molnar48f24c42006-07-03 00:25:40 -07005801 do_each_thread(t, p) {
5802 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005803 continue;
5804
Ingo Molnar48f24c42006-07-03 00:25:40 -07005805 if (task_cpu(p) == src_cpu)
5806 move_task_off_dead_cpu(src_cpu, p);
5807 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005809 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005810}
5811
Ingo Molnardd41f592007-07-09 18:51:59 +02005812/*
5813 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005814 * It does so by boosting its priority to highest possible.
5815 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005816 */
5817void sched_idle_next(void)
5818{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005819 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07005820 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005821 struct task_struct *p = rq->idle;
5822 unsigned long flags;
5823
5824 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005825 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005826
Ingo Molnar48f24c42006-07-03 00:25:40 -07005827 /*
5828 * Strictly not necessary since rest of the CPUs are stopped by now
5829 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005830 */
5831 spin_lock_irqsave(&rq->lock, flags);
5832
Ingo Molnardd41f592007-07-09 18:51:59 +02005833 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005834
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005835 update_rq_clock(rq);
5836 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005837
5838 spin_unlock_irqrestore(&rq->lock, flags);
5839}
5840
Ingo Molnar48f24c42006-07-03 00:25:40 -07005841/*
5842 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07005843 * offline.
5844 */
5845void idle_task_exit(void)
5846{
5847 struct mm_struct *mm = current->active_mm;
5848
5849 BUG_ON(cpu_online(smp_processor_id()));
5850
5851 if (mm != &init_mm)
5852 switch_mm(mm, &init_mm, current);
5853 mmdrop(mm);
5854}
5855
Kirill Korotaev054b9102006-12-10 02:20:11 -08005856/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005857static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005858{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005859 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860
5861 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07005862 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005863
5864 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07005865 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005866
Ingo Molnar48f24c42006-07-03 00:25:40 -07005867 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005868
5869 /*
5870 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005871 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07005872 * fine.
5873 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005874 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005875 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005876 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005877
Ingo Molnar48f24c42006-07-03 00:25:40 -07005878 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005879}
5880
5881/* release_task() removes task from tasklist, so we won't find dead tasks. */
5882static void migrate_dead_tasks(unsigned int dead_cpu)
5883{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005884 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005885 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005886
Ingo Molnardd41f592007-07-09 18:51:59 +02005887 for ( ; ; ) {
5888 if (!rq->nr_running)
5889 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02005890 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02005891 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02005892 if (!next)
5893 break;
5894 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02005895
Linus Torvalds1da177e2005-04-16 15:20:36 -07005896 }
5897}
5898#endif /* CONFIG_HOTPLUG_CPU */
5899
Nick Piggine692ab52007-07-26 13:40:43 +02005900#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
5901
5902static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005903 {
5904 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005905 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005906 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01005907 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02005908};
5909
5910static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005911 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005912 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005913 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005914 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005915 .child = sd_ctl_dir,
5916 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01005917 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02005918};
5919
5920static struct ctl_table *sd_alloc_ctl_entry(int n)
5921{
5922 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02005923 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02005924
Nick Piggine692ab52007-07-26 13:40:43 +02005925 return entry;
5926}
5927
Milton Miller6382bc92007-10-15 17:00:19 +02005928static void sd_free_ctl_entry(struct ctl_table **tablep)
5929{
Milton Millercd790072007-10-17 16:55:11 +02005930 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02005931
Milton Millercd790072007-10-17 16:55:11 +02005932 /*
5933 * In the intermediate directories, both the child directory and
5934 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005935 * will always be set. In the lowest directory the names are
Milton Millercd790072007-10-17 16:55:11 +02005936 * static strings and all have proc handlers.
5937 */
5938 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02005939 if (entry->child)
5940 sd_free_ctl_entry(&entry->child);
Milton Millercd790072007-10-17 16:55:11 +02005941 if (entry->proc_handler == NULL)
5942 kfree(entry->procname);
5943 }
Milton Miller6382bc92007-10-15 17:00:19 +02005944
5945 kfree(*tablep);
5946 *tablep = NULL;
5947}
5948
Nick Piggine692ab52007-07-26 13:40:43 +02005949static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02005950set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02005951 const char *procname, void *data, int maxlen,
5952 mode_t mode, proc_handler *proc_handler)
5953{
Nick Piggine692ab52007-07-26 13:40:43 +02005954 entry->procname = procname;
5955 entry->data = data;
5956 entry->maxlen = maxlen;
5957 entry->mode = mode;
5958 entry->proc_handler = proc_handler;
5959}
5960
5961static struct ctl_table *
5962sd_alloc_ctl_domain_table(struct sched_domain *sd)
5963{
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005964 struct ctl_table *table = sd_alloc_ctl_entry(12);
Nick Piggine692ab52007-07-26 13:40:43 +02005965
Milton Millerad1cdc12007-10-15 17:00:19 +02005966 if (table == NULL)
5967 return NULL;
5968
Alexey Dobriyane0361852007-08-09 11:16:46 +02005969 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005970 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005971 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005972 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005973 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005974 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005975 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005976 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005977 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005978 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005979 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005980 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005981 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005982 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005983 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02005984 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005985 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02005986 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005987 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02005988 &sd->cache_nice_tries,
5989 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005990 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02005991 sizeof(int), 0644, proc_dointvec_minmax);
Milton Miller6323469f2007-10-15 17:00:19 +02005992 /* &table[11] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02005993
5994 return table;
5995}
5996
Ingo Molnar9a4e7152007-11-28 15:52:56 +01005997static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02005998{
5999 struct ctl_table *entry, *table;
6000 struct sched_domain *sd;
6001 int domain_num = 0, i;
6002 char buf[32];
6003
6004 for_each_domain(cpu, sd)
6005 domain_num++;
6006 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02006007 if (table == NULL)
6008 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02006009
6010 i = 0;
6011 for_each_domain(cpu, sd) {
6012 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006013 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006014 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006015 entry->child = sd_alloc_ctl_domain_table(sd);
6016 entry++;
6017 i++;
6018 }
6019 return table;
6020}
6021
6022static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02006023static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006024{
6025 int i, cpu_num = num_online_cpus();
6026 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
6027 char buf[32];
6028
Milton Miller73785472007-10-24 18:23:48 +02006029 WARN_ON(sd_ctl_dir[0].child);
6030 sd_ctl_dir[0].child = entry;
6031
Milton Millerad1cdc12007-10-15 17:00:19 +02006032 if (entry == NULL)
6033 return;
6034
Milton Miller97b6ea72007-10-15 17:00:19 +02006035 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02006036 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006037 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006038 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006039 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02006040 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02006041 }
Milton Miller73785472007-10-24 18:23:48 +02006042
6043 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02006044 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
6045}
Milton Miller6382bc92007-10-15 17:00:19 +02006046
Milton Miller73785472007-10-24 18:23:48 +02006047/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02006048static void unregister_sched_domain_sysctl(void)
6049{
Milton Miller73785472007-10-24 18:23:48 +02006050 if (sd_sysctl_header)
6051 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02006052 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02006053 if (sd_ctl_dir[0].child)
6054 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02006055}
Nick Piggine692ab52007-07-26 13:40:43 +02006056#else
Milton Miller6382bc92007-10-15 17:00:19 +02006057static void register_sched_domain_sysctl(void)
6058{
6059}
6060static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006061{
6062}
6063#endif
6064
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065/*
6066 * migration_call - callback that gets triggered when a CPU is added.
6067 * Here we can start up the necessary migration thread for the new CPU.
6068 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006069static int __cpuinit
6070migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006071{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006072 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006073 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006074 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006075 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006076
6077 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006078
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006080 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02006081 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006082 if (IS_ERR(p))
6083 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006084 kthread_bind(p, cpu);
6085 /* Must be high prio: stop_machine expects to yield to it. */
6086 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02006087 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006088 task_rq_unlock(rq, &flags);
6089 cpu_rq(cpu)->migration_thread = p;
6090 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006091
Linus Torvalds1da177e2005-04-16 15:20:36 -07006092 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006093 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006094 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006095 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006096
6097 /* Update our root-domain */
6098 rq = cpu_rq(cpu);
6099 spin_lock_irqsave(&rq->lock, flags);
6100 if (rq->rd) {
6101 BUG_ON(!cpu_isset(cpu, rq->rd->span));
6102 cpu_set(cpu, rq->rd->online);
6103 }
6104 spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006105 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006106
Linus Torvalds1da177e2005-04-16 15:20:36 -07006107#ifdef CONFIG_HOTPLUG_CPU
6108 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006109 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07006110 if (!cpu_rq(cpu)->migration_thread)
6111 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006112 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08006113 kthread_bind(cpu_rq(cpu)->migration_thread,
6114 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006115 kthread_stop(cpu_rq(cpu)->migration_thread);
6116 cpu_rq(cpu)->migration_thread = NULL;
6117 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006118
Linus Torvalds1da177e2005-04-16 15:20:36 -07006119 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006120 case CPU_DEAD_FROZEN:
Cliff Wickman470fd642007-10-18 23:40:46 -07006121 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006122 migrate_live_tasks(cpu);
6123 rq = cpu_rq(cpu);
6124 kthread_stop(rq->migration_thread);
6125 rq->migration_thread = NULL;
6126 /* Idle task back to normal (off runqueue, low prio) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006127 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02006128 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006129 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006130 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02006131 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
6132 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006133 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006134 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd642007-10-18 23:40:46 -07006135 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006136 migrate_nr_uninterruptible(rq);
6137 BUG_ON(rq->nr_running != 0);
6138
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006139 /*
6140 * No need to migrate the tasks: it was best-effort if
6141 * they didn't take sched_hotcpu_mutex. Just wake up
6142 * the requestors.
6143 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006144 spin_lock_irq(&rq->lock);
6145 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006146 struct migration_req *req;
6147
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07006149 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006150 list_del_init(&req->list);
6151 complete(&req->done);
6152 }
6153 spin_unlock_irq(&rq->lock);
6154 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006155
Gregory Haskins08f503b2008-03-10 17:59:11 -04006156 case CPU_DYING:
6157 case CPU_DYING_FROZEN:
Gregory Haskins57d885f2008-01-25 21:08:18 +01006158 /* Update our root-domain */
6159 rq = cpu_rq(cpu);
6160 spin_lock_irqsave(&rq->lock, flags);
6161 if (rq->rd) {
6162 BUG_ON(!cpu_isset(cpu, rq->rd->span));
6163 cpu_clear(cpu, rq->rd->online);
6164 }
6165 spin_unlock_irqrestore(&rq->lock, flags);
6166 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006167#endif
6168 }
6169 return NOTIFY_OK;
6170}
6171
6172/* Register at highest priority so that task migration (migrate_all_tasks)
6173 * happens before everything else.
6174 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07006175static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006176 .notifier_call = migration_call,
6177 .priority = 10
6178};
6179
Adrian Bunke6fe6642007-11-09 22:39:39 +01006180void __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006181{
6182 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07006183 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006184
6185 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07006186 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
6187 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006188 migration_call(&migration_notifier, CPU_ONLINE, cpu);
6189 register_cpu_notifier(&migration_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006190}
6191#endif
6192
6193#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07006194
Ingo Molnar3e9830d2007-10-15 17:00:13 +02006195#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006196
Mike Travis7c16ec52008-04-04 18:11:11 -07006197static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
6198 cpumask_t *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006199{
6200 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07006201 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006202
Mike Travis434d53b2008-04-04 18:11:04 -07006203 cpulist_scnprintf(str, sizeof(str), sd->span);
Mike Travis7c16ec52008-04-04 18:11:11 -07006204 cpus_clear(*groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006205
6206 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
6207
6208 if (!(sd->flags & SD_LOAD_BALANCE)) {
6209 printk("does not load-balance\n");
6210 if (sd->parent)
6211 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
6212 " has parent");
6213 return -1;
6214 }
6215
6216 printk(KERN_CONT "span %s\n", str);
6217
6218 if (!cpu_isset(cpu, sd->span)) {
6219 printk(KERN_ERR "ERROR: domain->span does not contain "
6220 "CPU%d\n", cpu);
6221 }
6222 if (!cpu_isset(cpu, group->cpumask)) {
6223 printk(KERN_ERR "ERROR: domain->groups does not contain"
6224 " CPU%d\n", cpu);
6225 }
6226
6227 printk(KERN_DEBUG "%*s groups:", level + 1, "");
6228 do {
6229 if (!group) {
6230 printk("\n");
6231 printk(KERN_ERR "ERROR: group is NULL\n");
6232 break;
6233 }
6234
6235 if (!group->__cpu_power) {
6236 printk(KERN_CONT "\n");
6237 printk(KERN_ERR "ERROR: domain->cpu_power not "
6238 "set\n");
6239 break;
6240 }
6241
6242 if (!cpus_weight(group->cpumask)) {
6243 printk(KERN_CONT "\n");
6244 printk(KERN_ERR "ERROR: empty group\n");
6245 break;
6246 }
6247
Mike Travis7c16ec52008-04-04 18:11:11 -07006248 if (cpus_intersects(*groupmask, group->cpumask)) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006249 printk(KERN_CONT "\n");
6250 printk(KERN_ERR "ERROR: repeated CPUs\n");
6251 break;
6252 }
6253
Mike Travis7c16ec52008-04-04 18:11:11 -07006254 cpus_or(*groupmask, *groupmask, group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006255
Mike Travis434d53b2008-04-04 18:11:04 -07006256 cpulist_scnprintf(str, sizeof(str), group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006257 printk(KERN_CONT " %s", str);
6258
6259 group = group->next;
6260 } while (group != sd->groups);
6261 printk(KERN_CONT "\n");
6262
Mike Travis7c16ec52008-04-04 18:11:11 -07006263 if (!cpus_equal(sd->span, *groupmask))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006264 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
6265
Mike Travis7c16ec52008-04-04 18:11:11 -07006266 if (sd->parent && !cpus_subset(*groupmask, sd->parent->span))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006267 printk(KERN_ERR "ERROR: parent span is not a superset "
6268 "of domain->span\n");
6269 return 0;
6270}
6271
Linus Torvalds1da177e2005-04-16 15:20:36 -07006272static void sched_domain_debug(struct sched_domain *sd, int cpu)
6273{
Mike Travis7c16ec52008-04-04 18:11:11 -07006274 cpumask_t *groupmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006275 int level = 0;
6276
Nick Piggin41c7ce92005-06-25 14:57:24 -07006277 if (!sd) {
6278 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6279 return;
6280 }
6281
Linus Torvalds1da177e2005-04-16 15:20:36 -07006282 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6283
Mike Travis7c16ec52008-04-04 18:11:11 -07006284 groupmask = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
6285 if (!groupmask) {
6286 printk(KERN_DEBUG "Cannot load-balance (out of memory)\n");
6287 return;
6288 }
6289
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006290 for (;;) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006291 if (sched_domain_debug_one(sd, cpu, level, groupmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006292 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006293 level++;
6294 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006295 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006296 break;
6297 }
Mike Travis7c16ec52008-04-04 18:11:11 -07006298 kfree(groupmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006299}
6300#else
Ingo Molnar48f24c42006-07-03 00:25:40 -07006301# define sched_domain_debug(sd, cpu) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006302#endif
6303
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006304static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006305{
6306 if (cpus_weight(sd->span) == 1)
6307 return 1;
6308
6309 /* Following flags need at least 2 groups */
6310 if (sd->flags & (SD_LOAD_BALANCE |
6311 SD_BALANCE_NEWIDLE |
6312 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006313 SD_BALANCE_EXEC |
6314 SD_SHARE_CPUPOWER |
6315 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006316 if (sd->groups != sd->groups->next)
6317 return 0;
6318 }
6319
6320 /* Following flags don't use groups */
6321 if (sd->flags & (SD_WAKE_IDLE |
6322 SD_WAKE_AFFINE |
6323 SD_WAKE_BALANCE))
6324 return 0;
6325
6326 return 1;
6327}
6328
Ingo Molnar48f24c42006-07-03 00:25:40 -07006329static int
6330sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006331{
6332 unsigned long cflags = sd->flags, pflags = parent->flags;
6333
6334 if (sd_degenerate(parent))
6335 return 1;
6336
6337 if (!cpus_equal(sd->span, parent->span))
6338 return 0;
6339
6340 /* Does parent contain flags not in child? */
6341 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
6342 if (cflags & SD_WAKE_AFFINE)
6343 pflags &= ~SD_WAKE_BALANCE;
6344 /* Flags needing groups don't count if only 1 group in parent */
6345 if (parent->groups == parent->groups->next) {
6346 pflags &= ~(SD_LOAD_BALANCE |
6347 SD_BALANCE_NEWIDLE |
6348 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006349 SD_BALANCE_EXEC |
6350 SD_SHARE_CPUPOWER |
6351 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006352 }
6353 if (~cflags & pflags)
6354 return 0;
6355
6356 return 1;
6357}
6358
Gregory Haskins57d885f2008-01-25 21:08:18 +01006359static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6360{
6361 unsigned long flags;
6362 const struct sched_class *class;
6363
6364 spin_lock_irqsave(&rq->lock, flags);
6365
6366 if (rq->rd) {
6367 struct root_domain *old_rd = rq->rd;
6368
Ingo Molnar0eab9142008-01-25 21:08:19 +01006369 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006370 if (class->leave_domain)
6371 class->leave_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006372 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006373
Gregory Haskinsdc938522008-01-25 21:08:26 +01006374 cpu_clear(rq->cpu, old_rd->span);
6375 cpu_clear(rq->cpu, old_rd->online);
6376
Gregory Haskins57d885f2008-01-25 21:08:18 +01006377 if (atomic_dec_and_test(&old_rd->refcount))
6378 kfree(old_rd);
6379 }
6380
6381 atomic_inc(&rd->refcount);
6382 rq->rd = rd;
6383
Gregory Haskinsdc938522008-01-25 21:08:26 +01006384 cpu_set(rq->cpu, rd->span);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006385 if (cpu_isset(rq->cpu, cpu_online_map))
6386 cpu_set(rq->cpu, rd->online);
Gregory Haskinsdc938522008-01-25 21:08:26 +01006387
Ingo Molnar0eab9142008-01-25 21:08:19 +01006388 for (class = sched_class_highest; class; class = class->next) {
Gregory Haskins57d885f2008-01-25 21:08:18 +01006389 if (class->join_domain)
6390 class->join_domain(rq);
Ingo Molnar0eab9142008-01-25 21:08:19 +01006391 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006392
6393 spin_unlock_irqrestore(&rq->lock, flags);
6394}
6395
Gregory Haskinsdc938522008-01-25 21:08:26 +01006396static void init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006397{
6398 memset(rd, 0, sizeof(*rd));
6399
Gregory Haskinsdc938522008-01-25 21:08:26 +01006400 cpus_clear(rd->span);
6401 cpus_clear(rd->online);
Gregory Haskins6e0534f2008-05-12 21:21:01 +02006402
6403 cpupri_init(&rd->cpupri);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006404}
6405
6406static void init_defrootdomain(void)
6407{
Gregory Haskinsdc938522008-01-25 21:08:26 +01006408 init_rootdomain(&def_root_domain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006409 atomic_set(&def_root_domain.refcount, 1);
6410}
6411
Gregory Haskinsdc938522008-01-25 21:08:26 +01006412static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006413{
6414 struct root_domain *rd;
6415
6416 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6417 if (!rd)
6418 return NULL;
6419
Gregory Haskinsdc938522008-01-25 21:08:26 +01006420 init_rootdomain(rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006421
6422 return rd;
6423}
6424
Linus Torvalds1da177e2005-04-16 15:20:36 -07006425/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01006426 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07006427 * hold the hotplug lock.
6428 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01006429static void
6430cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006431{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006432 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006433 struct sched_domain *tmp;
6434
6435 /* Remove the sched domains which do not contribute to scheduling. */
6436 for (tmp = sd; tmp; tmp = tmp->parent) {
6437 struct sched_domain *parent = tmp->parent;
6438 if (!parent)
6439 break;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006440 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006441 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006442 if (parent->parent)
6443 parent->parent->child = tmp;
6444 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07006445 }
6446
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006447 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006448 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006449 if (sd)
6450 sd->child = NULL;
6451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006452
6453 sched_domain_debug(sd, cpu);
6454
Gregory Haskins57d885f2008-01-25 21:08:18 +01006455 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07006456 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006457}
6458
6459/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08006460static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006461
6462/* Setup the mask of cpus configured for isolated domains */
6463static int __init isolated_cpu_setup(char *str)
6464{
6465 int ints[NR_CPUS], i;
6466
6467 str = get_options(str, ARRAY_SIZE(ints), ints);
6468 cpus_clear(cpu_isolated_map);
6469 for (i = 1; i <= ints[0]; i++)
6470 if (ints[i] < NR_CPUS)
6471 cpu_set(ints[i], cpu_isolated_map);
6472 return 1;
6473}
6474
Ingo Molnar8927f492007-10-15 17:00:13 +02006475__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006476
6477/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006478 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
6479 * to a function which identifies what group(along with sched group) a CPU
6480 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
6481 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006482 *
6483 * init_sched_build_groups will build a circular linked list of the groups
6484 * covered by the given span, and will set each group's ->cpumask correctly,
6485 * and ->cpu_power to 0.
6486 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006487static void
Mike Travis7c16ec52008-04-04 18:11:11 -07006488init_sched_build_groups(const cpumask_t *span, const cpumask_t *cpu_map,
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006489 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006490 struct sched_group **sg,
6491 cpumask_t *tmpmask),
6492 cpumask_t *covered, cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006493{
6494 struct sched_group *first = NULL, *last = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006495 int i;
6496
Mike Travis7c16ec52008-04-04 18:11:11 -07006497 cpus_clear(*covered);
6498
6499 for_each_cpu_mask(i, *span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006500 struct sched_group *sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07006501 int group = group_fn(i, cpu_map, &sg, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006502 int j;
6503
Mike Travis7c16ec52008-04-04 18:11:11 -07006504 if (cpu_isset(i, *covered))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006505 continue;
6506
Mike Travis7c16ec52008-04-04 18:11:11 -07006507 cpus_clear(sg->cpumask);
Eric Dumazet5517d862007-05-08 00:32:57 -07006508 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006509
Mike Travis7c16ec52008-04-04 18:11:11 -07006510 for_each_cpu_mask(j, *span) {
6511 if (group_fn(j, cpu_map, NULL, tmpmask) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006512 continue;
6513
Mike Travis7c16ec52008-04-04 18:11:11 -07006514 cpu_set(j, *covered);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006515 cpu_set(j, sg->cpumask);
6516 }
6517 if (!first)
6518 first = sg;
6519 if (last)
6520 last->next = sg;
6521 last = sg;
6522 }
6523 last->next = first;
6524}
6525
John Hawkes9c1cfda2005-09-06 15:18:14 -07006526#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07006527
John Hawkes9c1cfda2005-09-06 15:18:14 -07006528#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006529
John Hawkes9c1cfda2005-09-06 15:18:14 -07006530/**
6531 * find_next_best_node - find the next node to include in a sched_domain
6532 * @node: node whose sched_domain we're building
6533 * @used_nodes: nodes already in the sched_domain
6534 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006535 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07006536 * finds the closest node not already in the @used_nodes map.
6537 *
6538 * Should use nodemask_t.
6539 */
Mike Travisc5f59f02008-04-04 18:11:10 -07006540static int find_next_best_node(int node, nodemask_t *used_nodes)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006541{
6542 int i, n, val, min_val, best_node = 0;
6543
6544 min_val = INT_MAX;
6545
6546 for (i = 0; i < MAX_NUMNODES; i++) {
6547 /* Start at @node */
6548 n = (node + i) % MAX_NUMNODES;
6549
6550 if (!nr_cpus_node(n))
6551 continue;
6552
6553 /* Skip already used nodes */
Mike Travisc5f59f02008-04-04 18:11:10 -07006554 if (node_isset(n, *used_nodes))
John Hawkes9c1cfda2005-09-06 15:18:14 -07006555 continue;
6556
6557 /* Simple min distance search */
6558 val = node_distance(node, n);
6559
6560 if (val < min_val) {
6561 min_val = val;
6562 best_node = n;
6563 }
6564 }
6565
Mike Travisc5f59f02008-04-04 18:11:10 -07006566 node_set(best_node, *used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006567 return best_node;
6568}
6569
6570/**
6571 * sched_domain_node_span - get a cpumask for a node's sched_domain
6572 * @node: node whose cpumask we're constructing
Randy Dunlap73486722008-04-22 10:07:22 -07006573 * @span: resulting cpumask
John Hawkes9c1cfda2005-09-06 15:18:14 -07006574 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006575 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07006576 * should be one that prevents unnecessary balancing, but also spreads tasks
6577 * out optimally.
6578 */
Mike Travis4bdbaad2008-04-15 16:35:52 -07006579static void sched_domain_node_span(int node, cpumask_t *span)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006580{
Mike Travisc5f59f02008-04-04 18:11:10 -07006581 nodemask_t used_nodes;
Mike Travisc5f59f02008-04-04 18:11:10 -07006582 node_to_cpumask_ptr(nodemask, node);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006583 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006584
Mike Travis4bdbaad2008-04-15 16:35:52 -07006585 cpus_clear(*span);
Mike Travisc5f59f02008-04-04 18:11:10 -07006586 nodes_clear(used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006587
Mike Travis4bdbaad2008-04-15 16:35:52 -07006588 cpus_or(*span, *span, *nodemask);
Mike Travisc5f59f02008-04-04 18:11:10 -07006589 node_set(node, used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006590
6591 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
Mike Travisc5f59f02008-04-04 18:11:10 -07006592 int next_node = find_next_best_node(node, &used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006593
Mike Travisc5f59f02008-04-04 18:11:10 -07006594 node_to_cpumask_ptr_next(nodemask, next_node);
Mike Travis4bdbaad2008-04-15 16:35:52 -07006595 cpus_or(*span, *span, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006596 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006597}
6598#endif
6599
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006600int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006601
John Hawkes9c1cfda2005-09-06 15:18:14 -07006602/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07006603 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07006604 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006605#ifdef CONFIG_SCHED_SMT
6606static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006607static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006608
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006609static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006610cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6611 cpumask_t *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006612{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006613 if (sg)
6614 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006615 return cpu;
6616}
6617#endif
6618
Ingo Molnar48f24c42006-07-03 00:25:40 -07006619/*
6620 * multi-core sched-domains:
6621 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006622#ifdef CONFIG_SCHED_MC
6623static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006624static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006625#endif
6626
6627#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006628static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006629cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6630 cpumask_t *mask)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006631{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006632 int group;
Mike Travis7c16ec52008-04-04 18:11:11 -07006633
6634 *mask = per_cpu(cpu_sibling_map, cpu);
6635 cpus_and(*mask, *mask, *cpu_map);
6636 group = first_cpu(*mask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006637 if (sg)
6638 *sg = &per_cpu(sched_group_core, group);
6639 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006640}
6641#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006642static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006643cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6644 cpumask_t *unused)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006645{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006646 if (sg)
6647 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006648 return cpu;
6649}
6650#endif
6651
Linus Torvalds1da177e2005-04-16 15:20:36 -07006652static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006653static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006654
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006655static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006656cpu_to_phys_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6657 cpumask_t *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006658{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006659 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006660#ifdef CONFIG_SCHED_MC
Mike Travis7c16ec52008-04-04 18:11:11 -07006661 *mask = cpu_coregroup_map(cpu);
6662 cpus_and(*mask, *mask, *cpu_map);
6663 group = first_cpu(*mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006664#elif defined(CONFIG_SCHED_SMT)
Mike Travis7c16ec52008-04-04 18:11:11 -07006665 *mask = per_cpu(cpu_sibling_map, cpu);
6666 cpus_and(*mask, *mask, *cpu_map);
6667 group = first_cpu(*mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006668#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006669 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006670#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006671 if (sg)
6672 *sg = &per_cpu(sched_group_phys, group);
6673 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006674}
6675
6676#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07006677/*
6678 * The init_sched_build_groups can't handle what we want to do with node
6679 * groups, so roll our own. Now each node has its own list of groups which
6680 * gets dynamically allocated.
6681 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006682static DEFINE_PER_CPU(struct sched_domain, node_domains);
Mike Travis434d53b2008-04-04 18:11:04 -07006683static struct sched_group ***sched_group_nodes_bycpu;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006684
6685static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006686static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006687
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006688static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006689 struct sched_group **sg, cpumask_t *nodemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006690{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006691 int group;
6692
Mike Travis7c16ec52008-04-04 18:11:11 -07006693 *nodemask = node_to_cpumask(cpu_to_node(cpu));
6694 cpus_and(*nodemask, *nodemask, *cpu_map);
6695 group = first_cpu(*nodemask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006696
6697 if (sg)
6698 *sg = &per_cpu(sched_group_allnodes, group);
6699 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006700}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006701
Siddha, Suresh B08069032006-03-27 01:15:23 -08006702static void init_numa_sched_groups_power(struct sched_group *group_head)
6703{
6704 struct sched_group *sg = group_head;
6705 int j;
6706
6707 if (!sg)
6708 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006709 do {
6710 for_each_cpu_mask(j, sg->cpumask) {
6711 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08006712
Andi Kleen3a5c3592007-10-15 17:00:14 +02006713 sd = &per_cpu(phys_domains, j);
6714 if (j != first_cpu(sd->groups->cpumask)) {
6715 /*
6716 * Only add "power" once for each
6717 * physical package.
6718 */
6719 continue;
6720 }
6721
6722 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006723 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02006724 sg = sg->next;
6725 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006726}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006727#endif
6728
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006729#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006730/* Free memory allocated for various sched_group structures */
Mike Travis7c16ec52008-04-04 18:11:11 -07006731static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006732{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006733 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006734
6735 for_each_cpu_mask(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006736 struct sched_group **sched_group_nodes
6737 = sched_group_nodes_bycpu[cpu];
6738
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006739 if (!sched_group_nodes)
6740 continue;
6741
6742 for (i = 0; i < MAX_NUMNODES; i++) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006743 struct sched_group *oldsg, *sg = sched_group_nodes[i];
6744
Mike Travis7c16ec52008-04-04 18:11:11 -07006745 *nodemask = node_to_cpumask(i);
6746 cpus_and(*nodemask, *nodemask, *cpu_map);
6747 if (cpus_empty(*nodemask))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006748 continue;
6749
6750 if (sg == NULL)
6751 continue;
6752 sg = sg->next;
6753next_sg:
6754 oldsg = sg;
6755 sg = sg->next;
6756 kfree(oldsg);
6757 if (oldsg != sched_group_nodes[i])
6758 goto next_sg;
6759 }
6760 kfree(sched_group_nodes);
6761 sched_group_nodes_bycpu[cpu] = NULL;
6762 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006763}
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006764#else
Mike Travis7c16ec52008-04-04 18:11:11 -07006765static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006766{
6767}
6768#endif
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006769
Linus Torvalds1da177e2005-04-16 15:20:36 -07006770/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006771 * Initialize sched groups cpu_power.
6772 *
6773 * cpu_power indicates the capacity of sched group, which is used while
6774 * distributing the load between different sched groups in a sched domain.
6775 * Typically cpu_power for all the groups in a sched domain will be same unless
6776 * there are asymmetries in the topology. If there are asymmetries, group
6777 * having more cpu_power will pickup more load compared to the group having
6778 * less cpu_power.
6779 *
6780 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
6781 * the maximum number of tasks a group can handle in the presence of other idle
6782 * or lightly loaded groups in the same sched domain.
6783 */
6784static void init_sched_groups_power(int cpu, struct sched_domain *sd)
6785{
6786 struct sched_domain *child;
6787 struct sched_group *group;
6788
6789 WARN_ON(!sd || !sd->groups);
6790
6791 if (cpu != first_cpu(sd->groups->cpumask))
6792 return;
6793
6794 child = sd->child;
6795
Eric Dumazet5517d862007-05-08 00:32:57 -07006796 sd->groups->__cpu_power = 0;
6797
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006798 /*
6799 * For perf policy, if the groups in child domain share resources
6800 * (for example cores sharing some portions of the cache hierarchy
6801 * or SMT), then set this domain groups cpu_power such that each group
6802 * can handle only one task, when there are other idle groups in the
6803 * same sched domain.
6804 */
6805 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
6806 (child->flags &
6807 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07006808 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006809 return;
6810 }
6811
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006812 /*
6813 * add cpu_power of each child group to this groups cpu_power
6814 */
6815 group = child->groups;
6816 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07006817 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006818 group = group->next;
6819 } while (group != child->groups);
6820}
6821
6822/*
Mike Travis7c16ec52008-04-04 18:11:11 -07006823 * Initializers for schedule domains
6824 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
6825 */
6826
6827#define SD_INIT(sd, type) sd_init_##type(sd)
6828#define SD_INIT_FUNC(type) \
6829static noinline void sd_init_##type(struct sched_domain *sd) \
6830{ \
6831 memset(sd, 0, sizeof(*sd)); \
6832 *sd = SD_##type##_INIT; \
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006833 sd->level = SD_LV_##type; \
Mike Travis7c16ec52008-04-04 18:11:11 -07006834}
6835
6836SD_INIT_FUNC(CPU)
6837#ifdef CONFIG_NUMA
6838 SD_INIT_FUNC(ALLNODES)
6839 SD_INIT_FUNC(NODE)
6840#endif
6841#ifdef CONFIG_SCHED_SMT
6842 SD_INIT_FUNC(SIBLING)
6843#endif
6844#ifdef CONFIG_SCHED_MC
6845 SD_INIT_FUNC(MC)
6846#endif
6847
6848/*
6849 * To minimize stack usage kmalloc room for cpumasks and share the
6850 * space as the usage in build_sched_domains() dictates. Used only
6851 * if the amount of space is significant.
6852 */
6853struct allmasks {
6854 cpumask_t tmpmask; /* make this one first */
6855 union {
6856 cpumask_t nodemask;
6857 cpumask_t this_sibling_map;
6858 cpumask_t this_core_map;
6859 };
6860 cpumask_t send_covered;
6861
6862#ifdef CONFIG_NUMA
6863 cpumask_t domainspan;
6864 cpumask_t covered;
6865 cpumask_t notcovered;
6866#endif
6867};
6868
6869#if NR_CPUS > 128
6870#define SCHED_CPUMASK_ALLOC 1
6871#define SCHED_CPUMASK_FREE(v) kfree(v)
6872#define SCHED_CPUMASK_DECLARE(v) struct allmasks *v
6873#else
6874#define SCHED_CPUMASK_ALLOC 0
6875#define SCHED_CPUMASK_FREE(v)
6876#define SCHED_CPUMASK_DECLARE(v) struct allmasks _v, *v = &_v
6877#endif
6878
6879#define SCHED_CPUMASK_VAR(v, a) cpumask_t *v = (cpumask_t *) \
6880 ((unsigned long)(a) + offsetof(struct allmasks, v))
6881
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006882static int default_relax_domain_level = -1;
6883
6884static int __init setup_relax_domain_level(char *str)
6885{
6886 default_relax_domain_level = simple_strtoul(str, NULL, 0);
6887 return 1;
6888}
6889__setup("relax_domain_level=", setup_relax_domain_level);
6890
6891static void set_domain_attribute(struct sched_domain *sd,
6892 struct sched_domain_attr *attr)
6893{
6894 int request;
6895
6896 if (!attr || attr->relax_domain_level < 0) {
6897 if (default_relax_domain_level < 0)
6898 return;
6899 else
6900 request = default_relax_domain_level;
6901 } else
6902 request = attr->relax_domain_level;
6903 if (request < sd->level) {
6904 /* turn off idle balance on this domain */
6905 sd->flags &= ~(SD_WAKE_IDLE|SD_BALANCE_NEWIDLE);
6906 } else {
6907 /* turn on idle balance on this domain */
6908 sd->flags |= (SD_WAKE_IDLE_FAR|SD_BALANCE_NEWIDLE);
6909 }
6910}
6911
Mike Travis7c16ec52008-04-04 18:11:11 -07006912/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006913 * Build sched domains for a given set of cpus and attach the sched domains
6914 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07006915 */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006916static int __build_sched_domains(const cpumask_t *cpu_map,
6917 struct sched_domain_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006918{
6919 int i;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006920 struct root_domain *rd;
Mike Travis7c16ec52008-04-04 18:11:11 -07006921 SCHED_CPUMASK_DECLARE(allmasks);
6922 cpumask_t *tmpmask;
John Hawkesd1b55132005-09-06 15:18:14 -07006923#ifdef CONFIG_NUMA
6924 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006925 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07006926
6927 /*
6928 * Allocate the per-node list of sched groups
6929 */
Milton Miller5cf9f062007-10-15 17:00:19 +02006930 sched_group_nodes = kcalloc(MAX_NUMNODES, sizeof(struct sched_group *),
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006931 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07006932 if (!sched_group_nodes) {
6933 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006934 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07006935 }
John Hawkesd1b55132005-09-06 15:18:14 -07006936#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006937
Gregory Haskinsdc938522008-01-25 21:08:26 +01006938 rd = alloc_rootdomain();
Gregory Haskins57d885f2008-01-25 21:08:18 +01006939 if (!rd) {
6940 printk(KERN_WARNING "Cannot alloc root domain\n");
Mike Travis7c16ec52008-04-04 18:11:11 -07006941#ifdef CONFIG_NUMA
6942 kfree(sched_group_nodes);
6943#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01006944 return -ENOMEM;
6945 }
6946
Mike Travis7c16ec52008-04-04 18:11:11 -07006947#if SCHED_CPUMASK_ALLOC
6948 /* get space for all scratch cpumask variables */
6949 allmasks = kmalloc(sizeof(*allmasks), GFP_KERNEL);
6950 if (!allmasks) {
6951 printk(KERN_WARNING "Cannot alloc cpumask array\n");
6952 kfree(rd);
6953#ifdef CONFIG_NUMA
6954 kfree(sched_group_nodes);
6955#endif
6956 return -ENOMEM;
6957 }
6958#endif
6959 tmpmask = (cpumask_t *)allmasks;
6960
6961
6962#ifdef CONFIG_NUMA
6963 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
6964#endif
6965
Linus Torvalds1da177e2005-04-16 15:20:36 -07006966 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006967 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006968 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006969 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006970 struct sched_domain *sd = NULL, *p;
Mike Travis7c16ec52008-04-04 18:11:11 -07006971 SCHED_CPUMASK_VAR(nodemask, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006972
Mike Travis7c16ec52008-04-04 18:11:11 -07006973 *nodemask = node_to_cpumask(cpu_to_node(i));
6974 cpus_and(*nodemask, *nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006975
6976#ifdef CONFIG_NUMA
Ingo Molnardd41f592007-07-09 18:51:59 +02006977 if (cpus_weight(*cpu_map) >
Mike Travis7c16ec52008-04-04 18:11:11 -07006978 SD_NODES_PER_DOMAIN*cpus_weight(*nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07006979 sd = &per_cpu(allnodes_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07006980 SD_INIT(sd, ALLNODES);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006981 set_domain_attribute(sd, attr);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006982 sd->span = *cpu_map;
Mike Travis7c16ec52008-04-04 18:11:11 -07006983 cpu_to_allnodes_group(i, cpu_map, &sd->groups, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006984 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006985 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006986 } else
6987 p = NULL;
6988
Linus Torvalds1da177e2005-04-16 15:20:36 -07006989 sd = &per_cpu(node_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07006990 SD_INIT(sd, NODE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09006991 set_domain_attribute(sd, attr);
Mike Travis4bdbaad2008-04-15 16:35:52 -07006992 sched_domain_node_span(cpu_to_node(i), &sd->span);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006993 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006994 if (p)
6995 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006996 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006997#endif
6998
6999 p = sd;
7000 sd = &per_cpu(phys_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007001 SD_INIT(sd, CPU);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007002 set_domain_attribute(sd, attr);
Mike Travis7c16ec52008-04-04 18:11:11 -07007003 sd->span = *nodemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007004 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007005 if (p)
7006 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007007 cpu_to_phys_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007008
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007009#ifdef CONFIG_SCHED_MC
7010 p = sd;
7011 sd = &per_cpu(core_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007012 SD_INIT(sd, MC);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007013 set_domain_attribute(sd, attr);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007014 sd->span = cpu_coregroup_map(i);
7015 cpus_and(sd->span, sd->span, *cpu_map);
7016 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007017 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007018 cpu_to_core_group(i, cpu_map, &sd->groups, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007019#endif
7020
Linus Torvalds1da177e2005-04-16 15:20:36 -07007021#ifdef CONFIG_SCHED_SMT
7022 p = sd;
7023 sd = &per_cpu(cpu_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007024 SD_INIT(sd, SIBLING);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007025 set_domain_attribute(sd, attr);
Mike Travisd5a74302007-10-16 01:24:05 -07007026 sd->span = per_cpu(cpu_sibling_map, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007027 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007028 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007029 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007030 cpu_to_cpu_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007031#endif
7032 }
7033
7034#ifdef CONFIG_SCHED_SMT
7035 /* Set up CPU (sibling) groups */
John Hawkes9c1cfda2005-09-06 15:18:14 -07007036 for_each_cpu_mask(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007037 SCHED_CPUMASK_VAR(this_sibling_map, allmasks);
7038 SCHED_CPUMASK_VAR(send_covered, allmasks);
7039
7040 *this_sibling_map = per_cpu(cpu_sibling_map, i);
7041 cpus_and(*this_sibling_map, *this_sibling_map, *cpu_map);
7042 if (i != first_cpu(*this_sibling_map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007043 continue;
7044
Ingo Molnardd41f592007-07-09 18:51:59 +02007045 init_sched_build_groups(this_sibling_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007046 &cpu_to_cpu_group,
7047 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007048 }
7049#endif
7050
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007051#ifdef CONFIG_SCHED_MC
7052 /* Set up multi-core groups */
7053 for_each_cpu_mask(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007054 SCHED_CPUMASK_VAR(this_core_map, allmasks);
7055 SCHED_CPUMASK_VAR(send_covered, allmasks);
7056
7057 *this_core_map = cpu_coregroup_map(i);
7058 cpus_and(*this_core_map, *this_core_map, *cpu_map);
7059 if (i != first_cpu(*this_core_map))
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007060 continue;
Mike Travis7c16ec52008-04-04 18:11:11 -07007061
Ingo Molnardd41f592007-07-09 18:51:59 +02007062 init_sched_build_groups(this_core_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007063 &cpu_to_core_group,
7064 send_covered, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007065 }
7066#endif
7067
Linus Torvalds1da177e2005-04-16 15:20:36 -07007068 /* Set up physical groups */
7069 for (i = 0; i < MAX_NUMNODES; i++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007070 SCHED_CPUMASK_VAR(nodemask, allmasks);
7071 SCHED_CPUMASK_VAR(send_covered, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007072
Mike Travis7c16ec52008-04-04 18:11:11 -07007073 *nodemask = node_to_cpumask(i);
7074 cpus_and(*nodemask, *nodemask, *cpu_map);
7075 if (cpus_empty(*nodemask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007076 continue;
7077
Mike Travis7c16ec52008-04-04 18:11:11 -07007078 init_sched_build_groups(nodemask, cpu_map,
7079 &cpu_to_phys_group,
7080 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007081 }
7082
7083#ifdef CONFIG_NUMA
7084 /* Set up node groups */
Mike Travis7c16ec52008-04-04 18:11:11 -07007085 if (sd_allnodes) {
7086 SCHED_CPUMASK_VAR(send_covered, allmasks);
7087
7088 init_sched_build_groups(cpu_map, cpu_map,
7089 &cpu_to_allnodes_group,
7090 send_covered, tmpmask);
7091 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007092
7093 for (i = 0; i < MAX_NUMNODES; i++) {
7094 /* Set up node groups */
7095 struct sched_group *sg, *prev;
Mike Travis7c16ec52008-04-04 18:11:11 -07007096 SCHED_CPUMASK_VAR(nodemask, allmasks);
7097 SCHED_CPUMASK_VAR(domainspan, allmasks);
7098 SCHED_CPUMASK_VAR(covered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007099 int j;
7100
Mike Travis7c16ec52008-04-04 18:11:11 -07007101 *nodemask = node_to_cpumask(i);
7102 cpus_clear(*covered);
7103
7104 cpus_and(*nodemask, *nodemask, *cpu_map);
7105 if (cpus_empty(*nodemask)) {
John Hawkesd1b55132005-09-06 15:18:14 -07007106 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007107 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07007108 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007109
Mike Travis4bdbaad2008-04-15 16:35:52 -07007110 sched_domain_node_span(i, domainspan);
Mike Travis7c16ec52008-04-04 18:11:11 -07007111 cpus_and(*domainspan, *domainspan, *cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007112
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007113 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007114 if (!sg) {
7115 printk(KERN_WARNING "Can not alloc domain group for "
7116 "node %d\n", i);
7117 goto error;
7118 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007119 sched_group_nodes[i] = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007120 for_each_cpu_mask(j, *nodemask) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007121 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02007122
John Hawkes9c1cfda2005-09-06 15:18:14 -07007123 sd = &per_cpu(node_domains, j);
7124 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007125 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007126 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007127 sg->cpumask = *nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007128 sg->next = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007129 cpus_or(*covered, *covered, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007130 prev = sg;
7131
7132 for (j = 0; j < MAX_NUMNODES; j++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007133 SCHED_CPUMASK_VAR(notcovered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007134 int n = (i + j) % MAX_NUMNODES;
Mike Travisc5f59f02008-04-04 18:11:10 -07007135 node_to_cpumask_ptr(pnodemask, n);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007136
Mike Travis7c16ec52008-04-04 18:11:11 -07007137 cpus_complement(*notcovered, *covered);
7138 cpus_and(*tmpmask, *notcovered, *cpu_map);
7139 cpus_and(*tmpmask, *tmpmask, *domainspan);
7140 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007141 break;
7142
Mike Travis7c16ec52008-04-04 18:11:11 -07007143 cpus_and(*tmpmask, *tmpmask, *pnodemask);
7144 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007145 continue;
7146
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007147 sg = kmalloc_node(sizeof(struct sched_group),
7148 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007149 if (!sg) {
7150 printk(KERN_WARNING
7151 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007152 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007153 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007154 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007155 sg->cpumask = *tmpmask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007156 sg->next = prev->next;
Mike Travis7c16ec52008-04-04 18:11:11 -07007157 cpus_or(*covered, *covered, *tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007158 prev->next = sg;
7159 prev = sg;
7160 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007161 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007162#endif
7163
7164 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007165#ifdef CONFIG_SCHED_SMT
7166 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007167 struct sched_domain *sd = &per_cpu(cpu_domains, i);
7168
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007169 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007170 }
7171#endif
7172#ifdef CONFIG_SCHED_MC
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007173 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007174 struct sched_domain *sd = &per_cpu(core_domains, i);
7175
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007176 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007177 }
7178#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007179
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007180 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007181 struct sched_domain *sd = &per_cpu(phys_domains, i);
7182
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007183 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007184 }
7185
John Hawkes9c1cfda2005-09-06 15:18:14 -07007186#ifdef CONFIG_NUMA
Siddha, Suresh B08069032006-03-27 01:15:23 -08007187 for (i = 0; i < MAX_NUMNODES; i++)
7188 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007189
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007190 if (sd_allnodes) {
7191 struct sched_group *sg;
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07007192
Mike Travis7c16ec52008-04-04 18:11:11 -07007193 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg,
7194 tmpmask);
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07007195 init_numa_sched_groups_power(sg);
7196 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007197#endif
7198
Linus Torvalds1da177e2005-04-16 15:20:36 -07007199 /* Attach the domains */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007200 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007201 struct sched_domain *sd;
7202#ifdef CONFIG_SCHED_SMT
7203 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007204#elif defined(CONFIG_SCHED_MC)
7205 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007206#else
7207 sd = &per_cpu(phys_domains, i);
7208#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007209 cpu_attach_domain(sd, rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007210 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007211
Mike Travis7c16ec52008-04-04 18:11:11 -07007212 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007213 return 0;
7214
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007215#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007216error:
Mike Travis7c16ec52008-04-04 18:11:11 -07007217 free_sched_groups(cpu_map, tmpmask);
7218 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007219 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007220#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007221}
Paul Jackson029190c2007-10-18 23:40:20 -07007222
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007223static int build_sched_domains(const cpumask_t *cpu_map)
7224{
7225 return __build_sched_domains(cpu_map, NULL);
7226}
7227
Paul Jackson029190c2007-10-18 23:40:20 -07007228static cpumask_t *doms_cur; /* current sched domains */
7229static int ndoms_cur; /* number of sched domains in 'doms_cur' */
Ingo Molnar4285f5942008-05-16 17:47:14 +02007230static struct sched_domain_attr *dattr_cur;
7231 /* attribues of custom domains in 'doms_cur' */
Paul Jackson029190c2007-10-18 23:40:20 -07007232
7233/*
7234 * Special case: If a kmalloc of a doms_cur partition (array of
7235 * cpumask_t) fails, then fallback to a single sched domain,
7236 * as determined by the single cpumask_t fallback_doms.
7237 */
7238static cpumask_t fallback_doms;
7239
Heiko Carstens22e52b02008-03-12 18:31:59 +01007240void __attribute__((weak)) arch_update_cpu_topology(void)
7241{
7242}
7243
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007244/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007245 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07007246 * For now this just excludes isolated cpus, but could be used to
7247 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007248 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007249static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007250{
Milton Miller73785472007-10-24 18:23:48 +02007251 int err;
7252
Heiko Carstens22e52b02008-03-12 18:31:59 +01007253 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07007254 ndoms_cur = 1;
7255 doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
7256 if (!doms_cur)
7257 doms_cur = &fallback_doms;
7258 cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007259 dattr_cur = NULL;
Milton Miller73785472007-10-24 18:23:48 +02007260 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02007261 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02007262
7263 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007264}
7265
Mike Travis7c16ec52008-04-04 18:11:11 -07007266static void arch_destroy_sched_domains(const cpumask_t *cpu_map,
7267 cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007268{
Mike Travis7c16ec52008-04-04 18:11:11 -07007269 free_sched_groups(cpu_map, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007270}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007271
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007272/*
7273 * Detach sched domains from a group of cpus specified in cpu_map
7274 * These cpus will now be attached to the NULL domain
7275 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08007276static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007277{
Mike Travis7c16ec52008-04-04 18:11:11 -07007278 cpumask_t tmpmask;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007279 int i;
7280
Milton Miller6382bc92007-10-15 17:00:19 +02007281 unregister_sched_domain_sysctl();
7282
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007283 for_each_cpu_mask(i, *cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01007284 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007285 synchronize_sched();
Mike Travis7c16ec52008-04-04 18:11:11 -07007286 arch_destroy_sched_domains(cpu_map, &tmpmask);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007287}
7288
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007289/* handle null as "default" */
7290static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
7291 struct sched_domain_attr *new, int idx_new)
7292{
7293 struct sched_domain_attr tmp;
7294
7295 /* fast path */
7296 if (!new && !cur)
7297 return 1;
7298
7299 tmp = SD_ATTR_INIT;
7300 return !memcmp(cur ? (cur + idx_cur) : &tmp,
7301 new ? (new + idx_new) : &tmp,
7302 sizeof(struct sched_domain_attr));
7303}
7304
Paul Jackson029190c2007-10-18 23:40:20 -07007305/*
7306 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007307 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07007308 * doms_new[] to the current sched domain partitioning, doms_cur[].
7309 * It destroys each deleted domain and builds each new domain.
7310 *
7311 * 'doms_new' is an array of cpumask_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007312 * The masks don't intersect (don't overlap.) We should setup one
7313 * sched domain for each mask. CPUs not in any of the cpumasks will
7314 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07007315 * current 'doms_cur' domains and in the new 'doms_new', we can leave
7316 * it as it is.
7317 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007318 * The passed in 'doms_new' should be kmalloc'd. This routine takes
7319 * ownership of it and will kfree it when done with it. If the caller
Paul Jackson029190c2007-10-18 23:40:20 -07007320 * failed the kmalloc call, then it can pass in doms_new == NULL,
7321 * and partition_sched_domains() will fallback to the single partition
7322 * 'fallback_doms'.
7323 *
7324 * Call with hotplug lock held
7325 */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007326void partition_sched_domains(int ndoms_new, cpumask_t *doms_new,
7327 struct sched_domain_attr *dattr_new)
Paul Jackson029190c2007-10-18 23:40:20 -07007328{
7329 int i, j;
7330
Heiko Carstens712555e2008-04-28 11:33:07 +02007331 mutex_lock(&sched_domains_mutex);
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007332
Milton Miller73785472007-10-24 18:23:48 +02007333 /* always unregister in case we don't destroy any domains */
7334 unregister_sched_domain_sysctl();
7335
Paul Jackson029190c2007-10-18 23:40:20 -07007336 if (doms_new == NULL) {
7337 ndoms_new = 1;
7338 doms_new = &fallback_doms;
7339 cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007340 dattr_new = NULL;
Paul Jackson029190c2007-10-18 23:40:20 -07007341 }
7342
7343 /* Destroy deleted domains */
7344 for (i = 0; i < ndoms_cur; i++) {
7345 for (j = 0; j < ndoms_new; j++) {
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007346 if (cpus_equal(doms_cur[i], doms_new[j])
7347 && dattrs_equal(dattr_cur, i, dattr_new, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007348 goto match1;
7349 }
7350 /* no match - a current sched domain not in new doms_new[] */
7351 detach_destroy_domains(doms_cur + i);
7352match1:
7353 ;
7354 }
7355
7356 /* Build new domains */
7357 for (i = 0; i < ndoms_new; i++) {
7358 for (j = 0; j < ndoms_cur; j++) {
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007359 if (cpus_equal(doms_new[i], doms_cur[j])
7360 && dattrs_equal(dattr_new, i, dattr_cur, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007361 goto match2;
7362 }
7363 /* no match - add a new doms_new */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007364 __build_sched_domains(doms_new + i,
7365 dattr_new ? dattr_new + i : NULL);
Paul Jackson029190c2007-10-18 23:40:20 -07007366match2:
7367 ;
7368 }
7369
7370 /* Remember the new sched domains */
7371 if (doms_cur != &fallback_doms)
7372 kfree(doms_cur);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007373 kfree(dattr_cur); /* kfree(NULL) is safe */
Paul Jackson029190c2007-10-18 23:40:20 -07007374 doms_cur = doms_new;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007375 dattr_cur = dattr_new;
Paul Jackson029190c2007-10-18 23:40:20 -07007376 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02007377
7378 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007379
Heiko Carstens712555e2008-04-28 11:33:07 +02007380 mutex_unlock(&sched_domains_mutex);
Paul Jackson029190c2007-10-18 23:40:20 -07007381}
7382
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007383#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Heiko Carstens9aefd0a2008-03-12 18:31:58 +01007384int arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007385{
7386 int err;
7387
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007388 get_online_cpus();
Heiko Carstens712555e2008-04-28 11:33:07 +02007389 mutex_lock(&sched_domains_mutex);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007390 detach_destroy_domains(&cpu_online_map);
7391 err = arch_init_sched_domains(&cpu_online_map);
Heiko Carstens712555e2008-04-28 11:33:07 +02007392 mutex_unlock(&sched_domains_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007393 put_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007394
7395 return err;
7396}
7397
7398static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
7399{
7400 int ret;
7401
7402 if (buf[0] != '0' && buf[0] != '1')
7403 return -EINVAL;
7404
7405 if (smt)
7406 sched_smt_power_savings = (buf[0] == '1');
7407 else
7408 sched_mc_power_savings = (buf[0] == '1');
7409
7410 ret = arch_reinit_sched_domains();
7411
7412 return ret ? ret : count;
7413}
7414
Adrian Bunk6707de002007-08-12 18:08:19 +02007415#ifdef CONFIG_SCHED_MC
7416static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
7417{
7418 return sprintf(page, "%u\n", sched_mc_power_savings);
7419}
7420static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
7421 const char *buf, size_t count)
7422{
7423 return sched_power_savings_store(buf, count, 0);
7424}
7425static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
7426 sched_mc_power_savings_store);
7427#endif
7428
7429#ifdef CONFIG_SCHED_SMT
7430static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
7431{
7432 return sprintf(page, "%u\n", sched_smt_power_savings);
7433}
7434static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
7435 const char *buf, size_t count)
7436{
7437 return sched_power_savings_store(buf, count, 1);
7438}
7439static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
7440 sched_smt_power_savings_store);
7441#endif
7442
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007443int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
7444{
7445 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007446
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007447#ifdef CONFIG_SCHED_SMT
7448 if (smt_capable())
7449 err = sysfs_create_file(&cls->kset.kobj,
7450 &attr_sched_smt_power_savings.attr);
7451#endif
7452#ifdef CONFIG_SCHED_MC
7453 if (!err && mc_capable())
7454 err = sysfs_create_file(&cls->kset.kobj,
7455 &attr_sched_mc_power_savings.attr);
7456#endif
7457 return err;
7458}
7459#endif
7460
Linus Torvalds1da177e2005-04-16 15:20:36 -07007461/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007462 * Force a reinitialization of the sched domains hierarchy. The domains
Linus Torvalds1da177e2005-04-16 15:20:36 -07007463 * and groups cannot be updated in place without racing with the balancing
Nick Piggin41c7ce92005-06-25 14:57:24 -07007464 * code, so we temporarily attach all running cpus to the NULL domain
Linus Torvalds1da177e2005-04-16 15:20:36 -07007465 * which will prevent rebalancing while the sched domains are recalculated.
7466 */
7467static int update_sched_domains(struct notifier_block *nfb,
7468 unsigned long action, void *hcpu)
7469{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007470 switch (action) {
7471 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007472 case CPU_UP_PREPARE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007473 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007474 case CPU_DOWN_PREPARE_FROZEN:
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007475 detach_destroy_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007476 return NOTIFY_OK;
7477
7478 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007479 case CPU_UP_CANCELED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007480 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007481 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007482 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007483 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007484 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007485 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007486 /*
7487 * Fall through and re-initialise the domains.
7488 */
7489 break;
7490 default:
7491 return NOTIFY_DONE;
7492 }
7493
7494 /* The hotplug lock is already held by cpu_up/cpu_down */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007495 arch_init_sched_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007496
7497 return NOTIFY_OK;
7498}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007499
7500void __init sched_init_smp(void)
7501{
Nick Piggin5c1e1762006-10-03 01:14:04 -07007502 cpumask_t non_isolated_cpus;
7503
Mike Travis434d53b2008-04-04 18:11:04 -07007504#if defined(CONFIG_NUMA)
7505 sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **),
7506 GFP_KERNEL);
7507 BUG_ON(sched_group_nodes_bycpu == NULL);
7508#endif
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007509 get_online_cpus();
Heiko Carstens712555e2008-04-28 11:33:07 +02007510 mutex_lock(&sched_domains_mutex);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007511 arch_init_sched_domains(&cpu_online_map);
Nathan Lynche5e56732007-01-10 23:15:28 -08007512 cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007513 if (cpus_empty(non_isolated_cpus))
7514 cpu_set(smp_processor_id(), non_isolated_cpus);
Heiko Carstens712555e2008-04-28 11:33:07 +02007515 mutex_unlock(&sched_domains_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007516 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007517 /* XXX: Theoretical race here - CPU may be hotplugged now */
7518 hotcpu_notifier(update_sched_domains, 0);
Peter Zijlstrab328ca12008-04-29 10:02:46 +02007519 init_hrtick();
Nick Piggin5c1e1762006-10-03 01:14:04 -07007520
7521 /* Move init over to a non-isolated CPU */
Mike Travis7c16ec52008-04-04 18:11:11 -07007522 if (set_cpus_allowed_ptr(current, &non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07007523 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01007524 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007525}
7526#else
7527void __init sched_init_smp(void)
7528{
Ingo Molnar19978ca2007-11-09 22:39:38 +01007529 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007530}
7531#endif /* CONFIG_SMP */
7532
7533int in_sched_functions(unsigned long addr)
7534{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007535 return in_lock_functions(addr) ||
7536 (addr >= (unsigned long)__sched_text_start
7537 && addr < (unsigned long)__sched_text_end);
7538}
7539
Alexey Dobriyana9957442007-10-15 17:00:13 +02007540static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02007541{
7542 cfs_rq->tasks_timeline = RB_ROOT;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02007543 INIT_LIST_HEAD(&cfs_rq->tasks);
Ingo Molnardd41f592007-07-09 18:51:59 +02007544#ifdef CONFIG_FAIR_GROUP_SCHED
7545 cfs_rq->rq = rq;
7546#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02007547 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02007548}
7549
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007550static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
7551{
7552 struct rt_prio_array *array;
7553 int i;
7554
7555 array = &rt_rq->active;
7556 for (i = 0; i < MAX_RT_PRIO; i++) {
Gregory Haskins45c01e82008-05-12 21:20:41 +02007557 INIT_LIST_HEAD(array->xqueue + i);
7558 INIT_LIST_HEAD(array->squeue + i);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007559 __clear_bit(i, array->bitmap);
7560 }
7561 /* delimiter for bitsearch: */
7562 __set_bit(MAX_RT_PRIO, array->bitmap);
7563
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007564#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra48d5e252008-01-25 21:08:31 +01007565 rt_rq->highest_prio = MAX_RT_PRIO;
7566#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007567#ifdef CONFIG_SMP
7568 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007569 rt_rq->overloaded = 0;
7570#endif
7571
7572 rt_rq->rt_time = 0;
7573 rt_rq->rt_throttled = 0;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007574 rt_rq->rt_runtime = 0;
7575 spin_lock_init(&rt_rq->rt_runtime_lock);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007576
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007577#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01007578 rt_rq->rt_nr_boosted = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007579 rt_rq->rq = rq;
7580#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007581}
7582
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007583#ifdef CONFIG_FAIR_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007584static void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq,
7585 struct sched_entity *se, int cpu, int add,
7586 struct sched_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007587{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007588 struct rq *rq = cpu_rq(cpu);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007589 tg->cfs_rq[cpu] = cfs_rq;
7590 init_cfs_rq(cfs_rq, rq);
7591 cfs_rq->tg = tg;
7592 if (add)
7593 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
7594
7595 tg->se[cpu] = se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02007596 /* se could be NULL for init_task_group */
7597 if (!se)
7598 return;
7599
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007600 if (!parent)
7601 se->cfs_rq = &rq->cfs;
7602 else
7603 se->cfs_rq = parent->my_q;
7604
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007605 se->my_q = cfs_rq;
7606 se->load.weight = tg->shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02007607 se->load.inv_weight = 0;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007608 se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007609}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007610#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007611
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007612#ifdef CONFIG_RT_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007613static void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq,
7614 struct sched_rt_entity *rt_se, int cpu, int add,
7615 struct sched_rt_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007616{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007617 struct rq *rq = cpu_rq(cpu);
7618
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007619 tg->rt_rq[cpu] = rt_rq;
7620 init_rt_rq(rt_rq, rq);
7621 rt_rq->tg = tg;
7622 rt_rq->rt_se = rt_se;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007623 rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007624 if (add)
7625 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
7626
7627 tg->rt_se[cpu] = rt_se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02007628 if (!rt_se)
7629 return;
7630
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007631 if (!parent)
7632 rt_se->rt_rq = &rq->rt;
7633 else
7634 rt_se->rt_rq = parent->my_q;
7635
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007636 rt_se->rt_rq = &rq->rt;
7637 rt_se->my_q = rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007638 rt_se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007639 INIT_LIST_HEAD(&rt_se->run_list);
7640}
7641#endif
7642
Linus Torvalds1da177e2005-04-16 15:20:36 -07007643void __init sched_init(void)
7644{
Ingo Molnardd41f592007-07-09 18:51:59 +02007645 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07007646 unsigned long alloc_size = 0, ptr;
7647
7648#ifdef CONFIG_FAIR_GROUP_SCHED
7649 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
7650#endif
7651#ifdef CONFIG_RT_GROUP_SCHED
7652 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
7653#endif
Peter Zijlstraeff766a2008-04-19 19:45:00 +02007654#ifdef CONFIG_USER_SCHED
7655 alloc_size *= 2;
7656#endif
Mike Travis434d53b2008-04-04 18:11:04 -07007657 /*
7658 * As sched_init() is called before page_alloc is setup,
7659 * we use alloc_bootmem().
7660 */
7661 if (alloc_size) {
David Miller5a9d3222008-04-24 20:46:20 -07007662 ptr = (unsigned long)alloc_bootmem(alloc_size);
Mike Travis434d53b2008-04-04 18:11:04 -07007663
7664#ifdef CONFIG_FAIR_GROUP_SCHED
7665 init_task_group.se = (struct sched_entity **)ptr;
7666 ptr += nr_cpu_ids * sizeof(void **);
7667
7668 init_task_group.cfs_rq = (struct cfs_rq **)ptr;
7669 ptr += nr_cpu_ids * sizeof(void **);
Peter Zijlstraeff766a2008-04-19 19:45:00 +02007670
7671#ifdef CONFIG_USER_SCHED
7672 root_task_group.se = (struct sched_entity **)ptr;
7673 ptr += nr_cpu_ids * sizeof(void **);
7674
7675 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
7676 ptr += nr_cpu_ids * sizeof(void **);
7677#endif
Mike Travis434d53b2008-04-04 18:11:04 -07007678#endif
7679#ifdef CONFIG_RT_GROUP_SCHED
7680 init_task_group.rt_se = (struct sched_rt_entity **)ptr;
7681 ptr += nr_cpu_ids * sizeof(void **);
7682
7683 init_task_group.rt_rq = (struct rt_rq **)ptr;
Peter Zijlstraeff766a2008-04-19 19:45:00 +02007684 ptr += nr_cpu_ids * sizeof(void **);
7685
7686#ifdef CONFIG_USER_SCHED
7687 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
7688 ptr += nr_cpu_ids * sizeof(void **);
7689
7690 root_task_group.rt_rq = (struct rt_rq **)ptr;
7691 ptr += nr_cpu_ids * sizeof(void **);
7692#endif
Mike Travis434d53b2008-04-04 18:11:04 -07007693#endif
7694 }
Ingo Molnardd41f592007-07-09 18:51:59 +02007695
Gregory Haskins57d885f2008-01-25 21:08:18 +01007696#ifdef CONFIG_SMP
7697 init_defrootdomain();
7698#endif
7699
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007700 init_rt_bandwidth(&def_rt_bandwidth,
7701 global_rt_period(), global_rt_runtime());
7702
7703#ifdef CONFIG_RT_GROUP_SCHED
7704 init_rt_bandwidth(&init_task_group.rt_bandwidth,
7705 global_rt_period(), global_rt_runtime());
Peter Zijlstraeff766a2008-04-19 19:45:00 +02007706#ifdef CONFIG_USER_SCHED
7707 init_rt_bandwidth(&root_task_group.rt_bandwidth,
7708 global_rt_period(), RUNTIME_INF);
7709#endif
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007710#endif
7711
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007712#ifdef CONFIG_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007713 list_add(&init_task_group.list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02007714 INIT_LIST_HEAD(&init_task_group.children);
7715
7716#ifdef CONFIG_USER_SCHED
7717 INIT_LIST_HEAD(&root_task_group.children);
7718 init_task_group.parent = &root_task_group;
7719 list_add(&init_task_group.siblings, &root_task_group.children);
7720#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007721#endif
7722
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08007723 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07007724 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007725
7726 rq = cpu_rq(i);
7727 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07007728 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07007729 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007730 init_cfs_rq(&rq->cfs, rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007731 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007732#ifdef CONFIG_FAIR_GROUP_SCHED
7733 init_task_group.shares = init_task_group_load;
7734 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02007735#ifdef CONFIG_CGROUP_SCHED
7736 /*
7737 * How much cpu bandwidth does init_task_group get?
7738 *
7739 * In case of task-groups formed thr' the cgroup filesystem, it
7740 * gets 100% of the cpu resources in the system. This overall
7741 * system cpu resource is divided among the tasks of
7742 * init_task_group and its child task-groups in a fair manner,
7743 * based on each entity's (task or task-group's) weight
7744 * (se->load.weight).
7745 *
7746 * In other words, if init_task_group has 10 tasks of weight
7747 * 1024) and two child groups A0 and A1 (of weight 1024 each),
7748 * then A0's share of the cpu resource is:
7749 *
7750 * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
7751 *
7752 * We achieve this by letting init_task_group's tasks sit
7753 * directly in rq->cfs (i.e init_task_group->se[] = NULL).
7754 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007755 init_tg_cfs_entry(&init_task_group, &rq->cfs, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02007756#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02007757 root_task_group.shares = NICE_0_LOAD;
7758 init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, 0, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02007759 /*
7760 * In case of task-groups formed thr' the user id of tasks,
7761 * init_task_group represents tasks belonging to root user.
7762 * Hence it forms a sibling of all subsequent groups formed.
7763 * In this case, init_task_group gets only a fraction of overall
7764 * system cpu resource, based on the weight assigned to root
7765 * user's cpu share (INIT_TASK_GROUP_LOAD). This is accomplished
7766 * by letting tasks of init_task_group sit in a separate cfs_rq
7767 * (init_cfs_rq) and having one entity represent this group of
7768 * tasks in rq->cfs (i.e init_task_group->se[] != NULL).
7769 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007770 init_tg_cfs_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007771 &per_cpu(init_cfs_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02007772 &per_cpu(init_sched_entity, i), i, 1,
7773 root_task_group.se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007774
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007775#endif
Dhaval Giani354d60c2008-04-19 19:44:59 +02007776#endif /* CONFIG_FAIR_GROUP_SCHED */
7777
7778 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007779#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007780 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02007781#ifdef CONFIG_CGROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007782 init_tg_rt_entry(&init_task_group, &rq->rt, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02007783#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02007784 init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, 0, NULL);
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007785 init_tg_rt_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007786 &per_cpu(init_rt_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02007787 &per_cpu(init_sched_rt_entity, i), i, 1,
7788 root_task_group.rt_se[i]);
Dhaval Giani354d60c2008-04-19 19:44:59 +02007789#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007790#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007791
Ingo Molnardd41f592007-07-09 18:51:59 +02007792 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
7793 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007794#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07007795 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007796 rq->rd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007797 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007798 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007799 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07007800 rq->cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007801 rq->migration_thread = NULL;
7802 INIT_LIST_HEAD(&rq->migration_queue);
Gregory Haskinsdc938522008-01-25 21:08:26 +01007803 rq_attach_root(rq, &def_root_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007804#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01007805 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007806 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007807 }
7808
Peter Williams2dd73a42006-06-27 02:54:34 -07007809 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007810
Avi Kivitye107be32007-07-26 13:40:43 +02007811#ifdef CONFIG_PREEMPT_NOTIFIERS
7812 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
7813#endif
7814
Christoph Lameterc9819f42006-12-10 02:20:25 -08007815#ifdef CONFIG_SMP
7816 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL);
7817#endif
7818
Heiko Carstensb50f60c2006-07-30 03:03:52 -07007819#ifdef CONFIG_RT_MUTEXES
7820 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
7821#endif
7822
Linus Torvalds1da177e2005-04-16 15:20:36 -07007823 /*
7824 * The boot idle thread does lazy MMU switching as well:
7825 */
7826 atomic_inc(&init_mm.mm_count);
7827 enter_lazy_tlb(&init_mm, current);
7828
7829 /*
7830 * Make us the idle thread. Technically, schedule() should not be
7831 * called from this thread, however somewhere below it might be,
7832 * but because we are the idle thread, we just pick up running again
7833 * when this runqueue becomes "idle".
7834 */
7835 init_idle(current, smp_processor_id());
Ingo Molnardd41f592007-07-09 18:51:59 +02007836 /*
7837 * During early bootup we pretend to be a normal task:
7838 */
7839 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01007840
7841 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007842}
7843
7844#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
7845void __might_sleep(char *file, int line)
7846{
Ingo Molnar48f24c42006-07-03 00:25:40 -07007847#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07007848 static unsigned long prev_jiffy; /* ratelimiting */
7849
7850 if ((in_atomic() || irqs_disabled()) &&
7851 system_state == SYSTEM_RUNNING && !oops_in_progress) {
7852 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
7853 return;
7854 prev_jiffy = jiffies;
Ingo Molnar91368d72006-03-23 03:00:54 -08007855 printk(KERN_ERR "BUG: sleeping function called from invalid"
Linus Torvalds1da177e2005-04-16 15:20:36 -07007856 " context at %s:%d\n", file, line);
7857 printk("in_atomic():%d, irqs_disabled():%d\n",
7858 in_atomic(), irqs_disabled());
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08007859 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08007860 if (irqs_disabled())
7861 print_irqtrace_events(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007862 dump_stack();
7863 }
7864#endif
7865}
7866EXPORT_SYMBOL(__might_sleep);
7867#endif
7868
7869#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007870static void normalize_task(struct rq *rq, struct task_struct *p)
7871{
7872 int on_rq;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02007873
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007874 update_rq_clock(rq);
7875 on_rq = p->se.on_rq;
7876 if (on_rq)
7877 deactivate_task(rq, p, 0);
7878 __setscheduler(rq, p, SCHED_NORMAL, 0);
7879 if (on_rq) {
7880 activate_task(rq, p, 0);
7881 resched_task(rq->curr);
7882 }
7883}
7884
Linus Torvalds1da177e2005-04-16 15:20:36 -07007885void normalize_rt_tasks(void)
7886{
Ingo Molnara0f98a12007-06-17 18:37:45 +02007887 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007888 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07007889 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007890
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007891 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007892 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02007893 /*
7894 * Only normalize user tasks:
7895 */
7896 if (!p->mm)
7897 continue;
7898
Ingo Molnardd41f592007-07-09 18:51:59 +02007899 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007900#ifdef CONFIG_SCHEDSTATS
7901 p->se.wait_start = 0;
7902 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007903 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02007904#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02007905
7906 if (!rt_task(p)) {
7907 /*
7908 * Renice negative nice level userspace
7909 * tasks back to 0:
7910 */
7911 if (TASK_NICE(p) < 0 && p->mm)
7912 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007913 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02007914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007915
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007916 spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07007917 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007918
Ingo Molnar178be792007-10-15 17:00:18 +02007919 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02007920
Ingo Molnarb29739f2006-06-27 02:54:51 -07007921 __task_rq_unlock(rq);
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007922 spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02007923 } while_each_thread(g, p);
7924
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01007925 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007926}
7927
7928#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07007929
7930#ifdef CONFIG_IA64
7931/*
7932 * These functions are only useful for the IA64 MCA handling.
7933 *
7934 * They can only be called when the whole system has been
7935 * stopped - every CPU needs to be quiescent, and no scheduling
7936 * activity can take place. Using them for anything else would
7937 * be a serious bug, and as a result, they aren't even visible
7938 * under any other configuration.
7939 */
7940
7941/**
7942 * curr_task - return the current task for a given cpu.
7943 * @cpu: the processor in question.
7944 *
7945 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7946 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007947struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007948{
7949 return cpu_curr(cpu);
7950}
7951
7952/**
7953 * set_curr_task - set the current task for a given cpu.
7954 * @cpu: the processor in question.
7955 * @p: the task pointer to set.
7956 *
7957 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007958 * are serviced on a separate stack. It allows the architecture to switch the
7959 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07007960 * must be called with all CPU's synchronized, and interrupts disabled, the
7961 * and caller must save the original value of the current task (see
7962 * curr_task() above) and restore that value before reenabling interrupts and
7963 * re-starting the system.
7964 *
7965 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7966 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007967void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007968{
7969 cpu_curr(cpu) = p;
7970}
7971
7972#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007973
Peter Zijlstrabccbe082008-02-13 15:45:40 +01007974#ifdef CONFIG_FAIR_GROUP_SCHED
7975static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007976{
7977 int i;
7978
7979 for_each_possible_cpu(i) {
7980 if (tg->cfs_rq)
7981 kfree(tg->cfs_rq[i]);
7982 if (tg->se)
7983 kfree(tg->se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007984 }
7985
7986 kfree(tg->cfs_rq);
7987 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007988}
7989
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007990static
7991int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007992{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007993 struct cfs_rq *cfs_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007994 struct sched_entity *se, *parent_se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02007995 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007996 int i;
7997
Mike Travis434d53b2008-04-04 18:11:04 -07007998 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02007999 if (!tg->cfs_rq)
8000 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008001 tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008002 if (!tg->se)
8003 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008004
8005 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008006
8007 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008008 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008009
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008010 cfs_rq = kmalloc_node(sizeof(struct cfs_rq),
8011 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008012 if (!cfs_rq)
8013 goto err;
8014
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008015 se = kmalloc_node(sizeof(struct sched_entity),
8016 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008017 if (!se)
8018 goto err;
8019
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008020 parent_se = parent ? parent->se[i] : NULL;
8021 init_tg_cfs_entry(tg, cfs_rq, se, i, 0, parent_se);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008022 }
8023
8024 return 1;
8025
8026 err:
8027 return 0;
8028}
8029
8030static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8031{
8032 list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list,
8033 &cpu_rq(cpu)->leaf_cfs_rq_list);
8034}
8035
8036static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8037{
8038 list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list);
8039}
8040#else
8041static inline void free_fair_sched_group(struct task_group *tg)
8042{
8043}
8044
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008045static inline
8046int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008047{
8048 return 1;
8049}
8050
8051static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8052{
8053}
8054
8055static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8056{
8057}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008058#endif
8059
8060#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008061static void free_rt_sched_group(struct task_group *tg)
8062{
8063 int i;
8064
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008065 destroy_rt_bandwidth(&tg->rt_bandwidth);
8066
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008067 for_each_possible_cpu(i) {
8068 if (tg->rt_rq)
8069 kfree(tg->rt_rq[i]);
8070 if (tg->rt_se)
8071 kfree(tg->rt_se[i]);
8072 }
8073
8074 kfree(tg->rt_rq);
8075 kfree(tg->rt_se);
8076}
8077
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008078static
8079int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008080{
8081 struct rt_rq *rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008082 struct sched_rt_entity *rt_se, *parent_se;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008083 struct rq *rq;
8084 int i;
8085
Mike Travis434d53b2008-04-04 18:11:04 -07008086 tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008087 if (!tg->rt_rq)
8088 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008089 tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008090 if (!tg->rt_se)
8091 goto err;
8092
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008093 init_rt_bandwidth(&tg->rt_bandwidth,
8094 ktime_to_ns(def_rt_bandwidth.rt_period), 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008095
8096 for_each_possible_cpu(i) {
8097 rq = cpu_rq(i);
8098
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008099 rt_rq = kmalloc_node(sizeof(struct rt_rq),
8100 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
8101 if (!rt_rq)
8102 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008103
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008104 rt_se = kmalloc_node(sizeof(struct sched_rt_entity),
8105 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
8106 if (!rt_se)
8107 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008108
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008109 parent_se = parent ? parent->rt_se[i] : NULL;
8110 init_tg_rt_entry(tg, rt_rq, rt_se, i, 0, parent_se);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008111 }
8112
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008113 return 1;
8114
8115 err:
8116 return 0;
8117}
8118
8119static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8120{
8121 list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list,
8122 &cpu_rq(cpu)->leaf_rt_rq_list);
8123}
8124
8125static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8126{
8127 list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list);
8128}
8129#else
8130static inline void free_rt_sched_group(struct task_group *tg)
8131{
8132}
8133
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008134static inline
8135int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008136{
8137 return 1;
8138}
8139
8140static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8141{
8142}
8143
8144static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8145{
8146}
8147#endif
8148
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008149#ifdef CONFIG_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008150static void free_sched_group(struct task_group *tg)
8151{
8152 free_fair_sched_group(tg);
8153 free_rt_sched_group(tg);
8154 kfree(tg);
8155}
8156
8157/* allocate runqueue etc for a new task group */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008158struct task_group *sched_create_group(struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008159{
8160 struct task_group *tg;
8161 unsigned long flags;
8162 int i;
8163
8164 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
8165 if (!tg)
8166 return ERR_PTR(-ENOMEM);
8167
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008168 if (!alloc_fair_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008169 goto err;
8170
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008171 if (!alloc_rt_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008172 goto err;
8173
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008174 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008175 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008176 register_fair_sched_group(tg, i);
8177 register_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008178 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008179 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008180
8181 WARN_ON(!parent); /* root should already exist */
8182
8183 tg->parent = parent;
8184 list_add_rcu(&tg->siblings, &parent->children);
8185 INIT_LIST_HEAD(&tg->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008186 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008187
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008188 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008189
8190err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008191 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008192 return ERR_PTR(-ENOMEM);
8193}
8194
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008195/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008196static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008197{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008198 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008199 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008200}
8201
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008202/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008203void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008204{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008205 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008206 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008207
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008208 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008209 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008210 unregister_fair_sched_group(tg, i);
8211 unregister_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008212 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008213 list_del_rcu(&tg->list);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008214 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008215 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008216
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008217 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008218 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008219}
8220
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008221/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02008222 * The caller of this function should have put the task in its new group
8223 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
8224 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008225 */
8226void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008227{
8228 int on_rq, running;
8229 unsigned long flags;
8230 struct rq *rq;
8231
8232 rq = task_rq_lock(tsk, &flags);
8233
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008234 update_rq_clock(rq);
8235
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01008236 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008237 on_rq = tsk->se.on_rq;
8238
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008239 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008240 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008241 if (unlikely(running))
8242 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008243
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008244 set_task_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008245
Peter Zijlstra810b3812008-02-29 15:21:01 -05008246#ifdef CONFIG_FAIR_GROUP_SCHED
8247 if (tsk->sched_class->moved_group)
8248 tsk->sched_class->moved_group(tsk);
8249#endif
8250
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008251 if (unlikely(running))
8252 tsk->sched_class->set_curr_task(rq);
8253 if (on_rq)
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02008254 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008255
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008256 task_rq_unlock(rq, &flags);
8257}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008258#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008259
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008260#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnar6363ca52008-05-29 11:28:57 +02008261static void set_se_shares(struct sched_entity *se, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008262{
8263 struct cfs_rq *cfs_rq = se->cfs_rq;
Ingo Molnar6363ca52008-05-29 11:28:57 +02008264 struct rq *rq = cfs_rq->rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008265 int on_rq;
8266
Ingo Molnar6363ca52008-05-29 11:28:57 +02008267 spin_lock_irq(&rq->lock);
8268
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008269 on_rq = se->on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008270 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008271 dequeue_entity(cfs_rq, se, 0);
8272
8273 se->load.weight = shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02008274 se->load.inv_weight = 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008275
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008276 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008277 enqueue_entity(cfs_rq, se, 0);
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008278
Ingo Molnar6363ca52008-05-29 11:28:57 +02008279 spin_unlock_irq(&rq->lock);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008280}
8281
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008282static DEFINE_MUTEX(shares_mutex);
8283
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008284int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008285{
8286 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008287 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +01008288
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008289 /*
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008290 * We can't change the weight of the root cgroup.
8291 */
8292 if (!tg->se[0])
8293 return -EINVAL;
8294
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008295 if (shares < MIN_SHARES)
8296 shares = MIN_SHARES;
Miao Xiecb4ad1f2008-04-28 12:54:56 +08008297 else if (shares > MAX_SHARES)
8298 shares = MAX_SHARES;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008299
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008300 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008301 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008302 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008303
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008304 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008305 for_each_possible_cpu(i)
8306 unregister_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008307 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008308 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008309
8310 /* wait for any ongoing reference to this group to finish */
8311 synchronize_sched();
8312
8313 /*
8314 * Now we are free to modify the group's share on each cpu
8315 * w/o tripping rebalance_share or load_balance_fair.
8316 */
8317 tg->shares = shares;
Ingo Molnar6363ca52008-05-29 11:28:57 +02008318 for_each_possible_cpu(i)
Miao Xiecb4ad1f2008-04-28 12:54:56 +08008319 set_se_shares(tg->se[i], shares);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008320
8321 /*
8322 * Enable load balance activity on this group, by inserting it back on
8323 * each cpu's rq->leaf_cfs_rq_list.
8324 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008325 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008326 for_each_possible_cpu(i)
8327 register_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008328 list_add_rcu(&tg->siblings, &tg->parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008329 spin_unlock_irqrestore(&task_group_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008330done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008331 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008332 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008333}
8334
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008335unsigned long sched_group_shares(struct task_group *tg)
8336{
8337 return tg->shares;
8338}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008339#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008340
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008341#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008342/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008343 * Ensure that the real time constraints are schedulable.
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008344 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008345static DEFINE_MUTEX(rt_constraints_mutex);
8346
8347static unsigned long to_ratio(u64 period, u64 runtime)
8348{
8349 if (runtime == RUNTIME_INF)
8350 return 1ULL << 16;
8351
Roman Zippel6f6d6a12008-05-01 04:34:28 -07008352 return div64_u64(runtime << 16, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008353}
8354
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008355#ifdef CONFIG_CGROUP_SCHED
8356static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
8357{
8358 struct task_group *tgi, *parent = tg->parent;
8359 unsigned long total = 0;
8360
8361 if (!parent) {
8362 if (global_rt_period() < period)
8363 return 0;
8364
8365 return to_ratio(period, runtime) <
8366 to_ratio(global_rt_period(), global_rt_runtime());
8367 }
8368
8369 if (ktime_to_ns(parent->rt_bandwidth.rt_period) < period)
8370 return 0;
8371
8372 rcu_read_lock();
8373 list_for_each_entry_rcu(tgi, &parent->children, siblings) {
8374 if (tgi == tg)
8375 continue;
8376
8377 total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period),
8378 tgi->rt_bandwidth.rt_runtime);
8379 }
8380 rcu_read_unlock();
8381
8382 return total + to_ratio(period, runtime) <
8383 to_ratio(ktime_to_ns(parent->rt_bandwidth.rt_period),
8384 parent->rt_bandwidth.rt_runtime);
8385}
8386#elif defined CONFIG_USER_SCHED
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008387static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008388{
8389 struct task_group *tgi;
8390 unsigned long total = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008391 unsigned long global_ratio =
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008392 to_ratio(global_rt_period(), global_rt_runtime());
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008393
8394 rcu_read_lock();
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008395 list_for_each_entry_rcu(tgi, &task_groups, list) {
8396 if (tgi == tg)
8397 continue;
8398
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008399 total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period),
8400 tgi->rt_bandwidth.rt_runtime);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008401 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008402 rcu_read_unlock();
8403
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008404 return total + to_ratio(period, runtime) < global_ratio;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008405}
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008406#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008407
Dhaval Giani521f1a242008-02-28 15:21:56 +05308408/* Must be called with tasklist_lock held */
8409static inline int tg_has_rt_tasks(struct task_group *tg)
8410{
8411 struct task_struct *g, *p;
8412 do_each_thread(g, p) {
8413 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
8414 return 1;
8415 } while_each_thread(g, p);
8416 return 0;
8417}
8418
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008419static int tg_set_bandwidth(struct task_group *tg,
8420 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008421{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008422 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008423
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008424 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05308425 read_lock(&tasklist_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008426 if (rt_runtime == 0 && tg_has_rt_tasks(tg)) {
Dhaval Giani521f1a242008-02-28 15:21:56 +05308427 err = -EBUSY;
8428 goto unlock;
8429 }
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008430 if (!__rt_schedulable(tg, rt_period, rt_runtime)) {
8431 err = -EINVAL;
8432 goto unlock;
8433 }
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008434
8435 spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008436 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
8437 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008438
8439 for_each_possible_cpu(i) {
8440 struct rt_rq *rt_rq = tg->rt_rq[i];
8441
8442 spin_lock(&rt_rq->rt_runtime_lock);
8443 rt_rq->rt_runtime = rt_runtime;
8444 spin_unlock(&rt_rq->rt_runtime_lock);
8445 }
8446 spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008447 unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05308448 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008449 mutex_unlock(&rt_constraints_mutex);
8450
8451 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008452}
8453
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008454int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
8455{
8456 u64 rt_runtime, rt_period;
8457
8458 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8459 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
8460 if (rt_runtime_us < 0)
8461 rt_runtime = RUNTIME_INF;
8462
8463 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8464}
8465
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008466long sched_group_rt_runtime(struct task_group *tg)
8467{
8468 u64 rt_runtime_us;
8469
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008470 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008471 return -1;
8472
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008473 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008474 do_div(rt_runtime_us, NSEC_PER_USEC);
8475 return rt_runtime_us;
8476}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008477
8478int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
8479{
8480 u64 rt_runtime, rt_period;
8481
8482 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
8483 rt_runtime = tg->rt_bandwidth.rt_runtime;
8484
8485 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8486}
8487
8488long sched_group_rt_period(struct task_group *tg)
8489{
8490 u64 rt_period_us;
8491
8492 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
8493 do_div(rt_period_us, NSEC_PER_USEC);
8494 return rt_period_us;
8495}
8496
8497static int sched_rt_global_constraints(void)
8498{
8499 int ret = 0;
8500
8501 mutex_lock(&rt_constraints_mutex);
8502 if (!__rt_schedulable(NULL, 1, 0))
8503 ret = -EINVAL;
8504 mutex_unlock(&rt_constraints_mutex);
8505
8506 return ret;
8507}
8508#else
8509static int sched_rt_global_constraints(void)
8510{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008511 unsigned long flags;
8512 int i;
8513
8514 spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
8515 for_each_possible_cpu(i) {
8516 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
8517
8518 spin_lock(&rt_rq->rt_runtime_lock);
8519 rt_rq->rt_runtime = global_rt_runtime();
8520 spin_unlock(&rt_rq->rt_runtime_lock);
8521 }
8522 spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
8523
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008524 return 0;
8525}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008526#endif
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008527
8528int sched_rt_handler(struct ctl_table *table, int write,
8529 struct file *filp, void __user *buffer, size_t *lenp,
8530 loff_t *ppos)
8531{
8532 int ret;
8533 int old_period, old_runtime;
8534 static DEFINE_MUTEX(mutex);
8535
8536 mutex_lock(&mutex);
8537 old_period = sysctl_sched_rt_period;
8538 old_runtime = sysctl_sched_rt_runtime;
8539
8540 ret = proc_dointvec(table, write, filp, buffer, lenp, ppos);
8541
8542 if (!ret && write) {
8543 ret = sched_rt_global_constraints();
8544 if (ret) {
8545 sysctl_sched_rt_period = old_period;
8546 sysctl_sched_rt_runtime = old_runtime;
8547 } else {
8548 def_rt_bandwidth.rt_runtime = global_rt_runtime();
8549 def_rt_bandwidth.rt_period =
8550 ns_to_ktime(global_rt_period());
8551 }
8552 }
8553 mutex_unlock(&mutex);
8554
8555 return ret;
8556}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008557
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008558#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008559
8560/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008561static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008562{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008563 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
8564 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008565}
8566
8567static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02008568cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008569{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008570 struct task_group *tg, *parent;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008571
Paul Menage2b01dfe2007-10-24 18:23:50 +02008572 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008573 /* This is early initialization for the top cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008574 init_task_group.css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008575 return &init_task_group.css;
8576 }
8577
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008578 parent = cgroup_tg(cgrp->parent);
8579 tg = sched_create_group(parent);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008580 if (IS_ERR(tg))
8581 return ERR_PTR(-ENOMEM);
8582
8583 /* Bind the cgroup to task_group object we just created */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008584 tg->css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008585
8586 return &tg->css;
8587}
8588
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008589static void
8590cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008591{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008592 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008593
8594 sched_destroy_group(tg);
8595}
8596
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008597static int
8598cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
8599 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008600{
Peter Zijlstrab68aa232008-02-13 15:45:40 +01008601#ifdef CONFIG_RT_GROUP_SCHED
8602 /* Don't accept realtime tasks when there is no way for them to run */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008603 if (rt_task(tsk) && cgroup_tg(cgrp)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01008604 return -EINVAL;
8605#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008606 /* We don't support RT-tasks being in separate groups */
8607 if (tsk->sched_class != &fair_sched_class)
8608 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01008609#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008610
8611 return 0;
8612}
8613
8614static void
Paul Menage2b01dfe2007-10-24 18:23:50 +02008615cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008616 struct cgroup *old_cont, struct task_struct *tsk)
8617{
8618 sched_move_task(tsk);
8619}
8620
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008621#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagef4c753b2008-04-29 00:59:56 -07008622static int cpu_shares_write_u64(struct cgroup *cgrp, struct cftype *cftype,
Paul Menage2b01dfe2007-10-24 18:23:50 +02008623 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008624{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008625 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008626}
8627
Paul Menagef4c753b2008-04-29 00:59:56 -07008628static u64 cpu_shares_read_u64(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008629{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008630 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008631
8632 return (u64) tg->shares;
8633}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008634#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008635
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008636#ifdef CONFIG_RT_GROUP_SCHED
Mirco Tischler0c708142008-05-14 16:05:46 -07008637static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
Paul Menage06ecb272008-04-29 01:00:06 -07008638 s64 val)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008639{
Paul Menage06ecb272008-04-29 01:00:06 -07008640 return sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008641}
8642
Paul Menage06ecb272008-04-29 01:00:06 -07008643static s64 cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008644{
Paul Menage06ecb272008-04-29 01:00:06 -07008645 return sched_group_rt_runtime(cgroup_tg(cgrp));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008646}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008647
8648static int cpu_rt_period_write_uint(struct cgroup *cgrp, struct cftype *cftype,
8649 u64 rt_period_us)
8650{
8651 return sched_group_set_rt_period(cgroup_tg(cgrp), rt_period_us);
8652}
8653
8654static u64 cpu_rt_period_read_uint(struct cgroup *cgrp, struct cftype *cft)
8655{
8656 return sched_group_rt_period(cgroup_tg(cgrp));
8657}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008658#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008659
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008660static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008661#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008662 {
8663 .name = "shares",
Paul Menagef4c753b2008-04-29 00:59:56 -07008664 .read_u64 = cpu_shares_read_u64,
8665 .write_u64 = cpu_shares_write_u64,
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008666 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008667#endif
8668#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008669 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008670 .name = "rt_runtime_us",
Paul Menage06ecb272008-04-29 01:00:06 -07008671 .read_s64 = cpu_rt_runtime_read,
8672 .write_s64 = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008673 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008674 {
8675 .name = "rt_period_us",
Paul Menagef4c753b2008-04-29 00:59:56 -07008676 .read_u64 = cpu_rt_period_read_uint,
8677 .write_u64 = cpu_rt_period_write_uint,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008678 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008679#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008680};
8681
8682static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
8683{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008684 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008685}
8686
8687struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01008688 .name = "cpu",
8689 .create = cpu_cgroup_create,
8690 .destroy = cpu_cgroup_destroy,
8691 .can_attach = cpu_cgroup_can_attach,
8692 .attach = cpu_cgroup_attach,
8693 .populate = cpu_cgroup_populate,
8694 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008695 .early_init = 1,
8696};
8697
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008698#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008699
8700#ifdef CONFIG_CGROUP_CPUACCT
8701
8702/*
8703 * CPU accounting code for task groups.
8704 *
8705 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
8706 * (balbir@in.ibm.com).
8707 */
8708
8709/* track cpu usage of a group of tasks */
8710struct cpuacct {
8711 struct cgroup_subsys_state css;
8712 /* cpuusage holds pointer to a u64-type object on every cpu */
8713 u64 *cpuusage;
8714};
8715
8716struct cgroup_subsys cpuacct_subsys;
8717
8718/* return cpu accounting group corresponding to this container */
Dhaval Giani32cd7562008-02-29 10:02:43 +05308719static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008720{
Dhaval Giani32cd7562008-02-29 10:02:43 +05308721 return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id),
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008722 struct cpuacct, css);
8723}
8724
8725/* return cpu accounting group to which this task belongs */
8726static inline struct cpuacct *task_ca(struct task_struct *tsk)
8727{
8728 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
8729 struct cpuacct, css);
8730}
8731
8732/* create a new cpu accounting group */
8733static struct cgroup_subsys_state *cpuacct_create(
Dhaval Giani32cd7562008-02-29 10:02:43 +05308734 struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008735{
8736 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
8737
8738 if (!ca)
8739 return ERR_PTR(-ENOMEM);
8740
8741 ca->cpuusage = alloc_percpu(u64);
8742 if (!ca->cpuusage) {
8743 kfree(ca);
8744 return ERR_PTR(-ENOMEM);
8745 }
8746
8747 return &ca->css;
8748}
8749
8750/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008751static void
Dhaval Giani32cd7562008-02-29 10:02:43 +05308752cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008753{
Dhaval Giani32cd7562008-02-29 10:02:43 +05308754 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008755
8756 free_percpu(ca->cpuusage);
8757 kfree(ca);
8758}
8759
8760/* return total cpu usage (in nanoseconds) of a group */
Dhaval Giani32cd7562008-02-29 10:02:43 +05308761static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008762{
Dhaval Giani32cd7562008-02-29 10:02:43 +05308763 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008764 u64 totalcpuusage = 0;
8765 int i;
8766
8767 for_each_possible_cpu(i) {
8768 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
8769
8770 /*
8771 * Take rq->lock to make 64-bit addition safe on 32-bit
8772 * platforms.
8773 */
8774 spin_lock_irq(&cpu_rq(i)->lock);
8775 totalcpuusage += *cpuusage;
8776 spin_unlock_irq(&cpu_rq(i)->lock);
8777 }
8778
8779 return totalcpuusage;
8780}
8781
Dhaval Giani0297b802008-02-29 10:02:44 +05308782static int cpuusage_write(struct cgroup *cgrp, struct cftype *cftype,
8783 u64 reset)
8784{
8785 struct cpuacct *ca = cgroup_ca(cgrp);
8786 int err = 0;
8787 int i;
8788
8789 if (reset) {
8790 err = -EINVAL;
8791 goto out;
8792 }
8793
8794 for_each_possible_cpu(i) {
8795 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
8796
8797 spin_lock_irq(&cpu_rq(i)->lock);
8798 *cpuusage = 0;
8799 spin_unlock_irq(&cpu_rq(i)->lock);
8800 }
8801out:
8802 return err;
8803}
8804
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008805static struct cftype files[] = {
8806 {
8807 .name = "usage",
Paul Menagef4c753b2008-04-29 00:59:56 -07008808 .read_u64 = cpuusage_read,
8809 .write_u64 = cpuusage_write,
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008810 },
8811};
8812
Dhaval Giani32cd7562008-02-29 10:02:43 +05308813static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008814{
Dhaval Giani32cd7562008-02-29 10:02:43 +05308815 return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files));
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008816}
8817
8818/*
8819 * charge this task's execution time to its accounting group.
8820 *
8821 * called with rq->lock held.
8822 */
8823static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
8824{
8825 struct cpuacct *ca;
8826
8827 if (!cpuacct_subsys.active)
8828 return;
8829
8830 ca = task_ca(tsk);
8831 if (ca) {
8832 u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk));
8833
8834 *cpuusage += cputime;
8835 }
8836}
8837
8838struct cgroup_subsys cpuacct_subsys = {
8839 .name = "cpuacct",
8840 .create = cpuacct_create,
8841 .destroy = cpuacct_destroy,
8842 .populate = cpuacct_populate,
8843 .subsys_id = cpuacct_subsys_id,
8844};
8845#endif /* CONFIG_CGROUP_CPUACCT */