blob: fde1a10263597e4f73792b97b4fe0edaa6880f6d [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>
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +020073#include <linux/ftrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Eric Dumazet5517d862007-05-08 00:32:57 -070075#include <asm/tlb.h>
Satyam Sharma838225b2007-10-24 18:23:50 +020076#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Gregory Haskins6e0534f2008-05-12 21:21:01 +020078#include "sched_cpupri.h"
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080/*
81 * Convert user-nice values [ -20 ... 0 ... 19 ]
82 * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ],
83 * and back.
84 */
85#define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20)
86#define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20)
87#define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio)
88
89/*
90 * 'User priority' is the nice value converted to something we
91 * can work with better when scaling various scheduler parameters,
92 * it's a [ 0 ... 39 ] range.
93 */
94#define USER_PRIO(p) ((p)-MAX_RT_PRIO)
95#define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio)
96#define MAX_USER_PRIO (USER_PRIO(MAX_PRIO))
97
98/*
Ingo Molnard7876a02008-01-25 21:08:19 +010099 * Helpers for converting nanosecond timing to jiffy resolution
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 */
Eric Dumazetd6322fa2007-11-09 22:39:38 +0100101#define NS_TO_JIFFIES(TIME) ((unsigned long)(TIME) / (NSEC_PER_SEC / HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200103#define NICE_0_LOAD SCHED_LOAD_SCALE
104#define NICE_0_SHIFT SCHED_LOAD_SHIFT
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106/*
107 * These are the 'tuning knobs' of the scheduler:
108 *
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +0200109 * default timeslice is 100 msecs (used only for SCHED_RR tasks).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 * Timeslices get refilled after they expire.
111 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#define DEF_TIMESLICE (100 * HZ / 1000)
Peter Williams2dd73a42006-06-27 02:54:34 -0700113
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200114/*
115 * single value that denotes runtime == period, ie unlimited time.
116 */
117#define RUNTIME_INF ((u64)~0ULL)
118
Eric Dumazet5517d862007-05-08 00:32:57 -0700119#ifdef CONFIG_SMP
120/*
121 * Divide a load by a sched group cpu_power : (load / sg->__cpu_power)
122 * Since cpu_power is a 'constant', we can use a reciprocal divide.
123 */
124static inline u32 sg_div_cpu_power(const struct sched_group *sg, u32 load)
125{
126 return reciprocal_divide(load, sg->reciprocal_cpu_power);
127}
128
129/*
130 * Each time a sched group cpu_power is changed,
131 * we must compute its reciprocal value
132 */
133static inline void sg_inc_cpu_power(struct sched_group *sg, u32 val)
134{
135 sg->__cpu_power += val;
136 sg->reciprocal_cpu_power = reciprocal_value(sg->__cpu_power);
137}
138#endif
139
Ingo Molnare05606d2007-07-09 18:51:59 +0200140static inline int rt_policy(int policy)
141{
Roel Kluin3f33a7c2008-05-13 23:44:11 +0200142 if (unlikely(policy == SCHED_FIFO || policy == SCHED_RR))
Ingo Molnare05606d2007-07-09 18:51:59 +0200143 return 1;
144 return 0;
145}
146
147static inline int task_has_rt_policy(struct task_struct *p)
148{
149 return rt_policy(p->policy);
150}
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152/*
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200153 * This is the priority-queue data structure of the RT scheduling class:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200155struct rt_prio_array {
156 DECLARE_BITMAP(bitmap, MAX_RT_PRIO+1); /* include 1 bit for delimiter */
157 struct list_head queue[MAX_RT_PRIO];
158};
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;
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200295#endif /* CONFIG_FAIR_GROUP_SCHED */
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100296
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;
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200300#endif /* CONFIG_RT_GROUP_SCHED */
301#else /* !CONFIG_FAIR_GROUP_SCHED */
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200302#define root_task_group init_task_group
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200303#endif /* CONFIG_FAIR_GROUP_SCHED */
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)
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200313#else /* !CONFIG_USER_SCHED */
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100314# define INIT_TASK_GROUP_LOAD NICE_0_LOAD
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +0200315#endif /* CONFIG_USER_SCHED */
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200316
Miao Xiecb4ad1f2008-04-28 12:54:56 +0800317/*
Lai Jiangshan2e084782008-06-12 16:42:58 +0800318 * A weight of 0 or 1 can cause arithmetics problems.
319 * A weight of a cfs_rq is the sum of weights of which entities
320 * are queued on this cfs_rq, so a weight of a entity should not be
321 * too large, so as the shares value of a task group.
Miao Xiecb4ad1f2008-04-28 12:54:56 +0800322 * (The default weight is 1024 - so there's no practical
323 * limitation from this.)
324 */
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200325#define MIN_SHARES 2
Lai Jiangshan2e084782008-06-12 16:42:58 +0800326#define MAX_SHARES (1UL << 18)
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200327
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100328static int init_task_group_load = INIT_TASK_GROUP_LOAD;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100329#endif
330
331/* Default task group.
332 * Every task in system belong to this group at bootup.
333 */
Mike Travis434d53b2008-04-04 18:11:04 -0700334struct task_group init_task_group;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200335
336/* return group to which a task belongs */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200337static inline struct task_group *task_group(struct task_struct *p)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200338{
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200339 struct task_group *tg;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200340
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100341#ifdef CONFIG_USER_SCHED
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200342 tg = p->user->tg;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100343#elif defined(CONFIG_CGROUP_SCHED)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700344 tg = container_of(task_subsys_state(p, cpu_cgroup_subsys_id),
345 struct task_group, css);
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200346#else
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100347 tg = &init_task_group;
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200348#endif
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200349 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200350}
351
352/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100353static inline void set_task_rq(struct task_struct *p, unsigned int cpu)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200354{
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100355#ifdef CONFIG_FAIR_GROUP_SCHED
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +0100356 p->se.cfs_rq = task_group(p)->cfs_rq[cpu];
357 p->se.parent = task_group(p)->se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100358#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100359
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100360#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100361 p->rt.rt_rq = task_group(p)->rt_rq[cpu];
362 p->rt.parent = task_group(p)->rt_se[cpu];
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100363#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200364}
365
366#else
367
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100368static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { }
Peter Zijlstra83378262008-06-27 13:41:37 +0200369static inline struct task_group *task_group(struct task_struct *p)
370{
371 return NULL;
372}
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200373
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100374#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200375
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200376/* CFS-related fields in a runqueue */
377struct cfs_rq {
378 struct load_weight load;
379 unsigned long nr_running;
380
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200381 u64 exec_clock;
Ingo Molnare9acbff2007-10-15 17:00:04 +0200382 u64 min_vruntime;
Peter Zijlstra103638d92008-06-27 13:41:16 +0200383 u64 pair_start;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200384
385 struct rb_root tasks_timeline;
386 struct rb_node *rb_leftmost;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +0200387
388 struct list_head tasks;
389 struct list_head *balance_iterator;
390
391 /*
392 * 'curr' points to currently running entity on this cfs_rq.
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200393 * It is set to NULL otherwise (i.e when none are currently running).
394 */
Peter Zijlstraaa2ac252008-03-14 21:12:12 +0100395 struct sched_entity *curr, *next;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200396
397 unsigned long nr_spread_over;
398
Ingo Molnar62160e32007-10-15 17:00:03 +0200399#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200400 struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */
401
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100402 /*
403 * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200404 * a hierarchy). Non-leaf lrqs hold other higher schedulable entities
405 * (like users, containers etc.)
406 *
407 * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This
408 * list is used during load balance.
409 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100410 struct list_head leaf_cfs_rq_list;
411 struct task_group *tg; /* group that "owns" this runqueue */
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200412
413#ifdef CONFIG_SMP
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200414 /*
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200415 * the part of load.weight contributed by tasks
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200416 */
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200417 unsigned long task_weight;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200418
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200419 /*
420 * h_load = weight * f(tg)
421 *
422 * Where f(tg) is the recursive weight fraction assigned to
423 * this group.
424 */
425 unsigned long h_load;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200426
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200427 /*
428 * this cpu's part of tg->shares
429 */
430 unsigned long shares;
Peter Zijlstraf1d239f2008-06-27 13:41:38 +0200431
432 /*
433 * load.weight at the time we set shares
434 */
435 unsigned long rq_weight;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200436#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200437#endif
438};
439
440/* Real-Time classes' related field in a runqueue: */
441struct rt_rq {
442 struct rt_prio_array active;
Steven Rostedt63489e42008-01-25 21:08:03 +0100443 unsigned long rt_nr_running;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100444#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100445 int highest_prio; /* highest queued rt task prio */
446#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100447#ifdef CONFIG_SMP
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100448 unsigned long rt_nr_migratory;
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100449 int overloaded;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100450#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100451 int rt_throttled;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100452 u64 rt_time;
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200453 u64 rt_runtime;
Ingo Molnarea736ed2008-03-25 13:51:45 +0100454 /* Nests inside the rq lock: */
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200455 spinlock_t rt_runtime_lock;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100456
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100457#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100458 unsigned long rt_nr_boosted;
459
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100460 struct rq *rq;
461 struct list_head leaf_rt_rq_list;
462 struct task_group *tg;
463 struct sched_rt_entity *rt_se;
464#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200465};
466
Gregory Haskins57d885f2008-01-25 21:08:18 +0100467#ifdef CONFIG_SMP
468
469/*
470 * We add the notion of a root-domain which will be used to define per-domain
Ingo Molnar0eab9142008-01-25 21:08:19 +0100471 * variables. Each exclusive cpuset essentially defines an island domain by
472 * fully partitioning the member cpus from any other cpuset. Whenever a new
Gregory Haskins57d885f2008-01-25 21:08:18 +0100473 * exclusive cpuset is created, we also create and attach a new root-domain
474 * object.
475 *
Gregory Haskins57d885f2008-01-25 21:08:18 +0100476 */
477struct root_domain {
478 atomic_t refcount;
479 cpumask_t span;
480 cpumask_t online;
Gregory Haskins637f5082008-01-25 21:08:18 +0100481
Ingo Molnar0eab9142008-01-25 21:08:19 +0100482 /*
Gregory Haskins637f5082008-01-25 21:08:18 +0100483 * The "RT overload" flag: it gets set if a CPU has more than
484 * one runnable RT task.
485 */
486 cpumask_t rto_mask;
Ingo Molnar0eab9142008-01-25 21:08:19 +0100487 atomic_t rto_count;
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200488#ifdef CONFIG_SMP
489 struct cpupri cpupri;
490#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +0100491};
492
Gregory Haskinsdc938522008-01-25 21:08:26 +0100493/*
494 * By default the system creates a single root-domain with all cpus as
495 * members (mimicking the global state we have today).
496 */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100497static struct root_domain def_root_domain;
498
499#endif
500
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200501/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 * This is the main, per-CPU runqueue data structure.
503 *
504 * Locking rule: those places that want to lock multiple runqueues
505 * (such as the load balancing or the thread migration code), lock
506 * acquire operations must be ordered by ascending &runqueue.
507 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700508struct rq {
Ingo Molnard8016492007-10-18 21:32:55 +0200509 /* runqueue lock: */
510 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512 /*
513 * nr_running and cpu_load should be in the same cacheline because
514 * remote CPUs use both these fields when doing load calculation.
515 */
516 unsigned long nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200517 #define CPU_LOAD_IDX_MAX 5
518 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
Siddha, Suresh Bbdecea32007-05-08 00:32:48 -0700519 unsigned char idle_at_tick;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700520#ifdef CONFIG_NO_HZ
Guillaume Chazarain15934a32008-04-19 19:44:57 +0200521 unsigned long last_tick_seen;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700522 unsigned char in_nohz_recently;
523#endif
Ingo Molnard8016492007-10-18 21:32:55 +0200524 /* capture load from *all* tasks on this cpu: */
525 struct load_weight load;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200526 unsigned long nr_load_updates;
527 u64 nr_switches;
528
529 struct cfs_rq cfs;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100530 struct rt_rq rt;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100531
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200532#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnard8016492007-10-18 21:32:55 +0200533 /* list of leaf cfs_rq on this cpu: */
534 struct list_head leaf_cfs_rq_list;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100535#endif
536#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100537 struct list_head leaf_rt_rq_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 /*
541 * This is part of a global counter where only the total sum
542 * over all CPUs matters. A task can increase this counter on
543 * one CPU and if it got migrated afterwards it may decrease
544 * it on another CPU. Always updated under the runqueue lock:
545 */
546 unsigned long nr_uninterruptible;
547
Ingo Molnar36c8b582006-07-03 00:25:41 -0700548 struct task_struct *curr, *idle;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800549 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 struct mm_struct *prev_mm;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200551
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200552 u64 clock;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 atomic_t nr_iowait;
555
556#ifdef CONFIG_SMP
Ingo Molnar0eab9142008-01-25 21:08:19 +0100557 struct root_domain *rd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 struct sched_domain *sd;
559
560 /* For active balancing */
561 int active_balance;
562 int push_cpu;
Ingo Molnard8016492007-10-18 21:32:55 +0200563 /* cpu of this runqueue: */
564 int cpu;
Gregory Haskins1f11eb62008-06-04 15:04:05 -0400565 int online;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Peter Zijlstraa8a51d52008-06-27 13:41:26 +0200567 unsigned long avg_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Ingo Molnar36c8b582006-07-03 00:25:41 -0700569 struct task_struct *migration_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 struct list_head migration_queue;
571#endif
572
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100573#ifdef CONFIG_SCHED_HRTICK
Peter Zijlstra31656512008-07-18 18:01:23 +0200574#ifdef CONFIG_SMP
575 int hrtick_csd_pending;
576 struct call_single_data hrtick_csd;
577#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100578 struct hrtimer hrtick_timer;
579#endif
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581#ifdef CONFIG_SCHEDSTATS
582 /* latency stats */
583 struct sched_info rq_sched_info;
584
585 /* sys_sched_yield() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200586 unsigned int yld_exp_empty;
587 unsigned int yld_act_empty;
588 unsigned int yld_both_empty;
589 unsigned int yld_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
591 /* schedule() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200592 unsigned int sched_switch;
593 unsigned int sched_count;
594 unsigned int sched_goidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596 /* try_to_wake_up() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200597 unsigned int ttwu_count;
598 unsigned int ttwu_local;
Ingo Molnarb8efb562007-10-15 17:00:10 +0200599
600 /* BKL stats */
Ken Chen480b9432007-10-18 21:32:56 +0200601 unsigned int bkl_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602#endif
Ingo Molnarfcb99372006-07-03 00:25:10 -0700603 struct lock_class_key rq_lock_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604};
605
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700606static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Ingo Molnardd41f592007-07-09 18:51:59 +0200608static inline void check_preempt_curr(struct rq *rq, struct task_struct *p)
609{
610 rq->curr->sched_class->check_preempt_curr(rq, p);
611}
612
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700613static inline int cpu_of(struct rq *rq)
614{
615#ifdef CONFIG_SMP
616 return rq->cpu;
617#else
618 return 0;
619#endif
620}
621
Ingo Molnar20d315d2007-07-09 18:51:58 +0200622/*
Nick Piggin674311d2005-06-25 14:57:27 -0700623 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700624 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700625 *
626 * The domain tree of any CPU may only be accessed from within
627 * preempt-disabled sections.
628 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700629#define for_each_domain(cpu, __sd) \
630 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
632#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
633#define this_rq() (&__get_cpu_var(runqueues))
634#define task_rq(p) cpu_rq(task_cpu(p))
635#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
636
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200637static inline void update_rq_clock(struct rq *rq)
638{
639 rq->clock = sched_clock_cpu(cpu_of(rq));
640}
641
Ingo Molnare436d802007-07-19 21:28:35 +0200642/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200643 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
644 */
645#ifdef CONFIG_SCHED_DEBUG
646# define const_debug __read_mostly
647#else
648# define const_debug static const
649#endif
650
Ingo Molnar017730c2008-05-12 21:20:52 +0200651/**
652 * runqueue_is_locked
653 *
654 * Returns true if the current cpu runqueue is locked.
655 * This interface allows printk to be called with the runqueue lock
656 * held and know whether or not it is OK to wake up the klogd.
657 */
658int runqueue_is_locked(void)
659{
660 int cpu = get_cpu();
661 struct rq *rq = cpu_rq(cpu);
662 int ret;
663
664 ret = spin_is_locked(&rq->lock);
665 put_cpu();
666 return ret;
667}
668
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200669/*
670 * Debugging: various feature bits
671 */
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200672
673#define SCHED_FEAT(name, enabled) \
674 __SCHED_FEAT_##name ,
675
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200676enum {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200677#include "sched_features.h"
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200678};
679
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200680#undef SCHED_FEAT
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200681
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200682#define SCHED_FEAT(name, enabled) \
683 (1UL << __SCHED_FEAT_##name) * enabled |
684
685const_debug unsigned int sysctl_sched_features =
686#include "sched_features.h"
687 0;
688
689#undef SCHED_FEAT
690
691#ifdef CONFIG_SCHED_DEBUG
692#define SCHED_FEAT(name, enabled) \
693 #name ,
694
Harvey Harrison983ed7a2008-04-24 18:17:55 -0700695static __read_mostly char *sched_feat_names[] = {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200696#include "sched_features.h"
697 NULL
698};
699
700#undef SCHED_FEAT
701
Harvey Harrison983ed7a2008-04-24 18:17:55 -0700702static int sched_feat_open(struct inode *inode, struct file *filp)
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200703{
704 filp->private_data = inode->i_private;
705 return 0;
706}
707
708static ssize_t
709sched_feat_read(struct file *filp, char __user *ubuf,
710 size_t cnt, loff_t *ppos)
711{
712 char *buf;
713 int r = 0;
714 int len = 0;
715 int i;
716
717 for (i = 0; sched_feat_names[i]; i++) {
718 len += strlen(sched_feat_names[i]);
719 len += 4;
720 }
721
722 buf = kmalloc(len + 2, GFP_KERNEL);
723 if (!buf)
724 return -ENOMEM;
725
726 for (i = 0; sched_feat_names[i]; i++) {
727 if (sysctl_sched_features & (1UL << i))
728 r += sprintf(buf + r, "%s ", sched_feat_names[i]);
729 else
Ingo Molnarc24b7c52008-04-18 10:55:34 +0200730 r += sprintf(buf + r, "NO_%s ", sched_feat_names[i]);
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200731 }
732
733 r += sprintf(buf + r, "\n");
734 WARN_ON(r >= len + 2);
735
736 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
737
738 kfree(buf);
739
740 return r;
741}
742
743static ssize_t
744sched_feat_write(struct file *filp, const char __user *ubuf,
745 size_t cnt, loff_t *ppos)
746{
747 char buf[64];
748 char *cmp = buf;
749 int neg = 0;
750 int i;
751
752 if (cnt > 63)
753 cnt = 63;
754
755 if (copy_from_user(&buf, ubuf, cnt))
756 return -EFAULT;
757
758 buf[cnt] = 0;
759
Ingo Molnarc24b7c52008-04-18 10:55:34 +0200760 if (strncmp(buf, "NO_", 3) == 0) {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200761 neg = 1;
762 cmp += 3;
763 }
764
765 for (i = 0; sched_feat_names[i]; i++) {
766 int len = strlen(sched_feat_names[i]);
767
768 if (strncmp(cmp, sched_feat_names[i], len) == 0) {
769 if (neg)
770 sysctl_sched_features &= ~(1UL << i);
771 else
772 sysctl_sched_features |= (1UL << i);
773 break;
774 }
775 }
776
777 if (!sched_feat_names[i])
778 return -EINVAL;
779
780 filp->f_pos += cnt;
781
782 return cnt;
783}
784
785static struct file_operations sched_feat_fops = {
786 .open = sched_feat_open,
787 .read = sched_feat_read,
788 .write = sched_feat_write,
789};
790
791static __init int sched_init_debug(void)
792{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200793 debugfs_create_file("sched_features", 0644, NULL, NULL,
794 &sched_feat_fops);
795
796 return 0;
797}
798late_initcall(sched_init_debug);
799
800#endif
801
802#define sched_feat(x) (sysctl_sched_features & (1UL << __SCHED_FEAT_##x))
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200803
804/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100805 * Number of tasks to iterate in a single balance run.
806 * Limited because this is done with IRQs disabled.
807 */
808const_debug unsigned int sysctl_sched_nr_migrate = 32;
809
810/*
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200811 * ratelimit for updating the group shares.
812 * default: 0.5ms
813 */
814const_debug unsigned int sysctl_sched_shares_ratelimit = 500000;
815
816/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100817 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100818 * default: 1s
819 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100820unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100821
Ingo Molnar6892b752008-02-13 14:02:36 +0100822static __read_mostly int scheduler_running;
823
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100824/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100825 * part of the period that we allow rt tasks to run in us.
826 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100827 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100828int sysctl_sched_rt_runtime = 950000;
829
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200830static inline u64 global_rt_period(void)
831{
832 return (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
833}
834
835static inline u64 global_rt_runtime(void)
836{
837 if (sysctl_sched_rt_period < 0)
838 return RUNTIME_INF;
839
840 return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC;
841}
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700844# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700846#ifndef finish_arch_switch
847# define finish_arch_switch(prev) do { } while (0)
848#endif
849
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100850static inline int task_current(struct rq *rq, struct task_struct *p)
851{
852 return rq->curr == p;
853}
854
Nick Piggin4866cde2005-06-25 14:57:23 -0700855#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700856static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700857{
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100858 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700859}
860
Ingo Molnar70b97a72006-07-03 00:25:42 -0700861static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700862{
863}
864
Ingo Molnar70b97a72006-07-03 00:25:42 -0700865static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700866{
Ingo Molnarda04c032005-09-13 11:17:59 +0200867#ifdef CONFIG_DEBUG_SPINLOCK
868 /* this is a valid case when another task releases the spinlock */
869 rq->lock.owner = current;
870#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700871 /*
872 * If we are tracking spinlock dependencies then we have to
873 * fix up the runqueue lock - which gets 'carried over' from
874 * prev into current:
875 */
876 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
877
Nick Piggin4866cde2005-06-25 14:57:23 -0700878 spin_unlock_irq(&rq->lock);
879}
880
881#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700882static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700883{
884#ifdef CONFIG_SMP
885 return p->oncpu;
886#else
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100887 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700888#endif
889}
890
Ingo Molnar70b97a72006-07-03 00:25:42 -0700891static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700892{
893#ifdef CONFIG_SMP
894 /*
895 * We can optimise this out completely for !SMP, because the
896 * SMP rebalancing from interrupt is the only thing that cares
897 * here.
898 */
899 next->oncpu = 1;
900#endif
901#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
902 spin_unlock_irq(&rq->lock);
903#else
904 spin_unlock(&rq->lock);
905#endif
906}
907
Ingo Molnar70b97a72006-07-03 00:25:42 -0700908static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700909{
910#ifdef CONFIG_SMP
911 /*
912 * After ->oncpu is cleared, the task can be moved to a different CPU.
913 * We must ensure this doesn't happen until the switch is completely
914 * finished.
915 */
916 smp_wmb();
917 prev->oncpu = 0;
918#endif
919#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
920 local_irq_enable();
921#endif
922}
923#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
925/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700926 * __task_rq_lock - lock the runqueue a given task resides on.
927 * Must be called interrupts disabled.
928 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700929static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700930 __acquires(rq->lock)
931{
Andi Kleen3a5c3592007-10-15 17:00:14 +0200932 for (;;) {
933 struct rq *rq = task_rq(p);
934 spin_lock(&rq->lock);
935 if (likely(rq == task_rq(p)))
936 return rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -0700937 spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700938 }
Ingo Molnarb29739f2006-06-27 02:54:51 -0700939}
940
941/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 * task_rq_lock - lock the runqueue a given task resides on and disable
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100943 * interrupts. Note the ordering: we can safely lookup the task_rq without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 * explicitly disabling preemption.
945 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700946static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 __acquires(rq->lock)
948{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700949 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Andi Kleen3a5c3592007-10-15 17:00:14 +0200951 for (;;) {
952 local_irq_save(*flags);
953 rq = task_rq(p);
954 spin_lock(&rq->lock);
955 if (likely(rq == task_rq(p)))
956 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 spin_unlock_irqrestore(&rq->lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959}
960
Alexey Dobriyana9957442007-10-15 17:00:13 +0200961static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700962 __releases(rq->lock)
963{
964 spin_unlock(&rq->lock);
965}
966
Ingo Molnar70b97a72006-07-03 00:25:42 -0700967static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 __releases(rq->lock)
969{
970 spin_unlock_irqrestore(&rq->lock, *flags);
971}
972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -0800974 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 */
Alexey Dobriyana9957442007-10-15 17:00:13 +0200976static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 __acquires(rq->lock)
978{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700979 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
981 local_irq_disable();
982 rq = this_rq();
983 spin_lock(&rq->lock);
984
985 return rq;
986}
987
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100988#ifdef CONFIG_SCHED_HRTICK
989/*
990 * Use HR-timers to deliver accurate preemption points.
991 *
992 * Its all a bit involved since we cannot program an hrt while holding the
993 * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a
994 * reschedule event.
995 *
996 * When we get rescheduled we reprogram the hrtick_timer outside of the
997 * rq->lock.
998 */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100999
1000/*
1001 * Use hrtick when:
1002 * - enabled by features
1003 * - hrtimer is actually high res
1004 */
1005static inline int hrtick_enabled(struct rq *rq)
1006{
1007 if (!sched_feat(HRTICK))
1008 return 0;
Ingo Molnarba420592008-07-20 11:02:06 +02001009 if (!cpu_active(cpu_of(rq)))
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001010 return 0;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001011 return hrtimer_is_hres_active(&rq->hrtick_timer);
1012}
1013
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001014static void hrtick_clear(struct rq *rq)
1015{
1016 if (hrtimer_active(&rq->hrtick_timer))
1017 hrtimer_cancel(&rq->hrtick_timer);
1018}
1019
1020/*
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001021 * High-resolution timer tick.
1022 * Runs from hardirq context with interrupts disabled.
1023 */
1024static enum hrtimer_restart hrtick(struct hrtimer *timer)
1025{
1026 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
1027
1028 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1029
1030 spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02001031 update_rq_clock(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001032 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
1033 spin_unlock(&rq->lock);
1034
1035 return HRTIMER_NORESTART;
1036}
1037
Rabin Vincent95e904c2008-05-11 05:55:33 +05301038#ifdef CONFIG_SMP
Peter Zijlstra31656512008-07-18 18:01:23 +02001039/*
1040 * called from hardirq (IPI) context
1041 */
1042static void __hrtick_start(void *arg)
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001043{
Peter Zijlstra31656512008-07-18 18:01:23 +02001044 struct rq *rq = arg;
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001045
Peter Zijlstra31656512008-07-18 18:01:23 +02001046 spin_lock(&rq->lock);
1047 hrtimer_restart(&rq->hrtick_timer);
1048 rq->hrtick_csd_pending = 0;
1049 spin_unlock(&rq->lock);
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001050}
1051
Peter Zijlstra31656512008-07-18 18:01:23 +02001052/*
1053 * Called to set the hrtick timer state.
1054 *
1055 * called with rq->lock held and irqs disabled
1056 */
1057static void hrtick_start(struct rq *rq, u64 delay)
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001058{
Peter Zijlstra31656512008-07-18 18:01:23 +02001059 struct hrtimer *timer = &rq->hrtick_timer;
1060 ktime_t time = ktime_add_ns(timer->base->get_time(), delay);
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001061
Peter Zijlstra31656512008-07-18 18:01:23 +02001062 timer->expires = time;
1063
1064 if (rq == this_rq()) {
1065 hrtimer_restart(timer);
1066 } else if (!rq->hrtick_csd_pending) {
1067 __smp_call_function_single(cpu_of(rq), &rq->hrtick_csd);
1068 rq->hrtick_csd_pending = 1;
1069 }
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001070}
1071
1072static int
1073hotplug_hrtick(struct notifier_block *nfb, unsigned long action, void *hcpu)
1074{
1075 int cpu = (int)(long)hcpu;
1076
1077 switch (action) {
1078 case CPU_UP_CANCELED:
1079 case CPU_UP_CANCELED_FROZEN:
1080 case CPU_DOWN_PREPARE:
1081 case CPU_DOWN_PREPARE_FROZEN:
1082 case CPU_DEAD:
1083 case CPU_DEAD_FROZEN:
Peter Zijlstra31656512008-07-18 18:01:23 +02001084 hrtick_clear(cpu_rq(cpu));
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001085 return NOTIFY_OK;
1086 }
1087
1088 return NOTIFY_DONE;
1089}
1090
1091static void init_hrtick(void)
1092{
1093 hotcpu_notifier(hotplug_hrtick, 0);
1094}
Peter Zijlstra31656512008-07-18 18:01:23 +02001095#else
1096/*
1097 * Called to set the hrtick timer state.
1098 *
1099 * called with rq->lock held and irqs disabled
1100 */
1101static void hrtick_start(struct rq *rq, u64 delay)
1102{
1103 hrtimer_start(&rq->hrtick_timer, ns_to_ktime(delay), HRTIMER_MODE_REL);
1104}
1105
1106static void init_hrtick(void)
1107{
1108}
Rabin Vincent95e904c2008-05-11 05:55:33 +05301109#endif /* CONFIG_SMP */
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001110
1111static void init_rq_hrtick(struct rq *rq)
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001112{
Peter Zijlstra31656512008-07-18 18:01:23 +02001113#ifdef CONFIG_SMP
1114 rq->hrtick_csd_pending = 0;
1115
1116 rq->hrtick_csd.flags = 0;
1117 rq->hrtick_csd.func = __hrtick_start;
1118 rq->hrtick_csd.info = rq;
1119#endif
1120
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001121 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1122 rq->hrtick_timer.function = hrtick;
1123 rq->hrtick_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ;
1124}
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001125#else
1126static inline void hrtick_clear(struct rq *rq)
1127{
1128}
1129
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001130static inline void init_rq_hrtick(struct rq *rq)
1131{
1132}
1133
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001134static inline void init_hrtick(void)
1135{
1136}
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001137#endif
1138
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001139/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001140 * resched_task - mark a task 'to be rescheduled now'.
1141 *
1142 * On UP this means the setting of the need_resched flag, on SMP it
1143 * might also involve a cross-CPU call to trigger the scheduler on
1144 * the target CPU.
1145 */
1146#ifdef CONFIG_SMP
1147
1148#ifndef tsk_is_polling
1149#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1150#endif
1151
Peter Zijlstra31656512008-07-18 18:01:23 +02001152static void resched_task(struct task_struct *p)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001153{
1154 int cpu;
1155
1156 assert_spin_locked(&task_rq(p)->lock);
1157
Peter Zijlstra31656512008-07-18 18:01:23 +02001158 if (unlikely(test_tsk_thread_flag(p, TIF_NEED_RESCHED)))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001159 return;
1160
Peter Zijlstra31656512008-07-18 18:01:23 +02001161 set_tsk_thread_flag(p, TIF_NEED_RESCHED);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001162
1163 cpu = task_cpu(p);
1164 if (cpu == smp_processor_id())
1165 return;
1166
1167 /* NEED_RESCHED must be visible before we test polling */
1168 smp_mb();
1169 if (!tsk_is_polling(p))
1170 smp_send_reschedule(cpu);
1171}
1172
1173static void resched_cpu(int cpu)
1174{
1175 struct rq *rq = cpu_rq(cpu);
1176 unsigned long flags;
1177
1178 if (!spin_trylock_irqsave(&rq->lock, flags))
1179 return;
1180 resched_task(cpu_curr(cpu));
1181 spin_unlock_irqrestore(&rq->lock, flags);
1182}
Thomas Gleixner06d83082008-03-22 09:20:24 +01001183
1184#ifdef CONFIG_NO_HZ
1185/*
1186 * When add_timer_on() enqueues a timer into the timer wheel of an
1187 * idle CPU then this timer might expire before the next timer event
1188 * which is scheduled to wake up that CPU. In case of a completely
1189 * idle system the next event might even be infinite time into the
1190 * future. wake_up_idle_cpu() ensures that the CPU is woken up and
1191 * leaves the inner idle loop so the newly added timer is taken into
1192 * account when the CPU goes back to idle and evaluates the timer
1193 * wheel for the next timer event.
1194 */
1195void wake_up_idle_cpu(int cpu)
1196{
1197 struct rq *rq = cpu_rq(cpu);
1198
1199 if (cpu == smp_processor_id())
1200 return;
1201
1202 /*
1203 * This is safe, as this function is called with the timer
1204 * wheel base lock of (cpu) held. When the CPU is on the way
1205 * to idle and has not yet set rq->curr to idle then it will
1206 * be serialized on the timer wheel base lock and take the new
1207 * timer into account automatically.
1208 */
1209 if (rq->curr != rq->idle)
1210 return;
1211
1212 /*
1213 * We can set TIF_RESCHED on the idle task of the other CPU
1214 * lockless. The worst case is that the other CPU runs the
1215 * idle task through an additional NOOP schedule()
1216 */
1217 set_tsk_thread_flag(rq->idle, TIF_NEED_RESCHED);
1218
1219 /* NEED_RESCHED must be visible before we test polling */
1220 smp_mb();
1221 if (!tsk_is_polling(rq->idle))
1222 smp_send_reschedule(cpu);
1223}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001224#endif /* CONFIG_NO_HZ */
Thomas Gleixner06d83082008-03-22 09:20:24 +01001225
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001226#else /* !CONFIG_SMP */
Peter Zijlstra31656512008-07-18 18:01:23 +02001227static void resched_task(struct task_struct *p)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001228{
1229 assert_spin_locked(&task_rq(p)->lock);
Peter Zijlstra31656512008-07-18 18:01:23 +02001230 set_tsk_need_resched(p);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001231}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001232#endif /* CONFIG_SMP */
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001233
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001234#if BITS_PER_LONG == 32
1235# define WMULT_CONST (~0UL)
1236#else
1237# define WMULT_CONST (1UL << 32)
1238#endif
1239
1240#define WMULT_SHIFT 32
1241
Ingo Molnar194081e2007-08-09 11:16:51 +02001242/*
1243 * Shift right and round:
1244 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001245#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +02001246
Peter Zijlstraa7be37a2008-06-27 13:41:11 +02001247/*
1248 * delta *= weight / lw
1249 */
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +02001250static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001251calc_delta_mine(unsigned long delta_exec, unsigned long weight,
1252 struct load_weight *lw)
1253{
1254 u64 tmp;
1255
Lai Jiangshan7a232e02008-06-12 16:43:07 +08001256 if (!lw->inv_weight) {
1257 if (BITS_PER_LONG > 32 && unlikely(lw->weight >= WMULT_CONST))
1258 lw->inv_weight = 1;
1259 else
1260 lw->inv_weight = 1 + (WMULT_CONST-lw->weight/2)
1261 / (lw->weight+1);
1262 }
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001263
1264 tmp = (u64)delta_exec * weight;
1265 /*
1266 * Check whether we'd overflow the 64-bit multiplication:
1267 */
Ingo Molnar194081e2007-08-09 11:16:51 +02001268 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001269 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +02001270 WMULT_SHIFT/2);
1271 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001272 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001273
Ingo Molnarecf691d2007-08-02 17:41:40 +02001274 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001275}
1276
Ingo Molnar10919852007-10-15 17:00:04 +02001277static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001278{
1279 lw->weight += inc;
Ingo Molnare89996a2008-03-14 23:48:28 +01001280 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001281}
1282
Ingo Molnar10919852007-10-15 17:00:04 +02001283static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001284{
1285 lw->weight -= dec;
Ingo Molnare89996a2008-03-14 23:48:28 +01001286 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001287}
1288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001290 * To aid in avoiding the subversion of "niceness" due to uneven distribution
1291 * of tasks with abnormal "nice" values across CPUs the contribution that
1292 * each task makes to its run queue's load is weighted according to its
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001293 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
Peter Williams2dd73a42006-06-27 02:54:34 -07001294 * scaled version of the new time slice allocation that they receive on time
1295 * slice expiry etc.
1296 */
1297
Ingo Molnardd41f592007-07-09 18:51:59 +02001298#define WEIGHT_IDLEPRIO 2
1299#define WMULT_IDLEPRIO (1 << 31)
1300
1301/*
1302 * Nice levels are multiplicative, with a gentle 10% change for every
1303 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
1304 * nice 1, it will get ~10% less CPU time than another CPU-bound task
1305 * that remained on nice 0.
1306 *
1307 * The "10% effect" is relative and cumulative: from _any_ nice level,
1308 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee2007-07-16 09:46:30 +02001309 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
1310 * If a task goes up by ~10% and another task goes down by ~10% then
1311 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +02001312 */
1313static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001314 /* -20 */ 88761, 71755, 56483, 46273, 36291,
1315 /* -15 */ 29154, 23254, 18705, 14949, 11916,
1316 /* -10 */ 9548, 7620, 6100, 4904, 3906,
1317 /* -5 */ 3121, 2501, 1991, 1586, 1277,
1318 /* 0 */ 1024, 820, 655, 526, 423,
1319 /* 5 */ 335, 272, 215, 172, 137,
1320 /* 10 */ 110, 87, 70, 56, 45,
1321 /* 15 */ 36, 29, 23, 18, 15,
Ingo Molnardd41f592007-07-09 18:51:59 +02001322};
1323
Ingo Molnar5714d2d2007-07-16 09:46:31 +02001324/*
1325 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
1326 *
1327 * In cases where the weight does not change often, we can use the
1328 * precalculated inverse to speed up arithmetics by turning divisions
1329 * into multiplications:
1330 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001331static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001332 /* -20 */ 48388, 59856, 76040, 92818, 118348,
1333 /* -15 */ 147320, 184698, 229616, 287308, 360437,
1334 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
1335 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
1336 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
1337 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
1338 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
1339 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +02001340};
Peter Williams2dd73a42006-06-27 02:54:34 -07001341
Ingo Molnardd41f592007-07-09 18:51:59 +02001342static void activate_task(struct rq *rq, struct task_struct *p, int wakeup);
1343
1344/*
1345 * runqueue iterator, to support SMP load-balancing between different
1346 * scheduling classes, without having to expose their internal data
1347 * structures to the load-balancing proper:
1348 */
1349struct rq_iterator {
1350 void *arg;
1351 struct task_struct *(*start)(void *);
1352 struct task_struct *(*next)(void *);
1353};
1354
Peter Williamse1d14842007-10-24 18:23:51 +02001355#ifdef CONFIG_SMP
1356static unsigned long
1357balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
1358 unsigned long max_load_move, struct sched_domain *sd,
1359 enum cpu_idle_type idle, int *all_pinned,
1360 int *this_best_prio, struct rq_iterator *iterator);
1361
1362static int
1363iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
1364 struct sched_domain *sd, enum cpu_idle_type idle,
1365 struct rq_iterator *iterator);
Peter Williamse1d14842007-10-24 18:23:51 +02001366#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001367
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001368#ifdef CONFIG_CGROUP_CPUACCT
1369static void cpuacct_charge(struct task_struct *tsk, u64 cputime);
1370#else
1371static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
1372#endif
1373
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001374static inline void inc_cpu_load(struct rq *rq, unsigned long load)
1375{
1376 update_load_add(&rq->load, load);
1377}
1378
1379static inline void dec_cpu_load(struct rq *rq, unsigned long load)
1380{
1381 update_load_sub(&rq->load, load);
1382}
1383
Gregory Haskinse7693a32008-01-25 21:08:09 +01001384#ifdef CONFIG_SMP
1385static unsigned long source_load(int cpu, int type);
1386static unsigned long target_load(int cpu, int type);
Gregory Haskinse7693a32008-01-25 21:08:09 +01001387static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001388
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001389static unsigned long cpu_avg_load_per_task(int cpu)
1390{
1391 struct rq *rq = cpu_rq(cpu);
1392
1393 if (rq->nr_running)
1394 rq->avg_load_per_task = rq->load.weight / rq->nr_running;
1395
1396 return rq->avg_load_per_task;
1397}
1398
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001399#ifdef CONFIG_FAIR_GROUP_SCHED
1400
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001401typedef void (*tg_visitor)(struct task_group *, int, struct sched_domain *);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001402
1403/*
1404 * Iterate the full tree, calling @down when first entering a node and @up when
1405 * leaving it for the final time.
1406 */
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001407static void
1408walk_tg_tree(tg_visitor down, tg_visitor up, int cpu, struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001409{
1410 struct task_group *parent, *child;
1411
1412 rcu_read_lock();
1413 parent = &root_task_group;
1414down:
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001415 (*down)(parent, cpu, sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001416 list_for_each_entry_rcu(child, &parent->children, siblings) {
1417 parent = child;
1418 goto down;
1419
1420up:
1421 continue;
1422 }
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001423 (*up)(parent, cpu, sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001424
1425 child = parent;
1426 parent = parent->parent;
1427 if (parent)
1428 goto up;
1429 rcu_read_unlock();
1430}
1431
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001432static void __set_se_shares(struct sched_entity *se, unsigned long shares);
1433
1434/*
1435 * Calculate and set the cpu's group shares.
1436 */
1437static void
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001438__update_group_shares_cpu(struct task_group *tg, int cpu,
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001439 unsigned long sd_shares, unsigned long sd_rq_weight)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001440{
1441 int boost = 0;
1442 unsigned long shares;
1443 unsigned long rq_weight;
1444
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001445 if (!tg->se[cpu])
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001446 return;
1447
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001448 rq_weight = tg->cfs_rq[cpu]->load.weight;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001449
1450 /*
1451 * If there are currently no tasks on the cpu pretend there is one of
1452 * average load so that when a new task gets to run here it will not
1453 * get delayed by group starvation.
1454 */
1455 if (!rq_weight) {
1456 boost = 1;
1457 rq_weight = NICE_0_LOAD;
1458 }
1459
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001460 if (unlikely(rq_weight > sd_rq_weight))
1461 rq_weight = sd_rq_weight;
1462
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001463 /*
1464 * \Sum shares * rq_weight
1465 * shares = -----------------------
1466 * \Sum rq_weight
1467 *
1468 */
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001469 shares = (sd_shares * rq_weight) / (sd_rq_weight + 1);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001470
1471 /*
1472 * record the actual number of shares, not the boosted amount.
1473 */
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001474 tg->cfs_rq[cpu]->shares = boost ? 0 : shares;
Peter Zijlstraf1d239f2008-06-27 13:41:38 +02001475 tg->cfs_rq[cpu]->rq_weight = rq_weight;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001476
1477 if (shares < MIN_SHARES)
1478 shares = MIN_SHARES;
1479 else if (shares > MAX_SHARES)
1480 shares = MAX_SHARES;
1481
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001482 __set_se_shares(tg->se[cpu], shares);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001483}
1484
1485/*
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001486 * Re-compute the task group their per cpu shares over the given domain.
1487 * This needs to be done in a bottom-up fashion because the rq weight of a
1488 * parent group depends on the shares of its child groups.
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001489 */
1490static void
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001491tg_shares_up(struct task_group *tg, int cpu, struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001492{
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001493 unsigned long rq_weight = 0;
1494 unsigned long shares = 0;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001495 int i;
1496
1497 for_each_cpu_mask(i, sd->span) {
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001498 rq_weight += tg->cfs_rq[i]->load.weight;
1499 shares += tg->cfs_rq[i]->shares;
1500 }
1501
1502 if ((!shares && rq_weight) || shares > tg->shares)
1503 shares = tg->shares;
1504
1505 if (!sd->parent || !(sd->parent->flags & SD_LOAD_BALANCE))
1506 shares = tg->shares;
1507
Peter Zijlstracd809172008-06-27 13:41:34 +02001508 if (!rq_weight)
1509 rq_weight = cpus_weight(sd->span) * NICE_0_LOAD;
1510
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001511 for_each_cpu_mask(i, sd->span) {
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001512 struct rq *rq = cpu_rq(i);
1513 unsigned long flags;
1514
1515 spin_lock_irqsave(&rq->lock, flags);
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001516 __update_group_shares_cpu(tg, i, shares, rq_weight);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001517 spin_unlock_irqrestore(&rq->lock, flags);
1518 }
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001519}
1520
1521/*
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001522 * Compute the cpu's hierarchical load factor for each task group.
1523 * This needs to be done in a top-down fashion because the load of a child
1524 * group is a fraction of its parents load.
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001525 */
Peter Zijlstrab6a86c72008-06-27 13:41:18 +02001526static void
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001527tg_load_down(struct task_group *tg, int cpu, struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001528{
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001529 unsigned long load;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001530
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001531 if (!tg->parent) {
1532 load = cpu_rq(cpu)->load.weight;
1533 } else {
1534 load = tg->parent->cfs_rq[cpu]->h_load;
1535 load *= tg->cfs_rq[cpu]->shares;
1536 load /= tg->parent->cfs_rq[cpu]->load.weight + 1;
1537 }
1538
1539 tg->cfs_rq[cpu]->h_load = load;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001540}
1541
Peter Zijlstra4d8d5952008-06-27 13:41:19 +02001542static void
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001543tg_nop(struct task_group *tg, int cpu, struct sched_domain *sd)
Peter Zijlstra4d8d5952008-06-27 13:41:19 +02001544{
1545}
1546
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001547static void update_shares(struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001548{
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02001549 u64 now = cpu_clock(raw_smp_processor_id());
1550 s64 elapsed = now - sd->last_update;
1551
1552 if (elapsed >= (s64)(u64)sysctl_sched_shares_ratelimit) {
1553 sd->last_update = now;
1554 walk_tg_tree(tg_nop, tg_shares_up, 0, sd);
1555 }
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001556}
1557
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02001558static void update_shares_locked(struct rq *rq, struct sched_domain *sd)
1559{
1560 spin_unlock(&rq->lock);
1561 update_shares(sd);
1562 spin_lock(&rq->lock);
1563}
1564
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001565static void update_h_load(int cpu)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001566{
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001567 walk_tg_tree(tg_load_down, tg_nop, cpu, NULL);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001568}
1569
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001570#else
1571
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001572static inline void update_shares(struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001573{
1574}
1575
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02001576static inline void update_shares_locked(struct rq *rq, struct sched_domain *sd)
1577{
1578}
1579
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001580#endif
1581
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001582#endif
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001583
1584#ifdef CONFIG_FAIR_GROUP_SCHED
1585static void cfs_rq_set_shares(struct cfs_rq *cfs_rq, unsigned long shares)
1586{
Vegard Nossum30432092008-06-27 21:35:50 +02001587#ifdef CONFIG_SMP
Ingo Molnar34e83e82008-06-27 15:42:36 +02001588 cfs_rq->shares = shares;
1589#endif
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001590}
1591#endif
1592
Ingo Molnardd41f592007-07-09 18:51:59 +02001593#include "sched_stats.h"
Ingo Molnardd41f592007-07-09 18:51:59 +02001594#include "sched_idletask.c"
Ingo Molnar5522d5d2007-10-15 17:00:12 +02001595#include "sched_fair.c"
1596#include "sched_rt.c"
Ingo Molnardd41f592007-07-09 18:51:59 +02001597#ifdef CONFIG_SCHED_DEBUG
1598# include "sched_debug.c"
1599#endif
1600
1601#define sched_class_highest (&rt_sched_class)
Gregory Haskins1f11eb62008-06-04 15:04:05 -04001602#define for_each_class(class) \
1603 for (class = sched_class_highest; class; class = class->next)
Ingo Molnardd41f592007-07-09 18:51:59 +02001604
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001605static void inc_nr_running(struct rq *rq)
Ingo Molnar6363ca52008-05-29 11:28:57 +02001606{
1607 rq->nr_running++;
Ingo Molnar6363ca52008-05-29 11:28:57 +02001608}
1609
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001610static void dec_nr_running(struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001611{
1612 rq->nr_running--;
Ingo Molnar9c217242007-08-02 17:41:40 +02001613}
1614
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001615static void set_load_weight(struct task_struct *p)
1616{
1617 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001618 p->se.load.weight = prio_to_weight[0] * 2;
1619 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
1620 return;
1621 }
1622
1623 /*
1624 * SCHED_IDLE tasks get minimal weight:
1625 */
1626 if (p->policy == SCHED_IDLE) {
1627 p->se.load.weight = WEIGHT_IDLEPRIO;
1628 p->se.load.inv_weight = WMULT_IDLEPRIO;
1629 return;
1630 }
1631
1632 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
1633 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001634}
1635
Gregory Haskins2087a1a2008-06-27 14:30:00 -06001636static void update_avg(u64 *avg, u64 sample)
1637{
1638 s64 diff = sample - *avg;
1639 *avg += diff >> 3;
1640}
1641
Ingo Molnar8159f872007-08-09 11:16:49 +02001642static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001643{
1644 sched_info_queued(p);
Ingo Molnarfd390f62007-08-09 11:16:48 +02001645 p->sched_class->enqueue_task(rq, p, wakeup);
Ingo Molnardd41f592007-07-09 18:51:59 +02001646 p->se.on_rq = 1;
1647}
1648
Ingo Molnar69be72c2007-08-09 11:16:49 +02001649static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnardd41f592007-07-09 18:51:59 +02001650{
Gregory Haskins2087a1a2008-06-27 14:30:00 -06001651 if (sleep && p->se.last_wakeup) {
1652 update_avg(&p->se.avg_overlap,
1653 p->se.sum_exec_runtime - p->se.last_wakeup);
1654 p->se.last_wakeup = 0;
1655 }
1656
Ankita Garg46ac22b2008-07-01 14:30:06 +05301657 sched_info_dequeued(p);
Ingo Molnarf02231e2007-08-09 11:16:48 +02001658 p->sched_class->dequeue_task(rq, p, sleep);
Ingo Molnardd41f592007-07-09 18:51:59 +02001659 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001660}
1661
1662/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001663 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001664 */
Ingo Molnar14531182007-07-09 18:51:59 +02001665static inline int __normal_prio(struct task_struct *p)
1666{
Ingo Molnardd41f592007-07-09 18:51:59 +02001667 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02001668}
1669
1670/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07001671 * Calculate the expected normal priority: i.e. priority
1672 * without taking RT-inheritance into account. Might be
1673 * boosted by interactivity modifiers. Changes upon fork,
1674 * setprio syscalls, and whenever the interactivity
1675 * estimator recalculates.
1676 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001677static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001678{
1679 int prio;
1680
Ingo Molnare05606d2007-07-09 18:51:59 +02001681 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07001682 prio = MAX_RT_PRIO-1 - p->rt_priority;
1683 else
1684 prio = __normal_prio(p);
1685 return prio;
1686}
1687
1688/*
1689 * Calculate the current priority, i.e. the priority
1690 * taken into account by the scheduler. This value might
1691 * be boosted by RT tasks, or might be boosted by
1692 * interactivity modifiers. Will be RT if the task got
1693 * RT-boosted. If not then it returns p->normal_prio.
1694 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001695static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001696{
1697 p->normal_prio = normal_prio(p);
1698 /*
1699 * If we are RT tasks or we were boosted to RT priority,
1700 * keep the priority unchanged. Otherwise, update priority
1701 * to the normal priority:
1702 */
1703 if (!rt_prio(p->prio))
1704 return p->normal_prio;
1705 return p->prio;
1706}
1707
1708/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001709 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001711static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001713 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001714 rq->nr_uninterruptible--;
1715
Ingo Molnar8159f872007-08-09 11:16:49 +02001716 enqueue_task(rq, p, wakeup);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001717 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718}
1719
1720/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 * deactivate_task - remove a task from the runqueue.
1722 */
Ingo Molnar2e1cb742007-08-09 11:16:49 +02001723static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05001725 if (task_contributes_to_load(p))
Ingo Molnardd41f592007-07-09 18:51:59 +02001726 rq->nr_uninterruptible++;
1727
Ingo Molnar69be72c2007-08-09 11:16:49 +02001728 dequeue_task(rq, p, sleep);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001729 dec_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730}
1731
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732/**
1733 * task_curr - is this task currently executing on a CPU?
1734 * @p: the task in question.
1735 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001736inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737{
1738 return cpu_curr(task_cpu(p)) == p;
1739}
1740
Ingo Molnardd41f592007-07-09 18:51:59 +02001741static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1742{
Peter Zijlstra6f505b12008-01-25 21:08:30 +01001743 set_task_rq(p, cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001744#ifdef CONFIG_SMP
Dmitry Adamushkoce96b5a2007-11-15 20:57:40 +01001745 /*
1746 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
1747 * successfuly executed on another CPU. We must ensure that updates of
1748 * per-task data have been completed by this moment.
1749 */
1750 smp_wmb();
Ingo Molnardd41f592007-07-09 18:51:59 +02001751 task_thread_info(p)->cpu = cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02001752#endif
Peter Williams2dd73a42006-06-27 02:54:34 -07001753}
1754
Steven Rostedtcb469842008-01-25 21:08:22 +01001755static inline void check_class_changed(struct rq *rq, struct task_struct *p,
1756 const struct sched_class *prev_class,
1757 int oldprio, int running)
1758{
1759 if (prev_class != p->sched_class) {
1760 if (prev_class->switched_from)
1761 prev_class->switched_from(rq, p, running);
1762 p->sched_class->switched_to(rq, p, running);
1763 } else
1764 p->sched_class->prio_changed(rq, p, oldprio, running);
1765}
1766
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +02001768
Thomas Gleixnere958b362008-06-04 23:22:32 +02001769/* Used instead of source_load when we know the type == 0 */
1770static unsigned long weighted_cpuload(const int cpu)
1771{
1772 return cpu_rq(cpu)->load.weight;
1773}
1774
Ingo Molnarcc367732007-10-15 17:00:18 +02001775/*
1776 * Is this task likely cache-hot:
1777 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01001778static int
Ingo Molnarcc367732007-10-15 17:00:18 +02001779task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
1780{
1781 s64 delta;
1782
Ingo Molnarf540a602008-03-15 17:10:34 +01001783 /*
1784 * Buddy candidates are cache hot:
1785 */
Ingo Molnard25ce4c2008-03-17 09:36:53 +01001786 if (sched_feat(CACHE_HOT_BUDDY) && (&p->se == cfs_rq_of(&p->se)->next))
Ingo Molnarf540a602008-03-15 17:10:34 +01001787 return 1;
1788
Ingo Molnarcc367732007-10-15 17:00:18 +02001789 if (p->sched_class != &fair_sched_class)
1790 return 0;
1791
Ingo Molnar6bc16652007-10-15 17:00:18 +02001792 if (sysctl_sched_migration_cost == -1)
1793 return 1;
1794 if (sysctl_sched_migration_cost == 0)
1795 return 0;
1796
Ingo Molnarcc367732007-10-15 17:00:18 +02001797 delta = now - p->se.exec_start;
1798
1799 return delta < (s64)sysctl_sched_migration_cost;
1800}
1801
1802
Ingo Molnardd41f592007-07-09 18:51:59 +02001803void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02001804{
Ingo Molnardd41f592007-07-09 18:51:59 +02001805 int old_cpu = task_cpu(p);
1806 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001807 struct cfs_rq *old_cfsrq = task_cfs_rq(p),
1808 *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02001809 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001810
1811 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001812
1813#ifdef CONFIG_SCHEDSTATS
1814 if (p->se.wait_start)
1815 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001816 if (p->se.sleep_start)
1817 p->se.sleep_start -= clock_offset;
1818 if (p->se.block_start)
1819 p->se.block_start -= clock_offset;
Ingo Molnarcc367732007-10-15 17:00:18 +02001820 if (old_cpu != new_cpu) {
1821 schedstat_inc(p, se.nr_migrations);
1822 if (task_hot(p, old_rq->clock, NULL))
1823 schedstat_inc(p, se.nr_forced2_migrations);
1824 }
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001825#endif
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001826 p->se.vruntime -= old_cfsrq->min_vruntime -
1827 new_cfsrq->min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02001828
1829 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02001830}
1831
Ingo Molnar70b97a72006-07-03 00:25:42 -07001832struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
Ingo Molnar36c8b582006-07-03 00:25:41 -07001835 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 int dest_cpu;
1837
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001839};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
1841/*
1842 * The task's runqueue lock must be held.
1843 * Returns true if you have to wait for migration thread.
1844 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001845static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07001846migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001848 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
1850 /*
1851 * If the task is not on a runqueue (and not running), then
1852 * it is sufficient to simply update the task's cpu field.
1853 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001854 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 set_task_cpu(p, dest_cpu);
1856 return 0;
1857 }
1858
1859 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 req->task = p;
1861 req->dest_cpu = dest_cpu;
1862 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07001863
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 return 1;
1865}
1866
1867/*
1868 * wait_task_inactive - wait for a thread to unschedule.
1869 *
1870 * The caller must ensure that the task *will* unschedule sometime soon,
1871 * else this function might spin for a *long* time. This function can't
1872 * be called with interrupts off, or it may introduce deadlock with
1873 * smp_call_function() if an IPI is sent by the same process we are
1874 * waiting to become inactive.
1875 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001876void wait_task_inactive(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877{
1878 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001879 int running, on_rq;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001880 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
Andi Kleen3a5c3592007-10-15 17:00:14 +02001882 for (;;) {
1883 /*
1884 * We do the initial early heuristics without holding
1885 * any task-queue locks at all. We'll only try to get
1886 * the runqueue lock when things look like they will
1887 * work out!
1888 */
1889 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001890
Andi Kleen3a5c3592007-10-15 17:00:14 +02001891 /*
1892 * If the task is actively running on another CPU
1893 * still, just relax and busy-wait without holding
1894 * any locks.
1895 *
1896 * NOTE! Since we don't hold any locks, it's not
1897 * even sure that "rq" stays as the right runqueue!
1898 * But we don't care, since "task_running()" will
1899 * return false if the runqueue has changed and p
1900 * is actually now running somewhere else!
1901 */
1902 while (task_running(rq, p))
1903 cpu_relax();
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001904
Andi Kleen3a5c3592007-10-15 17:00:14 +02001905 /*
1906 * Ok, time to look more closely! We need the rq
1907 * lock now, to be *sure*. If we're wrong, we'll
1908 * just go back and repeat.
1909 */
1910 rq = task_rq_lock(p, &flags);
1911 running = task_running(rq, p);
1912 on_rq = p->se.on_rq;
1913 task_rq_unlock(rq, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001914
Andi Kleen3a5c3592007-10-15 17:00:14 +02001915 /*
1916 * Was it really running after all now that we
1917 * checked with the proper locks actually held?
1918 *
1919 * Oops. Go back and try again..
1920 */
1921 if (unlikely(running)) {
1922 cpu_relax();
1923 continue;
1924 }
1925
1926 /*
1927 * It's not enough that it's not actively running,
1928 * it must be off the runqueue _entirely_, and not
1929 * preempted!
1930 *
1931 * So if it wa still runnable (but just not actively
1932 * running right now), it's preempted, and we should
1933 * yield - it could be a while.
1934 */
1935 if (unlikely(on_rq)) {
1936 schedule_timeout_uninterruptible(1);
1937 continue;
1938 }
1939
1940 /*
1941 * Ahh, all good. It wasn't running, and it wasn't
1942 * runnable, which means that it will never become
1943 * running in the future either. We're all done!
1944 */
1945 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947}
1948
1949/***
1950 * kick_process - kick a running thread to enter/exit the kernel
1951 * @p: the to-be-kicked thread
1952 *
1953 * Cause a process which is running on another CPU to enter
1954 * kernel-mode, without any delay. (to get signals handled.)
1955 *
1956 * NOTE: this function doesnt have to take the runqueue lock,
1957 * because all it wants to ensure is that the remote task enters
1958 * the kernel. If the IPI races and the task has been migrated
1959 * to another CPU then no harm is done and the purpose has been
1960 * achieved as well.
1961 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001962void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963{
1964 int cpu;
1965
1966 preempt_disable();
1967 cpu = task_cpu(p);
1968 if ((cpu != smp_processor_id()) && task_curr(p))
1969 smp_send_reschedule(cpu);
1970 preempt_enable();
1971}
1972
1973/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001974 * Return a low guess at the load of a migration-source cpu weighted
1975 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 *
1977 * We want to under-estimate the load of migration sources, to
1978 * balance conservatively.
1979 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001980static unsigned long source_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08001981{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001982 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001983 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001984
Peter Zijlstra93b75212008-06-27 13:41:33 +02001985 if (type == 0 || !sched_feat(LB_BIAS))
Ingo Molnardd41f592007-07-09 18:51:59 +02001986 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001987
Ingo Molnardd41f592007-07-09 18:51:59 +02001988 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989}
1990
1991/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001992 * Return a high guess at the load of a migration-target cpu weighted
1993 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001995static unsigned long target_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08001996{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001997 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001998 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001999
Peter Zijlstra93b75212008-06-27 13:41:33 +02002000 if (type == 0 || !sched_feat(LB_BIAS))
Ingo Molnardd41f592007-07-09 18:51:59 +02002001 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07002002
Ingo Molnardd41f592007-07-09 18:51:59 +02002003 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07002004}
2005
2006/*
Nick Piggin147cbb42005-06-25 14:57:19 -07002007 * find_idlest_group finds and returns the least busy CPU group within the
2008 * domain.
2009 */
2010static struct sched_group *
2011find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
2012{
2013 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
2014 unsigned long min_load = ULONG_MAX, this_load = 0;
2015 int load_idx = sd->forkexec_idx;
2016 int imbalance = 100 + (sd->imbalance_pct-100)/2;
2017
2018 do {
2019 unsigned long load, avg_load;
2020 int local_group;
2021 int i;
2022
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002023 /* Skip over this group if it has no CPUs allowed */
2024 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
Andi Kleen3a5c3592007-10-15 17:00:14 +02002025 continue;
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002026
Nick Piggin147cbb42005-06-25 14:57:19 -07002027 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07002028
2029 /* Tally up the load of all CPUs in the group */
2030 avg_load = 0;
2031
Mike Travis363ab6f2008-05-12 21:21:13 +02002032 for_each_cpu_mask_nr(i, group->cpumask) {
Nick Piggin147cbb42005-06-25 14:57:19 -07002033 /* Bias balancing toward cpus of our domain */
2034 if (local_group)
2035 load = source_load(i, load_idx);
2036 else
2037 load = target_load(i, load_idx);
2038
2039 avg_load += load;
2040 }
2041
2042 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002043 avg_load = sg_div_cpu_power(group,
2044 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07002045
2046 if (local_group) {
2047 this_load = avg_load;
2048 this = group;
2049 } else if (avg_load < min_load) {
2050 min_load = avg_load;
2051 idlest = group;
2052 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02002053 } while (group = group->next, group != sd->groups);
Nick Piggin147cbb42005-06-25 14:57:19 -07002054
2055 if (!idlest || 100*this_load < imbalance*min_load)
2056 return NULL;
2057 return idlest;
2058}
2059
2060/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07002061 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07002062 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002063static int
Mike Travis7c16ec52008-04-04 18:11:11 -07002064find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu,
2065 cpumask_t *tmp)
Nick Piggin147cbb42005-06-25 14:57:19 -07002066{
2067 unsigned long load, min_load = ULONG_MAX;
2068 int idlest = -1;
2069 int i;
2070
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002071 /* Traverse only the allowed CPUs */
Mike Travis7c16ec52008-04-04 18:11:11 -07002072 cpus_and(*tmp, group->cpumask, p->cpus_allowed);
M.Baris Demirayda5a5522005-09-10 00:26:09 -07002073
Mike Travis363ab6f2008-05-12 21:21:13 +02002074 for_each_cpu_mask_nr(i, *tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07002075 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07002076
2077 if (load < min_load || (load == min_load && i == this_cpu)) {
2078 min_load = load;
2079 idlest = i;
2080 }
2081 }
2082
2083 return idlest;
2084}
2085
Nick Piggin476d1392005-06-25 14:57:29 -07002086/*
2087 * sched_balance_self: balance the current task (running on cpu) in domains
2088 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
2089 * SD_BALANCE_EXEC.
2090 *
2091 * Balance, ie. select the least loaded group.
2092 *
2093 * Returns the target CPU number, or the same CPU if no balancing is needed.
2094 *
2095 * preempt must be disabled.
2096 */
2097static int sched_balance_self(int cpu, int flag)
2098{
2099 struct task_struct *t = current;
2100 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07002101
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002102 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02002103 /*
2104 * If power savings logic is enabled for a domain, stop there.
2105 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002106 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
2107 break;
Nick Piggin476d1392005-06-25 14:57:29 -07002108 if (tmp->flags & flag)
2109 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002110 }
Nick Piggin476d1392005-06-25 14:57:29 -07002111
Peter Zijlstra039a1c42008-06-27 13:41:25 +02002112 if (sd)
2113 update_shares(sd);
2114
Nick Piggin476d1392005-06-25 14:57:29 -07002115 while (sd) {
Mike Travis7c16ec52008-04-04 18:11:11 -07002116 cpumask_t span, tmpmask;
Nick Piggin476d1392005-06-25 14:57:29 -07002117 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002118 int new_cpu, weight;
2119
2120 if (!(sd->flags & flag)) {
2121 sd = sd->child;
2122 continue;
2123 }
Nick Piggin476d1392005-06-25 14:57:29 -07002124
2125 span = sd->span;
2126 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002127 if (!group) {
2128 sd = sd->child;
2129 continue;
2130 }
Nick Piggin476d1392005-06-25 14:57:29 -07002131
Mike Travis7c16ec52008-04-04 18:11:11 -07002132 new_cpu = find_idlest_cpu(group, t, cpu, &tmpmask);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002133 if (new_cpu == -1 || new_cpu == cpu) {
2134 /* Now try balancing at a lower domain level of cpu */
2135 sd = sd->child;
2136 continue;
2137 }
Nick Piggin476d1392005-06-25 14:57:29 -07002138
Siddha, Suresh B1a848872006-10-03 01:14:08 -07002139 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07002140 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07002141 sd = NULL;
2142 weight = cpus_weight(span);
2143 for_each_domain(cpu, tmp) {
2144 if (weight <= cpus_weight(tmp->span))
2145 break;
2146 if (tmp->flags & flag)
2147 sd = tmp;
2148 }
2149 /* while loop will break here if sd == NULL */
2150 }
2151
2152 return cpu;
2153}
2154
2155#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157/***
2158 * try_to_wake_up - wake up a thread
2159 * @p: the to-be-woken-up thread
2160 * @state: the mask of task states that can be woken
2161 * @sync: do a synchronous wakeup?
2162 *
2163 * Put it on the run-queue if it's not already there. The "current"
2164 * thread is always on the run-queue (except when the actual
2165 * re-schedule is in progress), and as such you're allowed to do
2166 * the simpler "current->state = TASK_RUNNING" to mark yourself
2167 * runnable without the overhead of this.
2168 *
2169 * returns failure only if the task is already active.
2170 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002171static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172{
Ingo Molnarcc367732007-10-15 17:00:18 +02002173 int cpu, orig_cpu, this_cpu, success = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 unsigned long flags;
2175 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002176 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
Ingo Molnarb85d0662008-03-16 20:03:22 +01002178 if (!sched_feat(SYNC_WAKEUPS))
2179 sync = 0;
2180
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02002181#ifdef CONFIG_SMP
2182 if (sched_feat(LB_WAKEUP_UPDATE)) {
2183 struct sched_domain *sd;
2184
2185 this_cpu = raw_smp_processor_id();
2186 cpu = task_cpu(p);
2187
2188 for_each_domain(this_cpu, sd) {
2189 if (cpu_isset(cpu, sd->span)) {
2190 update_shares(sd);
2191 break;
2192 }
2193 }
2194 }
2195#endif
2196
Linus Torvalds04e2f172008-02-23 18:05:03 -08002197 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 rq = task_rq_lock(p, &flags);
2199 old_state = p->state;
2200 if (!(old_state & state))
2201 goto out;
2202
Ingo Molnardd41f592007-07-09 18:51:59 +02002203 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 goto out_running;
2205
2206 cpu = task_cpu(p);
Ingo Molnarcc367732007-10-15 17:00:18 +02002207 orig_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 this_cpu = smp_processor_id();
2209
2210#ifdef CONFIG_SMP
2211 if (unlikely(task_running(rq, p)))
2212 goto out_activate;
2213
Dmitry Adamushko5d2f5a62008-01-25 21:08:21 +01002214 cpu = p->sched_class->select_task_rq(p, sync);
2215 if (cpu != orig_cpu) {
2216 set_task_cpu(p, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 task_rq_unlock(rq, &flags);
2218 /* might preempt at this point */
2219 rq = task_rq_lock(p, &flags);
2220 old_state = p->state;
2221 if (!(old_state & state))
2222 goto out;
Ingo Molnardd41f592007-07-09 18:51:59 +02002223 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 goto out_running;
2225
2226 this_cpu = smp_processor_id();
2227 cpu = task_cpu(p);
2228 }
2229
Gregory Haskinse7693a32008-01-25 21:08:09 +01002230#ifdef CONFIG_SCHEDSTATS
2231 schedstat_inc(rq, ttwu_count);
2232 if (cpu == this_cpu)
2233 schedstat_inc(rq, ttwu_local);
2234 else {
2235 struct sched_domain *sd;
2236 for_each_domain(this_cpu, sd) {
2237 if (cpu_isset(cpu, sd->span)) {
2238 schedstat_inc(sd, ttwu_wake_remote);
2239 break;
2240 }
2241 }
2242 }
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002243#endif /* CONFIG_SCHEDSTATS */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002244
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245out_activate:
2246#endif /* CONFIG_SMP */
Ingo Molnarcc367732007-10-15 17:00:18 +02002247 schedstat_inc(p, se.nr_wakeups);
2248 if (sync)
2249 schedstat_inc(p, se.nr_wakeups_sync);
2250 if (orig_cpu != cpu)
2251 schedstat_inc(p, se.nr_wakeups_migrate);
2252 if (cpu == this_cpu)
2253 schedstat_inc(p, se.nr_wakeups_local);
2254 else
2255 schedstat_inc(p, se.nr_wakeups_remote);
Ingo Molnar2daa3572007-08-09 11:16:51 +02002256 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02002257 activate_task(rq, p, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 success = 1;
2259
2260out_running:
Mathieu Desnoyers5b82a1b2008-05-12 21:21:10 +02002261 trace_mark(kernel_sched_wakeup,
2262 "pid %d state %ld ## rq %p task %p rq->curr %p",
2263 p->pid, p->state, rq, p, rq->curr);
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002264 check_preempt_curr(rq, p);
2265
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 p->state = TASK_RUNNING;
Steven Rostedt9a897c52008-01-25 21:08:22 +01002267#ifdef CONFIG_SMP
2268 if (p->sched_class->task_wake_up)
2269 p->sched_class->task_wake_up(rq, p);
2270#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271out:
Gregory Haskins2087a1a2008-06-27 14:30:00 -06002272 current->se.last_wakeup = current->se.sum_exec_runtime;
2273
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 task_rq_unlock(rq, &flags);
2275
2276 return success;
2277}
2278
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002279int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002281 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283EXPORT_SYMBOL(wake_up_process);
2284
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002285int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286{
2287 return try_to_wake_up(p, state, 0);
2288}
2289
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290/*
2291 * Perform scheduler related setup for a newly forked process p.
2292 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02002293 *
2294 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002296static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297{
Ingo Molnardd41f592007-07-09 18:51:59 +02002298 p->se.exec_start = 0;
2299 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02002300 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar4ae7d5c2008-03-19 01:42:00 +01002301 p->se.last_wakeup = 0;
2302 p->se.avg_overlap = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002303
2304#ifdef CONFIG_SCHEDSTATS
2305 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002306 p->se.sum_sleep_runtime = 0;
2307 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002308 p->se.block_start = 0;
2309 p->se.sleep_max = 0;
2310 p->se.block_max = 0;
2311 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02002312 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002313 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002314#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002315
Peter Zijlstrafa717062008-01-25 21:08:27 +01002316 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02002317 p->se.on_rq = 0;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02002318 INIT_LIST_HEAD(&p->se.group_node);
Nick Piggin476d1392005-06-25 14:57:29 -07002319
Avi Kivitye107be32007-07-26 13:40:43 +02002320#ifdef CONFIG_PREEMPT_NOTIFIERS
2321 INIT_HLIST_HEAD(&p->preempt_notifiers);
2322#endif
2323
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 /*
2325 * We mark the process as running here, but have not actually
2326 * inserted it onto the runqueue yet. This guarantees that
2327 * nobody will actually run it, and a signal or other external
2328 * event cannot wake it up and insert it on the runqueue either.
2329 */
2330 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02002331}
2332
2333/*
2334 * fork()/clone()-time setup:
2335 */
2336void sched_fork(struct task_struct *p, int clone_flags)
2337{
2338 int cpu = get_cpu();
2339
2340 __sched_fork(p);
2341
2342#ifdef CONFIG_SMP
2343 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
2344#endif
Ingo Molnar02e4bac2007-10-15 17:00:11 +02002345 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07002346
2347 /*
2348 * Make sure we do not leak PI boosting priority to the child:
2349 */
2350 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02002351 if (!rt_prio(p->prio))
2352 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002353
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002354#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02002355 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002356 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08002358#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07002359 p->oncpu = 0;
2360#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07002362 /* Want to start with kernel preemption disabled. */
Al Viroa1261f52005-11-13 16:06:55 -08002363 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002365 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366}
2367
2368/*
2369 * wake_up_new_task - wake up a newly created task for the first time.
2370 *
2371 * This function will do some initial scheduler statistics housekeeping
2372 * that must be done for every newly created context, then puts the task
2373 * on the runqueue and wakes it.
2374 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002375void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376{
2377 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002378 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
2380 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02002382 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383
2384 p->prio = effective_prio(p);
2385
Srivatsa Vaddagirib9dca1e2007-10-17 16:55:11 +02002386 if (!p->sched_class->task_new || !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002387 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02002390 * Let the scheduling class do new task startup
2391 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02002393 p->sched_class->task_new(rq, p);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02002394 inc_nr_running(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 }
Mathieu Desnoyers5b82a1b2008-05-12 21:21:10 +02002396 trace_mark(kernel_sched_wakeup_new,
2397 "pid %d state %ld ## rq %p task %p rq->curr %p",
2398 p->pid, p->state, rq, p, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02002399 check_preempt_curr(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002400#ifdef CONFIG_SMP
2401 if (p->sched_class->task_wake_up)
2402 p->sched_class->task_wake_up(rq, p);
2403#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02002404 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405}
2406
Avi Kivitye107be32007-07-26 13:40:43 +02002407#ifdef CONFIG_PREEMPT_NOTIFIERS
2408
2409/**
Randy Dunlap421cee22007-07-31 00:37:50 -07002410 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
2411 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002412 */
2413void preempt_notifier_register(struct preempt_notifier *notifier)
2414{
2415 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2416}
2417EXPORT_SYMBOL_GPL(preempt_notifier_register);
2418
2419/**
2420 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002421 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002422 *
2423 * This is safe to call from within a preemption notifier.
2424 */
2425void preempt_notifier_unregister(struct preempt_notifier *notifier)
2426{
2427 hlist_del(&notifier->link);
2428}
2429EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2430
2431static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2432{
2433 struct preempt_notifier *notifier;
2434 struct hlist_node *node;
2435
2436 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2437 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2438}
2439
2440static void
2441fire_sched_out_preempt_notifiers(struct task_struct *curr,
2442 struct task_struct *next)
2443{
2444 struct preempt_notifier *notifier;
2445 struct hlist_node *node;
2446
2447 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2448 notifier->ops->sched_out(notifier, next);
2449}
2450
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002451#else /* !CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002452
2453static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2454{
2455}
2456
2457static void
2458fire_sched_out_preempt_notifiers(struct task_struct *curr,
2459 struct task_struct *next)
2460{
2461}
2462
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002463#endif /* CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002464
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002466 * prepare_task_switch - prepare to switch tasks
2467 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002468 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002469 * @next: the task we are going to switch to.
2470 *
2471 * This is called with the rq lock held and interrupts off. It must
2472 * be paired with a subsequent finish_task_switch after the context
2473 * switch.
2474 *
2475 * prepare_task_switch sets up locking and calls architecture specific
2476 * hooks.
2477 */
Avi Kivitye107be32007-07-26 13:40:43 +02002478static inline void
2479prepare_task_switch(struct rq *rq, struct task_struct *prev,
2480 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002481{
Avi Kivitye107be32007-07-26 13:40:43 +02002482 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002483 prepare_lock_switch(rq, next);
2484 prepare_arch_switch(next);
2485}
2486
2487/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002489 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 * @prev: the thread we just switched away from.
2491 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002492 * finish_task_switch must be called after the context switch, paired
2493 * with a prepare_task_switch call before the context switch.
2494 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2495 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 *
2497 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002498 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 * with the lock held can cause deadlocks; see schedule() for
2500 * details.)
2501 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002502static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 __releases(rq->lock)
2504{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002506 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
2508 rq->prev_mm = NULL;
2509
2510 /*
2511 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002512 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002513 * schedule one last time. The schedule call will never return, and
2514 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002515 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 * still held, otherwise prev could be scheduled on another cpu, die
2517 * there before we look at prev->state, and then the reference would
2518 * be dropped twice.
2519 * Manfred Spraul <manfred@colorfullife.com>
2520 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002521 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002522 finish_arch_switch(prev);
2523 finish_lock_switch(rq, prev);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002524#ifdef CONFIG_SMP
2525 if (current->sched_class->post_schedule)
2526 current->sched_class->post_schedule(rq);
2527#endif
Steven Rostedte8fa1362008-01-25 21:08:05 +01002528
Avi Kivitye107be32007-07-26 13:40:43 +02002529 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 if (mm)
2531 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002532 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002533 /*
2534 * Remove function-return probe instances associated with this
2535 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002536 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002537 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002539 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540}
2541
2542/**
2543 * schedule_tail - first thing a freshly forked thread must call.
2544 * @prev: the thread we just switched away from.
2545 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002546asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 __releases(rq->lock)
2548{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002549 struct rq *rq = this_rq();
2550
Nick Piggin4866cde2005-06-25 14:57:23 -07002551 finish_task_switch(rq, prev);
2552#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2553 /* In this case, finish_task_switch does not reenable preemption */
2554 preempt_enable();
2555#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002557 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558}
2559
2560/*
2561 * context_switch - switch to the new MM and the new
2562 * thread's register state.
2563 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002564static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002565context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002566 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567{
Ingo Molnardd41f592007-07-09 18:51:59 +02002568 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569
Avi Kivitye107be32007-07-26 13:40:43 +02002570 prepare_task_switch(rq, prev, next);
Mathieu Desnoyers5b82a1b2008-05-12 21:21:10 +02002571 trace_mark(kernel_sched_schedule,
2572 "prev_pid %d next_pid %d prev_state %ld "
2573 "## rq %p prev %p next %p",
2574 prev->pid, next->pid, prev->state,
2575 rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002576 mm = next->mm;
2577 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002578 /*
2579 * For paravirt, this is coupled with an exit in switch_to to
2580 * combine the page table reload and the switch backend into
2581 * one hypercall.
2582 */
2583 arch_enter_lazy_cpu_mode();
2584
Ingo Molnardd41f592007-07-09 18:51:59 +02002585 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 next->active_mm = oldmm;
2587 atomic_inc(&oldmm->mm_count);
2588 enter_lazy_tlb(oldmm, next);
2589 } else
2590 switch_mm(oldmm, mm, next);
2591
Ingo Molnardd41f592007-07-09 18:51:59 +02002592 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 rq->prev_mm = oldmm;
2595 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002596 /*
2597 * Since the runqueue lock will be released by the next
2598 * task (which is an invalid locking op but in the case
2599 * of the scheduler it's an obvious special-case), so we
2600 * do an early lockdep release here:
2601 */
2602#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07002603 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07002604#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605
2606 /* Here we just switch the register state and the stack. */
2607 switch_to(prev, next, prev);
2608
Ingo Molnardd41f592007-07-09 18:51:59 +02002609 barrier();
2610 /*
2611 * this_rq must be evaluated again because prev may have moved
2612 * CPUs since it called schedule(), thus the 'rq' on its stack
2613 * frame will be invalid.
2614 */
2615 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616}
2617
2618/*
2619 * nr_running, nr_uninterruptible and nr_context_switches:
2620 *
2621 * externally visible scheduler statistics: current number of runnable
2622 * threads, current number of uninterruptible-sleeping threads, total
2623 * number of context switches performed since bootup.
2624 */
2625unsigned long nr_running(void)
2626{
2627 unsigned long i, sum = 0;
2628
2629 for_each_online_cpu(i)
2630 sum += cpu_rq(i)->nr_running;
2631
2632 return sum;
2633}
2634
2635unsigned long nr_uninterruptible(void)
2636{
2637 unsigned long i, sum = 0;
2638
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002639 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 sum += cpu_rq(i)->nr_uninterruptible;
2641
2642 /*
2643 * Since we read the counters lockless, it might be slightly
2644 * inaccurate. Do not allow it to go below zero though:
2645 */
2646 if (unlikely((long)sum < 0))
2647 sum = 0;
2648
2649 return sum;
2650}
2651
2652unsigned long long nr_context_switches(void)
2653{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07002654 int i;
2655 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002657 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 sum += cpu_rq(i)->nr_switches;
2659
2660 return sum;
2661}
2662
2663unsigned long nr_iowait(void)
2664{
2665 unsigned long i, sum = 0;
2666
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08002667 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 sum += atomic_read(&cpu_rq(i)->nr_iowait);
2669
2670 return sum;
2671}
2672
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08002673unsigned long nr_active(void)
2674{
2675 unsigned long i, running = 0, uninterruptible = 0;
2676
2677 for_each_online_cpu(i) {
2678 running += cpu_rq(i)->nr_running;
2679 uninterruptible += cpu_rq(i)->nr_uninterruptible;
2680 }
2681
2682 if (unlikely((long)uninterruptible < 0))
2683 uninterruptible = 0;
2684
2685 return running + uninterruptible;
2686}
2687
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002689 * Update rq->cpu_load[] statistics. This function is usually called every
2690 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07002691 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002692static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002693{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02002694 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02002695 int i, scale;
2696
2697 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02002698
2699 /* Update our load: */
2700 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
2701 unsigned long old_load, new_load;
2702
2703 /* scale is effectively 1 << i now, and >> i divides by scale */
2704
2705 old_load = this_rq->cpu_load[i];
2706 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02002707 /*
2708 * Round up the averaging division if load is increasing. This
2709 * prevents us from getting stuck on 9 if the load is 10, for
2710 * example.
2711 */
2712 if (new_load > old_load)
2713 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02002714 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2715 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002716}
2717
Ingo Molnardd41f592007-07-09 18:51:59 +02002718#ifdef CONFIG_SMP
2719
Ingo Molnar48f24c42006-07-03 00:25:40 -07002720/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 * double_rq_lock - safely lock two runqueues
2722 *
2723 * Note this does not disable interrupts like task_rq_lock,
2724 * you need to do so manually before calling.
2725 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002726static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 __acquires(rq1->lock)
2728 __acquires(rq2->lock)
2729{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002730 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 if (rq1 == rq2) {
2732 spin_lock(&rq1->lock);
2733 __acquire(rq2->lock); /* Fake it out ;) */
2734 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002735 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 spin_lock(&rq1->lock);
2737 spin_lock(&rq2->lock);
2738 } else {
2739 spin_lock(&rq2->lock);
2740 spin_lock(&rq1->lock);
2741 }
2742 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002743 update_rq_clock(rq1);
2744 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745}
2746
2747/*
2748 * double_rq_unlock - safely unlock two runqueues
2749 *
2750 * Note this does not restore interrupts like task_rq_unlock,
2751 * you need to do so manually after calling.
2752 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002753static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 __releases(rq1->lock)
2755 __releases(rq2->lock)
2756{
2757 spin_unlock(&rq1->lock);
2758 if (rq1 != rq2)
2759 spin_unlock(&rq2->lock);
2760 else
2761 __release(rq2->lock);
2762}
2763
2764/*
2765 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
2766 */
Steven Rostedte8fa1362008-01-25 21:08:05 +01002767static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 __releases(this_rq->lock)
2769 __acquires(busiest->lock)
2770 __acquires(this_rq->lock)
2771{
Steven Rostedte8fa1362008-01-25 21:08:05 +01002772 int ret = 0;
2773
Kirill Korotaev054b9102006-12-10 02:20:11 -08002774 if (unlikely(!irqs_disabled())) {
2775 /* printk() doesn't work good under rq->lock */
2776 spin_unlock(&this_rq->lock);
2777 BUG_ON(1);
2778 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002780 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 spin_unlock(&this_rq->lock);
2782 spin_lock(&busiest->lock);
2783 spin_lock(&this_rq->lock);
Steven Rostedte8fa1362008-01-25 21:08:05 +01002784 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 } else
2786 spin_lock(&busiest->lock);
2787 }
Steven Rostedte8fa1362008-01-25 21:08:05 +01002788 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789}
2790
2791/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 * If dest_cpu is allowed for this process, migrate the task to it.
2793 * This is accomplished by forcing the cpu_allowed mask to only
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002794 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 * the cpu_allowed mask is restored.
2796 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002797static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002799 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002801 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802
2803 rq = task_rq_lock(p, &flags);
2804 if (!cpu_isset(dest_cpu, p->cpus_allowed)
Max Krasnyanskye761b772008-07-15 04:43:49 -07002805 || unlikely(!cpu_active(dest_cpu)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 goto out;
2807
2808 /* force the process onto the specified CPU */
2809 if (migrate_task(p, dest_cpu, &req)) {
2810 /* Need to wait for migration thread (might exit: take ref). */
2811 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002812
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 get_task_struct(mt);
2814 task_rq_unlock(rq, &flags);
2815 wake_up_process(mt);
2816 put_task_struct(mt);
2817 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07002818
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 return;
2820 }
2821out:
2822 task_rq_unlock(rq, &flags);
2823}
2824
2825/*
Nick Piggin476d1392005-06-25 14:57:29 -07002826 * sched_exec - execve() is a valuable balancing opportunity, because at
2827 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 */
2829void sched_exec(void)
2830{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002832 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002834 if (new_cpu != this_cpu)
2835 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836}
2837
2838/*
2839 * pull_task - move a task from a remote runqueue to the local runqueue.
2840 * Both runqueues must be locked.
2841 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002842static void pull_task(struct rq *src_rq, struct task_struct *p,
2843 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02002845 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002847 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 /*
2849 * Note that idle threads have a prio of MAX_PRIO, for this test
2850 * to be always true for them.
2851 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002852 check_preempt_curr(this_rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853}
2854
2855/*
2856 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
2857 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002858static
Ingo Molnar70b97a72006-07-03 00:25:42 -07002859int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002860 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002861 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862{
2863 /*
2864 * We do not migrate tasks that are:
2865 * 1) running (obviously), or
2866 * 2) cannot be migrated to this CPU due to cpus_allowed, or
2867 * 3) are cache-hot on their current CPU.
2868 */
Ingo Molnarcc367732007-10-15 17:00:18 +02002869 if (!cpu_isset(this_cpu, p->cpus_allowed)) {
2870 schedstat_inc(p, se.nr_failed_migrations_affine);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002872 }
Nick Piggin81026792005-06-25 14:57:07 -07002873 *all_pinned = 0;
2874
Ingo Molnarcc367732007-10-15 17:00:18 +02002875 if (task_running(rq, p)) {
2876 schedstat_inc(p, se.nr_failed_migrations_running);
Nick Piggin81026792005-06-25 14:57:07 -07002877 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002878 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879
Ingo Molnarda84d962007-10-15 17:00:18 +02002880 /*
2881 * Aggressive migration if:
2882 * 1) task is cache cold, or
2883 * 2) too many balance attempts have failed.
2884 */
2885
Ingo Molnar6bc16652007-10-15 17:00:18 +02002886 if (!task_hot(p, rq->clock, sd) ||
2887 sd->nr_balance_failed > sd->cache_nice_tries) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002888#ifdef CONFIG_SCHEDSTATS
Ingo Molnarcc367732007-10-15 17:00:18 +02002889 if (task_hot(p, rq->clock, sd)) {
Ingo Molnarda84d962007-10-15 17:00:18 +02002890 schedstat_inc(sd, lb_hot_gained[idle]);
Ingo Molnarcc367732007-10-15 17:00:18 +02002891 schedstat_inc(p, se.nr_forced_migrations);
2892 }
Ingo Molnarda84d962007-10-15 17:00:18 +02002893#endif
2894 return 1;
2895 }
2896
Ingo Molnarcc367732007-10-15 17:00:18 +02002897 if (task_hot(p, rq->clock, sd)) {
2898 schedstat_inc(p, se.nr_failed_migrations_hot);
Ingo Molnarda84d962007-10-15 17:00:18 +02002899 return 0;
Ingo Molnarcc367732007-10-15 17:00:18 +02002900 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 return 1;
2902}
2903
Peter Williamse1d14842007-10-24 18:23:51 +02002904static unsigned long
2905balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
2906 unsigned long max_load_move, struct sched_domain *sd,
2907 enum cpu_idle_type idle, int *all_pinned,
2908 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02002909{
Peter Zijlstra051c6762008-06-27 13:41:31 +02002910 int loops = 0, pulled = 0, pinned = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002911 struct task_struct *p;
2912 long rem_load_move = max_load_move;
2913
Peter Williamse1d14842007-10-24 18:23:51 +02002914 if (max_load_move == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02002915 goto out;
2916
2917 pinned = 1;
2918
2919 /*
2920 * Start the load-balancing iterator:
2921 */
2922 p = iterator->start(iterator->arg);
2923next:
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002924 if (!p || loops++ > sysctl_sched_nr_migrate)
Ingo Molnardd41f592007-07-09 18:51:59 +02002925 goto out;
Peter Zijlstra051c6762008-06-27 13:41:31 +02002926
2927 if ((p->se.load.weight >> 1) > rem_load_move ||
Ingo Molnardd41f592007-07-09 18:51:59 +02002928 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002929 p = iterator->next(iterator->arg);
2930 goto next;
2931 }
2932
2933 pull_task(busiest, p, this_rq, this_cpu);
2934 pulled++;
2935 rem_load_move -= p->se.load.weight;
2936
2937 /*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +01002938 * We only want to steal up to the prescribed amount of weighted load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002939 */
Peter Williamse1d14842007-10-24 18:23:51 +02002940 if (rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002941 if (p->prio < *this_best_prio)
2942 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02002943 p = iterator->next(iterator->arg);
2944 goto next;
2945 }
2946out:
2947 /*
Peter Williamse1d14842007-10-24 18:23:51 +02002948 * Right now, this is one of only two places pull_task() is called,
Ingo Molnardd41f592007-07-09 18:51:59 +02002949 * so we can safely collect pull_task() stats here rather than
2950 * inside pull_task().
2951 */
2952 schedstat_add(sd, lb_gained[idle], pulled);
2953
2954 if (all_pinned)
2955 *all_pinned = pinned;
Peter Williamse1d14842007-10-24 18:23:51 +02002956
2957 return max_load_move - rem_load_move;
Ingo Molnardd41f592007-07-09 18:51:59 +02002958}
Ingo Molnar48f24c42006-07-03 00:25:40 -07002959
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960/*
Peter Williams43010652007-08-09 11:16:46 +02002961 * move_tasks tries to move up to max_load_move weighted load from busiest to
2962 * this_rq, as part of a balancing operation within domain "sd".
2963 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 *
2965 * Called with both runqueues locked.
2966 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002967static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02002968 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002969 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07002970 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002972 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02002973 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002974 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
Ingo Molnardd41f592007-07-09 18:51:59 +02002976 do {
Peter Williams43010652007-08-09 11:16:46 +02002977 total_load_moved +=
2978 class->load_balance(this_rq, this_cpu, busiest,
Peter Williamse1d14842007-10-24 18:23:51 +02002979 max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002980 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02002981 class = class->next;
Gregory Haskinsc4acb2c2008-06-27 14:29:55 -06002982
2983 if (idle == CPU_NEWLY_IDLE && this_rq->nr_running)
2984 break;
2985
Peter Williams43010652007-08-09 11:16:46 +02002986 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987
Peter Williams43010652007-08-09 11:16:46 +02002988 return total_load_moved > 0;
2989}
2990
Peter Williamse1d14842007-10-24 18:23:51 +02002991static int
2992iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2993 struct sched_domain *sd, enum cpu_idle_type idle,
2994 struct rq_iterator *iterator)
2995{
2996 struct task_struct *p = iterator->start(iterator->arg);
2997 int pinned = 0;
2998
2999 while (p) {
3000 if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
3001 pull_task(busiest, p, this_rq, this_cpu);
3002 /*
3003 * Right now, this is only the second place pull_task()
3004 * is called, so we can safely collect pull_task()
3005 * stats here rather than inside pull_task().
3006 */
3007 schedstat_inc(sd, lb_gained[idle]);
3008
3009 return 1;
3010 }
3011 p = iterator->next(iterator->arg);
3012 }
3013
3014 return 0;
3015}
3016
Peter Williams43010652007-08-09 11:16:46 +02003017/*
3018 * move_one_task tries to move exactly one task from busiest to this_rq, as
3019 * part of active balancing operations within "domain".
3020 * Returns 1 if successful and 0 otherwise.
3021 *
3022 * Called with both runqueues locked.
3023 */
3024static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
3025 struct sched_domain *sd, enum cpu_idle_type idle)
3026{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003027 const struct sched_class *class;
Peter Williams43010652007-08-09 11:16:46 +02003028
3029 for (class = sched_class_highest; class; class = class->next)
Peter Williamse1d14842007-10-24 18:23:51 +02003030 if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle))
Peter Williams43010652007-08-09 11:16:46 +02003031 return 1;
3032
3033 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034}
3035
3036/*
3037 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07003038 * domain. It calculates and returns the amount of weighted load which
3039 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 */
3041static struct sched_group *
3042find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02003043 unsigned long *imbalance, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003044 int *sd_idle, const cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045{
3046 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
3047 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003048 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07003049 unsigned long busiest_load_per_task, busiest_nr_running;
3050 unsigned long this_load_per_task, this_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003051 int load_idx, group_imb = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003052#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3053 int power_savings_balance = 1;
3054 unsigned long leader_nr_running = 0, min_load_per_task = 0;
3055 unsigned long min_nr_running = ULONG_MAX;
3056 struct sched_group *group_min = NULL, *group_leader = NULL;
3057#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058
3059 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07003060 busiest_load_per_task = busiest_nr_running = 0;
3061 this_load_per_task = this_nr_running = 0;
Peter Zijlstra408ed062008-06-27 13:41:28 +02003062
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003063 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07003064 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003065 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07003066 load_idx = sd->newidle_idx;
3067 else
3068 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069
3070 do {
Ken Chen908a7c12007-10-17 16:55:11 +02003071 unsigned long load, group_capacity, max_cpu_load, min_cpu_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 int local_group;
3073 int i;
Ken Chen908a7c12007-10-17 16:55:11 +02003074 int __group_imb = 0;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003075 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07003076 unsigned long sum_nr_running, sum_weighted_load;
Peter Zijlstra408ed062008-06-27 13:41:28 +02003077 unsigned long sum_avg_load_per_task;
3078 unsigned long avg_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079
3080 local_group = cpu_isset(this_cpu, group->cpumask);
3081
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003082 if (local_group)
3083 balance_cpu = first_cpu(group->cpumask);
3084
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07003086 sum_weighted_load = sum_nr_running = avg_load = 0;
Peter Zijlstra408ed062008-06-27 13:41:28 +02003087 sum_avg_load_per_task = avg_load_per_task = 0;
3088
Ken Chen908a7c12007-10-17 16:55:11 +02003089 max_cpu_load = 0;
3090 min_cpu_load = ~0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091
Mike Travis363ab6f2008-05-12 21:21:13 +02003092 for_each_cpu_mask_nr(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003093 struct rq *rq;
3094
3095 if (!cpu_isset(i, *cpus))
3096 continue;
3097
3098 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07003099
Suresh Siddha9439aab2007-07-19 21:28:35 +02003100 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07003101 *sd_idle = 0;
3102
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003104 if (local_group) {
3105 if (idle_cpu(i) && !first_idle_cpu) {
3106 first_idle_cpu = 1;
3107 balance_cpu = i;
3108 }
3109
Nick Piggina2000572006-02-10 01:51:02 -08003110 load = target_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02003111 } else {
Nick Piggina2000572006-02-10 01:51:02 -08003112 load = source_load(i, load_idx);
Ken Chen908a7c12007-10-17 16:55:11 +02003113 if (load > max_cpu_load)
3114 max_cpu_load = load;
3115 if (min_cpu_load > load)
3116 min_cpu_load = load;
3117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118
3119 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07003120 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003121 sum_weighted_load += weighted_cpuload(i);
Peter Zijlstra408ed062008-06-27 13:41:28 +02003122
3123 sum_avg_load_per_task += cpu_avg_load_per_task(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 }
3125
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003126 /*
3127 * First idle cpu or the first cpu(busiest) in this sched group
3128 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02003129 * domains. In the newly idle case, we will allow all the cpu's
3130 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003131 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02003132 if (idle != CPU_NEWLY_IDLE && local_group &&
3133 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003134 *balance = 0;
3135 goto ret;
3136 }
3137
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07003139 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140
3141 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07003142 avg_load = sg_div_cpu_power(group,
3143 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144
Peter Zijlstra408ed062008-06-27 13:41:28 +02003145
3146 /*
3147 * Consider the group unbalanced when the imbalance is larger
3148 * than the average weight of two tasks.
3149 *
3150 * APZ: with cgroup the avg task weight can vary wildly and
3151 * might not be a suitable number - should we keep a
3152 * normalized nr_running number somewhere that negates
3153 * the hierarchy?
3154 */
3155 avg_load_per_task = sg_div_cpu_power(group,
3156 sum_avg_load_per_task * SCHED_LOAD_SCALE);
3157
3158 if ((max_cpu_load - min_cpu_load) > 2*avg_load_per_task)
Ken Chen908a7c12007-10-17 16:55:11 +02003159 __group_imb = 1;
3160
Eric Dumazet5517d862007-05-08 00:32:57 -07003161 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003162
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163 if (local_group) {
3164 this_load = avg_load;
3165 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003166 this_nr_running = sum_nr_running;
3167 this_load_per_task = sum_weighted_load;
3168 } else if (avg_load > max_load &&
Ken Chen908a7c12007-10-17 16:55:11 +02003169 (sum_nr_running > group_capacity || __group_imb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 max_load = avg_load;
3171 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07003172 busiest_nr_running = sum_nr_running;
3173 busiest_load_per_task = sum_weighted_load;
Ken Chen908a7c12007-10-17 16:55:11 +02003174 group_imb = __group_imb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003176
3177#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
3178 /*
3179 * Busy processors will not participate in power savings
3180 * balance.
3181 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003182 if (idle == CPU_NOT_IDLE ||
3183 !(sd->flags & SD_POWERSAVINGS_BALANCE))
3184 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003185
3186 /*
3187 * If the local group is idle or completely loaded
3188 * no need to do power savings balance at this domain
3189 */
3190 if (local_group && (this_nr_running >= group_capacity ||
3191 !this_nr_running))
3192 power_savings_balance = 0;
3193
Ingo Molnardd41f592007-07-09 18:51:59 +02003194 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003195 * If a group is already running at full capacity or idle,
3196 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02003197 */
3198 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003199 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02003200 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003201
Ingo Molnardd41f592007-07-09 18:51:59 +02003202 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003203 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02003204 * This is the group from where we need to pick up the load
3205 * for saving power
3206 */
3207 if ((sum_nr_running < min_nr_running) ||
3208 (sum_nr_running == min_nr_running &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003209 first_cpu(group->cpumask) <
3210 first_cpu(group_min->cpumask))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003211 group_min = group;
3212 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003213 min_load_per_task = sum_weighted_load /
3214 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02003215 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003216
Ingo Molnardd41f592007-07-09 18:51:59 +02003217 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003218 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02003219 * capacity but still has some space to pick up some load
3220 * from other group and save more power
3221 */
3222 if (sum_nr_running <= group_capacity - 1) {
3223 if (sum_nr_running > leader_nr_running ||
3224 (sum_nr_running == leader_nr_running &&
3225 first_cpu(group->cpumask) >
3226 first_cpu(group_leader->cpumask))) {
3227 group_leader = group;
3228 leader_nr_running = sum_nr_running;
3229 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07003230 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003231group_next:
3232#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 group = group->next;
3234 } while (group != sd->groups);
3235
Peter Williams2dd73a42006-06-27 02:54:34 -07003236 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 goto out_balanced;
3238
3239 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
3240
3241 if (this_load >= avg_load ||
3242 100*max_load <= sd->imbalance_pct*this_load)
3243 goto out_balanced;
3244
Peter Williams2dd73a42006-06-27 02:54:34 -07003245 busiest_load_per_task /= busiest_nr_running;
Ken Chen908a7c12007-10-17 16:55:11 +02003246 if (group_imb)
3247 busiest_load_per_task = min(busiest_load_per_task, avg_load);
3248
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 /*
3250 * We're trying to get all the cpus to the average_load, so we don't
3251 * want to push ourselves above the average load, nor do we wish to
3252 * reduce the max loaded cpu below the average load, as either of these
3253 * actions would just result in more rebalancing later, and ping-pong
3254 * tasks around. Thus we look for the minimum possible imbalance.
3255 * Negative imbalances (*we* are more loaded than anyone else) will
3256 * be counted as no imbalance for these purposes -- we can't fix that
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003257 * by pulling tasks to us. Be careful of negative numbers as they'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 * appear as very large values with unsigned longs.
3259 */
Peter Williams2dd73a42006-06-27 02:54:34 -07003260 if (max_load <= busiest_load_per_task)
3261 goto out_balanced;
3262
3263 /*
3264 * In the presence of smp nice balancing, certain scenarios can have
3265 * max load less than avg load(as we skip the groups at or below
3266 * its cpu_power, while calculating max_load..)
3267 */
3268 if (max_load < avg_load) {
3269 *imbalance = 0;
3270 goto small_imbalance;
3271 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003272
3273 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07003274 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07003275
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07003277 *imbalance = min(max_pull * busiest->__cpu_power,
3278 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 / SCHED_LOAD_SCALE;
3280
Peter Williams2dd73a42006-06-27 02:54:34 -07003281 /*
3282 * if *imbalance is less than the average load per runnable task
3283 * there is no gaurantee that any tasks will be moved so we'll have
3284 * a think about bumping its value to force at least one task to be
3285 * moved
3286 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003287 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07003288 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07003289 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290
Peter Williams2dd73a42006-06-27 02:54:34 -07003291small_imbalance:
3292 pwr_move = pwr_now = 0;
3293 imbn = 2;
3294 if (this_nr_running) {
3295 this_load_per_task /= this_nr_running;
3296 if (busiest_load_per_task > this_load_per_task)
3297 imbn = 1;
3298 } else
Peter Zijlstra408ed062008-06-27 13:41:28 +02003299 this_load_per_task = cpu_avg_load_per_task(this_cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07003300
Peter Zijlstra408ed062008-06-27 13:41:28 +02003301 if (max_load - this_load + 2*busiest_load_per_task >=
Ingo Molnardd41f592007-07-09 18:51:59 +02003302 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07003303 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 return busiest;
3305 }
3306
3307 /*
3308 * OK, we don't have enough imbalance to justify moving tasks,
3309 * however we may be able to increase total CPU power used by
3310 * moving them.
3311 */
3312
Eric Dumazet5517d862007-05-08 00:32:57 -07003313 pwr_now += busiest->__cpu_power *
3314 min(busiest_load_per_task, max_load);
3315 pwr_now += this->__cpu_power *
3316 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 pwr_now /= SCHED_LOAD_SCALE;
3318
3319 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07003320 tmp = sg_div_cpu_power(busiest,
3321 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07003323 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07003324 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325
3326 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07003327 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003328 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07003329 tmp = sg_div_cpu_power(this,
3330 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331 else
Eric Dumazet5517d862007-05-08 00:32:57 -07003332 tmp = sg_div_cpu_power(this,
3333 busiest_load_per_task * SCHED_LOAD_SCALE);
3334 pwr_move += this->__cpu_power *
3335 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336 pwr_move /= SCHED_LOAD_SCALE;
3337
3338 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02003339 if (pwr_move > pwr_now)
3340 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341 }
3342
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 return busiest;
3344
3345out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003346#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003347 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003348 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003350 if (this == group_leader && group_leader != group_min) {
3351 *imbalance = min_load_per_task;
3352 return group_min;
3353 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07003354#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003355ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356 *imbalance = 0;
3357 return NULL;
3358}
3359
3360/*
3361 * find_busiest_queue - find the busiest runqueue among the cpus in group.
3362 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003363static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003364find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003365 unsigned long imbalance, const cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003367 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07003368 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369 int i;
3370
Mike Travis363ab6f2008-05-12 21:21:13 +02003371 for_each_cpu_mask_nr(i, group->cpumask) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003372 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003373
3374 if (!cpu_isset(i, *cpus))
3375 continue;
3376
Ingo Molnar48f24c42006-07-03 00:25:40 -07003377 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02003378 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379
Ingo Molnardd41f592007-07-09 18:51:59 +02003380 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07003381 continue;
3382
Ingo Molnardd41f592007-07-09 18:51:59 +02003383 if (wl > max_load) {
3384 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003385 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 }
3387 }
3388
3389 return busiest;
3390}
3391
3392/*
Nick Piggin77391d72005-06-25 14:57:30 -07003393 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
3394 * so long as it is large enough.
3395 */
3396#define MAX_PINNED_INTERVAL 512
3397
3398/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3400 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003402static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003403 struct sched_domain *sd, enum cpu_idle_type idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003404 int *balance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405{
Peter Williams43010652007-08-09 11:16:46 +02003406 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003409 struct rq *busiest;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003410 unsigned long flags;
Nick Piggin5969fe02005-09-10 00:26:19 -07003411
Mike Travis7c16ec52008-04-04 18:11:11 -07003412 cpus_setall(*cpus);
3413
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003414 /*
3415 * When power savings policy is enabled for the parent domain, idle
3416 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02003417 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003418 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003419 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003420 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003421 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003422 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423
Ingo Molnar2d723762007-10-15 17:00:12 +02003424 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003426redo:
Peter Zijlstrac8cba852008-06-27 13:41:23 +02003427 update_shares(sd);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003428 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Mike Travis7c16ec52008-04-04 18:11:11 -07003429 cpus, balance);
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003430
Chen, Kenneth W06066712006-12-10 02:20:35 -08003431 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003432 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003433
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 if (!group) {
3435 schedstat_inc(sd, lb_nobusyg[idle]);
3436 goto out_balanced;
3437 }
3438
Mike Travis7c16ec52008-04-04 18:11:11 -07003439 busiest = find_busiest_queue(group, idle, imbalance, cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440 if (!busiest) {
3441 schedstat_inc(sd, lb_nobusyq[idle]);
3442 goto out_balanced;
3443 }
3444
Nick Piggindb935db2005-06-25 14:57:11 -07003445 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446
3447 schedstat_add(sd, lb_imbalance[idle], imbalance);
3448
Peter Williams43010652007-08-09 11:16:46 +02003449 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 if (busiest->nr_running > 1) {
3451 /*
3452 * Attempt to move tasks. If find_busiest_group has found
3453 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02003454 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455 * correctly treated as an imbalance.
3456 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003457 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07003458 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02003459 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07003460 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07003461 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003462 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07003463
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003464 /*
3465 * some other cpu did the load balance for us.
3466 */
Peter Williams43010652007-08-09 11:16:46 +02003467 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003468 resched_cpu(this_cpu);
3469
Nick Piggin81026792005-06-25 14:57:07 -07003470 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003471 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003472 cpu_clear(cpu_of(busiest), *cpus);
3473 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003474 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07003475 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477 }
Nick Piggin81026792005-06-25 14:57:07 -07003478
Peter Williams43010652007-08-09 11:16:46 +02003479 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480 schedstat_inc(sd, lb_failed[idle]);
3481 sd->nr_balance_failed++;
3482
3483 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003485 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003486
3487 /* don't kick the migration_thread, if the curr
3488 * task on busiest cpu can't be moved to this_cpu
3489 */
3490 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003491 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003492 all_pinned = 1;
3493 goto out_one_pinned;
3494 }
3495
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496 if (!busiest->active_balance) {
3497 busiest->active_balance = 1;
3498 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07003499 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08003501 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07003502 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 wake_up_process(busiest->migration_thread);
3504
3505 /*
3506 * We've kicked active balancing, reset the failure
3507 * counter.
3508 */
Nick Piggin39507452005-06-25 14:57:09 -07003509 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 }
Nick Piggin81026792005-06-25 14:57:07 -07003511 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 sd->nr_balance_failed = 0;
3513
Nick Piggin81026792005-06-25 14:57:07 -07003514 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 /* We were unbalanced, so reset the balancing interval */
3516 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07003517 } else {
3518 /*
3519 * If we've begun active balancing, start to back off. This
3520 * case may not be covered by the all_pinned logic if there
3521 * is only 1 task on the busy runqueue (because we don't call
3522 * move_tasks).
3523 */
3524 if (sd->balance_interval < sd->max_interval)
3525 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 }
3527
Peter Williams43010652007-08-09 11:16:46 +02003528 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003529 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003530 ld_moved = -1;
3531
3532 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533
3534out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535 schedstat_inc(sd, lb_balanced[idle]);
3536
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003537 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003538
3539out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07003541 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
3542 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543 sd->balance_interval *= 2;
3544
Ingo Molnar48f24c42006-07-03 00:25:40 -07003545 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003546 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003547 ld_moved = -1;
3548 else
3549 ld_moved = 0;
3550out:
Peter Zijlstrac8cba852008-06-27 13:41:23 +02003551 if (ld_moved)
3552 update_shares(sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02003553 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554}
3555
3556/*
3557 * Check this_cpu to ensure it is balanced within domain. Attempt to move
3558 * tasks if there is an imbalance.
3559 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003560 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 * this_rq is locked.
3562 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003563static int
Mike Travis7c16ec52008-04-04 18:11:11 -07003564load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd,
3565 cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566{
3567 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003568 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02003570 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07003571 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003572 int all_pinned = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07003573
3574 cpus_setall(*cpus);
Nick Piggin5969fe02005-09-10 00:26:19 -07003575
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003576 /*
3577 * When power savings policy is enabled for the parent domain, idle
3578 * sibling can pick up load irrespective of busy siblings. In this case,
3579 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003580 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003581 */
3582 if (sd->flags & SD_SHARE_CPUPOWER &&
3583 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003584 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585
Ingo Molnar2d723762007-10-15 17:00:12 +02003586 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003587redo:
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02003588 update_shares_locked(this_rq, sd);
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003589 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Mike Travis7c16ec52008-04-04 18:11:11 -07003590 &sd_idle, cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003592 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003593 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594 }
3595
Mike Travis7c16ec52008-04-04 18:11:11 -07003596 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance, cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07003597 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003598 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003599 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600 }
3601
Nick Piggindb935db2005-06-25 14:57:11 -07003602 BUG_ON(busiest == this_rq);
3603
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003604 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003605
Peter Williams43010652007-08-09 11:16:46 +02003606 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003607 if (busiest->nr_running > 1) {
3608 /* Attempt to move tasks */
3609 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003610 /* this_rq->clock is already updated */
3611 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02003612 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003613 imbalance, sd, CPU_NEWLY_IDLE,
3614 &all_pinned);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003615 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003616
Suresh Siddha969bb4e2007-07-19 21:28:35 +02003617 if (unlikely(all_pinned)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003618 cpu_clear(cpu_of(busiest), *cpus);
3619 if (!cpus_empty(*cpus))
Christoph Lameter0a2966b2006-09-25 23:30:51 -07003620 goto redo;
3621 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07003622 }
3623
Peter Williams43010652007-08-09 11:16:46 +02003624 if (!ld_moved) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003625 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003626 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
3627 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003628 return -1;
3629 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003630 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631
Peter Zijlstra3e5459b2008-06-27 13:41:24 +02003632 update_shares_locked(this_rq, sd);
Peter Williams43010652007-08-09 11:16:46 +02003633 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003634
3635out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003636 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003637 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07003638 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07003639 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003640 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003641
Nick Piggin16cfb1c2005-06-25 14:57:08 -07003642 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643}
3644
3645/*
3646 * idle_balance is called by schedule() if this_cpu is about to become
3647 * idle. Attempts to pull tasks from other CPUs.
3648 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003649static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650{
3651 struct sched_domain *sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02003652 int pulled_task = -1;
3653 unsigned long next_balance = jiffies + HZ;
Mike Travis7c16ec52008-04-04 18:11:11 -07003654 cpumask_t tmpmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655
3656 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003657 unsigned long interval;
3658
3659 if (!(sd->flags & SD_LOAD_BALANCE))
3660 continue;
3661
3662 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003663 /* If we've pulled tasks over stop searching: */
Mike Travis7c16ec52008-04-04 18:11:11 -07003664 pulled_task = load_balance_newidle(this_cpu, this_rq,
3665 sd, &tmpmask);
Christoph Lameter92c4ca52007-06-23 17:16:33 -07003666
3667 interval = msecs_to_jiffies(sd->balance_interval);
3668 if (time_after(next_balance, sd->last_balance + interval))
3669 next_balance = sd->last_balance + interval;
3670 if (pulled_task)
3671 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003673 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003674 /*
3675 * We are going idle. next_balance may be set based on
3676 * a busy processor. So reset next_balance.
3677 */
3678 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02003679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680}
3681
3682/*
3683 * active_load_balance is run by migration threads. It pushes running tasks
3684 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
3685 * running on each physical CPU where possible, and avoids physical /
3686 * logical imbalances.
3687 *
3688 * Called with busiest_rq locked.
3689 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003690static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691{
Nick Piggin39507452005-06-25 14:57:09 -07003692 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003693 struct sched_domain *sd;
3694 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07003695
Ingo Molnar48f24c42006-07-03 00:25:40 -07003696 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07003697 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07003698 return;
3699
3700 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701
3702 /*
Nick Piggin39507452005-06-25 14:57:09 -07003703 * This condition is "impossible", if it occurs
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003704 * we need to fix it. Originally reported by
Nick Piggin39507452005-06-25 14:57:09 -07003705 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706 */
Nick Piggin39507452005-06-25 14:57:09 -07003707 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708
Nick Piggin39507452005-06-25 14:57:09 -07003709 /* move a task from busiest_rq to target_rq */
3710 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02003711 update_rq_clock(busiest_rq);
3712 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713
Nick Piggin39507452005-06-25 14:57:09 -07003714 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003715 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07003716 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003717 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07003718 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720
Ingo Molnar48f24c42006-07-03 00:25:40 -07003721 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003722 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723
Peter Williams43010652007-08-09 11:16:46 +02003724 if (move_one_task(target_rq, target_cpu, busiest_rq,
3725 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07003726 schedstat_inc(sd, alb_pushed);
3727 else
3728 schedstat_inc(sd, alb_failed);
3729 }
Nick Piggin39507452005-06-25 14:57:09 -07003730 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731}
3732
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003733#ifdef CONFIG_NO_HZ
3734static struct {
3735 atomic_t load_balancer;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003736 cpumask_t cpu_mask;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003737} nohz ____cacheline_aligned = {
3738 .load_balancer = ATOMIC_INIT(-1),
3739 .cpu_mask = CPU_MASK_NONE,
3740};
3741
Christoph Lameter7835b982006-12-10 02:20:22 -08003742/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003743 * This routine will try to nominate the ilb (idle load balancing)
3744 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
3745 * load balancing on behalf of all those cpus. If all the cpus in the system
3746 * go into this tickless mode, then there will be no ilb owner (as there is
3747 * no need for one) and all the cpus will sleep till the next wakeup event
3748 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08003749 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003750 * For the ilb owner, tick is not stopped. And this tick will be used
3751 * for idle load balancing. ilb owner will still be part of
3752 * nohz.cpu_mask..
3753 *
3754 * While stopping the tick, this cpu will become the ilb owner if there
3755 * is no other owner. And will be the owner till that cpu becomes busy
3756 * or if all cpus in the system stop their ticks at which point
3757 * there is no need for ilb owner.
3758 *
3759 * When the ilb owner becomes busy, it nominates another owner, during the
3760 * next busy scheduler_tick()
3761 */
3762int select_nohz_load_balancer(int stop_tick)
3763{
3764 int cpu = smp_processor_id();
3765
3766 if (stop_tick) {
3767 cpu_set(cpu, nohz.cpu_mask);
3768 cpu_rq(cpu)->in_nohz_recently = 1;
3769
3770 /*
3771 * If we are going offline and still the leader, give up!
3772 */
Max Krasnyanskye761b772008-07-15 04:43:49 -07003773 if (!cpu_active(cpu) &&
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003774 atomic_read(&nohz.load_balancer) == cpu) {
3775 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3776 BUG();
3777 return 0;
3778 }
3779
3780 /* time for ilb owner also to sleep */
3781 if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3782 if (atomic_read(&nohz.load_balancer) == cpu)
3783 atomic_set(&nohz.load_balancer, -1);
3784 return 0;
3785 }
3786
3787 if (atomic_read(&nohz.load_balancer) == -1) {
3788 /* make me the ilb owner */
3789 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
3790 return 1;
3791 } else if (atomic_read(&nohz.load_balancer) == cpu)
3792 return 1;
3793 } else {
3794 if (!cpu_isset(cpu, nohz.cpu_mask))
3795 return 0;
3796
3797 cpu_clear(cpu, nohz.cpu_mask);
3798
3799 if (atomic_read(&nohz.load_balancer) == cpu)
3800 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3801 BUG();
3802 }
3803 return 0;
3804}
3805#endif
3806
3807static DEFINE_SPINLOCK(balancing);
3808
3809/*
Christoph Lameter7835b982006-12-10 02:20:22 -08003810 * It checks each scheduling domain to see if it is due to be balanced,
3811 * and initiates a balancing operation if so.
3812 *
3813 * Balancing parameters are set up in arch_init_sched_domains.
3814 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02003815static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08003816{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003817 int balance = 1;
3818 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08003819 unsigned long interval;
3820 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003821 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08003822 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003823 int update_next_balance = 0;
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02003824 int need_serialize;
Mike Travis7c16ec52008-04-04 18:11:11 -07003825 cpumask_t tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003827 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828 if (!(sd->flags & SD_LOAD_BALANCE))
3829 continue;
3830
3831 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003832 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833 interval *= sd->busy_factor;
3834
3835 /* scale ms to jiffies */
3836 interval = msecs_to_jiffies(interval);
3837 if (unlikely(!interval))
3838 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02003839 if (interval > HZ*NR_CPUS/10)
3840 interval = HZ*NR_CPUS/10;
3841
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02003842 need_serialize = sd->flags & SD_SERIALIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02003844 if (need_serialize) {
Christoph Lameter08c183f2006-12-10 02:20:29 -08003845 if (!spin_trylock(&balancing))
3846 goto out;
3847 }
3848
Christoph Lameterc9819f42006-12-10 02:20:25 -08003849 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07003850 if (load_balance(cpu, rq, sd, idle, &balance, &tmp)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003851 /*
3852 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07003853 * longer idle, or one of our SMT siblings is
3854 * not idle.
3855 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003856 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003858 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859 }
Dmitry Adamushkod07355f2008-05-12 21:21:15 +02003860 if (need_serialize)
Christoph Lameter08c183f2006-12-10 02:20:29 -08003861 spin_unlock(&balancing);
3862out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02003863 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08003864 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003865 update_next_balance = 1;
3866 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003867
3868 /*
3869 * Stop the load balance at this level. There is another
3870 * CPU in our sched group which is doing load balancing more
3871 * actively.
3872 */
3873 if (!balance)
3874 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02003876
3877 /*
3878 * next_balance will be updated only when there is a need.
3879 * When the cpu is attached to null domain for ex, it will not be
3880 * updated.
3881 */
3882 if (likely(update_next_balance))
3883 rq->next_balance = next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003884}
3885
3886/*
3887 * run_rebalance_domains is triggered when needed from the scheduler tick.
3888 * In CONFIG_NO_HZ case, the idle load balance owner will do the
3889 * rebalancing for all the cpus for whom scheduler ticks are stopped.
3890 */
3891static void run_rebalance_domains(struct softirq_action *h)
3892{
Ingo Molnardd41f592007-07-09 18:51:59 +02003893 int this_cpu = smp_processor_id();
3894 struct rq *this_rq = cpu_rq(this_cpu);
3895 enum cpu_idle_type idle = this_rq->idle_at_tick ?
3896 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003897
Ingo Molnardd41f592007-07-09 18:51:59 +02003898 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003899
3900#ifdef CONFIG_NO_HZ
3901 /*
3902 * If this cpu is the owner for idle load balancing, then do the
3903 * balancing on behalf of the other idle cpus whose ticks are
3904 * stopped.
3905 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003906 if (this_rq->idle_at_tick &&
3907 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003908 cpumask_t cpus = nohz.cpu_mask;
3909 struct rq *rq;
3910 int balance_cpu;
3911
Ingo Molnardd41f592007-07-09 18:51:59 +02003912 cpu_clear(this_cpu, cpus);
Mike Travis363ab6f2008-05-12 21:21:13 +02003913 for_each_cpu_mask_nr(balance_cpu, cpus) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003914 /*
3915 * If this cpu gets work to do, stop the load balancing
3916 * work being done for other cpus. Next load
3917 * balancing owner will pick it up.
3918 */
3919 if (need_resched())
3920 break;
3921
Oleg Nesterovde0cf892007-08-12 18:08:19 +02003922 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003923
3924 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003925 if (time_after(this_rq->next_balance, rq->next_balance))
3926 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003927 }
3928 }
3929#endif
3930}
3931
3932/*
3933 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
3934 *
3935 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
3936 * idle load balancing owner or decide to stop the periodic load balancing,
3937 * if the whole system is idle.
3938 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003939static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003940{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003941#ifdef CONFIG_NO_HZ
3942 /*
3943 * If we were in the nohz mode recently and busy at the current
3944 * scheduler tick, then check if we need to nominate new idle
3945 * load balancer.
3946 */
3947 if (rq->in_nohz_recently && !rq->idle_at_tick) {
3948 rq->in_nohz_recently = 0;
3949
3950 if (atomic_read(&nohz.load_balancer) == cpu) {
3951 cpu_clear(cpu, nohz.cpu_mask);
3952 atomic_set(&nohz.load_balancer, -1);
3953 }
3954
3955 if (atomic_read(&nohz.load_balancer) == -1) {
3956 /*
3957 * simple selection for now: Nominate the
3958 * first cpu in the nohz list to be the next
3959 * ilb owner.
3960 *
3961 * TBD: Traverse the sched domains and nominate
3962 * the nearest cpu in the nohz.cpu_mask.
3963 */
3964 int ilb = first_cpu(nohz.cpu_mask);
3965
Mike Travis434d53b2008-04-04 18:11:04 -07003966 if (ilb < nr_cpu_ids)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003967 resched_cpu(ilb);
3968 }
3969 }
3970
3971 /*
3972 * If this cpu is idle and doing idle load balancing for all the
3973 * cpus with ticks stopped, is it time for that to stop?
3974 */
3975 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
3976 cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3977 resched_cpu(cpu);
3978 return;
3979 }
3980
3981 /*
3982 * If this cpu is idle and the idle load balancing is done by
3983 * someone else, then no need raise the SCHED_SOFTIRQ
3984 */
3985 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
3986 cpu_isset(cpu, nohz.cpu_mask))
3987 return;
3988#endif
3989 if (time_after_eq(jiffies, rq->next_balance))
3990 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991}
Ingo Molnardd41f592007-07-09 18:51:59 +02003992
3993#else /* CONFIG_SMP */
3994
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995/*
3996 * on UP we do not need to balance between CPUs:
3997 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003998static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999{
4000}
Ingo Molnardd41f592007-07-09 18:51:59 +02004001
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002#endif
4003
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004DEFINE_PER_CPU(struct kernel_stat, kstat);
4005
4006EXPORT_PER_CPU_SYMBOL(kstat);
4007
4008/*
Ingo Molnar41b86e92007-07-09 18:51:58 +02004009 * Return p->sum_exec_runtime plus any more ns on the sched_clock
4010 * that have not yet been banked in case the task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 */
Ingo Molnar41b86e92007-07-09 18:51:58 +02004012unsigned long long task_sched_runtime(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004015 u64 ns, delta_exec;
4016 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004017
Ingo Molnar41b86e92007-07-09 18:51:58 +02004018 rq = task_rq_lock(p, &flags);
4019 ns = p->se.sum_exec_runtime;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004020 if (task_current(rq, p)) {
Ingo Molnara8e504d2007-08-09 11:16:47 +02004021 update_rq_clock(rq);
4022 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02004023 if ((s64)delta_exec > 0)
4024 ns += delta_exec;
4025 }
4026 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004027
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028 return ns;
4029}
4030
4031/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032 * Account user cpu time to a process.
4033 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034 * @cputime: the cpu time spent in user space since the last update
4035 */
4036void account_user_time(struct task_struct *p, cputime_t cputime)
4037{
4038 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4039 cputime64_t tmp;
4040
4041 p->utime = cputime_add(p->utime, cputime);
4042
4043 /* Add user time to cpustat. */
4044 tmp = cputime_to_cputime64(cputime);
4045 if (TASK_NICE(p) > 0)
4046 cpustat->nice = cputime64_add(cpustat->nice, tmp);
4047 else
4048 cpustat->user = cputime64_add(cpustat->user, tmp);
Jonathan Lim49b5cf32008-07-25 01:48:40 -07004049 /* Account for user time used */
4050 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051}
4052
4053/*
Laurent Vivier94886b82007-10-15 17:00:19 +02004054 * Account guest cpu time to a process.
4055 * @p: the process that the cpu time gets accounted to
4056 * @cputime: the cpu time spent in virtual machine since the last update
4057 */
Adrian Bunkf7402e02007-10-29 21:18:10 +01004058static void account_guest_time(struct task_struct *p, cputime_t cputime)
Laurent Vivier94886b82007-10-15 17:00:19 +02004059{
4060 cputime64_t tmp;
4061 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4062
4063 tmp = cputime_to_cputime64(cputime);
4064
4065 p->utime = cputime_add(p->utime, cputime);
4066 p->gtime = cputime_add(p->gtime, cputime);
4067
4068 cpustat->user = cputime64_add(cpustat->user, tmp);
4069 cpustat->guest = cputime64_add(cpustat->guest, tmp);
4070}
4071
4072/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07004073 * Account scaled user cpu time to a process.
4074 * @p: the process that the cpu time gets accounted to
4075 * @cputime: the cpu time spent in user space since the last update
4076 */
4077void account_user_time_scaled(struct task_struct *p, cputime_t cputime)
4078{
4079 p->utimescaled = cputime_add(p->utimescaled, cputime);
4080}
4081
4082/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083 * Account system cpu time to a process.
4084 * @p: the process that the cpu time gets accounted to
4085 * @hardirq_offset: the offset to subtract from hardirq_count()
4086 * @cputime: the cpu time spent in kernel space since the last update
4087 */
4088void account_system_time(struct task_struct *p, int hardirq_offset,
4089 cputime_t cputime)
4090{
4091 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004092 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 cputime64_t tmp;
4094
Harvey Harrison983ed7a2008-04-24 18:17:55 -07004095 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) {
4096 account_guest_time(p, cputime);
4097 return;
4098 }
Laurent Vivier94886b82007-10-15 17:00:19 +02004099
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100 p->stime = cputime_add(p->stime, cputime);
4101
4102 /* Add system time to cpustat. */
4103 tmp = cputime_to_cputime64(cputime);
4104 if (hardirq_count() - hardirq_offset)
4105 cpustat->irq = cputime64_add(cpustat->irq, tmp);
4106 else if (softirq_count())
4107 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004108 else if (p != rq->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 cpustat->system = cputime64_add(cpustat->system, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004110 else if (atomic_read(&rq->nr_iowait) > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
4112 else
4113 cpustat->idle = cputime64_add(cpustat->idle, tmp);
4114 /* Account for system time used */
4115 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116}
4117
4118/*
Michael Neulingc66f08b2007-10-18 03:06:34 -07004119 * Account scaled system cpu time to a process.
4120 * @p: the process that the cpu time gets accounted to
4121 * @hardirq_offset: the offset to subtract from hardirq_count()
4122 * @cputime: the cpu time spent in kernel space since the last update
4123 */
4124void account_system_time_scaled(struct task_struct *p, cputime_t cputime)
4125{
4126 p->stimescaled = cputime_add(p->stimescaled, cputime);
4127}
4128
4129/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130 * Account for involuntary wait time.
4131 * @p: the process from which the cpu time has been stolen
4132 * @steal: the cpu time spent in involuntary wait
4133 */
4134void account_steal_time(struct task_struct *p, cputime_t steal)
4135{
4136 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4137 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07004138 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139
4140 if (p == rq->idle) {
4141 p->stime = cputime_add(p->stime, steal);
4142 if (atomic_read(&rq->nr_iowait) > 0)
4143 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
4144 else
4145 cpustat->idle = cputime64_add(cpustat->idle, tmp);
Andrew Mortoncfb52852007-11-14 16:59:45 -08004146 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147 cpustat->steal = cputime64_add(cpustat->steal, tmp);
4148}
4149
Christoph Lameter7835b982006-12-10 02:20:22 -08004150/*
4151 * This function gets called by the timer code, with HZ frequency.
4152 * We call it with interrupts disabled.
4153 *
4154 * It also gets called by the fork code, when changing the parent's
4155 * timeslices.
4156 */
4157void scheduler_tick(void)
4158{
Christoph Lameter7835b982006-12-10 02:20:22 -08004159 int cpu = smp_processor_id();
4160 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004161 struct task_struct *curr = rq->curr;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004162
4163 sched_clock_tick();
Christoph Lameter7835b982006-12-10 02:20:22 -08004164
Ingo Molnardd41f592007-07-09 18:51:59 +02004165 spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004166 update_rq_clock(rq);
Ingo Molnarf1a438d2007-08-09 11:16:45 +02004167 update_cpu_load(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01004168 curr->sched_class->task_tick(rq, curr, 0);
Ingo Molnardd41f592007-07-09 18:51:59 +02004169 spin_unlock(&rq->lock);
4170
Christoph Lametere418e1c2006-12-10 02:20:23 -08004171#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02004172 rq->idle_at_tick = idle_cpu(cpu);
4173 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08004174#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175}
4176
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004177#if defined(CONFIG_PREEMPT) && (defined(CONFIG_DEBUG_PREEMPT) || \
4178 defined(CONFIG_PREEMPT_TRACER))
4179
4180static inline unsigned long get_parent_ip(unsigned long addr)
4181{
4182 if (in_lock_functions(addr)) {
4183 addr = CALLER_ADDR2;
4184 if (in_lock_functions(addr))
4185 addr = CALLER_ADDR3;
4186 }
4187 return addr;
4188}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189
Srinivasa Ds43627582008-02-23 15:24:04 -08004190void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004192#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193 /*
4194 * Underflow?
4195 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004196 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
4197 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004198#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199 preempt_count() += val;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004200#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201 /*
4202 * Spinlock count overflowing soon?
4203 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08004204 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
4205 PREEMPT_MASK - 10);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004206#endif
4207 if (preempt_count() == val)
4208 trace_preempt_off(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209}
4210EXPORT_SYMBOL(add_preempt_count);
4211
Srinivasa Ds43627582008-02-23 15:24:04 -08004212void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004214#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215 /*
4216 * Underflow?
4217 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004218 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
4219 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220 /*
4221 * Is the spinlock portion underflowing?
4222 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004223 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
4224 !(preempt_count() & PREEMPT_MASK)))
4225 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004226#endif
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004227
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004228 if (preempt_count() == val)
4229 trace_preempt_on(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230 preempt_count() -= val;
4231}
4232EXPORT_SYMBOL(sub_preempt_count);
4233
4234#endif
4235
4236/*
Ingo Molnardd41f592007-07-09 18:51:59 +02004237 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004239static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240{
Satyam Sharma838225b2007-10-24 18:23:50 +02004241 struct pt_regs *regs = get_irq_regs();
4242
4243 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
4244 prev->comm, prev->pid, preempt_count());
4245
Ingo Molnardd41f592007-07-09 18:51:59 +02004246 debug_show_held_locks(prev);
Arjan van de Vene21f5b12008-05-23 09:05:58 -07004247 print_modules();
Ingo Molnardd41f592007-07-09 18:51:59 +02004248 if (irqs_disabled())
4249 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02004250
4251 if (regs)
4252 show_regs(regs);
4253 else
4254 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02004255}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256
Ingo Molnardd41f592007-07-09 18:51:59 +02004257/*
4258 * Various schedule()-time debugging checks and statistics:
4259 */
4260static inline void schedule_debug(struct task_struct *prev)
4261{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004263 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264 * schedule() atomically, we ignore that path for now.
4265 * Otherwise, whine if we are scheduling when we should not be.
4266 */
Roel Kluin3f33a7c2008-05-13 23:44:11 +02004267 if (unlikely(in_atomic_preempt_off() && !prev->exit_state))
Ingo Molnardd41f592007-07-09 18:51:59 +02004268 __schedule_bug(prev);
4269
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
4271
Ingo Molnar2d723762007-10-15 17:00:12 +02004272 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004273#ifdef CONFIG_SCHEDSTATS
4274 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02004275 schedstat_inc(this_rq(), bkl_count);
4276 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02004277 }
4278#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02004279}
4280
4281/*
4282 * Pick up the highest-prio task:
4283 */
4284static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004285pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02004286{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02004287 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02004288 struct task_struct *p;
4289
4290 /*
4291 * Optimization: we know that if all tasks are in
4292 * the fair class we can call that function directly:
4293 */
4294 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004295 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004296 if (likely(p))
4297 return p;
4298 }
4299
4300 class = sched_class_highest;
4301 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004302 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004303 if (p)
4304 return p;
4305 /*
4306 * Will never be NULL as the idle class always
4307 * returns a non-NULL p:
4308 */
4309 class = class->next;
4310 }
4311}
4312
4313/*
4314 * schedule() is the main scheduler function.
4315 */
4316asmlinkage void __sched schedule(void)
4317{
4318 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08004319 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02004320 struct rq *rq;
Peter Zijlstra31656512008-07-18 18:01:23 +02004321 int cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02004322
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323need_resched:
4324 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02004325 cpu = smp_processor_id();
4326 rq = cpu_rq(cpu);
4327 rcu_qsctr_inc(cpu);
4328 prev = rq->curr;
4329 switch_count = &prev->nivcsw;
4330
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331 release_kernel_lock(prev);
4332need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333
Ingo Molnardd41f592007-07-09 18:51:59 +02004334 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335
Peter Zijlstra31656512008-07-18 18:01:23 +02004336 if (sched_feat(HRTICK))
Mike Galbraithf333fdc2008-05-12 21:20:55 +02004337 hrtick_clear(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004338
Ingo Molnar1e819952007-10-15 17:00:13 +02004339 /*
4340 * Do the rq-clock update outside the rq lock:
4341 */
4342 local_irq_disable();
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004343 update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02004344 spin_lock(&rq->lock);
4345 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346
Ingo Molnardd41f592007-07-09 18:51:59 +02004347 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
Oleg Nesterov16882c12008-06-08 21:20:41 +04004348 if (unlikely(signal_pending_state(prev->state, prev)))
Ingo Molnardd41f592007-07-09 18:51:59 +02004349 prev->state = TASK_RUNNING;
Oleg Nesterov16882c12008-06-08 21:20:41 +04004350 else
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004351 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02004352 switch_count = &prev->nvcsw;
4353 }
4354
Steven Rostedt9a897c52008-01-25 21:08:22 +01004355#ifdef CONFIG_SMP
4356 if (prev->sched_class->pre_schedule)
4357 prev->sched_class->pre_schedule(rq, prev);
4358#endif
Steven Rostedtf65eda42008-01-25 21:08:07 +01004359
Ingo Molnardd41f592007-07-09 18:51:59 +02004360 if (unlikely(!rq->nr_running))
4361 idle_balance(cpu, rq);
4362
Ingo Molnar31ee5292007-08-09 11:16:49 +02004363 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02004364 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366 if (likely(prev != next)) {
David Simner673a90a2008-04-29 10:08:59 +01004367 sched_info_switch(prev, next);
4368
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369 rq->nr_switches++;
4370 rq->curr = next;
4371 ++*switch_count;
4372
Ingo Molnardd41f592007-07-09 18:51:59 +02004373 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004374 /*
4375 * the context switch might have flipped the stack from under
4376 * us, hence refresh the local variables.
4377 */
4378 cpu = smp_processor_id();
4379 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380 } else
4381 spin_unlock_irq(&rq->lock);
4382
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004383 if (unlikely(reacquire_kernel_lock(current) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004385
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386 preempt_enable_no_resched();
4387 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
4388 goto need_resched;
4389}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390EXPORT_SYMBOL(schedule);
4391
4392#ifdef CONFIG_PREEMPT
4393/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004394 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004395 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396 * occur there and call schedule directly.
4397 */
4398asmlinkage void __sched preempt_schedule(void)
4399{
4400 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004401
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402 /*
4403 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004404 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07004406 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407 return;
4408
Andi Kleen3a5c3592007-10-15 17:00:14 +02004409 do {
4410 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004411 schedule();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004412 sub_preempt_count(PREEMPT_ACTIVE);
4413
4414 /*
4415 * Check again in case we missed a preemption opportunity
4416 * between schedule and now.
4417 */
4418 barrier();
4419 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421EXPORT_SYMBOL(preempt_schedule);
4422
4423/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004424 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425 * off of irq context.
4426 * Note, that this is called and return with irqs disabled. This will
4427 * protect us against recursive calling from irq.
4428 */
4429asmlinkage void __sched preempt_schedule_irq(void)
4430{
4431 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004432
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004433 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434 BUG_ON(ti->preempt_count || !irqs_disabled());
4435
Andi Kleen3a5c3592007-10-15 17:00:14 +02004436 do {
4437 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004438 local_irq_enable();
4439 schedule();
4440 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004441 sub_preempt_count(PREEMPT_ACTIVE);
4442
4443 /*
4444 * Check again in case we missed a preemption opportunity
4445 * between schedule and now.
4446 */
4447 barrier();
4448 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449}
4450
4451#endif /* CONFIG_PREEMPT */
4452
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004453int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
4454 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004456 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458EXPORT_SYMBOL(default_wake_function);
4459
4460/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004461 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4462 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463 * number) then we wake all the non-exclusive tasks and one exclusive task.
4464 *
4465 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004466 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4468 */
4469static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
4470 int nr_exclusive, int sync, void *key)
4471{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004472 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004474 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004475 unsigned flags = curr->flags;
4476
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004478 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479 break;
4480 }
4481}
4482
4483/**
4484 * __wake_up - wake up threads blocked on a waitqueue.
4485 * @q: the waitqueue
4486 * @mode: which threads
4487 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004488 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004490void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004491 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492{
4493 unsigned long flags;
4494
4495 spin_lock_irqsave(&q->lock, flags);
4496 __wake_up_common(q, mode, nr_exclusive, 0, key);
4497 spin_unlock_irqrestore(&q->lock, flags);
4498}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499EXPORT_SYMBOL(__wake_up);
4500
4501/*
4502 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4503 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004504void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505{
4506 __wake_up_common(q, mode, 1, 0, NULL);
4507}
4508
4509/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07004510 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511 * @q: the waitqueue
4512 * @mode: which threads
4513 * @nr_exclusive: how many wake-one or wake-many threads to wake up
4514 *
4515 * The sync wakeup differs that the waker knows that it will schedule
4516 * away soon, so while the target thread will be woken up, it will not
4517 * be migrated to another CPU - ie. the two threads are 'synchronized'
4518 * with each other. This can prevent needless bouncing between CPUs.
4519 *
4520 * On UP it can prevent extra preemption.
4521 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004522void
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004523__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524{
4525 unsigned long flags;
4526 int sync = 1;
4527
4528 if (unlikely(!q))
4529 return;
4530
4531 if (unlikely(!nr_exclusive))
4532 sync = 0;
4533
4534 spin_lock_irqsave(&q->lock, flags);
4535 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
4536 spin_unlock_irqrestore(&q->lock, flags);
4537}
4538EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4539
Ingo Molnarb15136e2007-10-24 18:23:48 +02004540void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541{
4542 unsigned long flags;
4543
4544 spin_lock_irqsave(&x->wait.lock, flags);
4545 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004546 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547 spin_unlock_irqrestore(&x->wait.lock, flags);
4548}
4549EXPORT_SYMBOL(complete);
4550
Ingo Molnarb15136e2007-10-24 18:23:48 +02004551void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552{
4553 unsigned long flags;
4554
4555 spin_lock_irqsave(&x->wait.lock, flags);
4556 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004557 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004558 spin_unlock_irqrestore(&x->wait.lock, flags);
4559}
4560EXPORT_SYMBOL(complete_all);
4561
Andi Kleen8cbbe862007-10-15 17:00:14 +02004562static inline long __sched
4563do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565 if (!x->done) {
4566 DECLARE_WAITQUEUE(wait, current);
4567
4568 wait.flags |= WQ_FLAG_EXCLUSIVE;
4569 __add_wait_queue_tail(&x->wait, &wait);
4570 do {
Matthew Wilcox009e5772007-12-06 12:29:54 -05004571 if ((state == TASK_INTERRUPTIBLE &&
4572 signal_pending(current)) ||
4573 (state == TASK_KILLABLE &&
4574 fatal_signal_pending(current))) {
Oleg Nesterovea71a542008-06-20 18:32:20 +04004575 timeout = -ERESTARTSYS;
4576 break;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004577 }
4578 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004580 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581 spin_lock_irq(&x->wait.lock);
Oleg Nesterovea71a542008-06-20 18:32:20 +04004582 } while (!x->done && timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583 __remove_wait_queue(&x->wait, &wait);
Oleg Nesterovea71a542008-06-20 18:32:20 +04004584 if (!x->done)
4585 return timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586 }
4587 x->done--;
Oleg Nesterovea71a542008-06-20 18:32:20 +04004588 return timeout ?: 1;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004589}
4590
4591static long __sched
4592wait_for_common(struct completion *x, long timeout, int state)
4593{
4594 might_sleep();
4595
4596 spin_lock_irq(&x->wait.lock);
4597 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004599 return timeout;
4600}
4601
Ingo Molnarb15136e2007-10-24 18:23:48 +02004602void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004603{
4604 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605}
4606EXPORT_SYMBOL(wait_for_completion);
4607
Ingo Molnarb15136e2007-10-24 18:23:48 +02004608unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4610{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004611 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612}
4613EXPORT_SYMBOL(wait_for_completion_timeout);
4614
Andi Kleen8cbbe862007-10-15 17:00:14 +02004615int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616{
Andi Kleen51e97992007-10-18 21:32:55 +02004617 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4618 if (t == -ERESTARTSYS)
4619 return t;
4620 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621}
4622EXPORT_SYMBOL(wait_for_completion_interruptible);
4623
Ingo Molnarb15136e2007-10-24 18:23:48 +02004624unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625wait_for_completion_interruptible_timeout(struct completion *x,
4626 unsigned long timeout)
4627{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004628 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629}
4630EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4631
Matthew Wilcox009e5772007-12-06 12:29:54 -05004632int __sched wait_for_completion_killable(struct completion *x)
4633{
4634 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
4635 if (t == -ERESTARTSYS)
4636 return t;
4637 return 0;
4638}
4639EXPORT_SYMBOL(wait_for_completion_killable);
4640
Andi Kleen8cbbe862007-10-15 17:00:14 +02004641static long __sched
4642sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004643{
4644 unsigned long flags;
4645 wait_queue_t wait;
4646
4647 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648
Andi Kleen8cbbe862007-10-15 17:00:14 +02004649 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650
Andi Kleen8cbbe862007-10-15 17:00:14 +02004651 spin_lock_irqsave(&q->lock, flags);
4652 __add_wait_queue(q, &wait);
4653 spin_unlock(&q->lock);
4654 timeout = schedule_timeout(timeout);
4655 spin_lock_irq(&q->lock);
4656 __remove_wait_queue(q, &wait);
4657 spin_unlock_irqrestore(&q->lock, flags);
4658
4659 return timeout;
4660}
4661
4662void __sched interruptible_sleep_on(wait_queue_head_t *q)
4663{
4664 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666EXPORT_SYMBOL(interruptible_sleep_on);
4667
Ingo Molnar0fec1712007-07-09 18:52:01 +02004668long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004669interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004671 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4674
Ingo Molnar0fec1712007-07-09 18:52:01 +02004675void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004677 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004678}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679EXPORT_SYMBOL(sleep_on);
4680
Ingo Molnar0fec1712007-07-09 18:52:01 +02004681long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004683 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685EXPORT_SYMBOL(sleep_on_timeout);
4686
Ingo Molnarb29739f2006-06-27 02:54:51 -07004687#ifdef CONFIG_RT_MUTEXES
4688
4689/*
4690 * rt_mutex_setprio - set the current priority of a task
4691 * @p: task
4692 * @prio: prio value (kernel-internal form)
4693 *
4694 * This function changes the 'effective' priority of a task. It does
4695 * not touch ->normal_prio like __setscheduler().
4696 *
4697 * Used by the rt_mutex code to implement priority inheritance logic.
4698 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004699void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07004700{
4701 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004702 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004703 struct rq *rq;
Steven Rostedtcb469842008-01-25 21:08:22 +01004704 const struct sched_class *prev_class = p->sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004705
4706 BUG_ON(prio < 0 || prio > MAX_PRIO);
4707
4708 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004709 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004710
Andrew Mortond5f9f942007-05-08 20:27:06 -07004711 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004712 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004713 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004714 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004715 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004716 if (running)
4717 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02004718
4719 if (rt_prio(prio))
4720 p->sched_class = &rt_sched_class;
4721 else
4722 p->sched_class = &fair_sched_class;
4723
Ingo Molnarb29739f2006-06-27 02:54:51 -07004724 p->prio = prio;
4725
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004726 if (running)
4727 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004728 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004729 enqueue_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004730
4731 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004732 }
4733 task_rq_unlock(rq, &flags);
4734}
4735
4736#endif
4737
Ingo Molnar36c8b582006-07-03 00:25:41 -07004738void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739{
Ingo Molnardd41f592007-07-09 18:51:59 +02004740 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004742 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743
4744 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
4745 return;
4746 /*
4747 * We have to be careful, if called from sys_setpriority(),
4748 * the task might be in the middle of scheduling on another CPU.
4749 */
4750 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02004751 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752 /*
4753 * The RT priorities are set via sched_setscheduler(), but we still
4754 * allow the 'normal' nice value to be set - but as expected
4755 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02004756 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757 */
Ingo Molnare05606d2007-07-09 18:51:59 +02004758 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759 p->static_prio = NICE_TO_PRIO(nice);
4760 goto out_unlock;
4761 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004762 on_rq = p->se.on_rq;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02004763 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004764 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07004767 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004768 old_prio = p->prio;
4769 p->prio = effective_prio(p);
4770 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004771
Ingo Molnardd41f592007-07-09 18:51:59 +02004772 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004773 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07004775 * If the task increased its priority or is running and
4776 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07004778 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779 resched_task(rq->curr);
4780 }
4781out_unlock:
4782 task_rq_unlock(rq, &flags);
4783}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784EXPORT_SYMBOL(set_user_nice);
4785
Matt Mackalle43379f2005-05-01 08:59:00 -07004786/*
4787 * can_nice - check if a task can reduce its nice value
4788 * @p: task
4789 * @nice: nice value
4790 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004791int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07004792{
Matt Mackall024f4742005-08-18 11:24:19 -07004793 /* convert nice value [19,-20] to rlimit style value [1,40] */
4794 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004795
Matt Mackalle43379f2005-05-01 08:59:00 -07004796 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
4797 capable(CAP_SYS_NICE));
4798}
4799
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800#ifdef __ARCH_WANT_SYS_NICE
4801
4802/*
4803 * sys_nice - change the priority of the current process.
4804 * @increment: priority increment
4805 *
4806 * sys_setpriority is a more generic, but much slower function that
4807 * does similar things.
4808 */
4809asmlinkage long sys_nice(int increment)
4810{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004811 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812
4813 /*
4814 * Setpriority might change our priority at the same moment.
4815 * We don't have to worry. Conceptually one call occurs first
4816 * and we have a single winner.
4817 */
Matt Mackalle43379f2005-05-01 08:59:00 -07004818 if (increment < -40)
4819 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820 if (increment > 40)
4821 increment = 40;
4822
4823 nice = PRIO_TO_NICE(current->static_prio) + increment;
4824 if (nice < -20)
4825 nice = -20;
4826 if (nice > 19)
4827 nice = 19;
4828
Matt Mackalle43379f2005-05-01 08:59:00 -07004829 if (increment < 0 && !can_nice(current, nice))
4830 return -EPERM;
4831
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832 retval = security_task_setnice(current, nice);
4833 if (retval)
4834 return retval;
4835
4836 set_user_nice(current, nice);
4837 return 0;
4838}
4839
4840#endif
4841
4842/**
4843 * task_prio - return the priority value of a given task.
4844 * @p: the task in question.
4845 *
4846 * This is the priority value as seen by users in /proc.
4847 * RT tasks are offset by -200. Normal tasks are centered
4848 * around 0, value goes from -16 to +15.
4849 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004850int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004851{
4852 return p->prio - MAX_RT_PRIO;
4853}
4854
4855/**
4856 * task_nice - return the nice value of a given task.
4857 * @p: the task in question.
4858 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004859int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860{
4861 return TASK_NICE(p);
4862}
Pavel Roskin150d8be2008-03-05 16:56:37 -05004863EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004864
4865/**
4866 * idle_cpu - is a given cpu idle currently?
4867 * @cpu: the processor in question.
4868 */
4869int idle_cpu(int cpu)
4870{
4871 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
4872}
4873
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874/**
4875 * idle_task - return the idle task for a given cpu.
4876 * @cpu: the processor in question.
4877 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004878struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879{
4880 return cpu_rq(cpu)->idle;
4881}
4882
4883/**
4884 * find_process_by_pid - find a process with a matching PID value.
4885 * @pid: the pid in question.
4886 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02004887static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07004889 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890}
4891
4892/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02004893static void
4894__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895{
Ingo Molnardd41f592007-07-09 18:51:59 +02004896 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004897
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02004899 switch (p->policy) {
4900 case SCHED_NORMAL:
4901 case SCHED_BATCH:
4902 case SCHED_IDLE:
4903 p->sched_class = &fair_sched_class;
4904 break;
4905 case SCHED_FIFO:
4906 case SCHED_RR:
4907 p->sched_class = &rt_sched_class;
4908 break;
4909 }
4910
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004912 p->normal_prio = normal_prio(p);
4913 /* we are holding p->pi_lock already */
4914 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07004915 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004916}
4917
Rusty Russell961ccdd2008-06-23 13:55:38 +10004918static int __sched_setscheduler(struct task_struct *p, int policy,
4919 struct sched_param *param, bool user)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004921 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922 unsigned long flags;
Steven Rostedtcb469842008-01-25 21:08:22 +01004923 const struct sched_class *prev_class = p->sched_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004924 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925
Steven Rostedt66e53932006-06-27 02:54:44 -07004926 /* may grab non-irq protected spin_locks */
4927 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928recheck:
4929 /* double check policy once rq lock held */
4930 if (policy < 0)
4931 policy = oldpolicy = p->policy;
4932 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02004933 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
4934 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08004935 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004936 /*
4937 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02004938 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
4939 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004940 */
4941 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004942 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04004943 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02004945 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004946 return -EINVAL;
4947
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004948 /*
4949 * Allow unprivileged RT tasks to decrease priority:
4950 */
Rusty Russell961ccdd2008-06-23 13:55:38 +10004951 if (user && !capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02004952 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004953 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004954
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004955 if (!lock_task_sighand(p, &flags))
4956 return -ESRCH;
4957 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
4958 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004959
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004960 /* can't set/change the rt policy */
4961 if (policy != p->policy && !rlim_rtprio)
4962 return -EPERM;
4963
4964 /* can't increase priority */
4965 if (param->sched_priority > p->rt_priority &&
4966 param->sched_priority > rlim_rtprio)
4967 return -EPERM;
4968 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004969 /*
4970 * Like positive nice levels, dont allow tasks to
4971 * move out of SCHED_IDLE either:
4972 */
4973 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
4974 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004975
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004976 /* can't change other user's priorities */
4977 if ((current->euid != p->euid) &&
4978 (current->euid != p->uid))
4979 return -EPERM;
4980 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981
Peter Zijlstrab68aa232008-02-13 15:45:40 +01004982#ifdef CONFIG_RT_GROUP_SCHED
4983 /*
4984 * Do not allow realtime tasks into groups that have no runtime
4985 * assigned.
4986 */
Rusty Russell961ccdd2008-06-23 13:55:38 +10004987 if (user
4988 && rt_policy(policy) && task_group(p)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01004989 return -EPERM;
4990#endif
4991
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992 retval = security_task_setscheduler(p, policy, param);
4993 if (retval)
4994 return retval;
4995 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07004996 * make sure no PI-waiters arrive (or leave) while we are
4997 * changing the priority of the task:
4998 */
4999 spin_lock_irqsave(&p->pi_lock, flags);
5000 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001 * To be able to change p->policy safely, the apropriate
5002 * runqueue lock must be held.
5003 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07005004 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005005 /* recheck policy now with rq lock held */
5006 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
5007 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005008 __task_rq_unlock(rq);
5009 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010 goto recheck;
5011 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02005012 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005013 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01005014 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005015 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005016 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005017 if (running)
5018 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02005019
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02005021 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02005022
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005023 if (running)
5024 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02005025 if (on_rq) {
5026 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01005027
5028 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005029 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07005030 __task_rq_unlock(rq);
5031 spin_unlock_irqrestore(&p->pi_lock, flags);
5032
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07005033 rt_mutex_adjust_pi(p);
5034
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035 return 0;
5036}
Rusty Russell961ccdd2008-06-23 13:55:38 +10005037
5038/**
5039 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
5040 * @p: the task in question.
5041 * @policy: new policy.
5042 * @param: structure containing the new RT priority.
5043 *
5044 * NOTE that the task may be already dead.
5045 */
5046int sched_setscheduler(struct task_struct *p, int policy,
5047 struct sched_param *param)
5048{
5049 return __sched_setscheduler(p, policy, param, true);
5050}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005051EXPORT_SYMBOL_GPL(sched_setscheduler);
5052
Rusty Russell961ccdd2008-06-23 13:55:38 +10005053/**
5054 * sched_setscheduler_nocheck - change the scheduling policy and/or RT priority of a thread from kernelspace.
5055 * @p: the task in question.
5056 * @policy: new policy.
5057 * @param: structure containing the new RT priority.
5058 *
5059 * Just like sched_setscheduler, only don't bother checking if the
5060 * current context has permission. For example, this is needed in
5061 * stop_machine(): we create temporary high priority worker threads,
5062 * but our caller might not have that capability.
5063 */
5064int sched_setscheduler_nocheck(struct task_struct *p, int policy,
5065 struct sched_param *param)
5066{
5067 return __sched_setscheduler(p, policy, param, false);
5068}
5069
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005070static int
5071do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005073 struct sched_param lparam;
5074 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005075 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005076
5077 if (!param || pid < 0)
5078 return -EINVAL;
5079 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
5080 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005081
5082 rcu_read_lock();
5083 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005085 if (p != NULL)
5086 retval = sched_setscheduler(p, policy, &lparam);
5087 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07005088
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089 return retval;
5090}
5091
5092/**
5093 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
5094 * @pid: the pid in question.
5095 * @policy: new policy.
5096 * @param: structure containing the new RT priority.
5097 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005098asmlinkage long
5099sys_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005100{
Jason Baronc21761f2006-01-18 17:43:03 -08005101 /* negative values for policy are not valid */
5102 if (policy < 0)
5103 return -EINVAL;
5104
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105 return do_sched_setscheduler(pid, policy, param);
5106}
5107
5108/**
5109 * sys_sched_setparam - set/change the RT priority of a thread
5110 * @pid: the pid in question.
5111 * @param: structure containing the new RT priority.
5112 */
5113asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
5114{
5115 return do_sched_setscheduler(pid, -1, param);
5116}
5117
5118/**
5119 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
5120 * @pid: the pid in question.
5121 */
5122asmlinkage long sys_sched_getscheduler(pid_t pid)
5123{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005124 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005125 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126
5127 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005128 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005129
5130 retval = -ESRCH;
5131 read_lock(&tasklist_lock);
5132 p = find_process_by_pid(pid);
5133 if (p) {
5134 retval = security_task_getscheduler(p);
5135 if (!retval)
5136 retval = p->policy;
5137 }
5138 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139 return retval;
5140}
5141
5142/**
5143 * sys_sched_getscheduler - get the RT priority of a thread
5144 * @pid: the pid in question.
5145 * @param: structure containing the RT priority.
5146 */
5147asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
5148{
5149 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005150 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005151 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152
5153 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005154 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155
5156 read_lock(&tasklist_lock);
5157 p = find_process_by_pid(pid);
5158 retval = -ESRCH;
5159 if (!p)
5160 goto out_unlock;
5161
5162 retval = security_task_getscheduler(p);
5163 if (retval)
5164 goto out_unlock;
5165
5166 lp.sched_priority = p->rt_priority;
5167 read_unlock(&tasklist_lock);
5168
5169 /*
5170 * This one might sleep, we cannot do it with a spinlock held ...
5171 */
5172 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
5173
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174 return retval;
5175
5176out_unlock:
5177 read_unlock(&tasklist_lock);
5178 return retval;
5179}
5180
Mike Travisb53e9212008-04-04 18:11:08 -07005181long sched_setaffinity(pid_t pid, const cpumask_t *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183 cpumask_t cpus_allowed;
Mike Travisb53e9212008-04-04 18:11:08 -07005184 cpumask_t new_mask = *in_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005185 struct task_struct *p;
5186 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005188 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005189 read_lock(&tasklist_lock);
5190
5191 p = find_process_by_pid(pid);
5192 if (!p) {
5193 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005194 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195 return -ESRCH;
5196 }
5197
5198 /*
5199 * It is not safe to call set_cpus_allowed with the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005200 * tasklist_lock held. We will bump the task_struct's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201 * usage count and then drop tasklist_lock.
5202 */
5203 get_task_struct(p);
5204 read_unlock(&tasklist_lock);
5205
5206 retval = -EPERM;
5207 if ((current->euid != p->euid) && (current->euid != p->uid) &&
5208 !capable(CAP_SYS_NICE))
5209 goto out_unlock;
5210
David Quigleye7834f82006-06-23 02:03:59 -07005211 retval = security_task_setscheduler(p, 0, NULL);
5212 if (retval)
5213 goto out_unlock;
5214
Mike Travisf9a86fc2008-04-04 18:11:07 -07005215 cpuset_cpus_allowed(p, &cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216 cpus_and(new_mask, new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005217 again:
Mike Travis7c16ec52008-04-04 18:11:11 -07005218 retval = set_cpus_allowed_ptr(p, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005219
Paul Menage8707d8b2007-10-18 23:40:22 -07005220 if (!retval) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07005221 cpuset_cpus_allowed(p, &cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005222 if (!cpus_subset(new_mask, cpus_allowed)) {
5223 /*
5224 * We must have raced with a concurrent cpuset
5225 * update. Just reset the cpus_allowed to the
5226 * cpuset's cpus_allowed
5227 */
5228 new_mask = cpus_allowed;
5229 goto again;
5230 }
5231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232out_unlock:
5233 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005234 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005235 return retval;
5236}
5237
5238static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
5239 cpumask_t *new_mask)
5240{
5241 if (len < sizeof(cpumask_t)) {
5242 memset(new_mask, 0, sizeof(cpumask_t));
5243 } else if (len > sizeof(cpumask_t)) {
5244 len = sizeof(cpumask_t);
5245 }
5246 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
5247}
5248
5249/**
5250 * sys_sched_setaffinity - set the cpu affinity of a process
5251 * @pid: pid of the process
5252 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5253 * @user_mask_ptr: user-space pointer to the new cpu mask
5254 */
5255asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
5256 unsigned long __user *user_mask_ptr)
5257{
5258 cpumask_t new_mask;
5259 int retval;
5260
5261 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
5262 if (retval)
5263 return retval;
5264
Mike Travisb53e9212008-04-04 18:11:08 -07005265 return sched_setaffinity(pid, &new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266}
5267
Linus Torvalds1da177e2005-04-16 15:20:36 -07005268long sched_getaffinity(pid_t pid, cpumask_t *mask)
5269{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005270 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005273 get_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274 read_lock(&tasklist_lock);
5275
5276 retval = -ESRCH;
5277 p = find_process_by_pid(pid);
5278 if (!p)
5279 goto out_unlock;
5280
David Quigleye7834f82006-06-23 02:03:59 -07005281 retval = security_task_getscheduler(p);
5282 if (retval)
5283 goto out_unlock;
5284
Jack Steiner2f7016d2006-02-01 03:05:18 -08005285 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005286
5287out_unlock:
5288 read_unlock(&tasklist_lock);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005289 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005290
Ulrich Drepper9531b622007-08-09 11:16:46 +02005291 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005292}
5293
5294/**
5295 * sys_sched_getaffinity - get the cpu affinity of a process
5296 * @pid: pid of the process
5297 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5298 * @user_mask_ptr: user-space pointer to hold the current cpu mask
5299 */
5300asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
5301 unsigned long __user *user_mask_ptr)
5302{
5303 int ret;
5304 cpumask_t mask;
5305
5306 if (len < sizeof(cpumask_t))
5307 return -EINVAL;
5308
5309 ret = sched_getaffinity(pid, &mask);
5310 if (ret < 0)
5311 return ret;
5312
5313 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
5314 return -EFAULT;
5315
5316 return sizeof(cpumask_t);
5317}
5318
5319/**
5320 * sys_sched_yield - yield the current processor to other threads.
5321 *
Ingo Molnardd41f592007-07-09 18:51:59 +02005322 * This function yields the current CPU to other tasks. If there are no
5323 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005324 */
5325asmlinkage long sys_sched_yield(void)
5326{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005327 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005328
Ingo Molnar2d723762007-10-15 17:00:12 +02005329 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02005330 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005331
5332 /*
5333 * Since we are going to call schedule() anyway, there's
5334 * no need to preempt or enable interrupts:
5335 */
5336 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07005337 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338 _raw_spin_unlock(&rq->lock);
5339 preempt_enable_no_resched();
5340
5341 schedule();
5342
5343 return 0;
5344}
5345
Andrew Mortone7b38402006-06-30 01:56:00 -07005346static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005347{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07005348#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
5349 __might_sleep(__FILE__, __LINE__);
5350#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07005351 /*
5352 * The BKS might be reacquired before we have dropped
5353 * PREEMPT_ACTIVE, which could trigger a second
5354 * cond_resched() call.
5355 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005356 do {
5357 add_preempt_count(PREEMPT_ACTIVE);
5358 schedule();
5359 sub_preempt_count(PREEMPT_ACTIVE);
5360 } while (need_resched());
5361}
5362
Herbert Xu02b67cc32008-01-25 21:08:28 +01005363int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005364{
Ingo Molnar94142322006-12-29 16:48:13 -08005365 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
5366 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005367 __cond_resched();
5368 return 1;
5369 }
5370 return 0;
5371}
Herbert Xu02b67cc32008-01-25 21:08:28 +01005372EXPORT_SYMBOL(_cond_resched);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005373
5374/*
5375 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
5376 * call schedule, and on return reacquire the lock.
5377 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005378 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379 * operations here to prevent schedule() from being called twice (once via
5380 * spin_unlock(), once by hand).
5381 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005382int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383{
Nick Piggin95c354f2008-01-30 13:31:20 +01005384 int resched = need_resched() && system_state == SYSTEM_RUNNING;
Jan Kara6df3cec2005-06-13 15:52:32 -07005385 int ret = 0;
5386
Nick Piggin95c354f2008-01-30 13:31:20 +01005387 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388 spin_unlock(lock);
Nick Piggin95c354f2008-01-30 13:31:20 +01005389 if (resched && need_resched())
5390 __cond_resched();
5391 else
5392 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07005393 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005395 }
Jan Kara6df3cec2005-06-13 15:52:32 -07005396 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005397}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398EXPORT_SYMBOL(cond_resched_lock);
5399
5400int __sched cond_resched_softirq(void)
5401{
5402 BUG_ON(!in_softirq());
5403
Ingo Molnar94142322006-12-29 16:48:13 -08005404 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07005405 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005406 __cond_resched();
5407 local_bh_disable();
5408 return 1;
5409 }
5410 return 0;
5411}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412EXPORT_SYMBOL(cond_resched_softirq);
5413
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414/**
5415 * yield - yield the current processor to other threads.
5416 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005417 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005418 * thread runnable and calls sys_sched_yield().
5419 */
5420void __sched yield(void)
5421{
5422 set_current_state(TASK_RUNNING);
5423 sys_sched_yield();
5424}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005425EXPORT_SYMBOL(yield);
5426
5427/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005428 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429 * that process accounting knows that this is a task in IO wait state.
5430 *
5431 * But don't do that if it is a deliberate, throttling IO wait (this task
5432 * has set its backing_dev_info: the queue against which it should throttle)
5433 */
5434void __sched io_schedule(void)
5435{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005436 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005437
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005438 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005439 atomic_inc(&rq->nr_iowait);
5440 schedule();
5441 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005442 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005443}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005444EXPORT_SYMBOL(io_schedule);
5445
5446long __sched io_schedule_timeout(long timeout)
5447{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005448 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449 long ret;
5450
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005451 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005452 atomic_inc(&rq->nr_iowait);
5453 ret = schedule_timeout(timeout);
5454 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005455 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456 return ret;
5457}
5458
5459/**
5460 * sys_sched_get_priority_max - return maximum RT priority.
5461 * @policy: scheduling class.
5462 *
5463 * this syscall returns the maximum rt_priority that can be used
5464 * by a given scheduling class.
5465 */
5466asmlinkage long sys_sched_get_priority_max(int policy)
5467{
5468 int ret = -EINVAL;
5469
5470 switch (policy) {
5471 case SCHED_FIFO:
5472 case SCHED_RR:
5473 ret = MAX_USER_RT_PRIO-1;
5474 break;
5475 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005476 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005477 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005478 ret = 0;
5479 break;
5480 }
5481 return ret;
5482}
5483
5484/**
5485 * sys_sched_get_priority_min - return minimum RT priority.
5486 * @policy: scheduling class.
5487 *
5488 * this syscall returns the minimum rt_priority that can be used
5489 * by a given scheduling class.
5490 */
5491asmlinkage long sys_sched_get_priority_min(int policy)
5492{
5493 int ret = -EINVAL;
5494
5495 switch (policy) {
5496 case SCHED_FIFO:
5497 case SCHED_RR:
5498 ret = 1;
5499 break;
5500 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005501 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005502 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503 ret = 0;
5504 }
5505 return ret;
5506}
5507
5508/**
5509 * sys_sched_rr_get_interval - return the default timeslice of a process.
5510 * @pid: pid of the process.
5511 * @interval: userspace pointer to the timeslice value.
5512 *
5513 * this syscall writes the default timeslice value of a given process
5514 * into the user-space timespec buffer. A value of '0' means infinity.
5515 */
5516asmlinkage
5517long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
5518{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005519 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005520 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005521 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005522 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005523
5524 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005525 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005526
5527 retval = -ESRCH;
5528 read_lock(&tasklist_lock);
5529 p = find_process_by_pid(pid);
5530 if (!p)
5531 goto out_unlock;
5532
5533 retval = security_task_getscheduler(p);
5534 if (retval)
5535 goto out_unlock;
5536
Ingo Molnar77034932007-12-04 17:04:39 +01005537 /*
5538 * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER
5539 * tasks that are on an otherwise idle runqueue:
5540 */
5541 time_slice = 0;
5542 if (p->policy == SCHED_RR) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005543 time_slice = DEF_TIMESLICE;
Miao Xie1868f952008-03-07 09:35:06 +08005544 } else if (p->policy != SCHED_FIFO) {
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005545 struct sched_entity *se = &p->se;
5546 unsigned long flags;
5547 struct rq *rq;
5548
5549 rq = task_rq_lock(p, &flags);
Ingo Molnar77034932007-12-04 17:04:39 +01005550 if (rq->cfs.load.weight)
5551 time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se));
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005552 task_rq_unlock(rq, &flags);
5553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005554 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005555 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005556 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005557 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005558
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559out_unlock:
5560 read_unlock(&tasklist_lock);
5561 return retval;
5562}
5563
Steven Rostedt7c731e02008-05-12 21:20:41 +02005564static const char stat_nam[] = TASK_STATE_TO_CHAR_STR;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005565
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005566void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005567{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005568 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005569 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005570
Linus Torvalds1da177e2005-04-16 15:20:36 -07005571 state = p->state ? __ffs(p->state) + 1 : 0;
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005572 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005573 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005574#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005575 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005576 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005577 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005578 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005579#else
5580 if (state == TASK_RUNNING)
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005581 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005582 else
Ingo Molnarcc4ea792007-10-18 21:32:56 +02005583 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584#endif
5585#ifdef CONFIG_DEBUG_STACK_USAGE
5586 {
Al Viro10ebffd2005-11-13 16:06:56 -08005587 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005588 while (!*n)
5589 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08005590 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005591 }
5592#endif
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07005593 printk(KERN_CONT "%5lu %5d %6d\n", free,
Roland McGrathfcfd50a2008-01-09 00:03:23 -08005594 task_pid_nr(p), task_pid_nr(p->real_parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005595
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01005596 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005597}
5598
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005599void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005600{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005601 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005602
Ingo Molnar4bd77322007-07-11 21:21:47 +02005603#if BITS_PER_LONG == 32
5604 printk(KERN_INFO
5605 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005606#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02005607 printk(KERN_INFO
5608 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005609#endif
5610 read_lock(&tasklist_lock);
5611 do_each_thread(g, p) {
5612 /*
5613 * reset the NMI-timeout, listing all files on a slow
5614 * console might take alot of time:
5615 */
5616 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07005617 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005618 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005619 } while_each_thread(g, p);
5620
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07005621 touch_all_softlockup_watchdogs();
5622
Ingo Molnardd41f592007-07-09 18:51:59 +02005623#ifdef CONFIG_SCHED_DEBUG
5624 sysrq_sched_debug_show();
5625#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005626 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005627 /*
5628 * Only show locks if all tasks are dumped:
5629 */
5630 if (state_filter == -1)
5631 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005632}
5633
Ingo Molnar1df21052007-07-09 18:51:58 +02005634void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5635{
Ingo Molnardd41f592007-07-09 18:51:59 +02005636 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02005637}
5638
Ingo Molnarf340c0d2005-06-28 16:40:42 +02005639/**
5640 * init_idle - set up an idle thread for a given CPU
5641 * @idle: task in question
5642 * @cpu: cpu the idle task belongs to
5643 *
5644 * NOTE: this function does not set the idle thread's NEED_RESCHED
5645 * flag, to make booting more robust.
5646 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07005647void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005648{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005649 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005650 unsigned long flags;
5651
Ingo Molnardd41f592007-07-09 18:51:59 +02005652 __sched_fork(idle);
5653 idle->se.exec_start = sched_clock();
5654
Ingo Molnarb29739f2006-06-27 02:54:51 -07005655 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005656 idle->cpus_allowed = cpumask_of_cpu(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005657 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005658
5659 spin_lock_irqsave(&rq->lock, flags);
5660 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07005661#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
5662 idle->oncpu = 1;
5663#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005664 spin_unlock_irqrestore(&rq->lock, flags);
5665
5666 /* Set the preempt count _outside_ the spinlocks! */
Linus Torvalds8e3e0762008-05-10 20:58:02 -07005667#if defined(CONFIG_PREEMPT)
5668 task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0);
5669#else
Al Viroa1261f52005-11-13 16:06:55 -08005670 task_thread_info(idle)->preempt_count = 0;
Linus Torvalds8e3e0762008-05-10 20:58:02 -07005671#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02005672 /*
5673 * The idle tasks have their own, simple scheduling class:
5674 */
5675 idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676}
5677
5678/*
5679 * In a system that switches off the HZ timer nohz_cpu_mask
5680 * indicates which cpus entered this state. This is used
5681 * in the rcu update to wait only for active cpus. For system
5682 * which do not switch off the HZ timer nohz_cpu_mask should
5683 * always be CPU_MASK_NONE.
5684 */
5685cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
5686
Ingo Molnar19978ca2007-11-09 22:39:38 +01005687/*
5688 * Increase the granularity value when there are more CPUs,
5689 * because with more CPUs the 'effective latency' as visible
5690 * to users decreases. But the relationship is not linear,
5691 * so pick a second-best guess by going with the log2 of the
5692 * number of CPUs.
5693 *
5694 * This idea comes from the SD scheduler of Con Kolivas:
5695 */
5696static inline void sched_init_granularity(void)
5697{
5698 unsigned int factor = 1 + ilog2(num_online_cpus());
5699 const unsigned long limit = 200000000;
5700
5701 sysctl_sched_min_granularity *= factor;
5702 if (sysctl_sched_min_granularity > limit)
5703 sysctl_sched_min_granularity = limit;
5704
5705 sysctl_sched_latency *= factor;
5706 if (sysctl_sched_latency > limit)
5707 sysctl_sched_latency = limit;
5708
5709 sysctl_sched_wakeup_granularity *= factor;
Ingo Molnar19978ca2007-11-09 22:39:38 +01005710}
5711
Linus Torvalds1da177e2005-04-16 15:20:36 -07005712#ifdef CONFIG_SMP
5713/*
5714 * This is how migration works:
5715 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07005716 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07005717 * runqueue and wake up that CPU's migration thread.
5718 * 2) we down() the locked semaphore => thread blocks.
5719 * 3) migration thread wakes up (implicitly it forces the migrated
5720 * thread off the CPU)
5721 * 4) it gets the migration request and checks whether the migrated
5722 * task is still in the wrong runqueue.
5723 * 5) if it's in the wrong runqueue then the migration thread removes
5724 * it and puts it into the right queue.
5725 * 6) migration thread up()s the semaphore.
5726 * 7) we wake up and the migration is done.
5727 */
5728
5729/*
5730 * Change a given task's CPU affinity. Migrate the thread to a
5731 * proper CPU and schedule it away if the CPU it's executing on
5732 * is removed from the allowed bitmask.
5733 *
5734 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005735 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736 * call is not atomic; no spinlocks may be held.
5737 */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005738int set_cpus_allowed_ptr(struct task_struct *p, const cpumask_t *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005740 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005741 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005742 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005743 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005744
5745 rq = task_rq_lock(p, &flags);
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005746 if (!cpus_intersects(*new_mask, cpu_online_map)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005747 ret = -EINVAL;
5748 goto out;
5749 }
5750
David Rientjes9985b0b2008-06-05 12:57:11 -07005751 if (unlikely((p->flags & PF_THREAD_BOUND) && p != current &&
5752 !cpus_equal(p->cpus_allowed, *new_mask))) {
5753 ret = -EINVAL;
5754 goto out;
5755 }
5756
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005757 if (p->sched_class->set_cpus_allowed)
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005758 p->sched_class->set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005759 else {
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005760 p->cpus_allowed = *new_mask;
5761 p->rt.nr_cpus_allowed = cpus_weight(*new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005762 }
5763
Linus Torvalds1da177e2005-04-16 15:20:36 -07005764 /* Can the task run on the task's current CPU? If so, we're done */
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005765 if (cpu_isset(task_cpu(p), *new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005766 goto out;
5767
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005768 if (migrate_task(p, any_online_cpu(*new_mask), &req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005769 /* Need help from migration thread: drop lock and wait. */
5770 task_rq_unlock(rq, &flags);
5771 wake_up_process(rq->migration_thread);
5772 wait_for_completion(&req.done);
5773 tlb_migrate_finish(p->mm);
5774 return 0;
5775 }
5776out:
5777 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005778
Linus Torvalds1da177e2005-04-16 15:20:36 -07005779 return ret;
5780}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005781EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005782
5783/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005784 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07005785 * this because either it can't run here any more (set_cpus_allowed()
5786 * away from this CPU, or CPU going down), or because we're
5787 * attempting to rebalance this task on exec (sched_exec).
5788 *
5789 * So we race with normal scheduler movements, but that's OK, as long
5790 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07005791 *
5792 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005793 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07005794static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005796 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02005797 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005798
Max Krasnyanskye761b772008-07-15 04:43:49 -07005799 if (unlikely(!cpu_active(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07005800 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005801
5802 rq_src = cpu_rq(src_cpu);
5803 rq_dest = cpu_rq(dest_cpu);
5804
5805 double_rq_lock(rq_src, rq_dest);
5806 /* Already moved. */
5807 if (task_cpu(p) != src_cpu)
Linus Torvaldsb1e38732008-07-10 11:25:03 -07005808 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005809 /* Affinity changed (again). */
5810 if (!cpu_isset(dest_cpu, p->cpus_allowed))
Linus Torvaldsb1e38732008-07-10 11:25:03 -07005811 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005812
Ingo Molnardd41f592007-07-09 18:51:59 +02005813 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005814 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005815 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02005816
Linus Torvalds1da177e2005-04-16 15:20:36 -07005817 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005818 if (on_rq) {
5819 activate_task(rq_dest, p, 0);
5820 check_preempt_curr(rq_dest, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005821 }
Linus Torvaldsb1e38732008-07-10 11:25:03 -07005822done:
Kirill Korotaevefc30812006-06-27 02:54:32 -07005823 ret = 1;
Linus Torvaldsb1e38732008-07-10 11:25:03 -07005824fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005825 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005826 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005827}
5828
5829/*
5830 * migration_thread - this is a highprio system thread that performs
5831 * thread migration by bumping thread off CPU then 'pushing' onto
5832 * another runqueue.
5833 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005834static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005835{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005836 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005837 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005838
5839 rq = cpu_rq(cpu);
5840 BUG_ON(rq->migration_thread != current);
5841
5842 set_current_state(TASK_INTERRUPTIBLE);
5843 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005844 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005845 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005846
Linus Torvalds1da177e2005-04-16 15:20:36 -07005847 spin_lock_irq(&rq->lock);
5848
5849 if (cpu_is_offline(cpu)) {
5850 spin_unlock_irq(&rq->lock);
5851 goto wait_to_die;
5852 }
5853
5854 if (rq->active_balance) {
5855 active_load_balance(rq, cpu);
5856 rq->active_balance = 0;
5857 }
5858
5859 head = &rq->migration_queue;
5860
5861 if (list_empty(head)) {
5862 spin_unlock_irq(&rq->lock);
5863 schedule();
5864 set_current_state(TASK_INTERRUPTIBLE);
5865 continue;
5866 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07005867 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005868 list_del_init(head->next);
5869
Nick Piggin674311d2005-06-25 14:57:27 -07005870 spin_unlock(&rq->lock);
5871 __migrate_task(req->task, cpu, req->dest_cpu);
5872 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005873
5874 complete(&req->done);
5875 }
5876 __set_current_state(TASK_RUNNING);
5877 return 0;
5878
5879wait_to_die:
5880 /* Wait for kthread_stop */
5881 set_current_state(TASK_INTERRUPTIBLE);
5882 while (!kthread_should_stop()) {
5883 schedule();
5884 set_current_state(TASK_INTERRUPTIBLE);
5885 }
5886 __set_current_state(TASK_RUNNING);
5887 return 0;
5888}
5889
5890#ifdef CONFIG_HOTPLUG_CPU
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005891
5892static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu)
5893{
5894 int ret;
5895
5896 local_irq_disable();
5897 ret = __migrate_task(p, src_cpu, dest_cpu);
5898 local_irq_enable();
5899 return ret;
5900}
5901
Kirill Korotaev054b9102006-12-10 02:20:11 -08005902/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02005903 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08005904 * NOTE: interrupts should be disabled by the caller
5905 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005906static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005907{
Kirill Korotaevefc30812006-06-27 02:54:32 -07005908 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005909 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005910 struct rq *rq;
5911 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005912
Andi Kleen3a5c3592007-10-15 17:00:14 +02005913 do {
5914 /* On same node? */
5915 mask = node_to_cpumask(cpu_to_node(dead_cpu));
5916 cpus_and(mask, mask, p->cpus_allowed);
5917 dest_cpu = any_online_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005918
Andi Kleen3a5c3592007-10-15 17:00:14 +02005919 /* On any allowed CPU? */
Mike Travis434d53b2008-04-04 18:11:04 -07005920 if (dest_cpu >= nr_cpu_ids)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005921 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005922
Andi Kleen3a5c3592007-10-15 17:00:14 +02005923 /* No more Mr. Nice Guy. */
Mike Travis434d53b2008-04-04 18:11:04 -07005924 if (dest_cpu >= nr_cpu_ids) {
Mike Travisf9a86fc2008-04-04 18:11:07 -07005925 cpumask_t cpus_allowed;
5926
5927 cpuset_cpus_allowed_locked(p, &cpus_allowed);
Cliff Wickman470fd642007-10-18 23:40:46 -07005928 /*
5929 * Try to stay on the same cpuset, where the
5930 * current cpuset may be a subset of all cpus.
5931 * The cpuset_cpus_allowed_locked() variant of
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005932 * cpuset_cpus_allowed() will not block. It must be
Cliff Wickman470fd642007-10-18 23:40:46 -07005933 * called within calls to cpuset_lock/cpuset_unlock.
5934 */
Andi Kleen3a5c3592007-10-15 17:00:14 +02005935 rq = task_rq_lock(p, &flags);
Cliff Wickman470fd642007-10-18 23:40:46 -07005936 p->cpus_allowed = cpus_allowed;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005937 dest_cpu = any_online_cpu(p->cpus_allowed);
5938 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005939
Andi Kleen3a5c3592007-10-15 17:00:14 +02005940 /*
5941 * Don't tell them about moving exiting tasks or
5942 * kernel threads (both mm NULL), since they never
5943 * leave kernel.
5944 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005945 if (p->mm && printk_ratelimit()) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02005946 printk(KERN_INFO "process %d (%s) no "
5947 "longer affine to cpu%d\n",
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005948 task_pid_nr(p), p->comm, dead_cpu);
5949 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02005950 }
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005951 } while (!__migrate_task_irq(p, dead_cpu, dest_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005952}
5953
5954/*
5955 * While a dead CPU has no uninterruptible tasks queued at this point,
5956 * it might still have a nonzero ->nr_uninterruptible counter, because
5957 * for performance reasons the counter is not stricly tracking tasks to
5958 * their home CPUs. So we just add the counter to another CPU's counter,
5959 * to keep the global sum constant after CPU-down:
5960 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07005961static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005962{
Mike Travis7c16ec52008-04-04 18:11:11 -07005963 struct rq *rq_dest = cpu_rq(any_online_cpu(*CPU_MASK_ALL_PTR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005964 unsigned long flags;
5965
5966 local_irq_save(flags);
5967 double_rq_lock(rq_src, rq_dest);
5968 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
5969 rq_src->nr_uninterruptible = 0;
5970 double_rq_unlock(rq_src, rq_dest);
5971 local_irq_restore(flags);
5972}
5973
5974/* Run through task list and migrate tasks from the dead cpu. */
5975static void migrate_live_tasks(int src_cpu)
5976{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005977 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005979 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005980
Ingo Molnar48f24c42006-07-03 00:25:40 -07005981 do_each_thread(t, p) {
5982 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005983 continue;
5984
Ingo Molnar48f24c42006-07-03 00:25:40 -07005985 if (task_cpu(p) == src_cpu)
5986 move_task_off_dead_cpu(src_cpu, p);
5987 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005988
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005989 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005990}
5991
Ingo Molnardd41f592007-07-09 18:51:59 +02005992/*
5993 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005994 * It does so by boosting its priority to highest possible.
5995 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005996 */
5997void sched_idle_next(void)
5998{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005999 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07006000 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006001 struct task_struct *p = rq->idle;
6002 unsigned long flags;
6003
6004 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006005 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006006
Ingo Molnar48f24c42006-07-03 00:25:40 -07006007 /*
6008 * Strictly not necessary since rest of the CPUs are stopped by now
6009 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006010 */
6011 spin_lock_irqsave(&rq->lock, flags);
6012
Ingo Molnardd41f592007-07-09 18:51:59 +02006013 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006014
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01006015 update_rq_clock(rq);
6016 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006017
6018 spin_unlock_irqrestore(&rq->lock, flags);
6019}
6020
Ingo Molnar48f24c42006-07-03 00:25:40 -07006021/*
6022 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07006023 * offline.
6024 */
6025void idle_task_exit(void)
6026{
6027 struct mm_struct *mm = current->active_mm;
6028
6029 BUG_ON(cpu_online(smp_processor_id()));
6030
6031 if (mm != &init_mm)
6032 switch_mm(mm, &init_mm, current);
6033 mmdrop(mm);
6034}
6035
Kirill Korotaev054b9102006-12-10 02:20:11 -08006036/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006037static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006038{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006039 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006040
6041 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07006042 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006043
6044 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07006045 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006046
Ingo Molnar48f24c42006-07-03 00:25:40 -07006047 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006048
6049 /*
6050 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006051 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07006052 * fine.
6053 */
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006054 spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006055 move_task_off_dead_cpu(dead_cpu, p);
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07006056 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006057
Ingo Molnar48f24c42006-07-03 00:25:40 -07006058 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006059}
6060
6061/* release_task() removes task from tasklist, so we won't find dead tasks. */
6062static void migrate_dead_tasks(unsigned int dead_cpu)
6063{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006064 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02006065 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006066
Ingo Molnardd41f592007-07-09 18:51:59 +02006067 for ( ; ; ) {
6068 if (!rq->nr_running)
6069 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02006070 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02006071 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02006072 if (!next)
6073 break;
Dmitry Adamushko79c53792008-06-29 00:16:56 +02006074 next->sched_class->put_prev_task(rq, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02006075 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02006076
Linus Torvalds1da177e2005-04-16 15:20:36 -07006077 }
6078}
6079#endif /* CONFIG_HOTPLUG_CPU */
6080
Nick Piggine692ab52007-07-26 13:40:43 +02006081#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
6082
6083static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006084 {
6085 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006086 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006087 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01006088 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02006089};
6090
6091static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006092 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006093 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006094 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006095 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006096 .child = sd_ctl_dir,
6097 },
Ingo Molnar38605ca2007-10-29 21:18:11 +01006098 {0, },
Nick Piggine692ab52007-07-26 13:40:43 +02006099};
6100
6101static struct ctl_table *sd_alloc_ctl_entry(int n)
6102{
6103 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02006104 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02006105
Nick Piggine692ab52007-07-26 13:40:43 +02006106 return entry;
6107}
6108
Milton Miller6382bc92007-10-15 17:00:19 +02006109static void sd_free_ctl_entry(struct ctl_table **tablep)
6110{
Milton Millercd7900762007-10-17 16:55:11 +02006111 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02006112
Milton Millercd7900762007-10-17 16:55:11 +02006113 /*
6114 * In the intermediate directories, both the child directory and
6115 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006116 * will always be set. In the lowest directory the names are
Milton Millercd7900762007-10-17 16:55:11 +02006117 * static strings and all have proc handlers.
6118 */
6119 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02006120 if (entry->child)
6121 sd_free_ctl_entry(&entry->child);
Milton Millercd7900762007-10-17 16:55:11 +02006122 if (entry->proc_handler == NULL)
6123 kfree(entry->procname);
6124 }
Milton Miller6382bc92007-10-15 17:00:19 +02006125
6126 kfree(*tablep);
6127 *tablep = NULL;
6128}
6129
Nick Piggine692ab52007-07-26 13:40:43 +02006130static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02006131set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02006132 const char *procname, void *data, int maxlen,
6133 mode_t mode, proc_handler *proc_handler)
6134{
Nick Piggine692ab52007-07-26 13:40:43 +02006135 entry->procname = procname;
6136 entry->data = data;
6137 entry->maxlen = maxlen;
6138 entry->mode = mode;
6139 entry->proc_handler = proc_handler;
6140}
6141
6142static struct ctl_table *
6143sd_alloc_ctl_domain_table(struct sched_domain *sd)
6144{
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006145 struct ctl_table *table = sd_alloc_ctl_entry(12);
Nick Piggine692ab52007-07-26 13:40:43 +02006146
Milton Millerad1cdc12007-10-15 17:00:19 +02006147 if (table == NULL)
6148 return NULL;
6149
Alexey Dobriyane0361852007-08-09 11:16:46 +02006150 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006151 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006152 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006153 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006154 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006155 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006156 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006157 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006158 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006159 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006160 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006161 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006162 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006163 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006164 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02006165 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006166 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02006167 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006168 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02006169 &sd->cache_nice_tries,
6170 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006171 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02006172 sizeof(int), 0644, proc_dointvec_minmax);
Milton Miller6323469f2007-10-15 17:00:19 +02006173 /* &table[11] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02006174
6175 return table;
6176}
6177
Ingo Molnar9a4e7152007-11-28 15:52:56 +01006178static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02006179{
6180 struct ctl_table *entry, *table;
6181 struct sched_domain *sd;
6182 int domain_num = 0, i;
6183 char buf[32];
6184
6185 for_each_domain(cpu, sd)
6186 domain_num++;
6187 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02006188 if (table == NULL)
6189 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02006190
6191 i = 0;
6192 for_each_domain(cpu, sd) {
6193 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006194 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006195 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006196 entry->child = sd_alloc_ctl_domain_table(sd);
6197 entry++;
6198 i++;
6199 }
6200 return table;
6201}
6202
6203static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02006204static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006205{
6206 int i, cpu_num = num_online_cpus();
6207 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
6208 char buf[32];
6209
Milton Miller73785472007-10-24 18:23:48 +02006210 WARN_ON(sd_ctl_dir[0].child);
6211 sd_ctl_dir[0].child = entry;
6212
Milton Millerad1cdc12007-10-15 17:00:19 +02006213 if (entry == NULL)
6214 return;
6215
Milton Miller97b6ea72007-10-15 17:00:19 +02006216 for_each_online_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02006217 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006218 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006219 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006220 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02006221 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02006222 }
Milton Miller73785472007-10-24 18:23:48 +02006223
6224 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02006225 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
6226}
Milton Miller6382bc92007-10-15 17:00:19 +02006227
Milton Miller73785472007-10-24 18:23:48 +02006228/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02006229static void unregister_sched_domain_sysctl(void)
6230{
Milton Miller73785472007-10-24 18:23:48 +02006231 if (sd_sysctl_header)
6232 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02006233 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02006234 if (sd_ctl_dir[0].child)
6235 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02006236}
Nick Piggine692ab52007-07-26 13:40:43 +02006237#else
Milton Miller6382bc92007-10-15 17:00:19 +02006238static void register_sched_domain_sysctl(void)
6239{
6240}
6241static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006242{
6243}
6244#endif
6245
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006246static void set_rq_online(struct rq *rq)
6247{
6248 if (!rq->online) {
6249 const struct sched_class *class;
6250
6251 cpu_set(rq->cpu, rq->rd->online);
6252 rq->online = 1;
6253
6254 for_each_class(class) {
6255 if (class->rq_online)
6256 class->rq_online(rq);
6257 }
6258 }
6259}
6260
6261static void set_rq_offline(struct rq *rq)
6262{
6263 if (rq->online) {
6264 const struct sched_class *class;
6265
6266 for_each_class(class) {
6267 if (class->rq_offline)
6268 class->rq_offline(rq);
6269 }
6270
6271 cpu_clear(rq->cpu, rq->rd->online);
6272 rq->online = 0;
6273 }
6274}
6275
Linus Torvalds1da177e2005-04-16 15:20:36 -07006276/*
6277 * migration_call - callback that gets triggered when a CPU is added.
6278 * Here we can start up the necessary migration thread for the new CPU.
6279 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006280static int __cpuinit
6281migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006282{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006283 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006284 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006285 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006286 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006287
6288 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006289
Linus Torvalds1da177e2005-04-16 15:20:36 -07006290 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006291 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02006292 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006293 if (IS_ERR(p))
6294 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006295 kthread_bind(p, cpu);
6296 /* Must be high prio: stop_machine expects to yield to it. */
6297 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02006298 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006299 task_rq_unlock(rq, &flags);
6300 cpu_rq(cpu)->migration_thread = p;
6301 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006302
Linus Torvalds1da177e2005-04-16 15:20:36 -07006303 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006304 case CPU_ONLINE_FROZEN:
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02006305 /* Strictly unnecessary, as first user will wake it. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006306 wake_up_process(cpu_rq(cpu)->migration_thread);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006307
6308 /* Update our root-domain */
6309 rq = cpu_rq(cpu);
6310 spin_lock_irqsave(&rq->lock, flags);
6311 if (rq->rd) {
6312 BUG_ON(!cpu_isset(cpu, rq->rd->span));
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006313
6314 set_rq_online(rq);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006315 }
6316 spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006317 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006318
Linus Torvalds1da177e2005-04-16 15:20:36 -07006319#ifdef CONFIG_HOTPLUG_CPU
6320 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006321 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07006322 if (!cpu_rq(cpu)->migration_thread)
6323 break;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006324 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08006325 kthread_bind(cpu_rq(cpu)->migration_thread,
6326 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006327 kthread_stop(cpu_rq(cpu)->migration_thread);
6328 cpu_rq(cpu)->migration_thread = NULL;
6329 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006330
Linus Torvalds1da177e2005-04-16 15:20:36 -07006331 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006332 case CPU_DEAD_FROZEN:
Cliff Wickman470fd642007-10-18 23:40:46 -07006333 cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006334 migrate_live_tasks(cpu);
6335 rq = cpu_rq(cpu);
6336 kthread_stop(rq->migration_thread);
6337 rq->migration_thread = NULL;
6338 /* Idle task back to normal (off runqueue, low prio) */
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006339 spin_lock_irq(&rq->lock);
Ingo Molnara8e504d2007-08-09 11:16:47 +02006340 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006341 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006342 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02006343 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
6344 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006345 migrate_dead_tasks(cpu);
Oleg Nesterovd2da2722007-10-16 23:30:56 -07006346 spin_unlock_irq(&rq->lock);
Cliff Wickman470fd642007-10-18 23:40:46 -07006347 cpuset_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006348 migrate_nr_uninterruptible(rq);
6349 BUG_ON(rq->nr_running != 0);
6350
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006351 /*
6352 * No need to migrate the tasks: it was best-effort if
6353 * they didn't take sched_hotcpu_mutex. Just wake up
6354 * the requestors.
6355 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006356 spin_lock_irq(&rq->lock);
6357 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006358 struct migration_req *req;
6359
Linus Torvalds1da177e2005-04-16 15:20:36 -07006360 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07006361 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006362 list_del_init(&req->list);
6363 complete(&req->done);
6364 }
6365 spin_unlock_irq(&rq->lock);
6366 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006367
Gregory Haskins08f503b2008-03-10 17:59:11 -04006368 case CPU_DYING:
6369 case CPU_DYING_FROZEN:
Gregory Haskins57d885f2008-01-25 21:08:18 +01006370 /* Update our root-domain */
6371 rq = cpu_rq(cpu);
6372 spin_lock_irqsave(&rq->lock, flags);
6373 if (rq->rd) {
6374 BUG_ON(!cpu_isset(cpu, rq->rd->span));
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006375 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006376 }
6377 spin_unlock_irqrestore(&rq->lock, flags);
6378 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006379#endif
6380 }
6381 return NOTIFY_OK;
6382}
6383
6384/* Register at highest priority so that task migration (migrate_all_tasks)
6385 * happens before everything else.
6386 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07006387static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006388 .notifier_call = migration_call,
6389 .priority = 10
6390};
6391
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07006392static int __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006393{
6394 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07006395 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006396
6397 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07006398 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
6399 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006400 migration_call(&migration_notifier, CPU_ONLINE, cpu);
6401 register_cpu_notifier(&migration_notifier);
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07006402
6403 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006404}
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07006405early_initcall(migration_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006406#endif
6407
6408#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07006409
Ingo Molnar3e9830d2007-10-15 17:00:13 +02006410#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006411
Gautham R Shenoy099f98c2008-05-29 20:56:32 +05306412static inline const char *sd_level_to_string(enum sched_domain_level lvl)
6413{
6414 switch (lvl) {
6415 case SD_LV_NONE:
6416 return "NONE";
6417 case SD_LV_SIBLING:
6418 return "SIBLING";
6419 case SD_LV_MC:
6420 return "MC";
6421 case SD_LV_CPU:
6422 return "CPU";
6423 case SD_LV_NODE:
6424 return "NODE";
6425 case SD_LV_ALLNODES:
6426 return "ALLNODES";
6427 case SD_LV_MAX:
6428 return "MAX";
6429
6430 }
6431 return "MAX";
6432}
6433
Mike Travis7c16ec52008-04-04 18:11:11 -07006434static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
6435 cpumask_t *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006436{
6437 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07006438 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006439
Mike Travis434d53b2008-04-04 18:11:04 -07006440 cpulist_scnprintf(str, sizeof(str), sd->span);
Mike Travis7c16ec52008-04-04 18:11:11 -07006441 cpus_clear(*groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006442
6443 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
6444
6445 if (!(sd->flags & SD_LOAD_BALANCE)) {
6446 printk("does not load-balance\n");
6447 if (sd->parent)
6448 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
6449 " has parent");
6450 return -1;
6451 }
6452
Gautham R Shenoy099f98c2008-05-29 20:56:32 +05306453 printk(KERN_CONT "span %s level %s\n",
6454 str, sd_level_to_string(sd->level));
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006455
6456 if (!cpu_isset(cpu, sd->span)) {
6457 printk(KERN_ERR "ERROR: domain->span does not contain "
6458 "CPU%d\n", cpu);
6459 }
6460 if (!cpu_isset(cpu, group->cpumask)) {
6461 printk(KERN_ERR "ERROR: domain->groups does not contain"
6462 " CPU%d\n", cpu);
6463 }
6464
6465 printk(KERN_DEBUG "%*s groups:", level + 1, "");
6466 do {
6467 if (!group) {
6468 printk("\n");
6469 printk(KERN_ERR "ERROR: group is NULL\n");
6470 break;
6471 }
6472
6473 if (!group->__cpu_power) {
6474 printk(KERN_CONT "\n");
6475 printk(KERN_ERR "ERROR: domain->cpu_power not "
6476 "set\n");
6477 break;
6478 }
6479
6480 if (!cpus_weight(group->cpumask)) {
6481 printk(KERN_CONT "\n");
6482 printk(KERN_ERR "ERROR: empty group\n");
6483 break;
6484 }
6485
Mike Travis7c16ec52008-04-04 18:11:11 -07006486 if (cpus_intersects(*groupmask, group->cpumask)) {
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006487 printk(KERN_CONT "\n");
6488 printk(KERN_ERR "ERROR: repeated CPUs\n");
6489 break;
6490 }
6491
Mike Travis7c16ec52008-04-04 18:11:11 -07006492 cpus_or(*groupmask, *groupmask, group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006493
Mike Travis434d53b2008-04-04 18:11:04 -07006494 cpulist_scnprintf(str, sizeof(str), group->cpumask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006495 printk(KERN_CONT " %s", str);
6496
6497 group = group->next;
6498 } while (group != sd->groups);
6499 printk(KERN_CONT "\n");
6500
Mike Travis7c16ec52008-04-04 18:11:11 -07006501 if (!cpus_equal(sd->span, *groupmask))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006502 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
6503
Mike Travis7c16ec52008-04-04 18:11:11 -07006504 if (sd->parent && !cpus_subset(*groupmask, sd->parent->span))
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006505 printk(KERN_ERR "ERROR: parent span is not a superset "
6506 "of domain->span\n");
6507 return 0;
6508}
6509
Linus Torvalds1da177e2005-04-16 15:20:36 -07006510static void sched_domain_debug(struct sched_domain *sd, int cpu)
6511{
Mike Travis7c16ec52008-04-04 18:11:11 -07006512 cpumask_t *groupmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006513 int level = 0;
6514
Nick Piggin41c7ce92005-06-25 14:57:24 -07006515 if (!sd) {
6516 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6517 return;
6518 }
6519
Linus Torvalds1da177e2005-04-16 15:20:36 -07006520 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6521
Mike Travis7c16ec52008-04-04 18:11:11 -07006522 groupmask = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
6523 if (!groupmask) {
6524 printk(KERN_DEBUG "Cannot load-balance (out of memory)\n");
6525 return;
6526 }
6527
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006528 for (;;) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006529 if (sched_domain_debug_one(sd, cpu, level, groupmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006530 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006531 level++;
6532 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006533 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006534 break;
6535 }
Mike Travis7c16ec52008-04-04 18:11:11 -07006536 kfree(groupmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006537}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006538#else /* !CONFIG_SCHED_DEBUG */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006539# define sched_domain_debug(sd, cpu) do { } while (0)
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006540#endif /* CONFIG_SCHED_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006541
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006542static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006543{
6544 if (cpus_weight(sd->span) == 1)
6545 return 1;
6546
6547 /* Following flags need at least 2 groups */
6548 if (sd->flags & (SD_LOAD_BALANCE |
6549 SD_BALANCE_NEWIDLE |
6550 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006551 SD_BALANCE_EXEC |
6552 SD_SHARE_CPUPOWER |
6553 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006554 if (sd->groups != sd->groups->next)
6555 return 0;
6556 }
6557
6558 /* Following flags don't use groups */
6559 if (sd->flags & (SD_WAKE_IDLE |
6560 SD_WAKE_AFFINE |
6561 SD_WAKE_BALANCE))
6562 return 0;
6563
6564 return 1;
6565}
6566
Ingo Molnar48f24c42006-07-03 00:25:40 -07006567static int
6568sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006569{
6570 unsigned long cflags = sd->flags, pflags = parent->flags;
6571
6572 if (sd_degenerate(parent))
6573 return 1;
6574
6575 if (!cpus_equal(sd->span, parent->span))
6576 return 0;
6577
6578 /* Does parent contain flags not in child? */
6579 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
6580 if (cflags & SD_WAKE_AFFINE)
6581 pflags &= ~SD_WAKE_BALANCE;
6582 /* Flags needing groups don't count if only 1 group in parent */
6583 if (parent->groups == parent->groups->next) {
6584 pflags &= ~(SD_LOAD_BALANCE |
6585 SD_BALANCE_NEWIDLE |
6586 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006587 SD_BALANCE_EXEC |
6588 SD_SHARE_CPUPOWER |
6589 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006590 }
6591 if (~cflags & pflags)
6592 return 0;
6593
6594 return 1;
6595}
6596
Gregory Haskins57d885f2008-01-25 21:08:18 +01006597static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6598{
6599 unsigned long flags;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006600
6601 spin_lock_irqsave(&rq->lock, flags);
6602
6603 if (rq->rd) {
6604 struct root_domain *old_rd = rq->rd;
6605
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006606 if (cpu_isset(rq->cpu, old_rd->online))
6607 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006608
Gregory Haskinsdc938522008-01-25 21:08:26 +01006609 cpu_clear(rq->cpu, old_rd->span);
Gregory Haskinsdc938522008-01-25 21:08:26 +01006610
Gregory Haskins57d885f2008-01-25 21:08:18 +01006611 if (atomic_dec_and_test(&old_rd->refcount))
6612 kfree(old_rd);
6613 }
6614
6615 atomic_inc(&rd->refcount);
6616 rq->rd = rd;
6617
Gregory Haskinsdc938522008-01-25 21:08:26 +01006618 cpu_set(rq->cpu, rd->span);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006619 if (cpu_isset(rq->cpu, cpu_online_map))
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006620 set_rq_online(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006621
6622 spin_unlock_irqrestore(&rq->lock, flags);
6623}
6624
Gregory Haskinsdc938522008-01-25 21:08:26 +01006625static void init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006626{
6627 memset(rd, 0, sizeof(*rd));
6628
Gregory Haskinsdc938522008-01-25 21:08:26 +01006629 cpus_clear(rd->span);
6630 cpus_clear(rd->online);
Gregory Haskins6e0534f2008-05-12 21:21:01 +02006631
6632 cpupri_init(&rd->cpupri);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006633}
6634
6635static void init_defrootdomain(void)
6636{
Gregory Haskinsdc938522008-01-25 21:08:26 +01006637 init_rootdomain(&def_root_domain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006638 atomic_set(&def_root_domain.refcount, 1);
6639}
6640
Gregory Haskinsdc938522008-01-25 21:08:26 +01006641static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006642{
6643 struct root_domain *rd;
6644
6645 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6646 if (!rd)
6647 return NULL;
6648
Gregory Haskinsdc938522008-01-25 21:08:26 +01006649 init_rootdomain(rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006650
6651 return rd;
6652}
6653
Linus Torvalds1da177e2005-04-16 15:20:36 -07006654/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01006655 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07006656 * hold the hotplug lock.
6657 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01006658static void
6659cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006660{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006661 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006662 struct sched_domain *tmp;
6663
6664 /* Remove the sched domains which do not contribute to scheduling. */
6665 for (tmp = sd; tmp; tmp = tmp->parent) {
6666 struct sched_domain *parent = tmp->parent;
6667 if (!parent)
6668 break;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006669 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006670 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006671 if (parent->parent)
6672 parent->parent->child = tmp;
6673 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07006674 }
6675
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006676 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006677 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006678 if (sd)
6679 sd->child = NULL;
6680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006681
6682 sched_domain_debug(sd, cpu);
6683
Gregory Haskins57d885f2008-01-25 21:08:18 +01006684 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07006685 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006686}
6687
6688/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08006689static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006690
6691/* Setup the mask of cpus configured for isolated domains */
6692static int __init isolated_cpu_setup(char *str)
6693{
Mike Travis13b40c12008-07-01 10:32:50 -07006694 static int __initdata ints[NR_CPUS];
6695 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006696
6697 str = get_options(str, ARRAY_SIZE(ints), ints);
6698 cpus_clear(cpu_isolated_map);
6699 for (i = 1; i <= ints[0]; i++)
6700 if (ints[i] < NR_CPUS)
6701 cpu_set(ints[i], cpu_isolated_map);
6702 return 1;
6703}
6704
Ingo Molnar8927f492007-10-15 17:00:13 +02006705__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006706
6707/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006708 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
6709 * to a function which identifies what group(along with sched group) a CPU
6710 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
6711 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006712 *
6713 * init_sched_build_groups will build a circular linked list of the groups
6714 * covered by the given span, and will set each group's ->cpumask correctly,
6715 * and ->cpu_power to 0.
6716 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006717static void
Mike Travis7c16ec52008-04-04 18:11:11 -07006718init_sched_build_groups(const cpumask_t *span, const cpumask_t *cpu_map,
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006719 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006720 struct sched_group **sg,
6721 cpumask_t *tmpmask),
6722 cpumask_t *covered, cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006723{
6724 struct sched_group *first = NULL, *last = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006725 int i;
6726
Mike Travis7c16ec52008-04-04 18:11:11 -07006727 cpus_clear(*covered);
6728
Mike Travis363ab6f2008-05-12 21:21:13 +02006729 for_each_cpu_mask_nr(i, *span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006730 struct sched_group *sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07006731 int group = group_fn(i, cpu_map, &sg, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006732 int j;
6733
Mike Travis7c16ec52008-04-04 18:11:11 -07006734 if (cpu_isset(i, *covered))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006735 continue;
6736
Mike Travis7c16ec52008-04-04 18:11:11 -07006737 cpus_clear(sg->cpumask);
Eric Dumazet5517d862007-05-08 00:32:57 -07006738 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006739
Mike Travis363ab6f2008-05-12 21:21:13 +02006740 for_each_cpu_mask_nr(j, *span) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006741 if (group_fn(j, cpu_map, NULL, tmpmask) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006742 continue;
6743
Mike Travis7c16ec52008-04-04 18:11:11 -07006744 cpu_set(j, *covered);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006745 cpu_set(j, sg->cpumask);
6746 }
6747 if (!first)
6748 first = sg;
6749 if (last)
6750 last->next = sg;
6751 last = sg;
6752 }
6753 last->next = first;
6754}
6755
John Hawkes9c1cfda2005-09-06 15:18:14 -07006756#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07006757
John Hawkes9c1cfda2005-09-06 15:18:14 -07006758#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006759
John Hawkes9c1cfda2005-09-06 15:18:14 -07006760/**
6761 * find_next_best_node - find the next node to include in a sched_domain
6762 * @node: node whose sched_domain we're building
6763 * @used_nodes: nodes already in the sched_domain
6764 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006765 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07006766 * finds the closest node not already in the @used_nodes map.
6767 *
6768 * Should use nodemask_t.
6769 */
Mike Travisc5f59f02008-04-04 18:11:10 -07006770static int find_next_best_node(int node, nodemask_t *used_nodes)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006771{
6772 int i, n, val, min_val, best_node = 0;
6773
6774 min_val = INT_MAX;
6775
Mike Travis076ac2a2008-05-12 21:21:12 +02006776 for (i = 0; i < nr_node_ids; i++) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07006777 /* Start at @node */
Mike Travis076ac2a2008-05-12 21:21:12 +02006778 n = (node + i) % nr_node_ids;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006779
6780 if (!nr_cpus_node(n))
6781 continue;
6782
6783 /* Skip already used nodes */
Mike Travisc5f59f02008-04-04 18:11:10 -07006784 if (node_isset(n, *used_nodes))
John Hawkes9c1cfda2005-09-06 15:18:14 -07006785 continue;
6786
6787 /* Simple min distance search */
6788 val = node_distance(node, n);
6789
6790 if (val < min_val) {
6791 min_val = val;
6792 best_node = n;
6793 }
6794 }
6795
Mike Travisc5f59f02008-04-04 18:11:10 -07006796 node_set(best_node, *used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006797 return best_node;
6798}
6799
6800/**
6801 * sched_domain_node_span - get a cpumask for a node's sched_domain
6802 * @node: node whose cpumask we're constructing
Randy Dunlap73486722008-04-22 10:07:22 -07006803 * @span: resulting cpumask
John Hawkes9c1cfda2005-09-06 15:18:14 -07006804 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006805 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07006806 * should be one that prevents unnecessary balancing, but also spreads tasks
6807 * out optimally.
6808 */
Mike Travis4bdbaad32008-04-15 16:35:52 -07006809static void sched_domain_node_span(int node, cpumask_t *span)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006810{
Mike Travisc5f59f02008-04-04 18:11:10 -07006811 nodemask_t used_nodes;
Mike Travisc5f59f02008-04-04 18:11:10 -07006812 node_to_cpumask_ptr(nodemask, node);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006813 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006814
Mike Travis4bdbaad32008-04-15 16:35:52 -07006815 cpus_clear(*span);
Mike Travisc5f59f02008-04-04 18:11:10 -07006816 nodes_clear(used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006817
Mike Travis4bdbaad32008-04-15 16:35:52 -07006818 cpus_or(*span, *span, *nodemask);
Mike Travisc5f59f02008-04-04 18:11:10 -07006819 node_set(node, used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006820
6821 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
Mike Travisc5f59f02008-04-04 18:11:10 -07006822 int next_node = find_next_best_node(node, &used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006823
Mike Travisc5f59f02008-04-04 18:11:10 -07006824 node_to_cpumask_ptr_next(nodemask, next_node);
Mike Travis4bdbaad32008-04-15 16:35:52 -07006825 cpus_or(*span, *span, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006826 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006827}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006828#endif /* CONFIG_NUMA */
John Hawkes9c1cfda2005-09-06 15:18:14 -07006829
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006830int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006831
John Hawkes9c1cfda2005-09-06 15:18:14 -07006832/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07006833 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07006834 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006835#ifdef CONFIG_SCHED_SMT
6836static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006837static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006838
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006839static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006840cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6841 cpumask_t *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006842{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006843 if (sg)
6844 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006845 return cpu;
6846}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006847#endif /* CONFIG_SCHED_SMT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006848
Ingo Molnar48f24c42006-07-03 00:25:40 -07006849/*
6850 * multi-core sched-domains:
6851 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006852#ifdef CONFIG_SCHED_MC
6853static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006854static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006855#endif /* CONFIG_SCHED_MC */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006856
6857#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006858static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006859cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6860 cpumask_t *mask)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006861{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006862 int group;
Mike Travis7c16ec52008-04-04 18:11:11 -07006863
6864 *mask = per_cpu(cpu_sibling_map, cpu);
6865 cpus_and(*mask, *mask, *cpu_map);
6866 group = first_cpu(*mask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006867 if (sg)
6868 *sg = &per_cpu(sched_group_core, group);
6869 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006870}
6871#elif defined(CONFIG_SCHED_MC)
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006872static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006873cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6874 cpumask_t *unused)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006875{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006876 if (sg)
6877 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006878 return cpu;
6879}
6880#endif
6881
Linus Torvalds1da177e2005-04-16 15:20:36 -07006882static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006883static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006884
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006885static int
Mike Travis7c16ec52008-04-04 18:11:11 -07006886cpu_to_phys_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg,
6887 cpumask_t *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006888{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006889 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006890#ifdef CONFIG_SCHED_MC
Mike Travis7c16ec52008-04-04 18:11:11 -07006891 *mask = cpu_coregroup_map(cpu);
6892 cpus_and(*mask, *mask, *cpu_map);
6893 group = first_cpu(*mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006894#elif defined(CONFIG_SCHED_SMT)
Mike Travis7c16ec52008-04-04 18:11:11 -07006895 *mask = per_cpu(cpu_sibling_map, cpu);
6896 cpus_and(*mask, *mask, *cpu_map);
6897 group = first_cpu(*mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006898#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006899 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006900#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006901 if (sg)
6902 *sg = &per_cpu(sched_group_phys, group);
6903 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006904}
6905
6906#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07006907/*
6908 * The init_sched_build_groups can't handle what we want to do with node
6909 * groups, so roll our own. Now each node has its own list of groups which
6910 * gets dynamically allocated.
6911 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006912static DEFINE_PER_CPU(struct sched_domain, node_domains);
Mike Travis434d53b2008-04-04 18:11:04 -07006913static struct sched_group ***sched_group_nodes_bycpu;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006914
6915static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006916static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006917
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006918static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006919 struct sched_group **sg, cpumask_t *nodemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006920{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006921 int group;
6922
Mike Travis7c16ec52008-04-04 18:11:11 -07006923 *nodemask = node_to_cpumask(cpu_to_node(cpu));
6924 cpus_and(*nodemask, *nodemask, *cpu_map);
6925 group = first_cpu(*nodemask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006926
6927 if (sg)
6928 *sg = &per_cpu(sched_group_allnodes, group);
6929 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006930}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006931
Siddha, Suresh B08069032006-03-27 01:15:23 -08006932static void init_numa_sched_groups_power(struct sched_group *group_head)
6933{
6934 struct sched_group *sg = group_head;
6935 int j;
6936
6937 if (!sg)
6938 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006939 do {
Mike Travis363ab6f2008-05-12 21:21:13 +02006940 for_each_cpu_mask_nr(j, sg->cpumask) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02006941 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08006942
Andi Kleen3a5c3592007-10-15 17:00:14 +02006943 sd = &per_cpu(phys_domains, j);
6944 if (j != first_cpu(sd->groups->cpumask)) {
6945 /*
6946 * Only add "power" once for each
6947 * physical package.
6948 */
6949 continue;
6950 }
6951
6952 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006953 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02006954 sg = sg->next;
6955 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006956}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006957#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006958
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006959#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006960/* Free memory allocated for various sched_group structures */
Mike Travis7c16ec52008-04-04 18:11:11 -07006961static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006962{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006963 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006964
Mike Travis363ab6f2008-05-12 21:21:13 +02006965 for_each_cpu_mask_nr(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006966 struct sched_group **sched_group_nodes
6967 = sched_group_nodes_bycpu[cpu];
6968
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006969 if (!sched_group_nodes)
6970 continue;
6971
Mike Travis076ac2a2008-05-12 21:21:12 +02006972 for (i = 0; i < nr_node_ids; i++) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006973 struct sched_group *oldsg, *sg = sched_group_nodes[i];
6974
Mike Travis7c16ec52008-04-04 18:11:11 -07006975 *nodemask = node_to_cpumask(i);
6976 cpus_and(*nodemask, *nodemask, *cpu_map);
6977 if (cpus_empty(*nodemask))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006978 continue;
6979
6980 if (sg == NULL)
6981 continue;
6982 sg = sg->next;
6983next_sg:
6984 oldsg = sg;
6985 sg = sg->next;
6986 kfree(oldsg);
6987 if (oldsg != sched_group_nodes[i])
6988 goto next_sg;
6989 }
6990 kfree(sched_group_nodes);
6991 sched_group_nodes_bycpu[cpu] = NULL;
6992 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006993}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006994#else /* !CONFIG_NUMA */
Mike Travis7c16ec52008-04-04 18:11:11 -07006995static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask)
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006996{
6997}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006998#endif /* CONFIG_NUMA */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006999
Linus Torvalds1da177e2005-04-16 15:20:36 -07007000/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007001 * Initialize sched groups cpu_power.
7002 *
7003 * cpu_power indicates the capacity of sched group, which is used while
7004 * distributing the load between different sched groups in a sched domain.
7005 * Typically cpu_power for all the groups in a sched domain will be same unless
7006 * there are asymmetries in the topology. If there are asymmetries, group
7007 * having more cpu_power will pickup more load compared to the group having
7008 * less cpu_power.
7009 *
7010 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
7011 * the maximum number of tasks a group can handle in the presence of other idle
7012 * or lightly loaded groups in the same sched domain.
7013 */
7014static void init_sched_groups_power(int cpu, struct sched_domain *sd)
7015{
7016 struct sched_domain *child;
7017 struct sched_group *group;
7018
7019 WARN_ON(!sd || !sd->groups);
7020
7021 if (cpu != first_cpu(sd->groups->cpumask))
7022 return;
7023
7024 child = sd->child;
7025
Eric Dumazet5517d862007-05-08 00:32:57 -07007026 sd->groups->__cpu_power = 0;
7027
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007028 /*
7029 * For perf policy, if the groups in child domain share resources
7030 * (for example cores sharing some portions of the cache hierarchy
7031 * or SMT), then set this domain groups cpu_power such that each group
7032 * can handle only one task, when there are other idle groups in the
7033 * same sched domain.
7034 */
7035 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
7036 (child->flags &
7037 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07007038 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007039 return;
7040 }
7041
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007042 /*
7043 * add cpu_power of each child group to this groups cpu_power
7044 */
7045 group = child->groups;
7046 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07007047 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007048 group = group->next;
7049 } while (group != child->groups);
7050}
7051
7052/*
Mike Travis7c16ec52008-04-04 18:11:11 -07007053 * Initializers for schedule domains
7054 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
7055 */
7056
7057#define SD_INIT(sd, type) sd_init_##type(sd)
7058#define SD_INIT_FUNC(type) \
7059static noinline void sd_init_##type(struct sched_domain *sd) \
7060{ \
7061 memset(sd, 0, sizeof(*sd)); \
7062 *sd = SD_##type##_INIT; \
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007063 sd->level = SD_LV_##type; \
Mike Travis7c16ec52008-04-04 18:11:11 -07007064}
7065
7066SD_INIT_FUNC(CPU)
7067#ifdef CONFIG_NUMA
7068 SD_INIT_FUNC(ALLNODES)
7069 SD_INIT_FUNC(NODE)
7070#endif
7071#ifdef CONFIG_SCHED_SMT
7072 SD_INIT_FUNC(SIBLING)
7073#endif
7074#ifdef CONFIG_SCHED_MC
7075 SD_INIT_FUNC(MC)
7076#endif
7077
7078/*
7079 * To minimize stack usage kmalloc room for cpumasks and share the
7080 * space as the usage in build_sched_domains() dictates. Used only
7081 * if the amount of space is significant.
7082 */
7083struct allmasks {
7084 cpumask_t tmpmask; /* make this one first */
7085 union {
7086 cpumask_t nodemask;
7087 cpumask_t this_sibling_map;
7088 cpumask_t this_core_map;
7089 };
7090 cpumask_t send_covered;
7091
7092#ifdef CONFIG_NUMA
7093 cpumask_t domainspan;
7094 cpumask_t covered;
7095 cpumask_t notcovered;
7096#endif
7097};
7098
7099#if NR_CPUS > 128
7100#define SCHED_CPUMASK_ALLOC 1
7101#define SCHED_CPUMASK_FREE(v) kfree(v)
7102#define SCHED_CPUMASK_DECLARE(v) struct allmasks *v
7103#else
7104#define SCHED_CPUMASK_ALLOC 0
7105#define SCHED_CPUMASK_FREE(v)
7106#define SCHED_CPUMASK_DECLARE(v) struct allmasks _v, *v = &_v
7107#endif
7108
7109#define SCHED_CPUMASK_VAR(v, a) cpumask_t *v = (cpumask_t *) \
7110 ((unsigned long)(a) + offsetof(struct allmasks, v))
7111
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007112static int default_relax_domain_level = -1;
7113
7114static int __init setup_relax_domain_level(char *str)
7115{
Li Zefan30e0e172008-05-13 10:27:17 +08007116 unsigned long val;
7117
7118 val = simple_strtoul(str, NULL, 0);
7119 if (val < SD_LV_MAX)
7120 default_relax_domain_level = val;
7121
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007122 return 1;
7123}
7124__setup("relax_domain_level=", setup_relax_domain_level);
7125
7126static void set_domain_attribute(struct sched_domain *sd,
7127 struct sched_domain_attr *attr)
7128{
7129 int request;
7130
7131 if (!attr || attr->relax_domain_level < 0) {
7132 if (default_relax_domain_level < 0)
7133 return;
7134 else
7135 request = default_relax_domain_level;
7136 } else
7137 request = attr->relax_domain_level;
7138 if (request < sd->level) {
7139 /* turn off idle balance on this domain */
7140 sd->flags &= ~(SD_WAKE_IDLE|SD_BALANCE_NEWIDLE);
7141 } else {
7142 /* turn on idle balance on this domain */
7143 sd->flags |= (SD_WAKE_IDLE_FAR|SD_BALANCE_NEWIDLE);
7144 }
7145}
7146
Mike Travis7c16ec52008-04-04 18:11:11 -07007147/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007148 * Build sched domains for a given set of cpus and attach the sched domains
7149 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07007150 */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007151static int __build_sched_domains(const cpumask_t *cpu_map,
7152 struct sched_domain_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007153{
7154 int i;
Gregory Haskins57d885f2008-01-25 21:08:18 +01007155 struct root_domain *rd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007156 SCHED_CPUMASK_DECLARE(allmasks);
7157 cpumask_t *tmpmask;
John Hawkesd1b55132005-09-06 15:18:14 -07007158#ifdef CONFIG_NUMA
7159 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007160 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07007161
7162 /*
7163 * Allocate the per-node list of sched groups
7164 */
Mike Travis076ac2a2008-05-12 21:21:12 +02007165 sched_group_nodes = kcalloc(nr_node_ids, sizeof(struct sched_group *),
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007166 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07007167 if (!sched_group_nodes) {
7168 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007169 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07007170 }
John Hawkesd1b55132005-09-06 15:18:14 -07007171#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007172
Gregory Haskinsdc938522008-01-25 21:08:26 +01007173 rd = alloc_rootdomain();
Gregory Haskins57d885f2008-01-25 21:08:18 +01007174 if (!rd) {
7175 printk(KERN_WARNING "Cannot alloc root domain\n");
Mike Travis7c16ec52008-04-04 18:11:11 -07007176#ifdef CONFIG_NUMA
7177 kfree(sched_group_nodes);
7178#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007179 return -ENOMEM;
7180 }
7181
Mike Travis7c16ec52008-04-04 18:11:11 -07007182#if SCHED_CPUMASK_ALLOC
7183 /* get space for all scratch cpumask variables */
7184 allmasks = kmalloc(sizeof(*allmasks), GFP_KERNEL);
7185 if (!allmasks) {
7186 printk(KERN_WARNING "Cannot alloc cpumask array\n");
7187 kfree(rd);
7188#ifdef CONFIG_NUMA
7189 kfree(sched_group_nodes);
7190#endif
7191 return -ENOMEM;
7192 }
7193#endif
7194 tmpmask = (cpumask_t *)allmasks;
7195
7196
7197#ifdef CONFIG_NUMA
7198 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
7199#endif
7200
Linus Torvalds1da177e2005-04-16 15:20:36 -07007201 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007202 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007203 */
Mike Travis363ab6f2008-05-12 21:21:13 +02007204 for_each_cpu_mask_nr(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007205 struct sched_domain *sd = NULL, *p;
Mike Travis7c16ec52008-04-04 18:11:11 -07007206 SCHED_CPUMASK_VAR(nodemask, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007207
Mike Travis7c16ec52008-04-04 18:11:11 -07007208 *nodemask = node_to_cpumask(cpu_to_node(i));
7209 cpus_and(*nodemask, *nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007210
7211#ifdef CONFIG_NUMA
Ingo Molnardd41f592007-07-09 18:51:59 +02007212 if (cpus_weight(*cpu_map) >
Mike Travis7c16ec52008-04-04 18:11:11 -07007213 SD_NODES_PER_DOMAIN*cpus_weight(*nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007214 sd = &per_cpu(allnodes_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007215 SD_INIT(sd, ALLNODES);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007216 set_domain_attribute(sd, attr);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007217 sd->span = *cpu_map;
Mike Travis7c16ec52008-04-04 18:11:11 -07007218 cpu_to_allnodes_group(i, cpu_map, &sd->groups, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007219 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007220 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007221 } else
7222 p = NULL;
7223
Linus Torvalds1da177e2005-04-16 15:20:36 -07007224 sd = &per_cpu(node_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007225 SD_INIT(sd, NODE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007226 set_domain_attribute(sd, attr);
Mike Travis4bdbaad32008-04-15 16:35:52 -07007227 sched_domain_node_span(cpu_to_node(i), &sd->span);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007228 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007229 if (p)
7230 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007231 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007232#endif
7233
7234 p = sd;
7235 sd = &per_cpu(phys_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007236 SD_INIT(sd, CPU);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007237 set_domain_attribute(sd, attr);
Mike Travis7c16ec52008-04-04 18:11:11 -07007238 sd->span = *nodemask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007239 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007240 if (p)
7241 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007242 cpu_to_phys_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007243
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007244#ifdef CONFIG_SCHED_MC
7245 p = sd;
7246 sd = &per_cpu(core_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007247 SD_INIT(sd, MC);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007248 set_domain_attribute(sd, attr);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007249 sd->span = cpu_coregroup_map(i);
7250 cpus_and(sd->span, sd->span, *cpu_map);
7251 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007252 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007253 cpu_to_core_group(i, cpu_map, &sd->groups, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007254#endif
7255
Linus Torvalds1da177e2005-04-16 15:20:36 -07007256#ifdef CONFIG_SCHED_SMT
7257 p = sd;
7258 sd = &per_cpu(cpu_domains, i);
Mike Travis7c16ec52008-04-04 18:11:11 -07007259 SD_INIT(sd, SIBLING);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007260 set_domain_attribute(sd, attr);
Mike Travisd5a74302007-10-16 01:24:05 -07007261 sd->span = per_cpu(cpu_sibling_map, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007262 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007263 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007264 p->child = sd;
Mike Travis7c16ec52008-04-04 18:11:11 -07007265 cpu_to_cpu_group(i, cpu_map, &sd->groups, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007266#endif
7267 }
7268
7269#ifdef CONFIG_SCHED_SMT
7270 /* Set up CPU (sibling) groups */
Mike Travis363ab6f2008-05-12 21:21:13 +02007271 for_each_cpu_mask_nr(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007272 SCHED_CPUMASK_VAR(this_sibling_map, allmasks);
7273 SCHED_CPUMASK_VAR(send_covered, allmasks);
7274
7275 *this_sibling_map = per_cpu(cpu_sibling_map, i);
7276 cpus_and(*this_sibling_map, *this_sibling_map, *cpu_map);
7277 if (i != first_cpu(*this_sibling_map))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007278 continue;
7279
Ingo Molnardd41f592007-07-09 18:51:59 +02007280 init_sched_build_groups(this_sibling_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007281 &cpu_to_cpu_group,
7282 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007283 }
7284#endif
7285
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007286#ifdef CONFIG_SCHED_MC
7287 /* Set up multi-core groups */
Mike Travis363ab6f2008-05-12 21:21:13 +02007288 for_each_cpu_mask_nr(i, *cpu_map) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007289 SCHED_CPUMASK_VAR(this_core_map, allmasks);
7290 SCHED_CPUMASK_VAR(send_covered, allmasks);
7291
7292 *this_core_map = cpu_coregroup_map(i);
7293 cpus_and(*this_core_map, *this_core_map, *cpu_map);
7294 if (i != first_cpu(*this_core_map))
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007295 continue;
Mike Travis7c16ec52008-04-04 18:11:11 -07007296
Ingo Molnardd41f592007-07-09 18:51:59 +02007297 init_sched_build_groups(this_core_map, cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07007298 &cpu_to_core_group,
7299 send_covered, tmpmask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007300 }
7301#endif
7302
Linus Torvalds1da177e2005-04-16 15:20:36 -07007303 /* Set up physical groups */
Mike Travis076ac2a2008-05-12 21:21:12 +02007304 for (i = 0; i < nr_node_ids; i++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007305 SCHED_CPUMASK_VAR(nodemask, allmasks);
7306 SCHED_CPUMASK_VAR(send_covered, allmasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007307
Mike Travis7c16ec52008-04-04 18:11:11 -07007308 *nodemask = node_to_cpumask(i);
7309 cpus_and(*nodemask, *nodemask, *cpu_map);
7310 if (cpus_empty(*nodemask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07007311 continue;
7312
Mike Travis7c16ec52008-04-04 18:11:11 -07007313 init_sched_build_groups(nodemask, cpu_map,
7314 &cpu_to_phys_group,
7315 send_covered, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007316 }
7317
7318#ifdef CONFIG_NUMA
7319 /* Set up node groups */
Mike Travis7c16ec52008-04-04 18:11:11 -07007320 if (sd_allnodes) {
7321 SCHED_CPUMASK_VAR(send_covered, allmasks);
7322
7323 init_sched_build_groups(cpu_map, cpu_map,
7324 &cpu_to_allnodes_group,
7325 send_covered, tmpmask);
7326 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007327
Mike Travis076ac2a2008-05-12 21:21:12 +02007328 for (i = 0; i < nr_node_ids; i++) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007329 /* Set up node groups */
7330 struct sched_group *sg, *prev;
Mike Travis7c16ec52008-04-04 18:11:11 -07007331 SCHED_CPUMASK_VAR(nodemask, allmasks);
7332 SCHED_CPUMASK_VAR(domainspan, allmasks);
7333 SCHED_CPUMASK_VAR(covered, allmasks);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007334 int j;
7335
Mike Travis7c16ec52008-04-04 18:11:11 -07007336 *nodemask = node_to_cpumask(i);
7337 cpus_clear(*covered);
7338
7339 cpus_and(*nodemask, *nodemask, *cpu_map);
7340 if (cpus_empty(*nodemask)) {
John Hawkesd1b55132005-09-06 15:18:14 -07007341 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007342 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07007343 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007344
Mike Travis4bdbaad32008-04-15 16:35:52 -07007345 sched_domain_node_span(i, domainspan);
Mike Travis7c16ec52008-04-04 18:11:11 -07007346 cpus_and(*domainspan, *domainspan, *cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007347
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007348 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007349 if (!sg) {
7350 printk(KERN_WARNING "Can not alloc domain group for "
7351 "node %d\n", i);
7352 goto error;
7353 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007354 sched_group_nodes[i] = sg;
Mike Travis363ab6f2008-05-12 21:21:13 +02007355 for_each_cpu_mask_nr(j, *nodemask) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007356 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02007357
John Hawkes9c1cfda2005-09-06 15:18:14 -07007358 sd = &per_cpu(node_domains, j);
7359 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007360 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007361 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007362 sg->cpumask = *nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007363 sg->next = sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07007364 cpus_or(*covered, *covered, *nodemask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007365 prev = sg;
7366
Mike Travis076ac2a2008-05-12 21:21:12 +02007367 for (j = 0; j < nr_node_ids; j++) {
Mike Travis7c16ec52008-04-04 18:11:11 -07007368 SCHED_CPUMASK_VAR(notcovered, allmasks);
Mike Travis076ac2a2008-05-12 21:21:12 +02007369 int n = (i + j) % nr_node_ids;
Mike Travisc5f59f02008-04-04 18:11:10 -07007370 node_to_cpumask_ptr(pnodemask, n);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007371
Mike Travis7c16ec52008-04-04 18:11:11 -07007372 cpus_complement(*notcovered, *covered);
7373 cpus_and(*tmpmask, *notcovered, *cpu_map);
7374 cpus_and(*tmpmask, *tmpmask, *domainspan);
7375 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007376 break;
7377
Mike Travis7c16ec52008-04-04 18:11:11 -07007378 cpus_and(*tmpmask, *tmpmask, *pnodemask);
7379 if (cpus_empty(*tmpmask))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007380 continue;
7381
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07007382 sg = kmalloc_node(sizeof(struct sched_group),
7383 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007384 if (!sg) {
7385 printk(KERN_WARNING
7386 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007387 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007388 }
Eric Dumazet5517d862007-05-08 00:32:57 -07007389 sg->__cpu_power = 0;
Mike Travis7c16ec52008-04-04 18:11:11 -07007390 sg->cpumask = *tmpmask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007391 sg->next = prev->next;
Mike Travis7c16ec52008-04-04 18:11:11 -07007392 cpus_or(*covered, *covered, *tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007393 prev->next = sg;
7394 prev = sg;
7395 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007397#endif
7398
7399 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007400#ifdef CONFIG_SCHED_SMT
Mike Travis363ab6f2008-05-12 21:21:13 +02007401 for_each_cpu_mask_nr(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007402 struct sched_domain *sd = &per_cpu(cpu_domains, i);
7403
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007404 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007405 }
7406#endif
7407#ifdef CONFIG_SCHED_MC
Mike Travis363ab6f2008-05-12 21:21:13 +02007408 for_each_cpu_mask_nr(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007409 struct sched_domain *sd = &per_cpu(core_domains, i);
7410
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007411 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007412 }
7413#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007414
Mike Travis363ab6f2008-05-12 21:21:13 +02007415 for_each_cpu_mask_nr(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02007416 struct sched_domain *sd = &per_cpu(phys_domains, i);
7417
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007418 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007419 }
7420
John Hawkes9c1cfda2005-09-06 15:18:14 -07007421#ifdef CONFIG_NUMA
Mike Travis076ac2a2008-05-12 21:21:12 +02007422 for (i = 0; i < nr_node_ids; i++)
Siddha, Suresh B08069032006-03-27 01:15:23 -08007423 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007424
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007425 if (sd_allnodes) {
7426 struct sched_group *sg;
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07007427
Mike Travis7c16ec52008-04-04 18:11:11 -07007428 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg,
7429 tmpmask);
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07007430 init_numa_sched_groups_power(sg);
7431 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007432#endif
7433
Linus Torvalds1da177e2005-04-16 15:20:36 -07007434 /* Attach the domains */
Mike Travis363ab6f2008-05-12 21:21:13 +02007435 for_each_cpu_mask_nr(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007436 struct sched_domain *sd;
7437#ifdef CONFIG_SCHED_SMT
7438 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007439#elif defined(CONFIG_SCHED_MC)
7440 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007441#else
7442 sd = &per_cpu(phys_domains, i);
7443#endif
Gregory Haskins57d885f2008-01-25 21:08:18 +01007444 cpu_attach_domain(sd, rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007445 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007446
Mike Travis7c16ec52008-04-04 18:11:11 -07007447 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007448 return 0;
7449
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007450#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007451error:
Mike Travis7c16ec52008-04-04 18:11:11 -07007452 free_sched_groups(cpu_map, tmpmask);
7453 SCHED_CPUMASK_FREE((void *)allmasks);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007454 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007455#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007456}
Paul Jackson029190c2007-10-18 23:40:20 -07007457
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007458static int build_sched_domains(const cpumask_t *cpu_map)
7459{
7460 return __build_sched_domains(cpu_map, NULL);
7461}
7462
Paul Jackson029190c2007-10-18 23:40:20 -07007463static cpumask_t *doms_cur; /* current sched domains */
7464static int ndoms_cur; /* number of sched domains in 'doms_cur' */
Ingo Molnar4285f5942008-05-16 17:47:14 +02007465static struct sched_domain_attr *dattr_cur;
7466 /* attribues of custom domains in 'doms_cur' */
Paul Jackson029190c2007-10-18 23:40:20 -07007467
7468/*
7469 * Special case: If a kmalloc of a doms_cur partition (array of
7470 * cpumask_t) fails, then fallback to a single sched domain,
7471 * as determined by the single cpumask_t fallback_doms.
7472 */
7473static cpumask_t fallback_doms;
7474
Heiko Carstens22e52b02008-03-12 18:31:59 +01007475void __attribute__((weak)) arch_update_cpu_topology(void)
7476{
7477}
7478
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007479/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007480 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07007481 * For now this just excludes isolated cpus, but could be used to
7482 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007483 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007484static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007485{
Milton Miller73785472007-10-24 18:23:48 +02007486 int err;
7487
Heiko Carstens22e52b02008-03-12 18:31:59 +01007488 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07007489 ndoms_cur = 1;
7490 doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL);
7491 if (!doms_cur)
7492 doms_cur = &fallback_doms;
7493 cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007494 dattr_cur = NULL;
Milton Miller73785472007-10-24 18:23:48 +02007495 err = build_sched_domains(doms_cur);
Milton Miller6382bc92007-10-15 17:00:19 +02007496 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02007497
7498 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007499}
7500
Mike Travis7c16ec52008-04-04 18:11:11 -07007501static void arch_destroy_sched_domains(const cpumask_t *cpu_map,
7502 cpumask_t *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007503{
Mike Travis7c16ec52008-04-04 18:11:11 -07007504 free_sched_groups(cpu_map, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007505}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007506
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007507/*
7508 * Detach sched domains from a group of cpus specified in cpu_map
7509 * These cpus will now be attached to the NULL domain
7510 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08007511static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007512{
Mike Travis7c16ec52008-04-04 18:11:11 -07007513 cpumask_t tmpmask;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007514 int i;
7515
Milton Miller6382bc92007-10-15 17:00:19 +02007516 unregister_sched_domain_sysctl();
7517
Mike Travis363ab6f2008-05-12 21:21:13 +02007518 for_each_cpu_mask_nr(i, *cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01007519 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007520 synchronize_sched();
Mike Travis7c16ec52008-04-04 18:11:11 -07007521 arch_destroy_sched_domains(cpu_map, &tmpmask);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007522}
7523
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007524/* handle null as "default" */
7525static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
7526 struct sched_domain_attr *new, int idx_new)
7527{
7528 struct sched_domain_attr tmp;
7529
7530 /* fast path */
7531 if (!new && !cur)
7532 return 1;
7533
7534 tmp = SD_ATTR_INIT;
7535 return !memcmp(cur ? (cur + idx_cur) : &tmp,
7536 new ? (new + idx_new) : &tmp,
7537 sizeof(struct sched_domain_attr));
7538}
7539
Paul Jackson029190c2007-10-18 23:40:20 -07007540/*
7541 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007542 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07007543 * doms_new[] to the current sched domain partitioning, doms_cur[].
7544 * It destroys each deleted domain and builds each new domain.
7545 *
7546 * 'doms_new' is an array of cpumask_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007547 * The masks don't intersect (don't overlap.) We should setup one
7548 * sched domain for each mask. CPUs not in any of the cpumasks will
7549 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07007550 * current 'doms_cur' domains and in the new 'doms_new', we can leave
7551 * it as it is.
7552 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007553 * The passed in 'doms_new' should be kmalloc'd. This routine takes
7554 * ownership of it and will kfree it when done with it. If the caller
Paul Jackson029190c2007-10-18 23:40:20 -07007555 * failed the kmalloc call, then it can pass in doms_new == NULL,
7556 * and partition_sched_domains() will fallback to the single partition
Max Krasnyanskye761b772008-07-15 04:43:49 -07007557 * 'fallback_doms', it also forces the domains to be rebuilt.
Paul Jackson029190c2007-10-18 23:40:20 -07007558 *
7559 * Call with hotplug lock held
7560 */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007561void partition_sched_domains(int ndoms_new, cpumask_t *doms_new,
7562 struct sched_domain_attr *dattr_new)
Paul Jackson029190c2007-10-18 23:40:20 -07007563{
7564 int i, j;
7565
Heiko Carstens712555e2008-04-28 11:33:07 +02007566 mutex_lock(&sched_domains_mutex);
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007567
Milton Miller73785472007-10-24 18:23:48 +02007568 /* always unregister in case we don't destroy any domains */
7569 unregister_sched_domain_sysctl();
7570
Max Krasnyanskye761b772008-07-15 04:43:49 -07007571 if (doms_new == NULL)
7572 ndoms_new = 0;
Paul Jackson029190c2007-10-18 23:40:20 -07007573
7574 /* Destroy deleted domains */
7575 for (i = 0; i < ndoms_cur; i++) {
7576 for (j = 0; j < ndoms_new; j++) {
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007577 if (cpus_equal(doms_cur[i], doms_new[j])
7578 && dattrs_equal(dattr_cur, i, dattr_new, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007579 goto match1;
7580 }
7581 /* no match - a current sched domain not in new doms_new[] */
7582 detach_destroy_domains(doms_cur + i);
7583match1:
7584 ;
7585 }
7586
Max Krasnyanskye761b772008-07-15 04:43:49 -07007587 if (doms_new == NULL) {
7588 ndoms_cur = 0;
7589 ndoms_new = 1;
7590 doms_new = &fallback_doms;
7591 cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map);
7592 dattr_new = NULL;
7593 }
7594
Paul Jackson029190c2007-10-18 23:40:20 -07007595 /* Build new domains */
7596 for (i = 0; i < ndoms_new; i++) {
7597 for (j = 0; j < ndoms_cur; j++) {
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007598 if (cpus_equal(doms_new[i], doms_cur[j])
7599 && dattrs_equal(dattr_new, i, dattr_cur, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007600 goto match2;
7601 }
7602 /* no match - add a new doms_new */
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007603 __build_sched_domains(doms_new + i,
7604 dattr_new ? dattr_new + i : NULL);
Paul Jackson029190c2007-10-18 23:40:20 -07007605match2:
7606 ;
7607 }
7608
7609 /* Remember the new sched domains */
7610 if (doms_cur != &fallback_doms)
7611 kfree(doms_cur);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007612 kfree(dattr_cur); /* kfree(NULL) is safe */
Paul Jackson029190c2007-10-18 23:40:20 -07007613 doms_cur = doms_new;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007614 dattr_cur = dattr_new;
Paul Jackson029190c2007-10-18 23:40:20 -07007615 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02007616
7617 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007618
Heiko Carstens712555e2008-04-28 11:33:07 +02007619 mutex_unlock(&sched_domains_mutex);
Paul Jackson029190c2007-10-18 23:40:20 -07007620}
7621
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007622#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Heiko Carstens9aefd0a2008-03-12 18:31:58 +01007623int arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007624{
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007625 get_online_cpus();
Max Krasnyanskye761b772008-07-15 04:43:49 -07007626 rebuild_sched_domains();
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007627 put_online_cpus();
Max Krasnyanskye761b772008-07-15 04:43:49 -07007628 return 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007629}
7630
7631static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
7632{
7633 int ret;
7634
7635 if (buf[0] != '0' && buf[0] != '1')
7636 return -EINVAL;
7637
7638 if (smt)
7639 sched_smt_power_savings = (buf[0] == '1');
7640 else
7641 sched_mc_power_savings = (buf[0] == '1');
7642
7643 ret = arch_reinit_sched_domains();
7644
7645 return ret ? ret : count;
7646}
7647
Adrian Bunk6707de002007-08-12 18:08:19 +02007648#ifdef CONFIG_SCHED_MC
Andi Kleen4a0b2b42008-07-01 18:48:41 +02007649static ssize_t sched_mc_power_savings_show(struct sys_device *dev,
7650 struct sysdev_attribute *attr, char *page)
Adrian Bunk6707de002007-08-12 18:08:19 +02007651{
7652 return sprintf(page, "%u\n", sched_mc_power_savings);
7653}
7654static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
Andi Kleen4a0b2b42008-07-01 18:48:41 +02007655 struct sysdev_attribute *attr,
Adrian Bunk6707de002007-08-12 18:08:19 +02007656 const char *buf, size_t count)
7657{
7658 return sched_power_savings_store(buf, count, 0);
7659}
7660static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
7661 sched_mc_power_savings_store);
7662#endif
7663
7664#ifdef CONFIG_SCHED_SMT
Andi Kleen4a0b2b42008-07-01 18:48:41 +02007665static ssize_t sched_smt_power_savings_show(struct sys_device *dev,
7666 struct sysdev_attribute *attr, char *page)
Adrian Bunk6707de002007-08-12 18:08:19 +02007667{
7668 return sprintf(page, "%u\n", sched_smt_power_savings);
7669}
7670static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
Andi Kleen4a0b2b42008-07-01 18:48:41 +02007671 struct sysdev_attribute *attr,
Adrian Bunk6707de002007-08-12 18:08:19 +02007672 const char *buf, size_t count)
7673{
7674 return sched_power_savings_store(buf, count, 1);
7675}
7676static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
7677 sched_smt_power_savings_store);
7678#endif
7679
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007680int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
7681{
7682 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007683
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007684#ifdef CONFIG_SCHED_SMT
7685 if (smt_capable())
7686 err = sysfs_create_file(&cls->kset.kobj,
7687 &attr_sched_smt_power_savings.attr);
7688#endif
7689#ifdef CONFIG_SCHED_MC
7690 if (!err && mc_capable())
7691 err = sysfs_create_file(&cls->kset.kobj,
7692 &attr_sched_mc_power_savings.attr);
7693#endif
7694 return err;
7695}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007696#endif /* CONFIG_SCHED_MC || CONFIG_SCHED_SMT */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007697
Max Krasnyanskye761b772008-07-15 04:43:49 -07007698#ifndef CONFIG_CPUSETS
Linus Torvalds1da177e2005-04-16 15:20:36 -07007699/*
Max Krasnyanskye761b772008-07-15 04:43:49 -07007700 * Add online and remove offline CPUs from the scheduler domains.
7701 * When cpusets are enabled they take over this function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007702 */
7703static int update_sched_domains(struct notifier_block *nfb,
7704 unsigned long action, void *hcpu)
7705{
Max Krasnyanskye761b772008-07-15 04:43:49 -07007706 switch (action) {
7707 case CPU_ONLINE:
7708 case CPU_ONLINE_FROZEN:
7709 case CPU_DEAD:
7710 case CPU_DEAD_FROZEN:
7711 partition_sched_domains(0, NULL, NULL);
7712 return NOTIFY_OK;
7713
7714 default:
7715 return NOTIFY_DONE;
7716 }
7717}
7718#endif
7719
7720static int update_runtime(struct notifier_block *nfb,
7721 unsigned long action, void *hcpu)
7722{
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007723 int cpu = (int)(long)hcpu;
7724
Linus Torvalds1da177e2005-04-16 15:20:36 -07007725 switch (action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007726 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007727 case CPU_DOWN_PREPARE_FROZEN:
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007728 disable_runtime(cpu_rq(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007729 return NOTIFY_OK;
7730
Linus Torvalds1da177e2005-04-16 15:20:36 -07007731 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007732 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007733 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007734 case CPU_ONLINE_FROZEN:
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007735 enable_runtime(cpu_rq(cpu));
Max Krasnyanskye761b772008-07-15 04:43:49 -07007736 return NOTIFY_OK;
7737
Linus Torvalds1da177e2005-04-16 15:20:36 -07007738 default:
7739 return NOTIFY_DONE;
7740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007741}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007742
7743void __init sched_init_smp(void)
7744{
Nick Piggin5c1e1762006-10-03 01:14:04 -07007745 cpumask_t non_isolated_cpus;
7746
Mike Travis434d53b2008-04-04 18:11:04 -07007747#if defined(CONFIG_NUMA)
7748 sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **),
7749 GFP_KERNEL);
7750 BUG_ON(sched_group_nodes_bycpu == NULL);
7751#endif
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007752 get_online_cpus();
Heiko Carstens712555e2008-04-28 11:33:07 +02007753 mutex_lock(&sched_domains_mutex);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007754 arch_init_sched_domains(&cpu_online_map);
Nathan Lynche5e56732007-01-10 23:15:28 -08007755 cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007756 if (cpus_empty(non_isolated_cpus))
7757 cpu_set(smp_processor_id(), non_isolated_cpus);
Heiko Carstens712555e2008-04-28 11:33:07 +02007758 mutex_unlock(&sched_domains_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007759 put_online_cpus();
Max Krasnyanskye761b772008-07-15 04:43:49 -07007760
7761#ifndef CONFIG_CPUSETS
Linus Torvalds1da177e2005-04-16 15:20:36 -07007762 /* XXX: Theoretical race here - CPU may be hotplugged now */
7763 hotcpu_notifier(update_sched_domains, 0);
Max Krasnyanskye761b772008-07-15 04:43:49 -07007764#endif
7765
7766 /* RT runtime code needs to handle some hotplug events */
7767 hotcpu_notifier(update_runtime, 0);
7768
Peter Zijlstrab328ca12008-04-29 10:02:46 +02007769 init_hrtick();
Nick Piggin5c1e1762006-10-03 01:14:04 -07007770
7771 /* Move init over to a non-isolated CPU */
Mike Travis7c16ec52008-04-04 18:11:11 -07007772 if (set_cpus_allowed_ptr(current, &non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07007773 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01007774 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007775}
7776#else
7777void __init sched_init_smp(void)
7778{
Ingo Molnar19978ca2007-11-09 22:39:38 +01007779 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007780}
7781#endif /* CONFIG_SMP */
7782
7783int in_sched_functions(unsigned long addr)
7784{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007785 return in_lock_functions(addr) ||
7786 (addr >= (unsigned long)__sched_text_start
7787 && addr < (unsigned long)__sched_text_end);
7788}
7789
Alexey Dobriyana9957442007-10-15 17:00:13 +02007790static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02007791{
7792 cfs_rq->tasks_timeline = RB_ROOT;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02007793 INIT_LIST_HEAD(&cfs_rq->tasks);
Ingo Molnardd41f592007-07-09 18:51:59 +02007794#ifdef CONFIG_FAIR_GROUP_SCHED
7795 cfs_rq->rq = rq;
7796#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02007797 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02007798}
7799
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007800static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
7801{
7802 struct rt_prio_array *array;
7803 int i;
7804
7805 array = &rt_rq->active;
7806 for (i = 0; i < MAX_RT_PRIO; i++) {
7807 INIT_LIST_HEAD(array->queue + i);
7808 __clear_bit(i, array->bitmap);
7809 }
7810 /* delimiter for bitsearch: */
7811 __set_bit(MAX_RT_PRIO, array->bitmap);
7812
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007813#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Peter Zijlstra48d5e252008-01-25 21:08:31 +01007814 rt_rq->highest_prio = MAX_RT_PRIO;
7815#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007816#ifdef CONFIG_SMP
7817 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007818 rt_rq->overloaded = 0;
7819#endif
7820
7821 rt_rq->rt_time = 0;
7822 rt_rq->rt_throttled = 0;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007823 rt_rq->rt_runtime = 0;
7824 spin_lock_init(&rt_rq->rt_runtime_lock);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007825
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007826#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01007827 rt_rq->rt_nr_boosted = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007828 rt_rq->rq = rq;
7829#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007830}
7831
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007832#ifdef CONFIG_FAIR_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007833static void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq,
7834 struct sched_entity *se, int cpu, int add,
7835 struct sched_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007836{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007837 struct rq *rq = cpu_rq(cpu);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007838 tg->cfs_rq[cpu] = cfs_rq;
7839 init_cfs_rq(cfs_rq, rq);
7840 cfs_rq->tg = tg;
7841 if (add)
7842 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
7843
7844 tg->se[cpu] = se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02007845 /* se could be NULL for init_task_group */
7846 if (!se)
7847 return;
7848
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007849 if (!parent)
7850 se->cfs_rq = &rq->cfs;
7851 else
7852 se->cfs_rq = parent->my_q;
7853
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007854 se->my_q = cfs_rq;
7855 se->load.weight = tg->shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02007856 se->load.inv_weight = 0;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007857 se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007858}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007859#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007860
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007861#ifdef CONFIG_RT_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007862static void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq,
7863 struct sched_rt_entity *rt_se, int cpu, int add,
7864 struct sched_rt_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007865{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007866 struct rq *rq = cpu_rq(cpu);
7867
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007868 tg->rt_rq[cpu] = rt_rq;
7869 init_rt_rq(rt_rq, rq);
7870 rt_rq->tg = tg;
7871 rt_rq->rt_se = rt_se;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007872 rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007873 if (add)
7874 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
7875
7876 tg->rt_se[cpu] = rt_se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02007877 if (!rt_se)
7878 return;
7879
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007880 if (!parent)
7881 rt_se->rt_rq = &rq->rt;
7882 else
7883 rt_se->rt_rq = parent->my_q;
7884
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007885 rt_se->my_q = rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007886 rt_se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007887 INIT_LIST_HEAD(&rt_se->run_list);
7888}
7889#endif
7890
Linus Torvalds1da177e2005-04-16 15:20:36 -07007891void __init sched_init(void)
7892{
Ingo Molnardd41f592007-07-09 18:51:59 +02007893 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07007894 unsigned long alloc_size = 0, ptr;
7895
7896#ifdef CONFIG_FAIR_GROUP_SCHED
7897 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
7898#endif
7899#ifdef CONFIG_RT_GROUP_SCHED
7900 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
7901#endif
Peter Zijlstraeff766a2008-04-19 19:45:00 +02007902#ifdef CONFIG_USER_SCHED
7903 alloc_size *= 2;
7904#endif
Mike Travis434d53b2008-04-04 18:11:04 -07007905 /*
7906 * As sched_init() is called before page_alloc is setup,
7907 * we use alloc_bootmem().
7908 */
7909 if (alloc_size) {
David Miller5a9d3222008-04-24 20:46:20 -07007910 ptr = (unsigned long)alloc_bootmem(alloc_size);
Mike Travis434d53b2008-04-04 18:11:04 -07007911
7912#ifdef CONFIG_FAIR_GROUP_SCHED
7913 init_task_group.se = (struct sched_entity **)ptr;
7914 ptr += nr_cpu_ids * sizeof(void **);
7915
7916 init_task_group.cfs_rq = (struct cfs_rq **)ptr;
7917 ptr += nr_cpu_ids * sizeof(void **);
Peter Zijlstraeff766a2008-04-19 19:45:00 +02007918
7919#ifdef CONFIG_USER_SCHED
7920 root_task_group.se = (struct sched_entity **)ptr;
7921 ptr += nr_cpu_ids * sizeof(void **);
7922
7923 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
7924 ptr += nr_cpu_ids * sizeof(void **);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007925#endif /* CONFIG_USER_SCHED */
7926#endif /* CONFIG_FAIR_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07007927#ifdef CONFIG_RT_GROUP_SCHED
7928 init_task_group.rt_se = (struct sched_rt_entity **)ptr;
7929 ptr += nr_cpu_ids * sizeof(void **);
7930
7931 init_task_group.rt_rq = (struct rt_rq **)ptr;
Peter Zijlstraeff766a2008-04-19 19:45:00 +02007932 ptr += nr_cpu_ids * sizeof(void **);
7933
7934#ifdef CONFIG_USER_SCHED
7935 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
7936 ptr += nr_cpu_ids * sizeof(void **);
7937
7938 root_task_group.rt_rq = (struct rt_rq **)ptr;
7939 ptr += nr_cpu_ids * sizeof(void **);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007940#endif /* CONFIG_USER_SCHED */
7941#endif /* CONFIG_RT_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07007942 }
Ingo Molnardd41f592007-07-09 18:51:59 +02007943
Gregory Haskins57d885f2008-01-25 21:08:18 +01007944#ifdef CONFIG_SMP
7945 init_defrootdomain();
7946#endif
7947
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007948 init_rt_bandwidth(&def_rt_bandwidth,
7949 global_rt_period(), global_rt_runtime());
7950
7951#ifdef CONFIG_RT_GROUP_SCHED
7952 init_rt_bandwidth(&init_task_group.rt_bandwidth,
7953 global_rt_period(), global_rt_runtime());
Peter Zijlstraeff766a2008-04-19 19:45:00 +02007954#ifdef CONFIG_USER_SCHED
7955 init_rt_bandwidth(&root_task_group.rt_bandwidth,
7956 global_rt_period(), RUNTIME_INF);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007957#endif /* CONFIG_USER_SCHED */
7958#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02007959
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007960#ifdef CONFIG_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007961 list_add(&init_task_group.list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02007962 INIT_LIST_HEAD(&init_task_group.children);
7963
7964#ifdef CONFIG_USER_SCHED
7965 INIT_LIST_HEAD(&root_task_group.children);
7966 init_task_group.parent = &root_task_group;
7967 list_add(&init_task_group.siblings, &root_task_group.children);
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007968#endif /* CONFIG_USER_SCHED */
7969#endif /* CONFIG_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007970
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08007971 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07007972 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007973
7974 rq = cpu_rq(i);
7975 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07007976 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07007977 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02007978 init_cfs_rq(&rq->cfs, rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007979 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007980#ifdef CONFIG_FAIR_GROUP_SCHED
7981 init_task_group.shares = init_task_group_load;
7982 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02007983#ifdef CONFIG_CGROUP_SCHED
7984 /*
7985 * How much cpu bandwidth does init_task_group get?
7986 *
7987 * In case of task-groups formed thr' the cgroup filesystem, it
7988 * gets 100% of the cpu resources in the system. This overall
7989 * system cpu resource is divided among the tasks of
7990 * init_task_group and its child task-groups in a fair manner,
7991 * based on each entity's (task or task-group's) weight
7992 * (se->load.weight).
7993 *
7994 * In other words, if init_task_group has 10 tasks of weight
7995 * 1024) and two child groups A0 and A1 (of weight 1024 each),
7996 * then A0's share of the cpu resource is:
7997 *
7998 * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
7999 *
8000 * We achieve this by letting init_task_group's tasks sit
8001 * directly in rq->cfs (i.e init_task_group->se[] = NULL).
8002 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008003 init_tg_cfs_entry(&init_task_group, &rq->cfs, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008004#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008005 root_task_group.shares = NICE_0_LOAD;
8006 init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, 0, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008007 /*
8008 * In case of task-groups formed thr' the user id of tasks,
8009 * init_task_group represents tasks belonging to root user.
8010 * Hence it forms a sibling of all subsequent groups formed.
8011 * In this case, init_task_group gets only a fraction of overall
8012 * system cpu resource, based on the weight assigned to root
8013 * user's cpu share (INIT_TASK_GROUP_LOAD). This is accomplished
8014 * by letting tasks of init_task_group sit in a separate cfs_rq
8015 * (init_cfs_rq) and having one entity represent this group of
8016 * tasks in rq->cfs (i.e init_task_group->se[] != NULL).
8017 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008018 init_tg_cfs_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008019 &per_cpu(init_cfs_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008020 &per_cpu(init_sched_entity, i), i, 1,
8021 root_task_group.se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008022
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008023#endif
Dhaval Giani354d60c2008-04-19 19:44:59 +02008024#endif /* CONFIG_FAIR_GROUP_SCHED */
8025
8026 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008027#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008028 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008029#ifdef CONFIG_CGROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008030 init_tg_rt_entry(&init_task_group, &rq->rt, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008031#elif defined CONFIG_USER_SCHED
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008032 init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, 0, NULL);
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008033 init_tg_rt_entry(&init_task_group,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008034 &per_cpu(init_rt_rq, i),
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008035 &per_cpu(init_sched_rt_entity, i), i, 1,
8036 root_task_group.rt_se[i]);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008037#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008038#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07008039
Ingo Molnardd41f592007-07-09 18:51:59 +02008040 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
8041 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008042#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07008043 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01008044 rq->rd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008045 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008046 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008047 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07008048 rq->cpu = i;
Gregory Haskins1f11eb62008-06-04 15:04:05 -04008049 rq->online = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008050 rq->migration_thread = NULL;
8051 INIT_LIST_HEAD(&rq->migration_queue);
Gregory Haskinsdc938522008-01-25 21:08:26 +01008052 rq_attach_root(rq, &def_root_domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008053#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01008054 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008055 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008056 }
8057
Peter Williams2dd73a42006-06-27 02:54:34 -07008058 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008059
Avi Kivitye107be32007-07-26 13:40:43 +02008060#ifdef CONFIG_PREEMPT_NOTIFIERS
8061 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
8062#endif
8063
Christoph Lameterc9819f42006-12-10 02:20:25 -08008064#ifdef CONFIG_SMP
Carlos R. Mafra962cf362008-05-15 11:15:37 -03008065 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains);
Christoph Lameterc9819f42006-12-10 02:20:25 -08008066#endif
8067
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008068#ifdef CONFIG_RT_MUTEXES
8069 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
8070#endif
8071
Linus Torvalds1da177e2005-04-16 15:20:36 -07008072 /*
8073 * The boot idle thread does lazy MMU switching as well:
8074 */
8075 atomic_inc(&init_mm.mm_count);
8076 enter_lazy_tlb(&init_mm, current);
8077
8078 /*
8079 * Make us the idle thread. Technically, schedule() should not be
8080 * called from this thread, however somewhere below it might be,
8081 * but because we are the idle thread, we just pick up running again
8082 * when this runqueue becomes "idle".
8083 */
8084 init_idle(current, smp_processor_id());
Ingo Molnardd41f592007-07-09 18:51:59 +02008085 /*
8086 * During early bootup we pretend to be a normal task:
8087 */
8088 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01008089
8090 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008091}
8092
8093#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
8094void __might_sleep(char *file, int line)
8095{
Ingo Molnar48f24c42006-07-03 00:25:40 -07008096#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07008097 static unsigned long prev_jiffy; /* ratelimiting */
8098
8099 if ((in_atomic() || irqs_disabled()) &&
8100 system_state == SYSTEM_RUNNING && !oops_in_progress) {
8101 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
8102 return;
8103 prev_jiffy = jiffies;
Ingo Molnar91368d72006-03-23 03:00:54 -08008104 printk(KERN_ERR "BUG: sleeping function called from invalid"
Linus Torvalds1da177e2005-04-16 15:20:36 -07008105 " context at %s:%d\n", file, line);
8106 printk("in_atomic():%d, irqs_disabled():%d\n",
8107 in_atomic(), irqs_disabled());
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08008108 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08008109 if (irqs_disabled())
8110 print_irqtrace_events(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008111 dump_stack();
8112 }
8113#endif
8114}
8115EXPORT_SYMBOL(__might_sleep);
8116#endif
8117
8118#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008119static void normalize_task(struct rq *rq, struct task_struct *p)
8120{
8121 int on_rq;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02008122
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008123 update_rq_clock(rq);
8124 on_rq = p->se.on_rq;
8125 if (on_rq)
8126 deactivate_task(rq, p, 0);
8127 __setscheduler(rq, p, SCHED_NORMAL, 0);
8128 if (on_rq) {
8129 activate_task(rq, p, 0);
8130 resched_task(rq->curr);
8131 }
8132}
8133
Linus Torvalds1da177e2005-04-16 15:20:36 -07008134void normalize_rt_tasks(void)
8135{
Ingo Molnara0f98a12007-06-17 18:37:45 +02008136 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008137 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07008138 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008139
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008140 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008141 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02008142 /*
8143 * Only normalize user tasks:
8144 */
8145 if (!p->mm)
8146 continue;
8147
Ingo Molnardd41f592007-07-09 18:51:59 +02008148 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008149#ifdef CONFIG_SCHEDSTATS
8150 p->se.wait_start = 0;
8151 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008152 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008153#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02008154
8155 if (!rt_task(p)) {
8156 /*
8157 * Renice negative nice level userspace
8158 * tasks back to 0:
8159 */
8160 if (TASK_NICE(p) < 0 && p->mm)
8161 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008162 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02008163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008164
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008165 spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07008166 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008167
Ingo Molnar178be792007-10-15 17:00:18 +02008168 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008169
Ingo Molnarb29739f2006-06-27 02:54:51 -07008170 __task_rq_unlock(rq);
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008171 spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008172 } while_each_thread(g, p);
8173
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008174 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008175}
8176
8177#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07008178
8179#ifdef CONFIG_IA64
8180/*
8181 * These functions are only useful for the IA64 MCA handling.
8182 *
8183 * They can only be called when the whole system has been
8184 * stopped - every CPU needs to be quiescent, and no scheduling
8185 * activity can take place. Using them for anything else would
8186 * be a serious bug, and as a result, they aren't even visible
8187 * under any other configuration.
8188 */
8189
8190/**
8191 * curr_task - return the current task for a given cpu.
8192 * @cpu: the processor in question.
8193 *
8194 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8195 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008196struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008197{
8198 return cpu_curr(cpu);
8199}
8200
8201/**
8202 * set_curr_task - set the current task for a given cpu.
8203 * @cpu: the processor in question.
8204 * @p: the task pointer to set.
8205 *
8206 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008207 * are serviced on a separate stack. It allows the architecture to switch the
8208 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07008209 * must be called with all CPU's synchronized, and interrupts disabled, the
8210 * and caller must save the original value of the current task (see
8211 * curr_task() above) and restore that value before reenabling interrupts and
8212 * re-starting the system.
8213 *
8214 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8215 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008216void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008217{
8218 cpu_curr(cpu) = p;
8219}
8220
8221#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008222
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008223#ifdef CONFIG_FAIR_GROUP_SCHED
8224static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008225{
8226 int i;
8227
8228 for_each_possible_cpu(i) {
8229 if (tg->cfs_rq)
8230 kfree(tg->cfs_rq[i]);
8231 if (tg->se)
8232 kfree(tg->se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008233 }
8234
8235 kfree(tg->cfs_rq);
8236 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008237}
8238
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008239static
8240int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008241{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008242 struct cfs_rq *cfs_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008243 struct sched_entity *se, *parent_se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008244 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008245 int i;
8246
Mike Travis434d53b2008-04-04 18:11:04 -07008247 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008248 if (!tg->cfs_rq)
8249 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008250 tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008251 if (!tg->se)
8252 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008253
8254 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008255
8256 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008257 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008258
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008259 cfs_rq = kmalloc_node(sizeof(struct cfs_rq),
8260 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008261 if (!cfs_rq)
8262 goto err;
8263
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008264 se = kmalloc_node(sizeof(struct sched_entity),
8265 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008266 if (!se)
8267 goto err;
8268
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008269 parent_se = parent ? parent->se[i] : NULL;
8270 init_tg_cfs_entry(tg, cfs_rq, se, i, 0, parent_se);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008271 }
8272
8273 return 1;
8274
8275 err:
8276 return 0;
8277}
8278
8279static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8280{
8281 list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list,
8282 &cpu_rq(cpu)->leaf_cfs_rq_list);
8283}
8284
8285static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8286{
8287 list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list);
8288}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008289#else /* !CONFG_FAIR_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008290static inline void free_fair_sched_group(struct task_group *tg)
8291{
8292}
8293
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008294static inline
8295int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008296{
8297 return 1;
8298}
8299
8300static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8301{
8302}
8303
8304static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8305{
8306}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008307#endif /* CONFIG_FAIR_GROUP_SCHED */
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008308
8309#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008310static void free_rt_sched_group(struct task_group *tg)
8311{
8312 int i;
8313
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008314 destroy_rt_bandwidth(&tg->rt_bandwidth);
8315
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008316 for_each_possible_cpu(i) {
8317 if (tg->rt_rq)
8318 kfree(tg->rt_rq[i]);
8319 if (tg->rt_se)
8320 kfree(tg->rt_se[i]);
8321 }
8322
8323 kfree(tg->rt_rq);
8324 kfree(tg->rt_se);
8325}
8326
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008327static
8328int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008329{
8330 struct rt_rq *rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008331 struct sched_rt_entity *rt_se, *parent_se;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008332 struct rq *rq;
8333 int i;
8334
Mike Travis434d53b2008-04-04 18:11:04 -07008335 tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008336 if (!tg->rt_rq)
8337 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008338 tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008339 if (!tg->rt_se)
8340 goto err;
8341
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008342 init_rt_bandwidth(&tg->rt_bandwidth,
8343 ktime_to_ns(def_rt_bandwidth.rt_period), 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008344
8345 for_each_possible_cpu(i) {
8346 rq = cpu_rq(i);
8347
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008348 rt_rq = kmalloc_node(sizeof(struct rt_rq),
8349 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
8350 if (!rt_rq)
8351 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008352
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008353 rt_se = kmalloc_node(sizeof(struct sched_rt_entity),
8354 GFP_KERNEL|__GFP_ZERO, cpu_to_node(i));
8355 if (!rt_se)
8356 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008357
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008358 parent_se = parent ? parent->rt_se[i] : NULL;
8359 init_tg_rt_entry(tg, rt_rq, rt_se, i, 0, parent_se);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008360 }
8361
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008362 return 1;
8363
8364 err:
8365 return 0;
8366}
8367
8368static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8369{
8370 list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list,
8371 &cpu_rq(cpu)->leaf_rt_rq_list);
8372}
8373
8374static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8375{
8376 list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list);
8377}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008378#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008379static inline void free_rt_sched_group(struct task_group *tg)
8380{
8381}
8382
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008383static inline
8384int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008385{
8386 return 1;
8387}
8388
8389static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8390{
8391}
8392
8393static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8394{
8395}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008396#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008397
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008398#ifdef CONFIG_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008399static void free_sched_group(struct task_group *tg)
8400{
8401 free_fair_sched_group(tg);
8402 free_rt_sched_group(tg);
8403 kfree(tg);
8404}
8405
8406/* allocate runqueue etc for a new task group */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008407struct task_group *sched_create_group(struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008408{
8409 struct task_group *tg;
8410 unsigned long flags;
8411 int i;
8412
8413 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
8414 if (!tg)
8415 return ERR_PTR(-ENOMEM);
8416
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008417 if (!alloc_fair_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008418 goto err;
8419
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008420 if (!alloc_rt_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008421 goto err;
8422
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008423 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008424 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008425 register_fair_sched_group(tg, i);
8426 register_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008427 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008428 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008429
8430 WARN_ON(!parent); /* root should already exist */
8431
8432 tg->parent = parent;
8433 list_add_rcu(&tg->siblings, &parent->children);
8434 INIT_LIST_HEAD(&tg->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008435 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008436
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008437 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008438
8439err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008440 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008441 return ERR_PTR(-ENOMEM);
8442}
8443
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008444/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008445static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008446{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008447 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008448 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008449}
8450
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008451/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008452void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008453{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008454 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008455 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008456
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008457 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008458 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008459 unregister_fair_sched_group(tg, i);
8460 unregister_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008461 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008462 list_del_rcu(&tg->list);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008463 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008464 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008465
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008466 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008467 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008468}
8469
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008470/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02008471 * The caller of this function should have put the task in its new group
8472 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
8473 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008474 */
8475void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008476{
8477 int on_rq, running;
8478 unsigned long flags;
8479 struct rq *rq;
8480
8481 rq = task_rq_lock(tsk, &flags);
8482
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008483 update_rq_clock(rq);
8484
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01008485 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008486 on_rq = tsk->se.on_rq;
8487
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008488 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008489 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008490 if (unlikely(running))
8491 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008492
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008493 set_task_rq(tsk, task_cpu(tsk));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008494
Peter Zijlstra810b3812008-02-29 15:21:01 -05008495#ifdef CONFIG_FAIR_GROUP_SCHED
8496 if (tsk->sched_class->moved_group)
8497 tsk->sched_class->moved_group(tsk);
8498#endif
8499
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008500 if (unlikely(running))
8501 tsk->sched_class->set_curr_task(rq);
8502 if (on_rq)
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02008503 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008504
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008505 task_rq_unlock(rq, &flags);
8506}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008507#endif /* CONFIG_GROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008508
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008509#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008510static void __set_se_shares(struct sched_entity *se, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008511{
8512 struct cfs_rq *cfs_rq = se->cfs_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008513 int on_rq;
8514
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008515 on_rq = se->on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008516 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008517 dequeue_entity(cfs_rq, se, 0);
8518
8519 se->load.weight = shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02008520 se->load.inv_weight = 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008521
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008522 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008523 enqueue_entity(cfs_rq, se, 0);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008524}
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008525
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008526static void set_se_shares(struct sched_entity *se, unsigned long shares)
8527{
8528 struct cfs_rq *cfs_rq = se->cfs_rq;
8529 struct rq *rq = cfs_rq->rq;
8530 unsigned long flags;
8531
8532 spin_lock_irqsave(&rq->lock, flags);
8533 __set_se_shares(se, shares);
8534 spin_unlock_irqrestore(&rq->lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008535}
8536
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008537static DEFINE_MUTEX(shares_mutex);
8538
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008539int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008540{
8541 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008542 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +01008543
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008544 /*
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008545 * We can't change the weight of the root cgroup.
8546 */
8547 if (!tg->se[0])
8548 return -EINVAL;
8549
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008550 if (shares < MIN_SHARES)
8551 shares = MIN_SHARES;
Miao Xiecb4ad1f2008-04-28 12:54:56 +08008552 else if (shares > MAX_SHARES)
8553 shares = MAX_SHARES;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008554
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008555 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008556 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008557 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008558
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008559 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008560 for_each_possible_cpu(i)
8561 unregister_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008562 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008563 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008564
8565 /* wait for any ongoing reference to this group to finish */
8566 synchronize_sched();
8567
8568 /*
8569 * Now we are free to modify the group's share on each cpu
8570 * w/o tripping rebalance_share or load_balance_fair.
8571 */
8572 tg->shares = shares;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008573 for_each_possible_cpu(i) {
8574 /*
8575 * force a rebalance
8576 */
8577 cfs_rq_set_shares(tg->cfs_rq[i], 0);
Miao Xiecb4ad1f2008-04-28 12:54:56 +08008578 set_se_shares(tg->se[i], shares);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008579 }
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008580
8581 /*
8582 * Enable load balance activity on this group, by inserting it back on
8583 * each cpu's rq->leaf_cfs_rq_list.
8584 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008585 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008586 for_each_possible_cpu(i)
8587 register_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008588 list_add_rcu(&tg->siblings, &tg->parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008589 spin_unlock_irqrestore(&task_group_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008590done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008591 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008592 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008593}
8594
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008595unsigned long sched_group_shares(struct task_group *tg)
8596{
8597 return tg->shares;
8598}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008599#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008600
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008601#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008602/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008603 * Ensure that the real time constraints are schedulable.
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008604 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008605static DEFINE_MUTEX(rt_constraints_mutex);
8606
8607static unsigned long to_ratio(u64 period, u64 runtime)
8608{
8609 if (runtime == RUNTIME_INF)
8610 return 1ULL << 16;
8611
Roman Zippel6f6d6a12008-05-01 04:34:28 -07008612 return div64_u64(runtime << 16, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008613}
8614
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008615#ifdef CONFIG_CGROUP_SCHED
8616static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
8617{
Peter Zijlstra10b612f2008-06-19 14:22:27 +02008618 struct task_group *tgi, *parent = tg->parent;
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008619 unsigned long total = 0;
8620
8621 if (!parent) {
8622 if (global_rt_period() < period)
8623 return 0;
8624
8625 return to_ratio(period, runtime) <
8626 to_ratio(global_rt_period(), global_rt_runtime());
8627 }
8628
8629 if (ktime_to_ns(parent->rt_bandwidth.rt_period) < period)
8630 return 0;
8631
8632 rcu_read_lock();
8633 list_for_each_entry_rcu(tgi, &parent->children, siblings) {
8634 if (tgi == tg)
8635 continue;
8636
8637 total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period),
8638 tgi->rt_bandwidth.rt_runtime);
8639 }
8640 rcu_read_unlock();
8641
Peter Zijlstra10b612f2008-06-19 14:22:27 +02008642 return total + to_ratio(period, runtime) <=
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008643 to_ratio(ktime_to_ns(parent->rt_bandwidth.rt_period),
8644 parent->rt_bandwidth.rt_runtime);
8645}
8646#elif defined CONFIG_USER_SCHED
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008647static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008648{
8649 struct task_group *tgi;
8650 unsigned long total = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008651 unsigned long global_ratio =
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008652 to_ratio(global_rt_period(), global_rt_runtime());
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008653
8654 rcu_read_lock();
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008655 list_for_each_entry_rcu(tgi, &task_groups, list) {
8656 if (tgi == tg)
8657 continue;
8658
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008659 total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period),
8660 tgi->rt_bandwidth.rt_runtime);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008661 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008662 rcu_read_unlock();
8663
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008664 return total + to_ratio(period, runtime) < global_ratio;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008665}
Peter Zijlstrab40b2e82008-04-19 19:45:00 +02008666#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008667
Dhaval Giani521f1a242008-02-28 15:21:56 +05308668/* Must be called with tasklist_lock held */
8669static inline int tg_has_rt_tasks(struct task_group *tg)
8670{
8671 struct task_struct *g, *p;
8672 do_each_thread(g, p) {
8673 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
8674 return 1;
8675 } while_each_thread(g, p);
8676 return 0;
8677}
8678
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008679static int tg_set_bandwidth(struct task_group *tg,
8680 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008681{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008682 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008683
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008684 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05308685 read_lock(&tasklist_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008686 if (rt_runtime == 0 && tg_has_rt_tasks(tg)) {
Dhaval Giani521f1a242008-02-28 15:21:56 +05308687 err = -EBUSY;
8688 goto unlock;
8689 }
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008690 if (!__rt_schedulable(tg, rt_period, rt_runtime)) {
8691 err = -EINVAL;
8692 goto unlock;
8693 }
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008694
8695 spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008696 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
8697 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008698
8699 for_each_possible_cpu(i) {
8700 struct rt_rq *rt_rq = tg->rt_rq[i];
8701
8702 spin_lock(&rt_rq->rt_runtime_lock);
8703 rt_rq->rt_runtime = rt_runtime;
8704 spin_unlock(&rt_rq->rt_runtime_lock);
8705 }
8706 spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008707 unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05308708 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008709 mutex_unlock(&rt_constraints_mutex);
8710
8711 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008712}
8713
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008714int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
8715{
8716 u64 rt_runtime, rt_period;
8717
8718 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8719 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
8720 if (rt_runtime_us < 0)
8721 rt_runtime = RUNTIME_INF;
8722
8723 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8724}
8725
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008726long sched_group_rt_runtime(struct task_group *tg)
8727{
8728 u64 rt_runtime_us;
8729
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008730 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008731 return -1;
8732
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008733 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008734 do_div(rt_runtime_us, NSEC_PER_USEC);
8735 return rt_runtime_us;
8736}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008737
8738int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
8739{
8740 u64 rt_runtime, rt_period;
8741
8742 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
8743 rt_runtime = tg->rt_bandwidth.rt_runtime;
8744
Raistlin619b0482008-06-26 18:54:09 +02008745 if (rt_period == 0)
8746 return -EINVAL;
8747
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008748 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8749}
8750
8751long sched_group_rt_period(struct task_group *tg)
8752{
8753 u64 rt_period_us;
8754
8755 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
8756 do_div(rt_period_us, NSEC_PER_USEC);
8757 return rt_period_us;
8758}
8759
8760static int sched_rt_global_constraints(void)
8761{
Peter Zijlstra10b612f2008-06-19 14:22:27 +02008762 struct task_group *tg = &root_task_group;
8763 u64 rt_runtime, rt_period;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008764 int ret = 0;
8765
Peter Zijlstra10b612f2008-06-19 14:22:27 +02008766 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8767 rt_runtime = tg->rt_bandwidth.rt_runtime;
8768
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008769 mutex_lock(&rt_constraints_mutex);
Peter Zijlstra10b612f2008-06-19 14:22:27 +02008770 if (!__rt_schedulable(tg, rt_period, rt_runtime))
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008771 ret = -EINVAL;
8772 mutex_unlock(&rt_constraints_mutex);
8773
8774 return ret;
8775}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008776#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008777static int sched_rt_global_constraints(void)
8778{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008779 unsigned long flags;
8780 int i;
8781
8782 spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
8783 for_each_possible_cpu(i) {
8784 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
8785
8786 spin_lock(&rt_rq->rt_runtime_lock);
8787 rt_rq->rt_runtime = global_rt_runtime();
8788 spin_unlock(&rt_rq->rt_runtime_lock);
8789 }
8790 spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
8791
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008792 return 0;
8793}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008794#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008795
8796int sched_rt_handler(struct ctl_table *table, int write,
8797 struct file *filp, void __user *buffer, size_t *lenp,
8798 loff_t *ppos)
8799{
8800 int ret;
8801 int old_period, old_runtime;
8802 static DEFINE_MUTEX(mutex);
8803
8804 mutex_lock(&mutex);
8805 old_period = sysctl_sched_rt_period;
8806 old_runtime = sysctl_sched_rt_runtime;
8807
8808 ret = proc_dointvec(table, write, filp, buffer, lenp, ppos);
8809
8810 if (!ret && write) {
8811 ret = sched_rt_global_constraints();
8812 if (ret) {
8813 sysctl_sched_rt_period = old_period;
8814 sysctl_sched_rt_runtime = old_runtime;
8815 } else {
8816 def_rt_bandwidth.rt_runtime = global_rt_runtime();
8817 def_rt_bandwidth.rt_period =
8818 ns_to_ktime(global_rt_period());
8819 }
8820 }
8821 mutex_unlock(&mutex);
8822
8823 return ret;
8824}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008825
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008826#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008827
8828/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008829static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008830{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008831 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
8832 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008833}
8834
8835static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02008836cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008837{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008838 struct task_group *tg, *parent;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008839
Paul Menage2b01dfe2007-10-24 18:23:50 +02008840 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008841 /* This is early initialization for the top cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008842 init_task_group.css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008843 return &init_task_group.css;
8844 }
8845
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008846 parent = cgroup_tg(cgrp->parent);
8847 tg = sched_create_group(parent);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008848 if (IS_ERR(tg))
8849 return ERR_PTR(-ENOMEM);
8850
8851 /* Bind the cgroup to task_group object we just created */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008852 tg->css.cgroup = cgrp;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008853
8854 return &tg->css;
8855}
8856
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008857static void
8858cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008859{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008860 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008861
8862 sched_destroy_group(tg);
8863}
8864
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008865static int
8866cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
8867 struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008868{
Peter Zijlstrab68aa232008-02-13 15:45:40 +01008869#ifdef CONFIG_RT_GROUP_SCHED
8870 /* Don't accept realtime tasks when there is no way for them to run */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008871 if (rt_task(tsk) && cgroup_tg(cgrp)->rt_bandwidth.rt_runtime == 0)
Peter Zijlstrab68aa232008-02-13 15:45:40 +01008872 return -EINVAL;
8873#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008874 /* We don't support RT-tasks being in separate groups */
8875 if (tsk->sched_class != &fair_sched_class)
8876 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01008877#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008878
8879 return 0;
8880}
8881
8882static void
Paul Menage2b01dfe2007-10-24 18:23:50 +02008883cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008884 struct cgroup *old_cont, struct task_struct *tsk)
8885{
8886 sched_move_task(tsk);
8887}
8888
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008889#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagef4c753b2008-04-29 00:59:56 -07008890static int cpu_shares_write_u64(struct cgroup *cgrp, struct cftype *cftype,
Paul Menage2b01dfe2007-10-24 18:23:50 +02008891 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008892{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008893 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008894}
8895
Paul Menagef4c753b2008-04-29 00:59:56 -07008896static u64 cpu_shares_read_u64(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008897{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008898 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008899
8900 return (u64) tg->shares;
8901}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008902#endif /* CONFIG_FAIR_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008903
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008904#ifdef CONFIG_RT_GROUP_SCHED
Mirco Tischler0c708142008-05-14 16:05:46 -07008905static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
Paul Menage06ecb272008-04-29 01:00:06 -07008906 s64 val)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008907{
Paul Menage06ecb272008-04-29 01:00:06 -07008908 return sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008909}
8910
Paul Menage06ecb272008-04-29 01:00:06 -07008911static s64 cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008912{
Paul Menage06ecb272008-04-29 01:00:06 -07008913 return sched_group_rt_runtime(cgroup_tg(cgrp));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008914}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008915
8916static int cpu_rt_period_write_uint(struct cgroup *cgrp, struct cftype *cftype,
8917 u64 rt_period_us)
8918{
8919 return sched_group_set_rt_period(cgroup_tg(cgrp), rt_period_us);
8920}
8921
8922static u64 cpu_rt_period_read_uint(struct cgroup *cgrp, struct cftype *cft)
8923{
8924 return sched_group_rt_period(cgroup_tg(cgrp));
8925}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008926#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008927
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008928static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008929#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008930 {
8931 .name = "shares",
Paul Menagef4c753b2008-04-29 00:59:56 -07008932 .read_u64 = cpu_shares_read_u64,
8933 .write_u64 = cpu_shares_write_u64,
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008934 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008935#endif
8936#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008937 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008938 .name = "rt_runtime_us",
Paul Menage06ecb272008-04-29 01:00:06 -07008939 .read_s64 = cpu_rt_runtime_read,
8940 .write_s64 = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008941 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008942 {
8943 .name = "rt_period_us",
Paul Menagef4c753b2008-04-29 00:59:56 -07008944 .read_u64 = cpu_rt_period_read_uint,
8945 .write_u64 = cpu_rt_period_write_uint,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008946 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008947#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008948};
8949
8950static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
8951{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01008952 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008953}
8954
8955struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01008956 .name = "cpu",
8957 .create = cpu_cgroup_create,
8958 .destroy = cpu_cgroup_destroy,
8959 .can_attach = cpu_cgroup_can_attach,
8960 .attach = cpu_cgroup_attach,
8961 .populate = cpu_cgroup_populate,
8962 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008963 .early_init = 1,
8964};
8965
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008966#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008967
8968#ifdef CONFIG_CGROUP_CPUACCT
8969
8970/*
8971 * CPU accounting code for task groups.
8972 *
8973 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
8974 * (balbir@in.ibm.com).
8975 */
8976
8977/* track cpu usage of a group of tasks */
8978struct cpuacct {
8979 struct cgroup_subsys_state css;
8980 /* cpuusage holds pointer to a u64-type object on every cpu */
8981 u64 *cpuusage;
8982};
8983
8984struct cgroup_subsys cpuacct_subsys;
8985
8986/* return cpu accounting group corresponding to this container */
Dhaval Giani32cd7562008-02-29 10:02:43 +05308987static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008988{
Dhaval Giani32cd7562008-02-29 10:02:43 +05308989 return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id),
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01008990 struct cpuacct, css);
8991}
8992
8993/* return cpu accounting group to which this task belongs */
8994static inline struct cpuacct *task_ca(struct task_struct *tsk)
8995{
8996 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
8997 struct cpuacct, css);
8998}
8999
9000/* create a new cpu accounting group */
9001static struct cgroup_subsys_state *cpuacct_create(
Dhaval Giani32cd7562008-02-29 10:02:43 +05309002 struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009003{
9004 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
9005
9006 if (!ca)
9007 return ERR_PTR(-ENOMEM);
9008
9009 ca->cpuusage = alloc_percpu(u64);
9010 if (!ca->cpuusage) {
9011 kfree(ca);
9012 return ERR_PTR(-ENOMEM);
9013 }
9014
9015 return &ca->css;
9016}
9017
9018/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009019static void
Dhaval Giani32cd7562008-02-29 10:02:43 +05309020cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009021{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309022 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009023
9024 free_percpu(ca->cpuusage);
9025 kfree(ca);
9026}
9027
9028/* return total cpu usage (in nanoseconds) of a group */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309029static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009030{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309031 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009032 u64 totalcpuusage = 0;
9033 int i;
9034
9035 for_each_possible_cpu(i) {
9036 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
9037
9038 /*
9039 * Take rq->lock to make 64-bit addition safe on 32-bit
9040 * platforms.
9041 */
9042 spin_lock_irq(&cpu_rq(i)->lock);
9043 totalcpuusage += *cpuusage;
9044 spin_unlock_irq(&cpu_rq(i)->lock);
9045 }
9046
9047 return totalcpuusage;
9048}
9049
Dhaval Giani0297b802008-02-29 10:02:44 +05309050static int cpuusage_write(struct cgroup *cgrp, struct cftype *cftype,
9051 u64 reset)
9052{
9053 struct cpuacct *ca = cgroup_ca(cgrp);
9054 int err = 0;
9055 int i;
9056
9057 if (reset) {
9058 err = -EINVAL;
9059 goto out;
9060 }
9061
9062 for_each_possible_cpu(i) {
9063 u64 *cpuusage = percpu_ptr(ca->cpuusage, i);
9064
9065 spin_lock_irq(&cpu_rq(i)->lock);
9066 *cpuusage = 0;
9067 spin_unlock_irq(&cpu_rq(i)->lock);
9068 }
9069out:
9070 return err;
9071}
9072
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009073static struct cftype files[] = {
9074 {
9075 .name = "usage",
Paul Menagef4c753b2008-04-29 00:59:56 -07009076 .read_u64 = cpuusage_read,
9077 .write_u64 = cpuusage_write,
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009078 },
9079};
9080
Dhaval Giani32cd7562008-02-29 10:02:43 +05309081static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009082{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309083 return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files));
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009084}
9085
9086/*
9087 * charge this task's execution time to its accounting group.
9088 *
9089 * called with rq->lock held.
9090 */
9091static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
9092{
9093 struct cpuacct *ca;
9094
9095 if (!cpuacct_subsys.active)
9096 return;
9097
9098 ca = task_ca(tsk);
9099 if (ca) {
9100 u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk));
9101
9102 *cpuusage += cputime;
9103 }
9104}
9105
9106struct cgroup_subsys cpuacct_subsys = {
9107 .name = "cpuacct",
9108 .create = cpuacct_create,
9109 .destroy = cpuacct_destroy,
9110 .populate = cpuacct_populate,
9111 .subsys_id = cpuacct_subsys_id,
9112};
9113#endif /* CONFIG_CGROUP_CPUACCT */