blob: da14302a9857124c713bbbdf8841961c033afb94 [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>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020042#include <linux/perf_event.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/security.h>
44#include <linux/notifier.h>
45#include <linux/profile.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080046#include <linux/freezer.h>
akpm@osdl.org198e2f12006-01-12 01:05:30 -080047#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/blkdev.h>
49#include <linux/delay.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070050#include <linux/pid_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <linux/smp.h>
52#include <linux/threads.h>
53#include <linux/timer.h>
54#include <linux/rcupdate.h>
55#include <linux/cpu.h>
56#include <linux/cpuset.h>
57#include <linux/percpu.h>
Alexey Dobriyanb5aadf72008-10-06 13:23:43 +040058#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <linux/seq_file.h>
Tejun Heo969c7922010-05-06 18:49:21 +020060#include <linux/stop_machine.h>
Nick Piggine692ab52007-07-26 13:40:43 +020061#include <linux/sysctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <linux/syscalls.h>
63#include <linux/times.h>
Jay Lan8f0ab512006-09-30 23:28:59 -070064#include <linux/tsacct_kern.h>
bibo maoc6fd91f2006-03-26 01:38:20 -080065#include <linux/kprobes.h>
Shailabh Nagar0ff92242006-07-14 00:24:37 -070066#include <linux/delayacct.h>
Ingo Molnardff06c12007-07-09 18:52:00 +020067#include <linux/unistd.h>
Jens Axboef5ff8422007-09-21 09:19:54 +020068#include <linux/pagemap.h>
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +010069#include <linux/hrtimer.h>
Reynes Philippe30914a52008-03-17 16:19:05 -070070#include <linux/tick.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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090074#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Eric Dumazet5517d862007-05-08 00:32:57 -070076#include <asm/tlb.h>
Satyam Sharma838225b2007-10-24 18:23:50 +020077#include <asm/irq_regs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Gregory Haskins6e0534f2008-05-12 21:21:01 +020079#include "sched_cpupri.h"
Tejun Heo21aa9af2010-06-08 21:40:37 +020080#include "workqueue_sched.h"
Gregory Haskins6e0534f2008-05-12 21:21:01 +020081
Steven Rostedta8d154b2009-04-10 09:36:00 -040082#define CREATE_TRACE_POINTS
Steven Rostedtad8d75f2009-04-14 19:39:12 -040083#include <trace/events/sched.h>
Steven Rostedta8d154b2009-04-10 09:36:00 -040084
Linus Torvalds1da177e2005-04-16 15:20:36 -070085/*
86 * Convert user-nice values [ -20 ... 0 ... 19 ]
87 * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ],
88 * and back.
89 */
90#define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20)
91#define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20)
92#define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio)
93
94/*
95 * 'User priority' is the nice value converted to something we
96 * can work with better when scaling various scheduler parameters,
97 * it's a [ 0 ... 39 ] range.
98 */
99#define USER_PRIO(p) ((p)-MAX_RT_PRIO)
100#define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio)
101#define MAX_USER_PRIO (USER_PRIO(MAX_PRIO))
102
103/*
Ingo Molnard7876a02008-01-25 21:08:19 +0100104 * Helpers for converting nanosecond timing to jiffy resolution
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 */
Eric Dumazetd6322fa2007-11-09 22:39:38 +0100106#define NS_TO_JIFFIES(TIME) ((unsigned long)(TIME) / (NSEC_PER_SEC / HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200108#define NICE_0_LOAD SCHED_LOAD_SCALE
109#define NICE_0_SHIFT SCHED_LOAD_SHIFT
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111/*
112 * These are the 'tuning knobs' of the scheduler:
113 *
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +0200114 * default timeslice is 100 msecs (used only for SCHED_RR tasks).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * Timeslices get refilled after they expire.
116 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#define DEF_TIMESLICE (100 * HZ / 1000)
Peter Williams2dd73a42006-06-27 02:54:34 -0700118
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200119/*
120 * single value that denotes runtime == period, ie unlimited time.
121 */
122#define RUNTIME_INF ((u64)~0ULL)
123
Ingo Molnare05606d2007-07-09 18:51:59 +0200124static inline int rt_policy(int policy)
125{
Roel Kluin3f33a7c2008-05-13 23:44:11 +0200126 if (unlikely(policy == SCHED_FIFO || policy == SCHED_RR))
Ingo Molnare05606d2007-07-09 18:51:59 +0200127 return 1;
128 return 0;
129}
130
131static inline int task_has_rt_policy(struct task_struct *p)
132{
133 return rt_policy(p->policy);
134}
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136/*
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200137 * This is the priority-queue data structure of the RT scheduling class:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200139struct rt_prio_array {
140 DECLARE_BITMAP(bitmap, MAX_RT_PRIO+1); /* include 1 bit for delimiter */
141 struct list_head queue[MAX_RT_PRIO];
142};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200144struct rt_bandwidth {
Ingo Molnarea736ed2008-03-25 13:51:45 +0100145 /* nests inside the rq lock: */
Thomas Gleixner0986b112009-11-17 15:32:06 +0100146 raw_spinlock_t rt_runtime_lock;
Ingo Molnarea736ed2008-03-25 13:51:45 +0100147 ktime_t rt_period;
148 u64 rt_runtime;
149 struct hrtimer rt_period_timer;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200150};
151
152static struct rt_bandwidth def_rt_bandwidth;
153
154static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun);
155
156static enum hrtimer_restart sched_rt_period_timer(struct hrtimer *timer)
157{
158 struct rt_bandwidth *rt_b =
159 container_of(timer, struct rt_bandwidth, rt_period_timer);
160 ktime_t now;
161 int overrun;
162 int idle = 0;
163
164 for (;;) {
165 now = hrtimer_cb_get_time(timer);
166 overrun = hrtimer_forward(timer, now, rt_b->rt_period);
167
168 if (!overrun)
169 break;
170
171 idle = do_sched_rt_period_timer(rt_b, overrun);
172 }
173
174 return idle ? HRTIMER_NORESTART : HRTIMER_RESTART;
175}
176
177static
178void init_rt_bandwidth(struct rt_bandwidth *rt_b, u64 period, u64 runtime)
179{
180 rt_b->rt_period = ns_to_ktime(period);
181 rt_b->rt_runtime = runtime;
182
Thomas Gleixner0986b112009-11-17 15:32:06 +0100183 raw_spin_lock_init(&rt_b->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200184
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200185 hrtimer_init(&rt_b->rt_period_timer,
186 CLOCK_MONOTONIC, HRTIMER_MODE_REL);
187 rt_b->rt_period_timer.function = sched_rt_period_timer;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200188}
189
Krzysztof Heltc8bfff62008-09-05 23:46:19 +0200190static inline int rt_bandwidth_enabled(void)
191{
192 return sysctl_sched_rt_runtime >= 0;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200193}
194
195static void start_rt_bandwidth(struct rt_bandwidth *rt_b)
196{
197 ktime_t now;
198
Hiroshi Shimamotocac64d02009-02-25 09:59:26 -0800199 if (!rt_bandwidth_enabled() || rt_b->rt_runtime == RUNTIME_INF)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200200 return;
201
202 if (hrtimer_active(&rt_b->rt_period_timer))
203 return;
204
Thomas Gleixner0986b112009-11-17 15:32:06 +0100205 raw_spin_lock(&rt_b->rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200206 for (;;) {
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +0100207 unsigned long delta;
208 ktime_t soft, hard;
209
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200210 if (hrtimer_active(&rt_b->rt_period_timer))
211 break;
212
213 now = hrtimer_cb_get_time(&rt_b->rt_period_timer);
214 hrtimer_forward(&rt_b->rt_period_timer, now, rt_b->rt_period);
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +0100215
216 soft = hrtimer_get_softexpires(&rt_b->rt_period_timer);
217 hard = hrtimer_get_expires(&rt_b->rt_period_timer);
218 delta = ktime_to_ns(ktime_sub(hard, soft));
219 __hrtimer_start_range_ns(&rt_b->rt_period_timer, soft, delta,
Arun R Bharadwaj5c333862009-04-16 12:14:37 +0530220 HRTIMER_MODE_ABS_PINNED, 0);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200221 }
Thomas Gleixner0986b112009-11-17 15:32:06 +0100222 raw_spin_unlock(&rt_b->rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200223}
224
225#ifdef CONFIG_RT_GROUP_SCHED
226static void destroy_rt_bandwidth(struct rt_bandwidth *rt_b)
227{
228 hrtimer_cancel(&rt_b->rt_period_timer);
229}
230#endif
231
Heiko Carstens712555e2008-04-28 11:33:07 +0200232/*
233 * sched_domains_mutex serializes calls to arch_init_sched_domains,
234 * detach_destroy_domains and partition_sched_domains.
235 */
236static DEFINE_MUTEX(sched_domains_mutex);
237
Dhaval Giani7c941432010-01-20 13:26:18 +0100238#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200239
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700240#include <linux/cgroup.h>
241
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200242struct cfs_rq;
243
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100244static LIST_HEAD(task_groups);
245
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200246/* task group related information */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200247struct task_group {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700248 struct cgroup_subsys_state css;
Arun R Bharadwaj6c415b92008-12-01 20:49:05 +0530249
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100250#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200251 /* schedulable entities of this group on each cpu */
252 struct sched_entity **se;
253 /* runqueue "owned" by this group on each cpu */
254 struct cfs_rq **cfs_rq;
255 unsigned long shares;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100256#endif
257
258#ifdef CONFIG_RT_GROUP_SCHED
259 struct sched_rt_entity **rt_se;
260 struct rt_rq **rt_rq;
261
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200262 struct rt_bandwidth rt_bandwidth;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100263#endif
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100264
Srivatsa Vaddagiriae8393e2007-10-29 21:18:11 +0100265 struct rcu_head rcu;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100266 struct list_head list;
Peter Zijlstraf473aa52008-04-19 19:45:00 +0200267
268 struct task_group *parent;
269 struct list_head siblings;
270 struct list_head children;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200271};
272
Peter Zijlstraeff766a2008-04-19 19:45:00 +0200273#define root_task_group init_task_group
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100274
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100275/* task_group_lock serializes add/remove of task groups and also changes to
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100276 * a task group's cpu shares.
277 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100278static DEFINE_SPINLOCK(task_group_lock);
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100279
Cyrill Gorcunove9036b32009-10-26 22:24:14 +0300280#ifdef CONFIG_FAIR_GROUP_SCHED
281
Peter Zijlstra57310a92009-03-09 13:56:21 +0100282#ifdef CONFIG_SMP
283static int root_task_group_empty(void)
284{
285 return list_empty(&root_task_group.children);
286}
287#endif
288
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100289# define INIT_TASK_GROUP_LOAD NICE_0_LOAD
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200290
Miao Xiecb4ad1f2008-04-28 12:54:56 +0800291/*
Lai Jiangshan2e084782008-06-12 16:42:58 +0800292 * A weight of 0 or 1 can cause arithmetics problems.
293 * A weight of a cfs_rq is the sum of weights of which entities
294 * are queued on this cfs_rq, so a weight of a entity should not be
295 * too large, so as the shares value of a task group.
Miao Xiecb4ad1f2008-04-28 12:54:56 +0800296 * (The default weight is 1024 - so there's no practical
297 * limitation from this.)
298 */
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200299#define MIN_SHARES 2
Lai Jiangshan2e084782008-06-12 16:42:58 +0800300#define MAX_SHARES (1UL << 18)
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200301
Srivatsa Vaddagiri93f992c2008-01-25 21:07:59 +0100302static int init_task_group_load = INIT_TASK_GROUP_LOAD;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100303#endif
304
305/* Default task group.
306 * Every task in system belong to this group at bootup.
307 */
Mike Travis434d53b2008-04-04 18:11:04 -0700308struct task_group init_task_group;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200309
Dhaval Giani7c941432010-01-20 13:26:18 +0100310#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200311
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200312/* CFS-related fields in a runqueue */
313struct cfs_rq {
314 struct load_weight load;
315 unsigned long nr_running;
316
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200317 u64 exec_clock;
Ingo Molnare9acbff2007-10-15 17:00:04 +0200318 u64 min_vruntime;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200319
320 struct rb_root tasks_timeline;
321 struct rb_node *rb_leftmost;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +0200322
323 struct list_head tasks;
324 struct list_head *balance_iterator;
325
326 /*
327 * 'curr' points to currently running entity on this cfs_rq.
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200328 * It is set to NULL otherwise (i.e when none are currently running).
329 */
Peter Zijlstra47932412008-11-04 21:25:09 +0100330 struct sched_entity *curr, *next, *last;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200331
Peter Zijlstra5ac5c4d2008-11-10 10:46:32 +0100332 unsigned int nr_spread_over;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200333
Ingo Molnar62160e32007-10-15 17:00:03 +0200334#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200335 struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */
336
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100337 /*
338 * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200339 * a hierarchy). Non-leaf lrqs hold other higher schedulable entities
340 * (like users, containers etc.)
341 *
342 * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This
343 * list is used during load balance.
344 */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100345 struct list_head leaf_cfs_rq_list;
346 struct task_group *tg; /* group that "owns" this runqueue */
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200347
348#ifdef CONFIG_SMP
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200349 /*
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200350 * the part of load.weight contributed by tasks
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200351 */
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200352 unsigned long task_weight;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200353
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200354 /*
355 * h_load = weight * f(tg)
356 *
357 * Where f(tg) is the recursive weight fraction assigned to
358 * this group.
359 */
360 unsigned long h_load;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200361
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200362 /*
363 * this cpu's part of tg->shares
364 */
365 unsigned long shares;
Peter Zijlstraf1d239f2008-06-27 13:41:38 +0200366
367 /*
368 * load.weight at the time we set shares
369 */
370 unsigned long rq_weight;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200371#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200372#endif
373};
374
375/* Real-Time classes' related field in a runqueue: */
376struct rt_rq {
377 struct rt_prio_array active;
Steven Rostedt63489e42008-01-25 21:08:03 +0100378 unsigned long rt_nr_running;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100379#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Gregory Haskinse864c492008-12-29 09:39:49 -0500380 struct {
381 int curr; /* highest queued rt task prio */
Gregory Haskins398a1532009-01-14 09:10:04 -0500382#ifdef CONFIG_SMP
Gregory Haskinse864c492008-12-29 09:39:49 -0500383 int next; /* next highest */
Gregory Haskins398a1532009-01-14 09:10:04 -0500384#endif
Gregory Haskinse864c492008-12-29 09:39:49 -0500385 } highest_prio;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100386#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100387#ifdef CONFIG_SMP
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100388 unsigned long rt_nr_migratory;
Peter Zijlstraa1ba4d82009-04-01 18:40:15 +0200389 unsigned long rt_nr_total;
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100390 int overloaded;
Gregory Haskins917b6272008-12-29 09:39:53 -0500391 struct plist_head pushable_tasks;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100392#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100393 int rt_throttled;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100394 u64 rt_time;
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200395 u64 rt_runtime;
Ingo Molnarea736ed2008-03-25 13:51:45 +0100396 /* Nests inside the rq lock: */
Thomas Gleixner0986b112009-11-17 15:32:06 +0100397 raw_spinlock_t rt_runtime_lock;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100398
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100399#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100400 unsigned long rt_nr_boosted;
401
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100402 struct rq *rq;
403 struct list_head leaf_rt_rq_list;
404 struct task_group *tg;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100405#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200406};
407
Gregory Haskins57d885f2008-01-25 21:08:18 +0100408#ifdef CONFIG_SMP
409
410/*
411 * We add the notion of a root-domain which will be used to define per-domain
Ingo Molnar0eab9142008-01-25 21:08:19 +0100412 * variables. Each exclusive cpuset essentially defines an island domain by
413 * fully partitioning the member cpus from any other cpuset. Whenever a new
Gregory Haskins57d885f2008-01-25 21:08:18 +0100414 * exclusive cpuset is created, we also create and attach a new root-domain
415 * object.
416 *
Gregory Haskins57d885f2008-01-25 21:08:18 +0100417 */
418struct root_domain {
419 atomic_t refcount;
Rusty Russellc6c49272008-11-25 02:35:05 +1030420 cpumask_var_t span;
421 cpumask_var_t online;
Gregory Haskins637f5082008-01-25 21:08:18 +0100422
Ingo Molnar0eab9142008-01-25 21:08:19 +0100423 /*
Gregory Haskins637f5082008-01-25 21:08:18 +0100424 * The "RT overload" flag: it gets set if a CPU has more than
425 * one runnable RT task.
426 */
Rusty Russellc6c49272008-11-25 02:35:05 +1030427 cpumask_var_t rto_mask;
Ingo Molnar0eab9142008-01-25 21:08:19 +0100428 atomic_t rto_count;
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200429 struct cpupri cpupri;
Gregory Haskins57d885f2008-01-25 21:08:18 +0100430};
431
Gregory Haskinsdc938522008-01-25 21:08:26 +0100432/*
433 * By default the system creates a single root-domain with all cpus as
434 * members (mimicking the global state we have today).
435 */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100436static struct root_domain def_root_domain;
437
Christian Dietriched2d3722010-09-06 16:37:05 +0200438#endif /* CONFIG_SMP */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100439
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200440/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 * This is the main, per-CPU runqueue data structure.
442 *
443 * Locking rule: those places that want to lock multiple runqueues
444 * (such as the load balancing or the thread migration code), lock
445 * acquire operations must be ordered by ascending &runqueue.
446 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700447struct rq {
Ingo Molnard8016492007-10-18 21:32:55 +0200448 /* runqueue lock: */
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100449 raw_spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 /*
452 * nr_running and cpu_load should be in the same cacheline because
453 * remote CPUs use both these fields when doing load calculation.
454 */
455 unsigned long nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200456 #define CPU_LOAD_IDX_MAX 5
457 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -0700458 unsigned long last_load_update_tick;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700459#ifdef CONFIG_NO_HZ
Mike Galbraith39c0cbe2010-03-11 17:17:13 +0100460 u64 nohz_stamp;
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -0700461 unsigned char nohz_balance_kick;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700462#endif
Mike Galbraitha64692a2010-03-11 17:16:20 +0100463 unsigned int skip_clock_update;
464
Ingo Molnard8016492007-10-18 21:32:55 +0200465 /* capture load from *all* tasks on this cpu: */
466 struct load_weight load;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200467 unsigned long nr_load_updates;
468 u64 nr_switches;
469
470 struct cfs_rq cfs;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100471 struct rt_rq rt;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100472
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200473#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnard8016492007-10-18 21:32:55 +0200474 /* list of leaf cfs_rq on this cpu: */
475 struct list_head leaf_cfs_rq_list;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100476#endif
477#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100478 struct list_head leaf_rt_rq_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 /*
482 * This is part of a global counter where only the total sum
483 * over all CPUs matters. A task can increase this counter on
484 * one CPU and if it got migrated afterwards it may decrease
485 * it on another CPU. Always updated under the runqueue lock:
486 */
487 unsigned long nr_uninterruptible;
488
Peter Zijlstra34f971f2010-09-22 13:53:15 +0200489 struct task_struct *curr, *idle, *stop;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800490 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 struct mm_struct *prev_mm;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200492
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200493 u64 clock;
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -0700494 u64 clock_task;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 atomic_t nr_iowait;
497
498#ifdef CONFIG_SMP
Ingo Molnar0eab9142008-01-25 21:08:19 +0100499 struct root_domain *rd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 struct sched_domain *sd;
501
Peter Zijlstrae51fd5e2010-05-31 12:37:30 +0200502 unsigned long cpu_power;
503
Henrik Austada0a522c2009-02-13 20:35:45 +0100504 unsigned char idle_at_tick;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 /* For active balancing */
Gregory Haskins3f029d32009-07-29 11:08:47 -0400506 int post_schedule;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 int active_balance;
508 int push_cpu;
Tejun Heo969c7922010-05-06 18:49:21 +0200509 struct cpu_stop_work active_balance_work;
Ingo Molnard8016492007-10-18 21:32:55 +0200510 /* cpu of this runqueue: */
511 int cpu;
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -0400512 int online;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Peter Zijlstraa8a51d52008-06-27 13:41:26 +0200514 unsigned long avg_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200516 u64 rt_avg;
517 u64 age_stamp;
Mike Galbraith1b9508f2009-11-04 17:53:50 +0100518 u64 idle_stamp;
519 u64 avg_idle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520#endif
521
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -0700522#ifdef CONFIG_IRQ_TIME_ACCOUNTING
523 u64 prev_irq_time;
524#endif
525
Thomas Gleixnerdce48a82009-04-11 10:43:41 +0200526 /* calc_load related fields */
527 unsigned long calc_load_update;
528 long calc_load_active;
529
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100530#ifdef CONFIG_SCHED_HRTICK
Peter Zijlstra31656512008-07-18 18:01:23 +0200531#ifdef CONFIG_SMP
532 int hrtick_csd_pending;
533 struct call_single_data hrtick_csd;
534#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100535 struct hrtimer hrtick_timer;
536#endif
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538#ifdef CONFIG_SCHEDSTATS
539 /* latency stats */
540 struct sched_info rq_sched_info;
Ken Chen9c2c4802008-12-16 23:41:22 -0800541 unsigned long long rq_cpu_time;
542 /* could above be rq->cfs_rq.exec_clock + rq->rt_rq.rt_runtime ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
544 /* sys_sched_yield() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200545 unsigned int yld_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547 /* schedule() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200548 unsigned int sched_switch;
549 unsigned int sched_count;
550 unsigned int sched_goidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
552 /* try_to_wake_up() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200553 unsigned int ttwu_count;
554 unsigned int ttwu_local;
Ingo Molnarb8efb562007-10-15 17:00:10 +0200555
556 /* BKL stats */
Ken Chen480b9432007-10-18 21:32:56 +0200557 unsigned int bkl_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558#endif
559};
560
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700561static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Mike Galbraitha64692a2010-03-11 17:16:20 +0100563
Peter Zijlstra1e5a7402010-10-31 12:37:04 +0100564static void check_preempt_curr(struct rq *rq, struct task_struct *p, int flags);
Ingo Molnardd41f592007-07-09 18:51:59 +0200565
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700566static inline int cpu_of(struct rq *rq)
567{
568#ifdef CONFIG_SMP
569 return rq->cpu;
570#else
571 return 0;
572#endif
573}
574
Paul E. McKenney497f0ab2010-02-22 17:04:51 -0800575#define rcu_dereference_check_sched_domain(p) \
Paul E. McKenneyd11c5632010-02-22 17:04:50 -0800576 rcu_dereference_check((p), \
577 rcu_read_lock_sched_held() || \
578 lockdep_is_held(&sched_domains_mutex))
579
Ingo Molnar20d315d2007-07-09 18:51:58 +0200580/*
Nick Piggin674311d2005-06-25 14:57:27 -0700581 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700582 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700583 *
584 * The domain tree of any CPU may only be accessed from within
585 * preempt-disabled sections.
586 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700587#define for_each_domain(cpu, __sd) \
Paul E. McKenney497f0ab2010-02-22 17:04:51 -0800588 for (__sd = rcu_dereference_check_sched_domain(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
590#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
591#define this_rq() (&__get_cpu_var(runqueues))
592#define task_rq(p) cpu_rq(task_cpu(p))
593#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
Hitoshi Mitake54d35f22009-06-29 14:44:57 +0900594#define raw_rq() (&__raw_get_cpu_var(runqueues))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Peter Zijlstradc61b1d2010-06-08 11:40:42 +0200596#ifdef CONFIG_CGROUP_SCHED
597
598/*
599 * Return the group to which this tasks belongs.
600 *
601 * We use task_subsys_state_check() and extend the RCU verification
602 * with lockdep_is_held(&task_rq(p)->lock) because cpu_cgroup_attach()
603 * holds that lock for each task it moves into the cgroup. Therefore
604 * by holding that lock, we pin the task to the current cgroup.
605 */
606static inline struct task_group *task_group(struct task_struct *p)
607{
608 struct cgroup_subsys_state *css;
609
610 css = task_subsys_state_check(p, cpu_cgroup_subsys_id,
611 lockdep_is_held(&task_rq(p)->lock));
612 return container_of(css, struct task_group, css);
613}
614
615/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
616static inline void set_task_rq(struct task_struct *p, unsigned int cpu)
617{
618#ifdef CONFIG_FAIR_GROUP_SCHED
619 p->se.cfs_rq = task_group(p)->cfs_rq[cpu];
620 p->se.parent = task_group(p)->se[cpu];
621#endif
622
623#ifdef CONFIG_RT_GROUP_SCHED
624 p->rt.rt_rq = task_group(p)->rt_rq[cpu];
625 p->rt.parent = task_group(p)->rt_se[cpu];
626#endif
627}
628
629#else /* CONFIG_CGROUP_SCHED */
630
631static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { }
632static inline struct task_group *task_group(struct task_struct *p)
633{
634 return NULL;
635}
636
637#endif /* CONFIG_CGROUP_SCHED */
638
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -0700639static u64 irq_time_cpu(int cpu);
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -0700640static void sched_irq_time_avg_update(struct rq *rq, u64 irq_time);
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -0700641
Ingo Molnaraa9c4c02008-12-17 14:10:57 +0100642inline void update_rq_clock(struct rq *rq)
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200643{
Mike Galbraithf26f9af2010-12-08 11:05:42 +0100644 int cpu = cpu_of(rq);
645 u64 irq_time;
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -0700646
Mike Galbraithf26f9af2010-12-08 11:05:42 +0100647 if (rq->skip_clock_update)
648 return;
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -0700649
Mike Galbraithf26f9af2010-12-08 11:05:42 +0100650 rq->clock = sched_clock_cpu(cpu);
651 irq_time = irq_time_cpu(cpu);
652 if (rq->clock - irq_time > rq->clock_task)
653 rq->clock_task = rq->clock - irq_time;
654
655 sched_irq_time_avg_update(rq, irq_time);
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200656}
657
Ingo Molnare436d802007-07-19 21:28:35 +0200658/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200659 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
660 */
661#ifdef CONFIG_SCHED_DEBUG
662# define const_debug __read_mostly
663#else
664# define const_debug static const
665#endif
666
Ingo Molnar017730c2008-05-12 21:20:52 +0200667/**
668 * runqueue_is_locked
Randy Dunlape17b38b2009-10-11 19:12:00 -0700669 * @cpu: the processor in question.
Ingo Molnar017730c2008-05-12 21:20:52 +0200670 *
671 * Returns true if the current cpu runqueue is locked.
672 * This interface allows printk to be called with the runqueue lock
673 * held and know whether or not it is OK to wake up the klogd.
674 */
Andrew Morton89f19f02009-09-19 11:55:44 -0700675int runqueue_is_locked(int cpu)
Ingo Molnar017730c2008-05-12 21:20:52 +0200676{
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100677 return raw_spin_is_locked(&cpu_rq(cpu)->lock);
Ingo Molnar017730c2008-05-12 21:20:52 +0200678}
679
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200680/*
681 * Debugging: various feature bits
682 */
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200683
684#define SCHED_FEAT(name, enabled) \
685 __SCHED_FEAT_##name ,
686
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200687enum {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200688#include "sched_features.h"
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200689};
690
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200691#undef SCHED_FEAT
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200692
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200693#define SCHED_FEAT(name, enabled) \
694 (1UL << __SCHED_FEAT_##name) * enabled |
695
696const_debug unsigned int sysctl_sched_features =
697#include "sched_features.h"
698 0;
699
700#undef SCHED_FEAT
701
702#ifdef CONFIG_SCHED_DEBUG
703#define SCHED_FEAT(name, enabled) \
704 #name ,
705
Harvey Harrison983ed7a2008-04-24 18:17:55 -0700706static __read_mostly char *sched_feat_names[] = {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200707#include "sched_features.h"
708 NULL
709};
710
711#undef SCHED_FEAT
712
Li Zefan34f3a812008-10-30 15:23:32 +0800713static int sched_feat_show(struct seq_file *m, void *v)
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200714{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200715 int i;
716
717 for (i = 0; sched_feat_names[i]; i++) {
Li Zefan34f3a812008-10-30 15:23:32 +0800718 if (!(sysctl_sched_features & (1UL << i)))
719 seq_puts(m, "NO_");
720 seq_printf(m, "%s ", sched_feat_names[i]);
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200721 }
Li Zefan34f3a812008-10-30 15:23:32 +0800722 seq_puts(m, "\n");
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200723
Li Zefan34f3a812008-10-30 15:23:32 +0800724 return 0;
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200725}
726
727static ssize_t
728sched_feat_write(struct file *filp, const char __user *ubuf,
729 size_t cnt, loff_t *ppos)
730{
731 char buf[64];
Mathieu Desnoyers77401912010-09-13 17:47:00 -0400732 char *cmp;
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200733 int neg = 0;
734 int i;
735
736 if (cnt > 63)
737 cnt = 63;
738
739 if (copy_from_user(&buf, ubuf, cnt))
740 return -EFAULT;
741
742 buf[cnt] = 0;
Mathieu Desnoyers77401912010-09-13 17:47:00 -0400743 cmp = strstrip(buf);
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200744
Ingo Molnarc24b7c52008-04-18 10:55:34 +0200745 if (strncmp(buf, "NO_", 3) == 0) {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200746 neg = 1;
747 cmp += 3;
748 }
749
750 for (i = 0; sched_feat_names[i]; i++) {
Mathieu Desnoyers77401912010-09-13 17:47:00 -0400751 if (strcmp(cmp, sched_feat_names[i]) == 0) {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200752 if (neg)
753 sysctl_sched_features &= ~(1UL << i);
754 else
755 sysctl_sched_features |= (1UL << i);
756 break;
757 }
758 }
759
760 if (!sched_feat_names[i])
761 return -EINVAL;
762
Jan Blunck42994722009-11-20 17:40:37 +0100763 *ppos += cnt;
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200764
765 return cnt;
766}
767
Li Zefan34f3a812008-10-30 15:23:32 +0800768static int sched_feat_open(struct inode *inode, struct file *filp)
769{
770 return single_open(filp, sched_feat_show, NULL);
771}
772
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700773static const struct file_operations sched_feat_fops = {
Li Zefan34f3a812008-10-30 15:23:32 +0800774 .open = sched_feat_open,
775 .write = sched_feat_write,
776 .read = seq_read,
777 .llseek = seq_lseek,
778 .release = single_release,
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200779};
780
781static __init int sched_init_debug(void)
782{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200783 debugfs_create_file("sched_features", 0644, NULL, NULL,
784 &sched_feat_fops);
785
786 return 0;
787}
788late_initcall(sched_init_debug);
789
790#endif
791
792#define sched_feat(x) (sysctl_sched_features & (1UL << __SCHED_FEAT_##x))
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200793
794/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100795 * Number of tasks to iterate in a single balance run.
796 * Limited because this is done with IRQs disabled.
797 */
798const_debug unsigned int sysctl_sched_nr_migrate = 32;
799
800/*
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200801 * ratelimit for updating the group shares.
Peter Zijlstra55cd5342008-08-04 08:54:26 +0200802 * default: 0.25ms
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200803 */
Peter Zijlstra55cd5342008-08-04 08:54:26 +0200804unsigned int sysctl_sched_shares_ratelimit = 250000;
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +0100805unsigned int normalized_sysctl_sched_shares_ratelimit = 250000;
Peter Zijlstra2398f2c2008-06-27 13:41:35 +0200806
807/*
Peter Zijlstraffda12a2008-10-17 19:27:02 +0200808 * Inject some fuzzyness into changing the per-cpu group shares
809 * this avoids remote rq-locks at the expense of fairness.
810 * default: 4
811 */
812unsigned int sysctl_sched_shares_thresh = 4;
813
814/*
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200815 * period over which we average the RT time consumption, measured
816 * in ms.
817 *
818 * default: 1s
819 */
820const_debug unsigned int sysctl_sched_time_avg = MSEC_PER_SEC;
821
822/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100823 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100824 * default: 1s
825 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100826unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100827
Ingo Molnar6892b752008-02-13 14:02:36 +0100828static __read_mostly int scheduler_running;
829
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100830/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100831 * part of the period that we allow rt tasks to run in us.
832 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100833 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100834int sysctl_sched_rt_runtime = 950000;
835
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200836static inline u64 global_rt_period(void)
837{
838 return (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
839}
840
841static inline u64 global_rt_runtime(void)
842{
roel kluine26873b2008-07-22 16:51:15 -0400843 if (sysctl_sched_rt_runtime < 0)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200844 return RUNTIME_INF;
845
846 return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC;
847}
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700850# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700852#ifndef finish_arch_switch
853# define finish_arch_switch(prev) do { } while (0)
854#endif
855
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100856static inline int task_current(struct rq *rq, struct task_struct *p)
857{
858 return rq->curr == p;
859}
860
Nick Piggin4866cde2005-06-25 14:57:23 -0700861#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700862static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700863{
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100864 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700865}
866
Ingo Molnar70b97a72006-07-03 00:25:42 -0700867static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700868{
869}
870
Ingo Molnar70b97a72006-07-03 00:25:42 -0700871static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700872{
Ingo Molnarda04c032005-09-13 11:17:59 +0200873#ifdef CONFIG_DEBUG_SPINLOCK
874 /* this is a valid case when another task releases the spinlock */
875 rq->lock.owner = current;
876#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700877 /*
878 * If we are tracking spinlock dependencies then we have to
879 * fix up the runqueue lock - which gets 'carried over' from
880 * prev into current:
881 */
882 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
883
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100884 raw_spin_unlock_irq(&rq->lock);
Nick Piggin4866cde2005-06-25 14:57:23 -0700885}
886
887#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700888static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700889{
890#ifdef CONFIG_SMP
891 return p->oncpu;
892#else
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100893 return task_current(rq, p);
Nick Piggin4866cde2005-06-25 14:57:23 -0700894#endif
895}
896
Ingo Molnar70b97a72006-07-03 00:25:42 -0700897static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700898{
899#ifdef CONFIG_SMP
900 /*
901 * We can optimise this out completely for !SMP, because the
902 * SMP rebalancing from interrupt is the only thing that cares
903 * here.
904 */
905 next->oncpu = 1;
906#endif
907#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100908 raw_spin_unlock_irq(&rq->lock);
Nick Piggin4866cde2005-06-25 14:57:23 -0700909#else
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100910 raw_spin_unlock(&rq->lock);
Nick Piggin4866cde2005-06-25 14:57:23 -0700911#endif
912}
913
Ingo Molnar70b97a72006-07-03 00:25:42 -0700914static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700915{
916#ifdef CONFIG_SMP
917 /*
918 * After ->oncpu is cleared, the task can be moved to a different CPU.
919 * We must ensure this doesn't happen until the switch is completely
920 * finished.
921 */
922 smp_wmb();
923 prev->oncpu = 0;
924#endif
925#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
926 local_irq_enable();
927#endif
928}
929#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931/*
Peter Zijlstra65cc8e42010-03-25 21:05:16 +0100932 * Check whether the task is waking, we use this to synchronize ->cpus_allowed
933 * against ttwu().
Peter Zijlstra0970d292010-02-15 14:45:54 +0100934 */
935static inline int task_is_waking(struct task_struct *p)
936{
Peter Zijlstra0017d732010-03-24 18:34:10 +0100937 return unlikely(p->state == TASK_WAKING);
Peter Zijlstra0970d292010-02-15 14:45:54 +0100938}
939
940/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700941 * __task_rq_lock - lock the runqueue a given task resides on.
942 * Must be called interrupts disabled.
943 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700944static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700945 __acquires(rq->lock)
946{
Peter Zijlstra0970d292010-02-15 14:45:54 +0100947 struct rq *rq;
948
Andi Kleen3a5c3592007-10-15 17:00:14 +0200949 for (;;) {
Peter Zijlstra0970d292010-02-15 14:45:54 +0100950 rq = task_rq(p);
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100951 raw_spin_lock(&rq->lock);
Peter Zijlstra65cc8e42010-03-25 21:05:16 +0100952 if (likely(rq == task_rq(p)))
Andi Kleen3a5c3592007-10-15 17:00:14 +0200953 return rq;
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100954 raw_spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700955 }
Ingo Molnarb29739f2006-06-27 02:54:51 -0700956}
957
958/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 * task_rq_lock - lock the runqueue a given task resides on and disable
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100960 * interrupts. Note the ordering: we can safely lookup the task_rq without
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 * explicitly disabling preemption.
962 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700963static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 __acquires(rq->lock)
965{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700966 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Andi Kleen3a5c3592007-10-15 17:00:14 +0200968 for (;;) {
969 local_irq_save(*flags);
970 rq = task_rq(p);
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100971 raw_spin_lock(&rq->lock);
Peter Zijlstra65cc8e42010-03-25 21:05:16 +0100972 if (likely(rq == task_rq(p)))
Andi Kleen3a5c3592007-10-15 17:00:14 +0200973 return rq;
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100974 raw_spin_unlock_irqrestore(&rq->lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976}
977
Alexey Dobriyana9957442007-10-15 17:00:13 +0200978static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700979 __releases(rq->lock)
980{
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100981 raw_spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700982}
983
Ingo Molnar70b97a72006-07-03 00:25:42 -0700984static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 __releases(rq->lock)
986{
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100987 raw_spin_unlock_irqrestore(&rq->lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988}
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -0800991 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 */
Alexey Dobriyana9957442007-10-15 17:00:13 +0200993static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 __acquires(rq->lock)
995{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700996 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998 local_irq_disable();
999 rq = this_rq();
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001000 raw_spin_lock(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
1002 return rq;
1003}
1004
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001005#ifdef CONFIG_SCHED_HRTICK
1006/*
1007 * Use HR-timers to deliver accurate preemption points.
1008 *
1009 * Its all a bit involved since we cannot program an hrt while holding the
1010 * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a
1011 * reschedule event.
1012 *
1013 * When we get rescheduled we reprogram the hrtick_timer outside of the
1014 * rq->lock.
1015 */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001016
1017/*
1018 * Use hrtick when:
1019 * - enabled by features
1020 * - hrtimer is actually high res
1021 */
1022static inline int hrtick_enabled(struct rq *rq)
1023{
1024 if (!sched_feat(HRTICK))
1025 return 0;
Ingo Molnarba420592008-07-20 11:02:06 +02001026 if (!cpu_active(cpu_of(rq)))
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001027 return 0;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001028 return hrtimer_is_hres_active(&rq->hrtick_timer);
1029}
1030
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001031static void hrtick_clear(struct rq *rq)
1032{
1033 if (hrtimer_active(&rq->hrtick_timer))
1034 hrtimer_cancel(&rq->hrtick_timer);
1035}
1036
1037/*
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001038 * High-resolution timer tick.
1039 * Runs from hardirq context with interrupts disabled.
1040 */
1041static enum hrtimer_restart hrtick(struct hrtimer *timer)
1042{
1043 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
1044
1045 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1046
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001047 raw_spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02001048 update_rq_clock(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001049 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001050 raw_spin_unlock(&rq->lock);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001051
1052 return HRTIMER_NORESTART;
1053}
1054
Rabin Vincent95e904c2008-05-11 05:55:33 +05301055#ifdef CONFIG_SMP
Peter Zijlstra31656512008-07-18 18:01:23 +02001056/*
1057 * called from hardirq (IPI) context
1058 */
1059static void __hrtick_start(void *arg)
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001060{
Peter Zijlstra31656512008-07-18 18:01:23 +02001061 struct rq *rq = arg;
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001062
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001063 raw_spin_lock(&rq->lock);
Peter Zijlstra31656512008-07-18 18:01:23 +02001064 hrtimer_restart(&rq->hrtick_timer);
1065 rq->hrtick_csd_pending = 0;
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001066 raw_spin_unlock(&rq->lock);
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001067}
1068
Peter Zijlstra31656512008-07-18 18:01:23 +02001069/*
1070 * Called to set the hrtick timer state.
1071 *
1072 * called with rq->lock held and irqs disabled
1073 */
1074static void hrtick_start(struct rq *rq, u64 delay)
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001075{
Peter Zijlstra31656512008-07-18 18:01:23 +02001076 struct hrtimer *timer = &rq->hrtick_timer;
1077 ktime_t time = ktime_add_ns(timer->base->get_time(), delay);
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001078
Arjan van de Vencc584b22008-09-01 15:02:30 -07001079 hrtimer_set_expires(timer, time);
Peter Zijlstra31656512008-07-18 18:01:23 +02001080
1081 if (rq == this_rq()) {
1082 hrtimer_restart(timer);
1083 } else if (!rq->hrtick_csd_pending) {
Peter Zijlstra6e275632009-02-25 13:59:48 +01001084 __smp_call_function_single(cpu_of(rq), &rq->hrtick_csd, 0);
Peter Zijlstra31656512008-07-18 18:01:23 +02001085 rq->hrtick_csd_pending = 1;
1086 }
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001087}
1088
1089static int
1090hotplug_hrtick(struct notifier_block *nfb, unsigned long action, void *hcpu)
1091{
1092 int cpu = (int)(long)hcpu;
1093
1094 switch (action) {
1095 case CPU_UP_CANCELED:
1096 case CPU_UP_CANCELED_FROZEN:
1097 case CPU_DOWN_PREPARE:
1098 case CPU_DOWN_PREPARE_FROZEN:
1099 case CPU_DEAD:
1100 case CPU_DEAD_FROZEN:
Peter Zijlstra31656512008-07-18 18:01:23 +02001101 hrtick_clear(cpu_rq(cpu));
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001102 return NOTIFY_OK;
1103 }
1104
1105 return NOTIFY_DONE;
1106}
1107
Rakib Mullickfa748202008-09-22 14:55:45 -07001108static __init void init_hrtick(void)
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001109{
1110 hotcpu_notifier(hotplug_hrtick, 0);
1111}
Peter Zijlstra31656512008-07-18 18:01:23 +02001112#else
1113/*
1114 * Called to set the hrtick timer state.
1115 *
1116 * called with rq->lock held and irqs disabled
1117 */
1118static void hrtick_start(struct rq *rq, u64 delay)
1119{
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +01001120 __hrtimer_start_range_ns(&rq->hrtick_timer, ns_to_ktime(delay), 0,
Arun R Bharadwaj5c333862009-04-16 12:14:37 +05301121 HRTIMER_MODE_REL_PINNED, 0);
Peter Zijlstra31656512008-07-18 18:01:23 +02001122}
1123
Andrew Morton006c75f2008-09-22 14:55:46 -07001124static inline void init_hrtick(void)
Peter Zijlstra31656512008-07-18 18:01:23 +02001125{
1126}
Rabin Vincent95e904c2008-05-11 05:55:33 +05301127#endif /* CONFIG_SMP */
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001128
1129static void init_rq_hrtick(struct rq *rq)
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001130{
Peter Zijlstra31656512008-07-18 18:01:23 +02001131#ifdef CONFIG_SMP
1132 rq->hrtick_csd_pending = 0;
1133
1134 rq->hrtick_csd.flags = 0;
1135 rq->hrtick_csd.func = __hrtick_start;
1136 rq->hrtick_csd.info = rq;
1137#endif
1138
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001139 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1140 rq->hrtick_timer.function = hrtick;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001141}
Andrew Morton006c75f2008-09-22 14:55:46 -07001142#else /* CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001143static inline void hrtick_clear(struct rq *rq)
1144{
1145}
1146
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001147static inline void init_rq_hrtick(struct rq *rq)
1148{
1149}
1150
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001151static inline void init_hrtick(void)
1152{
1153}
Andrew Morton006c75f2008-09-22 14:55:46 -07001154#endif /* CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001155
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001156/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001157 * resched_task - mark a task 'to be rescheduled now'.
1158 *
1159 * On UP this means the setting of the need_resched flag, on SMP it
1160 * might also involve a cross-CPU call to trigger the scheduler on
1161 * the target CPU.
1162 */
1163#ifdef CONFIG_SMP
1164
1165#ifndef tsk_is_polling
1166#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1167#endif
1168
Peter Zijlstra31656512008-07-18 18:01:23 +02001169static void resched_task(struct task_struct *p)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001170{
1171 int cpu;
1172
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001173 assert_raw_spin_locked(&task_rq(p)->lock);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001174
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08001175 if (test_tsk_need_resched(p))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001176 return;
1177
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08001178 set_tsk_need_resched(p);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001179
1180 cpu = task_cpu(p);
1181 if (cpu == smp_processor_id())
1182 return;
1183
1184 /* NEED_RESCHED must be visible before we test polling */
1185 smp_mb();
1186 if (!tsk_is_polling(p))
1187 smp_send_reschedule(cpu);
1188}
1189
1190static void resched_cpu(int cpu)
1191{
1192 struct rq *rq = cpu_rq(cpu);
1193 unsigned long flags;
1194
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001195 if (!raw_spin_trylock_irqsave(&rq->lock, flags))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001196 return;
1197 resched_task(cpu_curr(cpu));
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001198 raw_spin_unlock_irqrestore(&rq->lock, flags);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001199}
Thomas Gleixner06d83082008-03-22 09:20:24 +01001200
1201#ifdef CONFIG_NO_HZ
1202/*
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07001203 * In the semi idle case, use the nearest busy cpu for migrating timers
1204 * from an idle cpu. This is good for power-savings.
1205 *
1206 * We don't do similar optimization for completely idle system, as
1207 * selecting an idle cpu will add more delays to the timers than intended
1208 * (as that cpu's timer base may not be uptodate wrt jiffies etc).
1209 */
1210int get_nohz_timer_target(void)
1211{
1212 int cpu = smp_processor_id();
1213 int i;
1214 struct sched_domain *sd;
1215
1216 for_each_domain(cpu, sd) {
1217 for_each_cpu(i, sched_domain_span(sd))
1218 if (!idle_cpu(i))
1219 return i;
1220 }
1221 return cpu;
1222}
1223/*
Thomas Gleixner06d83082008-03-22 09:20:24 +01001224 * When add_timer_on() enqueues a timer into the timer wheel of an
1225 * idle CPU then this timer might expire before the next timer event
1226 * which is scheduled to wake up that CPU. In case of a completely
1227 * idle system the next event might even be infinite time into the
1228 * future. wake_up_idle_cpu() ensures that the CPU is woken up and
1229 * leaves the inner idle loop so the newly added timer is taken into
1230 * account when the CPU goes back to idle and evaluates the timer
1231 * wheel for the next timer event.
1232 */
1233void wake_up_idle_cpu(int cpu)
1234{
1235 struct rq *rq = cpu_rq(cpu);
1236
1237 if (cpu == smp_processor_id())
1238 return;
1239
1240 /*
1241 * This is safe, as this function is called with the timer
1242 * wheel base lock of (cpu) held. When the CPU is on the way
1243 * to idle and has not yet set rq->curr to idle then it will
1244 * be serialized on the timer wheel base lock and take the new
1245 * timer into account automatically.
1246 */
1247 if (rq->curr != rq->idle)
1248 return;
1249
1250 /*
1251 * We can set TIF_RESCHED on the idle task of the other CPU
1252 * lockless. The worst case is that the other CPU runs the
1253 * idle task through an additional NOOP schedule()
1254 */
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08001255 set_tsk_need_resched(rq->idle);
Thomas Gleixner06d83082008-03-22 09:20:24 +01001256
1257 /* NEED_RESCHED must be visible before we test polling */
1258 smp_mb();
1259 if (!tsk_is_polling(rq->idle))
1260 smp_send_reschedule(cpu);
1261}
Mike Galbraith39c0cbe2010-03-11 17:17:13 +01001262
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001263#endif /* CONFIG_NO_HZ */
Thomas Gleixner06d83082008-03-22 09:20:24 +01001264
Peter Zijlstrae9e92502009-09-01 10:34:37 +02001265static u64 sched_avg_period(void)
1266{
1267 return (u64)sysctl_sched_time_avg * NSEC_PER_MSEC / 2;
1268}
1269
1270static void sched_avg_update(struct rq *rq)
1271{
1272 s64 period = sched_avg_period();
1273
1274 while ((s64)(rq->clock - rq->age_stamp) > period) {
Will Deacon0d98bb22010-05-24 12:11:43 -07001275 /*
1276 * Inline assembly required to prevent the compiler
1277 * optimising this loop into a divmod call.
1278 * See __iter_div_u64_rem() for another example of this.
1279 */
1280 asm("" : "+rm" (rq->age_stamp));
Peter Zijlstrae9e92502009-09-01 10:34:37 +02001281 rq->age_stamp += period;
1282 rq->rt_avg /= 2;
1283 }
1284}
1285
1286static void sched_rt_avg_update(struct rq *rq, u64 rt_delta)
1287{
1288 rq->rt_avg += rt_delta;
1289 sched_avg_update(rq);
1290}
1291
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001292#else /* !CONFIG_SMP */
Peter Zijlstra31656512008-07-18 18:01:23 +02001293static void resched_task(struct task_struct *p)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001294{
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001295 assert_raw_spin_locked(&task_rq(p)->lock);
Peter Zijlstra31656512008-07-18 18:01:23 +02001296 set_tsk_need_resched(p);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001297}
Peter Zijlstrae9e92502009-09-01 10:34:37 +02001298
1299static void sched_rt_avg_update(struct rq *rq, u64 rt_delta)
1300{
1301}
Suresh Siddhada2b71e2010-08-23 13:42:51 -07001302
1303static void sched_avg_update(struct rq *rq)
1304{
1305}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001306#endif /* CONFIG_SMP */
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001307
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001308#if BITS_PER_LONG == 32
1309# define WMULT_CONST (~0UL)
1310#else
1311# define WMULT_CONST (1UL << 32)
1312#endif
1313
1314#define WMULT_SHIFT 32
1315
Ingo Molnar194081e2007-08-09 11:16:51 +02001316/*
1317 * Shift right and round:
1318 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001319#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +02001320
Peter Zijlstraa7be37a2008-06-27 13:41:11 +02001321/*
1322 * delta *= weight / lw
1323 */
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +02001324static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001325calc_delta_mine(unsigned long delta_exec, unsigned long weight,
1326 struct load_weight *lw)
1327{
1328 u64 tmp;
1329
Lai Jiangshan7a232e02008-06-12 16:43:07 +08001330 if (!lw->inv_weight) {
1331 if (BITS_PER_LONG > 32 && unlikely(lw->weight >= WMULT_CONST))
1332 lw->inv_weight = 1;
1333 else
1334 lw->inv_weight = 1 + (WMULT_CONST-lw->weight/2)
1335 / (lw->weight+1);
1336 }
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001337
1338 tmp = (u64)delta_exec * weight;
1339 /*
1340 * Check whether we'd overflow the 64-bit multiplication:
1341 */
Ingo Molnar194081e2007-08-09 11:16:51 +02001342 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001343 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +02001344 WMULT_SHIFT/2);
1345 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001346 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001347
Ingo Molnarecf691d2007-08-02 17:41:40 +02001348 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001349}
1350
Ingo Molnar10919852007-10-15 17:00:04 +02001351static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001352{
1353 lw->weight += inc;
Ingo Molnare89996a2008-03-14 23:48:28 +01001354 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001355}
1356
Ingo Molnar10919852007-10-15 17:00:04 +02001357static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001358{
1359 lw->weight -= dec;
Ingo Molnare89996a2008-03-14 23:48:28 +01001360 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001361}
1362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001364 * To aid in avoiding the subversion of "niceness" due to uneven distribution
1365 * of tasks with abnormal "nice" values across CPUs the contribution that
1366 * each task makes to its run queue's load is weighted according to its
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001367 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
Peter Williams2dd73a42006-06-27 02:54:34 -07001368 * scaled version of the new time slice allocation that they receive on time
1369 * slice expiry etc.
1370 */
1371
Peter Zijlstracce7ade2009-01-15 14:53:37 +01001372#define WEIGHT_IDLEPRIO 3
1373#define WMULT_IDLEPRIO 1431655765
Ingo Molnardd41f592007-07-09 18:51:59 +02001374
1375/*
1376 * Nice levels are multiplicative, with a gentle 10% change for every
1377 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
1378 * nice 1, it will get ~10% less CPU time than another CPU-bound task
1379 * that remained on nice 0.
1380 *
1381 * The "10% effect" is relative and cumulative: from _any_ nice level,
1382 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee2007-07-16 09:46:30 +02001383 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
1384 * If a task goes up by ~10% and another task goes down by ~10% then
1385 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +02001386 */
1387static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001388 /* -20 */ 88761, 71755, 56483, 46273, 36291,
1389 /* -15 */ 29154, 23254, 18705, 14949, 11916,
1390 /* -10 */ 9548, 7620, 6100, 4904, 3906,
1391 /* -5 */ 3121, 2501, 1991, 1586, 1277,
1392 /* 0 */ 1024, 820, 655, 526, 423,
1393 /* 5 */ 335, 272, 215, 172, 137,
1394 /* 10 */ 110, 87, 70, 56, 45,
1395 /* 15 */ 36, 29, 23, 18, 15,
Ingo Molnardd41f592007-07-09 18:51:59 +02001396};
1397
Ingo Molnar5714d2d2007-07-16 09:46:31 +02001398/*
1399 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
1400 *
1401 * In cases where the weight does not change often, we can use the
1402 * precalculated inverse to speed up arithmetics by turning divisions
1403 * into multiplications:
1404 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001405static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001406 /* -20 */ 48388, 59856, 76040, 92818, 118348,
1407 /* -15 */ 147320, 184698, 229616, 287308, 360437,
1408 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
1409 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
1410 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
1411 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
1412 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
1413 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +02001414};
Peter Williams2dd73a42006-06-27 02:54:34 -07001415
Bharata B Raoef12fef2009-03-31 10:02:22 +05301416/* Time spent by the tasks of the cpu accounting group executing in ... */
1417enum cpuacct_stat_index {
1418 CPUACCT_STAT_USER, /* ... user mode */
1419 CPUACCT_STAT_SYSTEM, /* ... kernel mode */
1420
1421 CPUACCT_STAT_NSTATS,
1422};
1423
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001424#ifdef CONFIG_CGROUP_CPUACCT
1425static void cpuacct_charge(struct task_struct *tsk, u64 cputime);
Bharata B Raoef12fef2009-03-31 10:02:22 +05301426static void cpuacct_update_stats(struct task_struct *tsk,
1427 enum cpuacct_stat_index idx, cputime_t val);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001428#else
1429static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
Bharata B Raoef12fef2009-03-31 10:02:22 +05301430static inline void cpuacct_update_stats(struct task_struct *tsk,
1431 enum cpuacct_stat_index idx, cputime_t val) {}
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001432#endif
1433
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001434static inline void inc_cpu_load(struct rq *rq, unsigned long load)
1435{
1436 update_load_add(&rq->load, load);
1437}
1438
1439static inline void dec_cpu_load(struct rq *rq, unsigned long load)
1440{
1441 update_load_sub(&rq->load, load);
1442}
1443
Ingo Molnar7940ca32008-08-19 13:40:47 +02001444#if (defined(CONFIG_SMP) && defined(CONFIG_FAIR_GROUP_SCHED)) || defined(CONFIG_RT_GROUP_SCHED)
Peter Zijlstraeb755802008-08-19 12:33:05 +02001445typedef int (*tg_visitor)(struct task_group *, void *);
1446
1447/*
1448 * Iterate the full tree, calling @down when first entering a node and @up when
1449 * leaving it for the final time.
1450 */
1451static int walk_tg_tree(tg_visitor down, tg_visitor up, void *data)
1452{
1453 struct task_group *parent, *child;
1454 int ret;
1455
1456 rcu_read_lock();
1457 parent = &root_task_group;
1458down:
1459 ret = (*down)(parent, data);
1460 if (ret)
1461 goto out_unlock;
1462 list_for_each_entry_rcu(child, &parent->children, siblings) {
1463 parent = child;
1464 goto down;
1465
1466up:
1467 continue;
1468 }
1469 ret = (*up)(parent, data);
1470 if (ret)
1471 goto out_unlock;
1472
1473 child = parent;
1474 parent = parent->parent;
1475 if (parent)
1476 goto up;
1477out_unlock:
1478 rcu_read_unlock();
1479
1480 return ret;
1481}
1482
1483static int tg_nop(struct task_group *tg, void *data)
1484{
1485 return 0;
1486}
1487#endif
1488
Gregory Haskinse7693a32008-01-25 21:08:09 +01001489#ifdef CONFIG_SMP
Peter Zijlstraf5f08f32009-09-10 13:35:28 +02001490/* Used instead of source_load when we know the type == 0 */
1491static unsigned long weighted_cpuload(const int cpu)
1492{
1493 return cpu_rq(cpu)->load.weight;
1494}
1495
1496/*
1497 * Return a low guess at the load of a migration-source cpu weighted
1498 * according to the scheduling class and "nice" value.
1499 *
1500 * We want to under-estimate the load of migration sources, to
1501 * balance conservatively.
1502 */
1503static unsigned long source_load(int cpu, int type)
1504{
1505 struct rq *rq = cpu_rq(cpu);
1506 unsigned long total = weighted_cpuload(cpu);
1507
1508 if (type == 0 || !sched_feat(LB_BIAS))
1509 return total;
1510
1511 return min(rq->cpu_load[type-1], total);
1512}
1513
1514/*
1515 * Return a high guess at the load of a migration-target cpu weighted
1516 * according to the scheduling class and "nice" value.
1517 */
1518static unsigned long target_load(int cpu, int type)
1519{
1520 struct rq *rq = cpu_rq(cpu);
1521 unsigned long total = weighted_cpuload(cpu);
1522
1523 if (type == 0 || !sched_feat(LB_BIAS))
1524 return total;
1525
1526 return max(rq->cpu_load[type-1], total);
1527}
1528
Peter Zijlstraae154be2009-09-10 14:40:57 +02001529static unsigned long power_of(int cpu)
1530{
Peter Zijlstrae51fd5e2010-05-31 12:37:30 +02001531 return cpu_rq(cpu)->cpu_power;
Peter Zijlstraae154be2009-09-10 14:40:57 +02001532}
1533
Gregory Haskinse7693a32008-01-25 21:08:09 +01001534static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001535
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001536static unsigned long cpu_avg_load_per_task(int cpu)
1537{
1538 struct rq *rq = cpu_rq(cpu);
Ingo Molnaraf6d5962008-11-29 20:45:15 +01001539 unsigned long nr_running = ACCESS_ONCE(rq->nr_running);
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001540
Steven Rostedt4cd42622008-11-26 21:04:24 -05001541 if (nr_running)
1542 rq->avg_load_per_task = rq->load.weight / nr_running;
Balbir Singha2d47772008-11-12 16:19:00 +05301543 else
1544 rq->avg_load_per_task = 0;
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001545
1546 return rq->avg_load_per_task;
1547}
1548
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001549#ifdef CONFIG_FAIR_GROUP_SCHED
1550
Tejun Heo43cf38e2010-02-02 14:38:57 +09001551static __read_mostly unsigned long __percpu *update_shares_data;
Peter Zijlstra34d76c42009-08-27 13:08:56 +02001552
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001553static void __set_se_shares(struct sched_entity *se, unsigned long shares);
1554
1555/*
1556 * Calculate and set the cpu's group shares.
1557 */
Peter Zijlstra34d76c42009-08-27 13:08:56 +02001558static void update_group_shares_cpu(struct task_group *tg, int cpu,
1559 unsigned long sd_shares,
1560 unsigned long sd_rq_weight,
Jiri Kosina4a6cc4b2009-10-29 00:26:00 +09001561 unsigned long *usd_rq_weight)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001562{
Peter Zijlstra34d76c42009-08-27 13:08:56 +02001563 unsigned long shares, rq_weight;
Peter Zijlstraa5004272009-07-27 14:04:49 +02001564 int boost = 0;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001565
Jiri Kosina4a6cc4b2009-10-29 00:26:00 +09001566 rq_weight = usd_rq_weight[cpu];
Peter Zijlstraa5004272009-07-27 14:04:49 +02001567 if (!rq_weight) {
1568 boost = 1;
1569 rq_weight = NICE_0_LOAD;
1570 }
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001571
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001572 /*
Peter Zijlstraa8af7242009-08-21 13:58:54 +02001573 * \Sum_j shares_j * rq_weight_i
1574 * shares_i = -----------------------------
1575 * \Sum_j rq_weight_j
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001576 */
Ken Chenec4e0e22008-11-18 22:41:57 -08001577 shares = (sd_shares * rq_weight) / sd_rq_weight;
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001578 shares = clamp_t(unsigned long, shares, MIN_SHARES, MAX_SHARES);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001579
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001580 if (abs(shares - tg->se[cpu]->load.weight) >
1581 sysctl_sched_shares_thresh) {
1582 struct rq *rq = cpu_rq(cpu);
1583 unsigned long flags;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001584
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001585 raw_spin_lock_irqsave(&rq->lock, flags);
Peter Zijlstra34d76c42009-08-27 13:08:56 +02001586 tg->cfs_rq[cpu]->rq_weight = boost ? 0 : rq_weight;
Peter Zijlstraa5004272009-07-27 14:04:49 +02001587 tg->cfs_rq[cpu]->shares = boost ? 0 : shares;
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001588 __set_se_shares(tg->se[cpu], shares);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001589 raw_spin_unlock_irqrestore(&rq->lock, flags);
Peter Zijlstraffda12a2008-10-17 19:27:02 +02001590 }
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001591}
1592
1593/*
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001594 * Re-compute the task group their per cpu shares over the given domain.
1595 * This needs to be done in a bottom-up fashion because the rq weight of a
1596 * parent group depends on the shares of its child groups.
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001597 */
Peter Zijlstraeb755802008-08-19 12:33:05 +02001598static int tg_shares_up(struct task_group *tg, void *data)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001599{
Peter Zijlstracd8ad402009-12-03 18:00:07 +01001600 unsigned long weight, rq_weight = 0, sum_weight = 0, shares = 0;
Jiri Kosina4a6cc4b2009-10-29 00:26:00 +09001601 unsigned long *usd_rq_weight;
Peter Zijlstraeb755802008-08-19 12:33:05 +02001602 struct sched_domain *sd = data;
Peter Zijlstra34d76c42009-08-27 13:08:56 +02001603 unsigned long flags;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001604 int i;
1605
Peter Zijlstra34d76c42009-08-27 13:08:56 +02001606 if (!tg->se[0])
1607 return 0;
1608
1609 local_irq_save(flags);
Jiri Kosina4a6cc4b2009-10-29 00:26:00 +09001610 usd_rq_weight = per_cpu_ptr(update_shares_data, smp_processor_id());
Peter Zijlstra34d76c42009-08-27 13:08:56 +02001611
Rusty Russell758b2cd2008-11-25 02:35:04 +10301612 for_each_cpu(i, sched_domain_span(sd)) {
Peter Zijlstra34d76c42009-08-27 13:08:56 +02001613 weight = tg->cfs_rq[i]->load.weight;
Jiri Kosina4a6cc4b2009-10-29 00:26:00 +09001614 usd_rq_weight[i] = weight;
Peter Zijlstra34d76c42009-08-27 13:08:56 +02001615
Peter Zijlstracd8ad402009-12-03 18:00:07 +01001616 rq_weight += weight;
Ken Chenec4e0e22008-11-18 22:41:57 -08001617 /*
1618 * If there are currently no tasks on the cpu pretend there
1619 * is one of average load so that when a new task gets to
1620 * run here it will not get delayed by group starvation.
1621 */
Ken Chenec4e0e22008-11-18 22:41:57 -08001622 if (!weight)
1623 weight = NICE_0_LOAD;
1624
Peter Zijlstracd8ad402009-12-03 18:00:07 +01001625 sum_weight += weight;
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001626 shares += tg->cfs_rq[i]->shares;
1627 }
1628
Peter Zijlstracd8ad402009-12-03 18:00:07 +01001629 if (!rq_weight)
1630 rq_weight = sum_weight;
1631
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001632 if ((!shares && rq_weight) || shares > tg->shares)
1633 shares = tg->shares;
1634
1635 if (!sd->parent || !(sd->parent->flags & SD_LOAD_BALANCE))
1636 shares = tg->shares;
1637
Rusty Russell758b2cd2008-11-25 02:35:04 +10301638 for_each_cpu(i, sched_domain_span(sd))
Jiri Kosina4a6cc4b2009-10-29 00:26:00 +09001639 update_group_shares_cpu(tg, i, shares, rq_weight, usd_rq_weight);
Peter Zijlstra34d76c42009-08-27 13:08:56 +02001640
1641 local_irq_restore(flags);
Peter Zijlstraeb755802008-08-19 12:33:05 +02001642
1643 return 0;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001644}
1645
1646/*
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001647 * Compute the cpu's hierarchical load factor for each task group.
1648 * This needs to be done in a top-down fashion because the load of a child
1649 * group is a fraction of its parents load.
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001650 */
Peter Zijlstraeb755802008-08-19 12:33:05 +02001651static int tg_load_down(struct task_group *tg, void *data)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001652{
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001653 unsigned long load;
Peter Zijlstraeb755802008-08-19 12:33:05 +02001654 long cpu = (long)data;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001655
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001656 if (!tg->parent) {
1657 load = cpu_rq(cpu)->load.weight;
1658 } else {
1659 load = tg->parent->cfs_rq[cpu]->h_load;
1660 load *= tg->cfs_rq[cpu]->shares;
1661 load /= tg->parent->cfs_rq[cpu]->load.weight + 1;
1662 }
1663
1664 tg->cfs_rq[cpu]->h_load = load;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001665
Peter Zijlstraeb755802008-08-19 12:33:05 +02001666 return 0;
Peter Zijlstra4d8d5952008-06-27 13:41:19 +02001667}
1668
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001669static void update_shares(struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001670{
Peter Zijlstrae7097152009-06-03 15:41:20 +02001671 s64 elapsed;
1672 u64 now;
1673
1674 if (root_task_group_empty())
1675 return;
1676
Peter Zijlstrac6763292010-05-25 10:48:51 +02001677 now = local_clock();
Peter Zijlstrae7097152009-06-03 15:41:20 +02001678 elapsed = now - sd->last_update;
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02001679
1680 if (elapsed >= (s64)(u64)sysctl_sched_shares_ratelimit) {
1681 sd->last_update = now;
Peter Zijlstraeb755802008-08-19 12:33:05 +02001682 walk_tg_tree(tg_nop, tg_shares_up, sd);
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02001683 }
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001684}
1685
Peter Zijlstraeb755802008-08-19 12:33:05 +02001686static void update_h_load(long cpu)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001687{
Peter Zijlstraeb755802008-08-19 12:33:05 +02001688 walk_tg_tree(tg_load_down, tg_nop, (void *)cpu);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001689}
1690
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001691#else
1692
Peter Zijlstrac8cba852008-06-27 13:41:23 +02001693static inline void update_shares(struct sched_domain *sd)
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001694{
1695}
1696
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001697#endif
1698
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001699#ifdef CONFIG_PREEMPT
1700
Peter Zijlstrab78bb862009-09-15 14:23:18 +02001701static void double_rq_lock(struct rq *rq1, struct rq *rq2);
1702
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001703/*
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001704 * fair double_lock_balance: Safely acquires both rq->locks in a fair
1705 * way at the expense of forcing extra atomic operations in all
1706 * invocations. This assures that the double_lock is acquired using the
1707 * same underlying policy as the spinlock_t on this architecture, which
1708 * reduces latency compared to the unfair variant below. However, it
1709 * also adds more overhead and therefore may reduce throughput.
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001710 */
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001711static inline int _double_lock_balance(struct rq *this_rq, struct rq *busiest)
1712 __releases(this_rq->lock)
1713 __acquires(busiest->lock)
1714 __acquires(this_rq->lock)
1715{
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001716 raw_spin_unlock(&this_rq->lock);
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001717 double_rq_lock(this_rq, busiest);
1718
1719 return 1;
1720}
1721
1722#else
1723/*
1724 * Unfair double_lock_balance: Optimizes throughput at the expense of
1725 * latency by eliminating extra atomic operations when the locks are
1726 * already in proper order on entry. This favors lower cpu-ids and will
1727 * grant the double lock to lower cpus over higher ids under contention,
1728 * regardless of entry order into the function.
1729 */
1730static int _double_lock_balance(struct rq *this_rq, struct rq *busiest)
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001731 __releases(this_rq->lock)
1732 __acquires(busiest->lock)
1733 __acquires(this_rq->lock)
1734{
1735 int ret = 0;
1736
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001737 if (unlikely(!raw_spin_trylock(&busiest->lock))) {
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001738 if (busiest < this_rq) {
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001739 raw_spin_unlock(&this_rq->lock);
1740 raw_spin_lock(&busiest->lock);
1741 raw_spin_lock_nested(&this_rq->lock,
1742 SINGLE_DEPTH_NESTING);
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001743 ret = 1;
1744 } else
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001745 raw_spin_lock_nested(&busiest->lock,
1746 SINGLE_DEPTH_NESTING);
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001747 }
1748 return ret;
1749}
1750
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001751#endif /* CONFIG_PREEMPT */
1752
1753/*
1754 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
1755 */
1756static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
1757{
1758 if (unlikely(!irqs_disabled())) {
1759 /* printk() doesn't work good under rq->lock */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001760 raw_spin_unlock(&this_rq->lock);
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001761 BUG_ON(1);
1762 }
1763
1764 return _double_lock_balance(this_rq, busiest);
1765}
1766
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001767static inline void double_unlock_balance(struct rq *this_rq, struct rq *busiest)
1768 __releases(busiest->lock)
1769{
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001770 raw_spin_unlock(&busiest->lock);
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001771 lock_set_subclass(&this_rq->lock.dep_map, 0, _RET_IP_);
1772}
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001773
1774/*
1775 * double_rq_lock - safely lock two runqueues
1776 *
1777 * Note this does not disable interrupts like task_rq_lock,
1778 * you need to do so manually before calling.
1779 */
1780static void double_rq_lock(struct rq *rq1, struct rq *rq2)
1781 __acquires(rq1->lock)
1782 __acquires(rq2->lock)
1783{
1784 BUG_ON(!irqs_disabled());
1785 if (rq1 == rq2) {
1786 raw_spin_lock(&rq1->lock);
1787 __acquire(rq2->lock); /* Fake it out ;) */
1788 } else {
1789 if (rq1 < rq2) {
1790 raw_spin_lock(&rq1->lock);
1791 raw_spin_lock_nested(&rq2->lock, SINGLE_DEPTH_NESTING);
1792 } else {
1793 raw_spin_lock(&rq2->lock);
1794 raw_spin_lock_nested(&rq1->lock, SINGLE_DEPTH_NESTING);
1795 }
1796 }
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001797}
1798
1799/*
1800 * double_rq_unlock - safely unlock two runqueues
1801 *
1802 * Note this does not restore interrupts like task_rq_unlock,
1803 * you need to do so manually after calling.
1804 */
1805static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
1806 __releases(rq1->lock)
1807 __releases(rq2->lock)
1808{
1809 raw_spin_unlock(&rq1->lock);
1810 if (rq1 != rq2)
1811 raw_spin_unlock(&rq2->lock);
1812 else
1813 __release(rq2->lock);
1814}
1815
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001816#endif
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001817
1818#ifdef CONFIG_FAIR_GROUP_SCHED
1819static void cfs_rq_set_shares(struct cfs_rq *cfs_rq, unsigned long shares)
1820{
Vegard Nossum30432092008-06-27 21:35:50 +02001821#ifdef CONFIG_SMP
Ingo Molnar34e83e82008-06-27 15:42:36 +02001822 cfs_rq->shares = shares;
1823#endif
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001824}
1825#endif
1826
Peter Zijlstra74f51872010-04-22 21:50:19 +02001827static void calc_load_account_idle(struct rq *this_rq);
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +01001828static void update_sysctl(void);
Christian Ehrhardtacb4a842009-11-30 12:16:48 +01001829static int get_update_sysctl_factor(void);
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07001830static void update_cpu_load(struct rq *this_rq);
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02001831
Peter Zijlstracd29fe62009-11-27 17:32:46 +01001832static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1833{
1834 set_task_rq(p, cpu);
1835#ifdef CONFIG_SMP
1836 /*
1837 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
1838 * successfuly executed on another CPU. We must ensure that updates of
1839 * per-task data have been completed by this moment.
1840 */
1841 smp_wmb();
1842 task_thread_info(p)->cpu = cpu;
1843#endif
1844}
Gregory Haskinse7693a32008-01-25 21:08:09 +01001845
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001846static const struct sched_class rt_sched_class;
Ingo Molnardd41f592007-07-09 18:51:59 +02001847
Peter Zijlstra34f971f2010-09-22 13:53:15 +02001848#define sched_class_highest (&stop_sched_class)
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04001849#define for_each_class(class) \
1850 for (class = sched_class_highest; class; class = class->next)
Ingo Molnardd41f592007-07-09 18:51:59 +02001851
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001852#include "sched_stats.h"
1853
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001854static void inc_nr_running(struct rq *rq)
Ingo Molnar6363ca52008-05-29 11:28:57 +02001855{
1856 rq->nr_running++;
Ingo Molnar6363ca52008-05-29 11:28:57 +02001857}
1858
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001859static void dec_nr_running(struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001860{
1861 rq->nr_running--;
Ingo Molnar9c217242007-08-02 17:41:40 +02001862}
1863
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001864static void set_load_weight(struct task_struct *p)
1865{
Ingo Molnardd41f592007-07-09 18:51:59 +02001866 /*
1867 * SCHED_IDLE tasks get minimal weight:
1868 */
1869 if (p->policy == SCHED_IDLE) {
1870 p->se.load.weight = WEIGHT_IDLEPRIO;
1871 p->se.load.inv_weight = WMULT_IDLEPRIO;
1872 return;
1873 }
1874
1875 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
1876 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001877}
1878
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001879static void enqueue_task(struct rq *rq, struct task_struct *p, int flags)
Gregory Haskins2087a1a2008-06-27 14:30:00 -06001880{
Mike Galbraitha64692a2010-03-11 17:16:20 +01001881 update_rq_clock(rq);
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001882 sched_info_queued(p);
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001883 p->sched_class->enqueue_task(rq, p, flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02001884 p->se.on_rq = 1;
1885}
1886
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001887static void dequeue_task(struct rq *rq, struct task_struct *p, int flags)
Ingo Molnardd41f592007-07-09 18:51:59 +02001888{
Mike Galbraitha64692a2010-03-11 17:16:20 +01001889 update_rq_clock(rq);
Ankita Garg46ac22b2008-07-01 14:30:06 +05301890 sched_info_dequeued(p);
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001891 p->sched_class->dequeue_task(rq, p, flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02001892 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001893}
1894
1895/*
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001896 * activate_task - move a task to the runqueue.
1897 */
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001898static void activate_task(struct rq *rq, struct task_struct *p, int flags)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001899{
1900 if (task_contributes_to_load(p))
1901 rq->nr_uninterruptible--;
1902
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001903 enqueue_task(rq, p, flags);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001904 inc_nr_running(rq);
1905}
1906
1907/*
1908 * deactivate_task - remove a task from the runqueue.
1909 */
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001910static void deactivate_task(struct rq *rq, struct task_struct *p, int flags)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001911{
1912 if (task_contributes_to_load(p))
1913 rq->nr_uninterruptible++;
1914
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001915 dequeue_task(rq, p, flags);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001916 dec_nr_running(rq);
1917}
1918
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07001919#ifdef CONFIG_IRQ_TIME_ACCOUNTING
1920
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -07001921/*
1922 * There are no locks covering percpu hardirq/softirq time.
1923 * They are only modified in account_system_vtime, on corresponding CPU
1924 * with interrupts disabled. So, writes are safe.
1925 * They are read and saved off onto struct rq in update_rq_clock().
1926 * This may result in other CPU reading this CPU's irq time and can
1927 * race with irq/account_system_vtime on this CPU. We would either get old
1928 * or new value (or semi updated value on 32 bit) with a side effect of
1929 * accounting a slice of irq time to wrong task when irq is in progress
1930 * while we read rq->clock. That is a worthy compromise in place of having
1931 * locks on each irq in account_system_time.
1932 */
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07001933static DEFINE_PER_CPU(u64, cpu_hardirq_time);
1934static DEFINE_PER_CPU(u64, cpu_softirq_time);
1935
1936static DEFINE_PER_CPU(u64, irq_start_time);
1937static int sched_clock_irqtime;
1938
1939void enable_sched_clock_irqtime(void)
1940{
1941 sched_clock_irqtime = 1;
1942}
1943
1944void disable_sched_clock_irqtime(void)
1945{
1946 sched_clock_irqtime = 0;
1947}
1948
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -07001949static u64 irq_time_cpu(int cpu)
1950{
1951 if (!sched_clock_irqtime)
1952 return 0;
1953
1954 return per_cpu(cpu_softirq_time, cpu) + per_cpu(cpu_hardirq_time, cpu);
1955}
1956
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07001957void account_system_vtime(struct task_struct *curr)
1958{
1959 unsigned long flags;
1960 int cpu;
1961 u64 now, delta;
1962
1963 if (!sched_clock_irqtime)
1964 return;
1965
1966 local_irq_save(flags);
1967
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07001968 cpu = smp_processor_id();
Venkatesh Pallipadid267f872010-10-04 17:03:23 -07001969 now = sched_clock_cpu(cpu);
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07001970 delta = now - per_cpu(irq_start_time, cpu);
1971 per_cpu(irq_start_time, cpu) = now;
1972 /*
1973 * We do not account for softirq time from ksoftirqd here.
1974 * We want to continue accounting softirq time to ksoftirqd thread
1975 * in that case, so as not to confuse scheduler with a special task
1976 * that do not consume any time, but still wants to run.
1977 */
1978 if (hardirq_count())
1979 per_cpu(cpu_hardirq_time, cpu) += delta;
1980 else if (in_serving_softirq() && !(curr->flags & PF_KSOFTIRQD))
1981 per_cpu(cpu_softirq_time, cpu) += delta;
1982
1983 local_irq_restore(flags);
1984}
Ingo Molnarb7dadc32010-10-18 20:00:37 +02001985EXPORT_SYMBOL_GPL(account_system_vtime);
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07001986
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -07001987static void sched_irq_time_avg_update(struct rq *rq, u64 curr_irq_time)
1988{
1989 if (sched_clock_irqtime && sched_feat(NONIRQ_POWER)) {
1990 u64 delta_irq = curr_irq_time - rq->prev_irq_time;
1991 rq->prev_irq_time = curr_irq_time;
1992 sched_rt_avg_update(rq, delta_irq);
1993 }
1994}
1995
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -07001996#else
1997
1998static u64 irq_time_cpu(int cpu)
1999{
2000 return 0;
2001}
2002
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -07002003static void sched_irq_time_avg_update(struct rq *rq, u64 curr_irq_time) { }
2004
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07002005#endif
2006
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01002007#include "sched_idletask.c"
2008#include "sched_fair.c"
2009#include "sched_rt.c"
Peter Zijlstra34f971f2010-09-22 13:53:15 +02002010#include "sched_stoptask.c"
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01002011#ifdef CONFIG_SCHED_DEBUG
2012# include "sched_debug.c"
2013#endif
2014
Peter Zijlstra34f971f2010-09-22 13:53:15 +02002015void sched_set_stop_task(int cpu, struct task_struct *stop)
2016{
2017 struct sched_param param = { .sched_priority = MAX_RT_PRIO - 1 };
2018 struct task_struct *old_stop = cpu_rq(cpu)->stop;
2019
2020 if (stop) {
2021 /*
2022 * Make it appear like a SCHED_FIFO task, its something
2023 * userspace knows about and won't get confused about.
2024 *
2025 * Also, it will make PI more or less work without too
2026 * much confusion -- but then, stop work should not
2027 * rely on PI working anyway.
2028 */
2029 sched_setscheduler_nocheck(stop, SCHED_FIFO, &param);
2030
2031 stop->sched_class = &stop_sched_class;
2032 }
2033
2034 cpu_rq(cpu)->stop = stop;
2035
2036 if (old_stop) {
2037 /*
2038 * Reset it back to a normal scheduling class so that
2039 * it can die in pieces.
2040 */
2041 old_stop->sched_class = &rt_sched_class;
2042 }
2043}
2044
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01002045/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002046 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02002047 */
Ingo Molnar14531182007-07-09 18:51:59 +02002048static inline int __normal_prio(struct task_struct *p)
2049{
Ingo Molnardd41f592007-07-09 18:51:59 +02002050 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02002051}
2052
2053/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07002054 * Calculate the expected normal priority: i.e. priority
2055 * without taking RT-inheritance into account. Might be
2056 * boosted by interactivity modifiers. Changes upon fork,
2057 * setprio syscalls, and whenever the interactivity
2058 * estimator recalculates.
2059 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002060static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07002061{
2062 int prio;
2063
Ingo Molnare05606d2007-07-09 18:51:59 +02002064 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07002065 prio = MAX_RT_PRIO-1 - p->rt_priority;
2066 else
2067 prio = __normal_prio(p);
2068 return prio;
2069}
2070
2071/*
2072 * Calculate the current priority, i.e. the priority
2073 * taken into account by the scheduler. This value might
2074 * be boosted by RT tasks, or might be boosted by
2075 * interactivity modifiers. Will be RT if the task got
2076 * RT-boosted. If not then it returns p->normal_prio.
2077 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002078static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07002079{
2080 p->normal_prio = normal_prio(p);
2081 /*
2082 * If we are RT tasks or we were boosted to RT priority,
2083 * keep the priority unchanged. Otherwise, update priority
2084 * to the normal priority:
2085 */
2086 if (!rt_prio(p->prio))
2087 return p->normal_prio;
2088 return p->prio;
2089}
2090
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091/**
2092 * task_curr - is this task currently executing on a CPU?
2093 * @p: the task in question.
2094 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002095inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096{
2097 return cpu_curr(task_cpu(p)) == p;
2098}
2099
Steven Rostedtcb469842008-01-25 21:08:22 +01002100static inline void check_class_changed(struct rq *rq, struct task_struct *p,
2101 const struct sched_class *prev_class,
2102 int oldprio, int running)
2103{
2104 if (prev_class != p->sched_class) {
2105 if (prev_class->switched_from)
2106 prev_class->switched_from(rq, p, running);
2107 p->sched_class->switched_to(rq, p, running);
2108 } else
2109 p->sched_class->prio_changed(rq, p, oldprio, running);
2110}
2111
Peter Zijlstra1e5a7402010-10-31 12:37:04 +01002112static void check_preempt_curr(struct rq *rq, struct task_struct *p, int flags)
2113{
2114 const struct sched_class *class;
2115
2116 if (p->sched_class == rq->curr->sched_class) {
2117 rq->curr->sched_class->check_preempt_curr(rq, p, flags);
2118 } else {
2119 for_each_class(class) {
2120 if (class == rq->curr->sched_class)
2121 break;
2122 if (class == p->sched_class) {
2123 resched_task(rq->curr);
2124 break;
2125 }
2126 }
2127 }
2128
2129 /*
2130 * A queue event has occurred, and we're going to schedule. In
2131 * this case, we can save a useless back to back clock update.
2132 */
Mike Galbraithf26f9af2010-12-08 11:05:42 +01002133 if (rq->curr->se.on_rq && test_tsk_need_resched(rq->curr))
Peter Zijlstra1e5a7402010-10-31 12:37:04 +01002134 rq->skip_clock_update = 1;
2135}
2136
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137#ifdef CONFIG_SMP
Ingo Molnarcc367732007-10-15 17:00:18 +02002138/*
2139 * Is this task likely cache-hot:
2140 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002141static int
Ingo Molnarcc367732007-10-15 17:00:18 +02002142task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
2143{
2144 s64 delta;
2145
Peter Zijlstrae6c8fba2009-12-16 18:04:33 +01002146 if (p->sched_class != &fair_sched_class)
2147 return 0;
2148
Nikhil Raoef8002f2010-10-13 12:09:35 -07002149 if (unlikely(p->policy == SCHED_IDLE))
2150 return 0;
2151
Ingo Molnarf540a602008-03-15 17:10:34 +01002152 /*
2153 * Buddy candidates are cache hot:
2154 */
Mike Galbraithf685cea2009-10-23 23:09:22 +02002155 if (sched_feat(CACHE_HOT_BUDDY) && this_rq()->nr_running &&
Peter Zijlstra47932412008-11-04 21:25:09 +01002156 (&p->se == cfs_rq_of(&p->se)->next ||
2157 &p->se == cfs_rq_of(&p->se)->last))
Ingo Molnarf540a602008-03-15 17:10:34 +01002158 return 1;
2159
Ingo Molnar6bc16652007-10-15 17:00:18 +02002160 if (sysctl_sched_migration_cost == -1)
2161 return 1;
2162 if (sysctl_sched_migration_cost == 0)
2163 return 0;
2164
Ingo Molnarcc367732007-10-15 17:00:18 +02002165 delta = now - p->se.exec_start;
2166
2167 return delta < (s64)sysctl_sched_migration_cost;
2168}
2169
Ingo Molnardd41f592007-07-09 18:51:59 +02002170void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02002171{
Peter Zijlstrae2912002009-12-16 18:04:36 +01002172#ifdef CONFIG_SCHED_DEBUG
2173 /*
2174 * We should never call set_task_cpu() on a blocked task,
2175 * ttwu() will sort out the placement.
2176 */
Peter Zijlstra077614e2009-12-17 13:16:31 +01002177 WARN_ON_ONCE(p->state != TASK_RUNNING && p->state != TASK_WAKING &&
2178 !(task_thread_info(p)->preempt_count & PREEMPT_ACTIVE));
Peter Zijlstrae2912002009-12-16 18:04:36 +01002179#endif
2180
Mathieu Desnoyersde1d7282009-05-05 16:49:59 +08002181 trace_sched_migrate_task(p, new_cpu);
Peter Zijlstracbc34ed2008-12-10 08:08:22 +01002182
Peter Zijlstra0c697742009-12-22 15:43:19 +01002183 if (task_cpu(p) != new_cpu) {
2184 p->se.nr_migrations++;
2185 perf_sw_event(PERF_COUNT_SW_CPU_MIGRATIONS, 1, 1, NULL, 0);
2186 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002187
2188 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02002189}
2190
Tejun Heo969c7922010-05-06 18:49:21 +02002191struct migration_arg {
Ingo Molnar36c8b582006-07-03 00:25:41 -07002192 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 int dest_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002194};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
Tejun Heo969c7922010-05-06 18:49:21 +02002196static int migration_cpu_stop(void *data);
2197
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198/*
2199 * The task's runqueue lock must be held.
2200 * Returns true if you have to wait for migration thread.
2201 */
Tejun Heo969c7922010-05-06 18:49:21 +02002202static bool migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002204 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
2206 /*
2207 * If the task is not on a runqueue (and not running), then
Peter Zijlstrae2912002009-12-16 18:04:36 +01002208 * the next wake-up will properly place the task.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 */
Tejun Heo969c7922010-05-06 18:49:21 +02002210 return p->se.on_rq || task_running(rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211}
2212
2213/*
2214 * wait_task_inactive - wait for a thread to unschedule.
2215 *
Roland McGrath85ba2d82008-07-25 19:45:58 -07002216 * If @match_state is nonzero, it's the @p->state value just checked and
2217 * not expected to change. If it changes, i.e. @p might have woken up,
2218 * then return zero. When we succeed in waiting for @p to be off its CPU,
2219 * we return a positive number (its total switch count). If a second call
2220 * a short while later returns the same number, the caller can be sure that
2221 * @p has remained unscheduled the whole time.
2222 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 * The caller must ensure that the task *will* unschedule sometime soon,
2224 * else this function might spin for a *long* time. This function can't
2225 * be called with interrupts off, or it may introduce deadlock with
2226 * smp_call_function() if an IPI is sent by the same process we are
2227 * waiting to become inactive.
2228 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07002229unsigned long wait_task_inactive(struct task_struct *p, long match_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230{
2231 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002232 int running, on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07002233 unsigned long ncsw;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002234 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
Andi Kleen3a5c3592007-10-15 17:00:14 +02002236 for (;;) {
2237 /*
2238 * We do the initial early heuristics without holding
2239 * any task-queue locks at all. We'll only try to get
2240 * the runqueue lock when things look like they will
2241 * work out!
2242 */
2243 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002244
Andi Kleen3a5c3592007-10-15 17:00:14 +02002245 /*
2246 * If the task is actively running on another CPU
2247 * still, just relax and busy-wait without holding
2248 * any locks.
2249 *
2250 * NOTE! Since we don't hold any locks, it's not
2251 * even sure that "rq" stays as the right runqueue!
2252 * But we don't care, since "task_running()" will
2253 * return false if the runqueue has changed and p
2254 * is actually now running somewhere else!
2255 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07002256 while (task_running(rq, p)) {
2257 if (match_state && unlikely(p->state != match_state))
2258 return 0;
Andi Kleen3a5c3592007-10-15 17:00:14 +02002259 cpu_relax();
Roland McGrath85ba2d82008-07-25 19:45:58 -07002260 }
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002261
Andi Kleen3a5c3592007-10-15 17:00:14 +02002262 /*
2263 * Ok, time to look more closely! We need the rq
2264 * lock now, to be *sure*. If we're wrong, we'll
2265 * just go back and repeat.
2266 */
2267 rq = task_rq_lock(p, &flags);
Peter Zijlstra27a9da62010-05-04 20:36:56 +02002268 trace_sched_wait_task(p);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002269 running = task_running(rq, p);
2270 on_rq = p->se.on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07002271 ncsw = 0;
Oleg Nesterovf31e11d2008-08-20 16:54:44 -07002272 if (!match_state || p->state == match_state)
Oleg Nesterov93dcf552008-08-20 16:54:44 -07002273 ncsw = p->nvcsw | LONG_MIN; /* sets MSB */
Andi Kleen3a5c3592007-10-15 17:00:14 +02002274 task_rq_unlock(rq, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002275
Andi Kleen3a5c3592007-10-15 17:00:14 +02002276 /*
Roland McGrath85ba2d82008-07-25 19:45:58 -07002277 * If it changed from the expected state, bail out now.
2278 */
2279 if (unlikely(!ncsw))
2280 break;
2281
2282 /*
Andi Kleen3a5c3592007-10-15 17:00:14 +02002283 * Was it really running after all now that we
2284 * checked with the proper locks actually held?
2285 *
2286 * Oops. Go back and try again..
2287 */
2288 if (unlikely(running)) {
2289 cpu_relax();
2290 continue;
2291 }
2292
2293 /*
2294 * It's not enough that it's not actively running,
2295 * it must be off the runqueue _entirely_, and not
2296 * preempted!
2297 *
Luis Henriques80dd99b2009-03-16 19:58:09 +00002298 * So if it was still runnable (but just not actively
Andi Kleen3a5c3592007-10-15 17:00:14 +02002299 * running right now), it's preempted, and we should
2300 * yield - it could be a while.
2301 */
2302 if (unlikely(on_rq)) {
2303 schedule_timeout_uninterruptible(1);
2304 continue;
2305 }
2306
2307 /*
2308 * Ahh, all good. It wasn't running, and it wasn't
2309 * runnable, which means that it will never become
2310 * running in the future either. We're all done!
2311 */
2312 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 }
Roland McGrath85ba2d82008-07-25 19:45:58 -07002314
2315 return ncsw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316}
2317
2318/***
2319 * kick_process - kick a running thread to enter/exit the kernel
2320 * @p: the to-be-kicked thread
2321 *
2322 * Cause a process which is running on another CPU to enter
2323 * kernel-mode, without any delay. (to get signals handled.)
2324 *
2325 * NOTE: this function doesnt have to take the runqueue lock,
2326 * because all it wants to ensure is that the remote task enters
2327 * the kernel. If the IPI races and the task has been migrated
2328 * to another CPU then no harm is done and the purpose has been
2329 * achieved as well.
2330 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002331void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332{
2333 int cpu;
2334
2335 preempt_disable();
2336 cpu = task_cpu(p);
2337 if ((cpu != smp_processor_id()) && task_curr(p))
2338 smp_send_reschedule(cpu);
2339 preempt_enable();
2340}
Rusty Russellb43e3522009-06-12 22:27:00 -06002341EXPORT_SYMBOL_GPL(kick_process);
Nick Piggin476d1392005-06-25 14:57:29 -07002342#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343
Thomas Gleixner0793a612008-12-04 20:12:29 +01002344/**
2345 * task_oncpu_function_call - call a function on the cpu on which a task runs
2346 * @p: the task to evaluate
2347 * @func: the function to be called
2348 * @info: the function call argument
2349 *
2350 * Calls the function @func when the task is currently running. This might
2351 * be on the current CPU, which just calls the function directly
2352 */
2353void task_oncpu_function_call(struct task_struct *p,
2354 void (*func) (void *info), void *info)
2355{
2356 int cpu;
2357
2358 preempt_disable();
2359 cpu = task_cpu(p);
2360 if (task_curr(p))
2361 smp_call_function_single(cpu, func, info, 1);
2362 preempt_enable();
2363}
2364
Peter Zijlstra970b13b2009-11-25 13:31:39 +01002365#ifdef CONFIG_SMP
Oleg Nesterov30da6882010-03-15 10:10:19 +01002366/*
2367 * ->cpus_allowed is protected by either TASK_WAKING or rq->lock held.
2368 */
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01002369static int select_fallback_rq(int cpu, struct task_struct *p)
2370{
2371 int dest_cpu;
2372 const struct cpumask *nodemask = cpumask_of_node(cpu_to_node(cpu));
2373
2374 /* Look for allowed, online CPU in same node. */
2375 for_each_cpu_and(dest_cpu, nodemask, cpu_active_mask)
2376 if (cpumask_test_cpu(dest_cpu, &p->cpus_allowed))
2377 return dest_cpu;
2378
2379 /* Any allowed, online CPU? */
2380 dest_cpu = cpumask_any_and(&p->cpus_allowed, cpu_active_mask);
2381 if (dest_cpu < nr_cpu_ids)
2382 return dest_cpu;
2383
2384 /* No more Mr. Nice Guy. */
Oleg Nesterov897f0b32010-03-15 10:10:03 +01002385 if (unlikely(dest_cpu >= nr_cpu_ids)) {
Oleg Nesterov9084bb82010-03-15 10:10:27 +01002386 dest_cpu = cpuset_cpus_allowed_fallback(p);
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01002387 /*
2388 * Don't tell them about moving exiting tasks or
2389 * kernel threads (both mm NULL), since they never
2390 * leave kernel.
2391 */
2392 if (p->mm && printk_ratelimit()) {
2393 printk(KERN_INFO "process %d (%s) no "
2394 "longer affine to cpu%d\n",
2395 task_pid_nr(p), p->comm, cpu);
2396 }
2397 }
2398
2399 return dest_cpu;
2400}
2401
Peter Zijlstrae2912002009-12-16 18:04:36 +01002402/*
Oleg Nesterov30da6882010-03-15 10:10:19 +01002403 * The caller (fork, wakeup) owns TASK_WAKING, ->cpus_allowed is stable.
Peter Zijlstrae2912002009-12-16 18:04:36 +01002404 */
Peter Zijlstra970b13b2009-11-25 13:31:39 +01002405static inline
Peter Zijlstra0017d732010-03-24 18:34:10 +01002406int select_task_rq(struct rq *rq, struct task_struct *p, int sd_flags, int wake_flags)
Peter Zijlstra970b13b2009-11-25 13:31:39 +01002407{
Peter Zijlstra0017d732010-03-24 18:34:10 +01002408 int cpu = p->sched_class->select_task_rq(rq, p, sd_flags, wake_flags);
Peter Zijlstrae2912002009-12-16 18:04:36 +01002409
2410 /*
2411 * In order not to call set_task_cpu() on a blocking task we need
2412 * to rely on ttwu() to place the task on a valid ->cpus_allowed
2413 * cpu.
2414 *
2415 * Since this is common to all placement strategies, this lives here.
2416 *
2417 * [ this allows ->select_task() to simply return task_cpu(p) and
2418 * not worry about this generic constraint ]
2419 */
2420 if (unlikely(!cpumask_test_cpu(cpu, &p->cpus_allowed) ||
Peter Zijlstra70f11202009-12-20 17:36:27 +01002421 !cpu_online(cpu)))
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01002422 cpu = select_fallback_rq(task_cpu(p), p);
Peter Zijlstrae2912002009-12-16 18:04:36 +01002423
2424 return cpu;
Peter Zijlstra970b13b2009-11-25 13:31:39 +01002425}
Mike Galbraith09a40af2010-04-15 07:29:59 +02002426
2427static void update_avg(u64 *avg, u64 sample)
2428{
2429 s64 diff = sample - *avg;
2430 *avg += diff >> 3;
2431}
Peter Zijlstra970b13b2009-11-25 13:31:39 +01002432#endif
2433
Tejun Heo9ed38112009-12-03 15:08:03 +09002434static inline void ttwu_activate(struct task_struct *p, struct rq *rq,
2435 bool is_sync, bool is_migrate, bool is_local,
2436 unsigned long en_flags)
2437{
2438 schedstat_inc(p, se.statistics.nr_wakeups);
2439 if (is_sync)
2440 schedstat_inc(p, se.statistics.nr_wakeups_sync);
2441 if (is_migrate)
2442 schedstat_inc(p, se.statistics.nr_wakeups_migrate);
2443 if (is_local)
2444 schedstat_inc(p, se.statistics.nr_wakeups_local);
2445 else
2446 schedstat_inc(p, se.statistics.nr_wakeups_remote);
2447
2448 activate_task(rq, p, en_flags);
2449}
2450
2451static inline void ttwu_post_activation(struct task_struct *p, struct rq *rq,
2452 int wake_flags, bool success)
2453{
2454 trace_sched_wakeup(p, success);
2455 check_preempt_curr(rq, p, wake_flags);
2456
2457 p->state = TASK_RUNNING;
2458#ifdef CONFIG_SMP
2459 if (p->sched_class->task_woken)
2460 p->sched_class->task_woken(rq, p);
2461
2462 if (unlikely(rq->idle_stamp)) {
2463 u64 delta = rq->clock - rq->idle_stamp;
2464 u64 max = 2*sysctl_sched_migration_cost;
2465
2466 if (delta > max)
2467 rq->avg_idle = max;
2468 else
2469 update_avg(&rq->avg_idle, delta);
2470 rq->idle_stamp = 0;
2471 }
2472#endif
Tejun Heo21aa9af2010-06-08 21:40:37 +02002473 /* if a worker is waking up, notify workqueue */
2474 if ((p->flags & PF_WQ_WORKER) && success)
2475 wq_worker_waking_up(p, cpu_of(rq));
Tejun Heo9ed38112009-12-03 15:08:03 +09002476}
2477
2478/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 * try_to_wake_up - wake up a thread
Tejun Heo9ed38112009-12-03 15:08:03 +09002480 * @p: the thread to be awakened
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 * @state: the mask of task states that can be woken
Tejun Heo9ed38112009-12-03 15:08:03 +09002482 * @wake_flags: wake modifier flags (WF_*)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 *
2484 * Put it on the run-queue if it's not already there. The "current"
2485 * thread is always on the run-queue (except when the actual
2486 * re-schedule is in progress), and as such you're allowed to do
2487 * the simpler "current->state = TASK_RUNNING" to mark yourself
2488 * runnable without the overhead of this.
2489 *
Tejun Heo9ed38112009-12-03 15:08:03 +09002490 * Returns %true if @p was woken up, %false if it was already running
2491 * or @state didn't match @p's state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 */
Peter Zijlstra7d478722009-09-14 19:55:44 +02002493static int try_to_wake_up(struct task_struct *p, unsigned int state,
2494 int wake_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495{
Ingo Molnarcc367732007-10-15 17:00:18 +02002496 int cpu, orig_cpu, this_cpu, success = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 unsigned long flags;
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01002498 unsigned long en_flags = ENQUEUE_WAKEUP;
Dan Carpenterab3b3aa2010-03-06 14:17:52 +03002499 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500
Peter Zijlstrae9c84312009-09-15 14:43:03 +02002501 this_cpu = get_cpu();
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02002502
Linus Torvalds04e2f172008-02-23 18:05:03 -08002503 smp_wmb();
Dan Carpenterab3b3aa2010-03-06 14:17:52 +03002504 rq = task_rq_lock(p, &flags);
Peter Zijlstrae9c84312009-09-15 14:43:03 +02002505 if (!(p->state & state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 goto out;
2507
Ingo Molnardd41f592007-07-09 18:51:59 +02002508 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 goto out_running;
2510
2511 cpu = task_cpu(p);
Ingo Molnarcc367732007-10-15 17:00:18 +02002512 orig_cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513
2514#ifdef CONFIG_SMP
2515 if (unlikely(task_running(rq, p)))
2516 goto out_activate;
2517
Peter Zijlstrae9c84312009-09-15 14:43:03 +02002518 /*
2519 * In order to handle concurrent wakeups and release the rq->lock
2520 * we put the task in TASK_WAKING state.
Ingo Molnareb240732009-09-16 21:09:13 +02002521 *
2522 * First fix up the nr_uninterruptible count:
Peter Zijlstrae9c84312009-09-15 14:43:03 +02002523 */
Peter Zijlstracc87f762010-03-26 12:22:14 +01002524 if (task_contributes_to_load(p)) {
2525 if (likely(cpu_online(orig_cpu)))
2526 rq->nr_uninterruptible--;
2527 else
2528 this_rq()->nr_uninterruptible--;
2529 }
Peter Zijlstrae9c84312009-09-15 14:43:03 +02002530 p->state = TASK_WAKING;
Peter Zijlstraefbbd052009-12-16 18:04:40 +01002531
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01002532 if (p->sched_class->task_waking) {
Peter Zijlstraefbbd052009-12-16 18:04:40 +01002533 p->sched_class->task_waking(rq, p);
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01002534 en_flags |= ENQUEUE_WAKING;
Peter Zijlstra0970d292010-02-15 14:45:54 +01002535 }
Peter Zijlstraab19cb22009-11-27 15:44:43 +01002536
Peter Zijlstra0017d732010-03-24 18:34:10 +01002537 cpu = select_task_rq(rq, p, SD_BALANCE_WAKE, wake_flags);
2538 if (cpu != orig_cpu)
Mike Galbraithf5dc3752009-10-09 08:35:03 +02002539 set_task_cpu(p, cpu);
Peter Zijlstra0017d732010-03-24 18:34:10 +01002540 __task_rq_unlock(rq);
Peter Zijlstraab19cb22009-11-27 15:44:43 +01002541
Peter Zijlstra0970d292010-02-15 14:45:54 +01002542 rq = cpu_rq(cpu);
2543 raw_spin_lock(&rq->lock);
Mike Galbraithf5dc3752009-10-09 08:35:03 +02002544
Peter Zijlstra0970d292010-02-15 14:45:54 +01002545 /*
2546 * We migrated the task without holding either rq->lock, however
2547 * since the task is not on the task list itself, nobody else
2548 * will try and migrate the task, hence the rq should match the
2549 * cpu we just moved it to.
2550 */
2551 WARN_ON(task_cpu(p) != cpu);
Peter Zijlstrae9c84312009-09-15 14:43:03 +02002552 WARN_ON(p->state != TASK_WAKING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553
Gregory Haskinse7693a32008-01-25 21:08:09 +01002554#ifdef CONFIG_SCHEDSTATS
2555 schedstat_inc(rq, ttwu_count);
2556 if (cpu == this_cpu)
2557 schedstat_inc(rq, ttwu_local);
2558 else {
2559 struct sched_domain *sd;
2560 for_each_domain(this_cpu, sd) {
Rusty Russell758b2cd2008-11-25 02:35:04 +10302561 if (cpumask_test_cpu(cpu, sched_domain_span(sd))) {
Gregory Haskinse7693a32008-01-25 21:08:09 +01002562 schedstat_inc(sd, ttwu_wake_remote);
2563 break;
2564 }
2565 }
2566 }
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002567#endif /* CONFIG_SCHEDSTATS */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002568
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569out_activate:
2570#endif /* CONFIG_SMP */
Tejun Heo9ed38112009-12-03 15:08:03 +09002571 ttwu_activate(p, rq, wake_flags & WF_SYNC, orig_cpu != cpu,
2572 cpu == this_cpu, en_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 success = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574out_running:
Tejun Heo9ed38112009-12-03 15:08:03 +09002575 ttwu_post_activation(p, rq, wake_flags, success);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576out:
2577 task_rq_unlock(rq, &flags);
Peter Zijlstrae9c84312009-09-15 14:43:03 +02002578 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579
2580 return success;
2581}
2582
David Howells50fa6102009-04-28 15:01:38 +01002583/**
Tejun Heo21aa9af2010-06-08 21:40:37 +02002584 * try_to_wake_up_local - try to wake up a local task with rq lock held
2585 * @p: the thread to be awakened
2586 *
2587 * Put @p on the run-queue if it's not alredy there. The caller must
2588 * ensure that this_rq() is locked, @p is bound to this_rq() and not
2589 * the current task. this_rq() stays locked over invocation.
2590 */
2591static void try_to_wake_up_local(struct task_struct *p)
2592{
2593 struct rq *rq = task_rq(p);
2594 bool success = false;
2595
2596 BUG_ON(rq != this_rq());
2597 BUG_ON(p == current);
2598 lockdep_assert_held(&rq->lock);
2599
2600 if (!(p->state & TASK_NORMAL))
2601 return;
2602
2603 if (!p->se.on_rq) {
2604 if (likely(!task_running(rq, p))) {
2605 schedstat_inc(rq, ttwu_count);
2606 schedstat_inc(rq, ttwu_local);
2607 }
2608 ttwu_activate(p, rq, false, false, true, ENQUEUE_WAKEUP);
2609 success = true;
2610 }
2611 ttwu_post_activation(p, rq, 0, success);
2612}
2613
2614/**
David Howells50fa6102009-04-28 15:01:38 +01002615 * wake_up_process - Wake up a specific process
2616 * @p: The process to be woken up.
2617 *
2618 * Attempt to wake up the nominated process and move it to the set of runnable
2619 * processes. Returns 1 if the process was woken up, 0 if it was already
2620 * running.
2621 *
2622 * It may be assumed that this function implies a write memory barrier before
2623 * changing the task state if and only if any tasks are woken up.
2624 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002625int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002627 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629EXPORT_SYMBOL(wake_up_process);
2630
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002631int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632{
2633 return try_to_wake_up(p, state, 0);
2634}
2635
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636/*
2637 * Perform scheduler related setup for a newly forked process p.
2638 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02002639 *
2640 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002642static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643{
Ingo Molnardd41f592007-07-09 18:51:59 +02002644 p->se.exec_start = 0;
2645 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02002646 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar6c594c22008-12-14 12:34:15 +01002647 p->se.nr_migrations = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002648
2649#ifdef CONFIG_SCHEDSTATS
Lucas De Marchi41acab82010-03-10 23:37:45 -03002650 memset(&p->se.statistics, 0, sizeof(p->se.statistics));
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002651#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002652
Peter Zijlstrafa717062008-01-25 21:08:27 +01002653 INIT_LIST_HEAD(&p->rt.run_list);
Ingo Molnardd41f592007-07-09 18:51:59 +02002654 p->se.on_rq = 0;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02002655 INIT_LIST_HEAD(&p->se.group_node);
Nick Piggin476d1392005-06-25 14:57:29 -07002656
Avi Kivitye107be32007-07-26 13:40:43 +02002657#ifdef CONFIG_PREEMPT_NOTIFIERS
2658 INIT_HLIST_HEAD(&p->preempt_notifiers);
2659#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02002660}
2661
2662/*
2663 * fork()/clone()-time setup:
2664 */
2665void sched_fork(struct task_struct *p, int clone_flags)
2666{
2667 int cpu = get_cpu();
2668
2669 __sched_fork(p);
Peter Zijlstra06b83b52009-12-16 18:04:35 +01002670 /*
Peter Zijlstra0017d732010-03-24 18:34:10 +01002671 * We mark the process as running here. This guarantees that
Peter Zijlstra06b83b52009-12-16 18:04:35 +01002672 * nobody will actually run it, and a signal or other external
2673 * event cannot wake it up and insert it on the runqueue either.
2674 */
Peter Zijlstra0017d732010-03-24 18:34:10 +01002675 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02002676
Ingo Molnarb29739f2006-06-27 02:54:51 -07002677 /*
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02002678 * Revert to default priority/policy on fork if requested.
2679 */
2680 if (unlikely(p->sched_reset_on_fork)) {
Peter Williamsf83f9ac2009-09-24 06:47:10 +00002681 if (p->policy == SCHED_FIFO || p->policy == SCHED_RR) {
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02002682 p->policy = SCHED_NORMAL;
Peter Williamsf83f9ac2009-09-24 06:47:10 +00002683 p->normal_prio = p->static_prio;
2684 }
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02002685
Mike Galbraith6c697bd2009-06-17 10:48:02 +02002686 if (PRIO_TO_NICE(p->static_prio) < 0) {
2687 p->static_prio = NICE_TO_PRIO(0);
Peter Williamsf83f9ac2009-09-24 06:47:10 +00002688 p->normal_prio = p->static_prio;
Mike Galbraith6c697bd2009-06-17 10:48:02 +02002689 set_load_weight(p);
2690 }
2691
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02002692 /*
2693 * We don't need the reset flag anymore after the fork. It has
2694 * fulfilled its duty:
2695 */
2696 p->sched_reset_on_fork = 0;
2697 }
Lennart Poetteringca94c442009-06-15 17:17:47 +02002698
Peter Williamsf83f9ac2009-09-24 06:47:10 +00002699 /*
2700 * Make sure we do not leak PI boosting priority to the child.
2701 */
2702 p->prio = current->normal_prio;
2703
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02002704 if (!rt_prio(p->prio))
2705 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002706
Peter Zijlstracd29fe62009-11-27 17:32:46 +01002707 if (p->sched_class->task_fork)
2708 p->sched_class->task_fork(p);
2709
Peter Zijlstra86951592010-06-22 11:44:53 +02002710 /*
2711 * The child is not yet in the pid-hash so no cgroup attach races,
2712 * and the cgroup is pinned to this child due to cgroup_fork()
2713 * is ran before sched_fork().
2714 *
2715 * Silence PROVE_RCU.
2716 */
2717 rcu_read_lock();
Peter Zijlstra5f3edc12009-09-10 13:42:00 +02002718 set_task_cpu(p, cpu);
Peter Zijlstra86951592010-06-22 11:44:53 +02002719 rcu_read_unlock();
Peter Zijlstra5f3edc12009-09-10 13:42:00 +02002720
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002721#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02002722 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002723 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08002725#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07002726 p->oncpu = 0;
2727#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07002729 /* Want to start with kernel preemption disabled. */
Al Viroa1261f542005-11-13 16:06:55 -08002730 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731#endif
Gregory Haskins917b6272008-12-29 09:39:53 -05002732 plist_node_init(&p->pushable_tasks, MAX_PRIO);
2733
Nick Piggin476d1392005-06-25 14:57:29 -07002734 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735}
2736
2737/*
2738 * wake_up_new_task - wake up a newly created task for the first time.
2739 *
2740 * This function will do some initial scheduler statistics housekeeping
2741 * that must be done for every newly created context, then puts the task
2742 * on the runqueue and wakes it.
2743 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002744void wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745{
2746 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002747 struct rq *rq;
Andrew Mortonc8906922010-03-11 14:08:43 -08002748 int cpu __maybe_unused = get_cpu();
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002749
2750#ifdef CONFIG_SMP
Peter Zijlstra0017d732010-03-24 18:34:10 +01002751 rq = task_rq_lock(p, &flags);
2752 p->state = TASK_WAKING;
2753
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002754 /*
2755 * Fork balancing, do it here and not earlier because:
2756 * - cpus_allowed can change in the fork path
2757 * - any previously selected cpu might disappear through hotplug
2758 *
Peter Zijlstra0017d732010-03-24 18:34:10 +01002759 * We set TASK_WAKING so that select_task_rq() can drop rq->lock
2760 * without people poking at ->cpus_allowed.
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002761 */
Peter Zijlstra0017d732010-03-24 18:34:10 +01002762 cpu = select_task_rq(rq, p, SD_BALANCE_FORK, 0);
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002763 set_task_cpu(p, cpu);
Peter Zijlstra0017d732010-03-24 18:34:10 +01002764
2765 p->state = TASK_RUNNING;
2766 task_rq_unlock(rq, &flags);
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002767#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768
Peter Zijlstra0017d732010-03-24 18:34:10 +01002769 rq = task_rq_lock(p, &flags);
Peter Zijlstracd29fe62009-11-27 17:32:46 +01002770 activate_task(rq, p, 0);
Peter Zijlstra27a9da62010-05-04 20:36:56 +02002771 trace_sched_wakeup_new(p, 1);
Peter Zijlstraa7558e02009-09-14 20:02:34 +02002772 check_preempt_curr(rq, p, WF_FORK);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002773#ifdef CONFIG_SMP
Peter Zijlstraefbbd052009-12-16 18:04:40 +01002774 if (p->sched_class->task_woken)
2775 p->sched_class->task_woken(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002776#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02002777 task_rq_unlock(rq, &flags);
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002778 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779}
2780
Avi Kivitye107be32007-07-26 13:40:43 +02002781#ifdef CONFIG_PREEMPT_NOTIFIERS
2782
2783/**
Luis Henriques80dd99b2009-03-16 19:58:09 +00002784 * preempt_notifier_register - tell me when current is being preempted & rescheduled
Randy Dunlap421cee22007-07-31 00:37:50 -07002785 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002786 */
2787void preempt_notifier_register(struct preempt_notifier *notifier)
2788{
2789 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2790}
2791EXPORT_SYMBOL_GPL(preempt_notifier_register);
2792
2793/**
2794 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07002795 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02002796 *
2797 * This is safe to call from within a preemption notifier.
2798 */
2799void preempt_notifier_unregister(struct preempt_notifier *notifier)
2800{
2801 hlist_del(&notifier->link);
2802}
2803EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
2804
2805static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2806{
2807 struct preempt_notifier *notifier;
2808 struct hlist_node *node;
2809
2810 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2811 notifier->ops->sched_in(notifier, raw_smp_processor_id());
2812}
2813
2814static void
2815fire_sched_out_preempt_notifiers(struct task_struct *curr,
2816 struct task_struct *next)
2817{
2818 struct preempt_notifier *notifier;
2819 struct hlist_node *node;
2820
2821 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
2822 notifier->ops->sched_out(notifier, next);
2823}
2824
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002825#else /* !CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002826
2827static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
2828{
2829}
2830
2831static void
2832fire_sched_out_preempt_notifiers(struct task_struct *curr,
2833 struct task_struct *next)
2834{
2835}
2836
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02002837#endif /* CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02002838
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839/**
Nick Piggin4866cde2005-06-25 14:57:23 -07002840 * prepare_task_switch - prepare to switch tasks
2841 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07002842 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07002843 * @next: the task we are going to switch to.
2844 *
2845 * This is called with the rq lock held and interrupts off. It must
2846 * be paired with a subsequent finish_task_switch after the context
2847 * switch.
2848 *
2849 * prepare_task_switch sets up locking and calls architecture specific
2850 * hooks.
2851 */
Avi Kivitye107be32007-07-26 13:40:43 +02002852static inline void
2853prepare_task_switch(struct rq *rq, struct task_struct *prev,
2854 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07002855{
Avi Kivitye107be32007-07-26 13:40:43 +02002856 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07002857 prepare_lock_switch(rq, next);
2858 prepare_arch_switch(next);
2859}
2860
2861/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04002863 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 * @prev: the thread we just switched away from.
2865 *
Nick Piggin4866cde2005-06-25 14:57:23 -07002866 * finish_task_switch must be called after the context switch, paired
2867 * with a prepare_task_switch call before the context switch.
2868 * finish_task_switch will reconcile locking set up by prepare_task_switch,
2869 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 *
2871 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01002872 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 * with the lock held can cause deadlocks; see schedule() for
2874 * details.)
2875 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002876static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 __releases(rq->lock)
2878{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002880 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881
2882 rq->prev_mm = NULL;
2883
2884 /*
2885 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002886 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002887 * schedule one last time. The schedule call will never return, and
2888 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002889 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 * still held, otherwise prev could be scheduled on another cpu, die
2891 * there before we look at prev->state, and then the reference would
2892 * be dropped twice.
2893 * Manfred Spraul <manfred@colorfullife.com>
2894 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07002895 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07002896 finish_arch_switch(prev);
Jamie Iles8381f652010-01-08 15:27:33 +00002897#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
2898 local_irq_disable();
2899#endif /* __ARCH_WANT_INTERRUPTS_ON_CTXSW */
Peter Zijlstra49f47432009-12-27 11:51:52 +01002900 perf_event_task_sched_in(current);
Jamie Iles8381f652010-01-08 15:27:33 +00002901#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
2902 local_irq_enable();
2903#endif /* __ARCH_WANT_INTERRUPTS_ON_CTXSW */
Nick Piggin4866cde2005-06-25 14:57:23 -07002904 finish_lock_switch(rq, prev);
Steven Rostedte8fa1362008-01-25 21:08:05 +01002905
Avi Kivitye107be32007-07-26 13:40:43 +02002906 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 if (mm)
2908 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07002909 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08002910 /*
2911 * Remove function-return probe instances associated with this
2912 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02002913 */
bibo maoc6fd91f2006-03-26 01:38:20 -08002914 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08002916 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917}
2918
Gregory Haskins3f029d32009-07-29 11:08:47 -04002919#ifdef CONFIG_SMP
2920
2921/* assumes rq->lock is held */
2922static inline void pre_schedule(struct rq *rq, struct task_struct *prev)
2923{
2924 if (prev->sched_class->pre_schedule)
2925 prev->sched_class->pre_schedule(rq, prev);
2926}
2927
2928/* rq->lock is NOT held, but preemption is disabled */
2929static inline void post_schedule(struct rq *rq)
2930{
2931 if (rq->post_schedule) {
2932 unsigned long flags;
2933
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002934 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins3f029d32009-07-29 11:08:47 -04002935 if (rq->curr->sched_class->post_schedule)
2936 rq->curr->sched_class->post_schedule(rq);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01002937 raw_spin_unlock_irqrestore(&rq->lock, flags);
Gregory Haskins3f029d32009-07-29 11:08:47 -04002938
2939 rq->post_schedule = 0;
2940 }
2941}
2942
2943#else
2944
2945static inline void pre_schedule(struct rq *rq, struct task_struct *p)
2946{
2947}
2948
2949static inline void post_schedule(struct rq *rq)
2950{
2951}
2952
2953#endif
2954
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955/**
2956 * schedule_tail - first thing a freshly forked thread must call.
2957 * @prev: the thread we just switched away from.
2958 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002959asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 __releases(rq->lock)
2961{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002962 struct rq *rq = this_rq();
2963
Nick Piggin4866cde2005-06-25 14:57:23 -07002964 finish_task_switch(rq, prev);
Steven Rostedtda19ab52009-07-29 00:21:22 -04002965
Gregory Haskins3f029d32009-07-29 11:08:47 -04002966 /*
2967 * FIXME: do we need to worry about rq being invalidated by the
2968 * task_switch?
2969 */
2970 post_schedule(rq);
Steven Rostedtda19ab52009-07-29 00:21:22 -04002971
Nick Piggin4866cde2005-06-25 14:57:23 -07002972#ifdef __ARCH_WANT_UNLOCKED_CTXSW
2973 /* In this case, finish_task_switch does not reenable preemption */
2974 preempt_enable();
2975#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07002977 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978}
2979
2980/*
2981 * context_switch - switch to the new MM and the new
2982 * thread's register state.
2983 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002984static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002985context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07002986 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987{
Ingo Molnardd41f592007-07-09 18:51:59 +02002988 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989
Avi Kivitye107be32007-07-26 13:40:43 +02002990 prepare_task_switch(rq, prev, next);
Peter Zijlstra27a9da62010-05-04 20:36:56 +02002991 trace_sched_switch(prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02002992 mm = next->mm;
2993 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01002994 /*
2995 * For paravirt, this is coupled with an exit in switch_to to
2996 * combine the page table reload and the switch backend into
2997 * one hypercall.
2998 */
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -08002999 arch_start_context_switch(prev);
Zachary Amsden9226d122007-02-13 13:26:21 +01003000
Heiko Carstens31915ab2010-09-16 14:42:25 +02003001 if (!mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 next->active_mm = oldmm;
3003 atomic_inc(&oldmm->mm_count);
3004 enter_lazy_tlb(oldmm, next);
3005 } else
3006 switch_mm(oldmm, mm, next);
3007
Heiko Carstens31915ab2010-09-16 14:42:25 +02003008 if (!prev->mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 rq->prev_mm = oldmm;
3011 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07003012 /*
3013 * Since the runqueue lock will be released by the next
3014 * task (which is an invalid locking op but in the case
3015 * of the scheduler it's an obvious special-case), so we
3016 * do an early lockdep release here:
3017 */
3018#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07003019 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07003020#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021
3022 /* Here we just switch the register state and the stack. */
3023 switch_to(prev, next, prev);
3024
Ingo Molnardd41f592007-07-09 18:51:59 +02003025 barrier();
3026 /*
3027 * this_rq must be evaluated again because prev may have moved
3028 * CPUs since it called schedule(), thus the 'rq' on its stack
3029 * frame will be invalid.
3030 */
3031 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032}
3033
3034/*
3035 * nr_running, nr_uninterruptible and nr_context_switches:
3036 *
3037 * externally visible scheduler statistics: current number of runnable
3038 * threads, current number of uninterruptible-sleeping threads, total
3039 * number of context switches performed since bootup.
3040 */
3041unsigned long nr_running(void)
3042{
3043 unsigned long i, sum = 0;
3044
3045 for_each_online_cpu(i)
3046 sum += cpu_rq(i)->nr_running;
3047
3048 return sum;
3049}
3050
3051unsigned long nr_uninterruptible(void)
3052{
3053 unsigned long i, sum = 0;
3054
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08003055 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 sum += cpu_rq(i)->nr_uninterruptible;
3057
3058 /*
3059 * Since we read the counters lockless, it might be slightly
3060 * inaccurate. Do not allow it to go below zero though:
3061 */
3062 if (unlikely((long)sum < 0))
3063 sum = 0;
3064
3065 return sum;
3066}
3067
3068unsigned long long nr_context_switches(void)
3069{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07003070 int i;
3071 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08003073 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 sum += cpu_rq(i)->nr_switches;
3075
3076 return sum;
3077}
3078
3079unsigned long nr_iowait(void)
3080{
3081 unsigned long i, sum = 0;
3082
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08003083 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 sum += atomic_read(&cpu_rq(i)->nr_iowait);
3085
3086 return sum;
3087}
3088
Peter Zijlstra8c215bd2010-07-01 09:07:17 +02003089unsigned long nr_iowait_cpu(int cpu)
Arjan van de Ven69d25872009-09-21 17:04:08 -07003090{
Peter Zijlstra8c215bd2010-07-01 09:07:17 +02003091 struct rq *this = cpu_rq(cpu);
Arjan van de Ven69d25872009-09-21 17:04:08 -07003092 return atomic_read(&this->nr_iowait);
3093}
3094
3095unsigned long this_cpu_load(void)
3096{
3097 struct rq *this = this_rq();
3098 return this->cpu_load[0];
3099}
3100
3101
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003102/* Variables and functions for calc_load */
3103static atomic_long_t calc_load_tasks;
3104static unsigned long calc_load_update;
3105unsigned long avenrun[3];
3106EXPORT_SYMBOL(avenrun);
3107
Peter Zijlstra74f51872010-04-22 21:50:19 +02003108static long calc_load_fold_active(struct rq *this_rq)
3109{
3110 long nr_active, delta = 0;
3111
3112 nr_active = this_rq->nr_running;
3113 nr_active += (long) this_rq->nr_uninterruptible;
3114
3115 if (nr_active != this_rq->calc_load_active) {
3116 delta = nr_active - this_rq->calc_load_active;
3117 this_rq->calc_load_active = nr_active;
3118 }
3119
3120 return delta;
3121}
3122
Peter Zijlstra0f004f52010-11-30 19:48:45 +01003123static unsigned long
3124calc_load(unsigned long load, unsigned long exp, unsigned long active)
3125{
3126 load *= exp;
3127 load += active * (FIXED_1 - exp);
3128 load += 1UL << (FSHIFT - 1);
3129 return load >> FSHIFT;
3130}
3131
Peter Zijlstra74f51872010-04-22 21:50:19 +02003132#ifdef CONFIG_NO_HZ
3133/*
3134 * For NO_HZ we delay the active fold to the next LOAD_FREQ update.
3135 *
3136 * When making the ILB scale, we should try to pull this in as well.
3137 */
3138static atomic_long_t calc_load_tasks_idle;
3139
3140static void calc_load_account_idle(struct rq *this_rq)
3141{
3142 long delta;
3143
3144 delta = calc_load_fold_active(this_rq);
3145 if (delta)
3146 atomic_long_add(delta, &calc_load_tasks_idle);
3147}
3148
3149static long calc_load_fold_idle(void)
3150{
3151 long delta = 0;
3152
3153 /*
3154 * Its got a race, we don't care...
3155 */
3156 if (atomic_long_read(&calc_load_tasks_idle))
3157 delta = atomic_long_xchg(&calc_load_tasks_idle, 0);
3158
3159 return delta;
3160}
Peter Zijlstra0f004f52010-11-30 19:48:45 +01003161
3162/**
3163 * fixed_power_int - compute: x^n, in O(log n) time
3164 *
3165 * @x: base of the power
3166 * @frac_bits: fractional bits of @x
3167 * @n: power to raise @x to.
3168 *
3169 * By exploiting the relation between the definition of the natural power
3170 * function: x^n := x*x*...*x (x multiplied by itself for n times), and
3171 * the binary encoding of numbers used by computers: n := \Sum n_i * 2^i,
3172 * (where: n_i \elem {0, 1}, the binary vector representing n),
3173 * we find: x^n := x^(\Sum n_i * 2^i) := \Prod x^(n_i * 2^i), which is
3174 * of course trivially computable in O(log_2 n), the length of our binary
3175 * vector.
3176 */
3177static unsigned long
3178fixed_power_int(unsigned long x, unsigned int frac_bits, unsigned int n)
3179{
3180 unsigned long result = 1UL << frac_bits;
3181
3182 if (n) for (;;) {
3183 if (n & 1) {
3184 result *= x;
3185 result += 1UL << (frac_bits - 1);
3186 result >>= frac_bits;
3187 }
3188 n >>= 1;
3189 if (!n)
3190 break;
3191 x *= x;
3192 x += 1UL << (frac_bits - 1);
3193 x >>= frac_bits;
3194 }
3195
3196 return result;
3197}
3198
3199/*
3200 * a1 = a0 * e + a * (1 - e)
3201 *
3202 * a2 = a1 * e + a * (1 - e)
3203 * = (a0 * e + a * (1 - e)) * e + a * (1 - e)
3204 * = a0 * e^2 + a * (1 - e) * (1 + e)
3205 *
3206 * a3 = a2 * e + a * (1 - e)
3207 * = (a0 * e^2 + a * (1 - e) * (1 + e)) * e + a * (1 - e)
3208 * = a0 * e^3 + a * (1 - e) * (1 + e + e^2)
3209 *
3210 * ...
3211 *
3212 * an = a0 * e^n + a * (1 - e) * (1 + e + ... + e^n-1) [1]
3213 * = a0 * e^n + a * (1 - e) * (1 - e^n)/(1 - e)
3214 * = a0 * e^n + a * (1 - e^n)
3215 *
3216 * [1] application of the geometric series:
3217 *
3218 * n 1 - x^(n+1)
3219 * S_n := \Sum x^i = -------------
3220 * i=0 1 - x
3221 */
3222static unsigned long
3223calc_load_n(unsigned long load, unsigned long exp,
3224 unsigned long active, unsigned int n)
3225{
3226
3227 return calc_load(load, fixed_power_int(exp, FSHIFT, n), active);
3228}
3229
3230/*
3231 * NO_HZ can leave us missing all per-cpu ticks calling
3232 * calc_load_account_active(), but since an idle CPU folds its delta into
3233 * calc_load_tasks_idle per calc_load_account_idle(), all we need to do is fold
3234 * in the pending idle delta if our idle period crossed a load cycle boundary.
3235 *
3236 * Once we've updated the global active value, we need to apply the exponential
3237 * weights adjusted to the number of cycles missed.
3238 */
3239static void calc_global_nohz(unsigned long ticks)
3240{
3241 long delta, active, n;
3242
3243 if (time_before(jiffies, calc_load_update))
3244 return;
3245
3246 /*
3247 * If we crossed a calc_load_update boundary, make sure to fold
3248 * any pending idle changes, the respective CPUs might have
3249 * missed the tick driven calc_load_account_active() update
3250 * due to NO_HZ.
3251 */
3252 delta = calc_load_fold_idle();
3253 if (delta)
3254 atomic_long_add(delta, &calc_load_tasks);
3255
3256 /*
3257 * If we were idle for multiple load cycles, apply them.
3258 */
3259 if (ticks >= LOAD_FREQ) {
3260 n = ticks / LOAD_FREQ;
3261
3262 active = atomic_long_read(&calc_load_tasks);
3263 active = active > 0 ? active * FIXED_1 : 0;
3264
3265 avenrun[0] = calc_load_n(avenrun[0], EXP_1, active, n);
3266 avenrun[1] = calc_load_n(avenrun[1], EXP_5, active, n);
3267 avenrun[2] = calc_load_n(avenrun[2], EXP_15, active, n);
3268
3269 calc_load_update += n * LOAD_FREQ;
3270 }
3271
3272 /*
3273 * Its possible the remainder of the above division also crosses
3274 * a LOAD_FREQ period, the regular check in calc_global_load()
3275 * which comes after this will take care of that.
3276 *
3277 * Consider us being 11 ticks before a cycle completion, and us
3278 * sleeping for 4*LOAD_FREQ + 22 ticks, then the above code will
3279 * age us 4 cycles, and the test in calc_global_load() will
3280 * pick up the final one.
3281 */
3282}
Peter Zijlstra74f51872010-04-22 21:50:19 +02003283#else
3284static void calc_load_account_idle(struct rq *this_rq)
3285{
3286}
3287
3288static inline long calc_load_fold_idle(void)
3289{
3290 return 0;
3291}
Peter Zijlstra0f004f52010-11-30 19:48:45 +01003292
3293static void calc_global_nohz(unsigned long ticks)
3294{
3295}
Peter Zijlstra74f51872010-04-22 21:50:19 +02003296#endif
3297
Thomas Gleixner2d024942009-05-02 20:08:52 +02003298/**
3299 * get_avenrun - get the load average array
3300 * @loads: pointer to dest load array
3301 * @offset: offset to add
3302 * @shift: shift count to shift the result left
3303 *
3304 * These values are estimates at best, so no need for locking.
3305 */
3306void get_avenrun(unsigned long *loads, unsigned long offset, int shift)
3307{
3308 loads[0] = (avenrun[0] + offset) << shift;
3309 loads[1] = (avenrun[1] + offset) << shift;
3310 loads[2] = (avenrun[2] + offset) << shift;
3311}
3312
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003313/*
3314 * calc_load - update the avenrun load estimates 10 ticks after the
3315 * CPUs have updated calc_load_tasks.
3316 */
Peter Zijlstra0f004f52010-11-30 19:48:45 +01003317void calc_global_load(unsigned long ticks)
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003318{
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003319 long active;
3320
Peter Zijlstra0f004f52010-11-30 19:48:45 +01003321 calc_global_nohz(ticks);
3322
3323 if (time_before(jiffies, calc_load_update + 10))
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003324 return;
3325
3326 active = atomic_long_read(&calc_load_tasks);
3327 active = active > 0 ? active * FIXED_1 : 0;
3328
3329 avenrun[0] = calc_load(avenrun[0], EXP_1, active);
3330 avenrun[1] = calc_load(avenrun[1], EXP_5, active);
3331 avenrun[2] = calc_load(avenrun[2], EXP_15, active);
3332
3333 calc_load_update += LOAD_FREQ;
3334}
3335
3336/*
Peter Zijlstra74f51872010-04-22 21:50:19 +02003337 * Called from update_cpu_load() to periodically update this CPU's
3338 * active count.
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003339 */
3340static void calc_load_account_active(struct rq *this_rq)
3341{
Peter Zijlstra74f51872010-04-22 21:50:19 +02003342 long delta;
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003343
Peter Zijlstra74f51872010-04-22 21:50:19 +02003344 if (time_before(jiffies, this_rq->calc_load_update))
3345 return;
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003346
Peter Zijlstra74f51872010-04-22 21:50:19 +02003347 delta = calc_load_fold_active(this_rq);
3348 delta += calc_load_fold_idle();
3349 if (delta)
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003350 atomic_long_add(delta, &calc_load_tasks);
Peter Zijlstra74f51872010-04-22 21:50:19 +02003351
3352 this_rq->calc_load_update += LOAD_FREQ;
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08003353}
3354
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355/*
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07003356 * The exact cpuload at various idx values, calculated at every tick would be
3357 * load = (2^idx - 1) / 2^idx * load + 1 / 2^idx * cur_load
3358 *
3359 * If a cpu misses updates for n-1 ticks (as it was idle) and update gets called
3360 * on nth tick when cpu may be busy, then we have:
3361 * load = ((2^idx - 1) / 2^idx)^(n-1) * load
3362 * load = (2^idx - 1) / 2^idx) * load + 1 / 2^idx * cur_load
3363 *
3364 * decay_load_missed() below does efficient calculation of
3365 * load = ((2^idx - 1) / 2^idx)^(n-1) * load
3366 * avoiding 0..n-1 loop doing load = ((2^idx - 1) / 2^idx) * load
3367 *
3368 * The calculation is approximated on a 128 point scale.
3369 * degrade_zero_ticks is the number of ticks after which load at any
3370 * particular idx is approximated to be zero.
3371 * degrade_factor is a precomputed table, a row for each load idx.
3372 * Each column corresponds to degradation factor for a power of two ticks,
3373 * based on 128 point scale.
3374 * Example:
3375 * row 2, col 3 (=12) says that the degradation at load idx 2 after
3376 * 8 ticks is 12/128 (which is an approximation of exact factor 3^8/4^8).
3377 *
3378 * With this power of 2 load factors, we can degrade the load n times
3379 * by looking at 1 bits in n and doing as many mult/shift instead of
3380 * n mult/shifts needed by the exact degradation.
3381 */
3382#define DEGRADE_SHIFT 7
3383static const unsigned char
3384 degrade_zero_ticks[CPU_LOAD_IDX_MAX] = {0, 8, 32, 64, 128};
3385static const unsigned char
3386 degrade_factor[CPU_LOAD_IDX_MAX][DEGRADE_SHIFT + 1] = {
3387 {0, 0, 0, 0, 0, 0, 0, 0},
3388 {64, 32, 8, 0, 0, 0, 0, 0},
3389 {96, 72, 40, 12, 1, 0, 0},
3390 {112, 98, 75, 43, 15, 1, 0},
3391 {120, 112, 98, 76, 45, 16, 2} };
3392
3393/*
3394 * Update cpu_load for any missed ticks, due to tickless idle. The backlog
3395 * would be when CPU is idle and so we just decay the old load without
3396 * adding any new load.
3397 */
3398static unsigned long
3399decay_load_missed(unsigned long load, unsigned long missed_updates, int idx)
3400{
3401 int j = 0;
3402
3403 if (!missed_updates)
3404 return load;
3405
3406 if (missed_updates >= degrade_zero_ticks[idx])
3407 return 0;
3408
3409 if (idx == 1)
3410 return load >> missed_updates;
3411
3412 while (missed_updates) {
3413 if (missed_updates % 2)
3414 load = (load * degrade_factor[idx][j]) >> DEGRADE_SHIFT;
3415
3416 missed_updates >>= 1;
3417 j++;
3418 }
3419 return load;
3420}
3421
3422/*
Ingo Molnardd41f592007-07-09 18:51:59 +02003423 * Update rq->cpu_load[] statistics. This function is usually called every
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07003424 * scheduler tick (TICK_NSEC). With tickless idle this will not be called
3425 * every tick. We fix it up based on jiffies.
Ingo Molnar48f24c42006-07-03 00:25:40 -07003426 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003427static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003428{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02003429 unsigned long this_load = this_rq->load.weight;
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07003430 unsigned long curr_jiffies = jiffies;
3431 unsigned long pending_updates;
Ingo Molnardd41f592007-07-09 18:51:59 +02003432 int i, scale;
3433
3434 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02003435
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07003436 /* Avoid repeated calls on same jiffy, when moving in and out of idle */
3437 if (curr_jiffies == this_rq->last_load_update_tick)
3438 return;
3439
3440 pending_updates = curr_jiffies - this_rq->last_load_update_tick;
3441 this_rq->last_load_update_tick = curr_jiffies;
3442
Ingo Molnardd41f592007-07-09 18:51:59 +02003443 /* Update our load: */
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07003444 this_rq->cpu_load[0] = this_load; /* Fasttrack for idx 0 */
3445 for (i = 1, scale = 2; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003446 unsigned long old_load, new_load;
3447
3448 /* scale is effectively 1 << i now, and >> i divides by scale */
3449
3450 old_load = this_rq->cpu_load[i];
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07003451 old_load = decay_load_missed(old_load, pending_updates - 1, i);
Ingo Molnardd41f592007-07-09 18:51:59 +02003452 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02003453 /*
3454 * Round up the averaging division if load is increasing. This
3455 * prevents us from getting stuck on 9 if the load is 10, for
3456 * example.
3457 */
3458 if (new_load > old_load)
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07003459 new_load += scale - 1;
3460
3461 this_rq->cpu_load[i] = (old_load * (scale - 1) + new_load) >> i;
Ingo Molnardd41f592007-07-09 18:51:59 +02003462 }
Suresh Siddhada2b71e2010-08-23 13:42:51 -07003463
3464 sched_avg_update(this_rq);
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07003465}
3466
3467static void update_cpu_load_active(struct rq *this_rq)
3468{
3469 update_cpu_load(this_rq);
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003470
Peter Zijlstra74f51872010-04-22 21:50:19 +02003471 calc_load_account_active(this_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003472}
3473
Ingo Molnardd41f592007-07-09 18:51:59 +02003474#ifdef CONFIG_SMP
3475
Ingo Molnar48f24c42006-07-03 00:25:40 -07003476/*
Peter Zijlstra38022902009-12-16 18:04:37 +01003477 * sched_exec - execve() is a valuable balancing opportunity, because at
3478 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479 */
Peter Zijlstra38022902009-12-16 18:04:37 +01003480void sched_exec(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481{
Peter Zijlstra38022902009-12-16 18:04:37 +01003482 struct task_struct *p = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003484 struct rq *rq;
Peter Zijlstra0017d732010-03-24 18:34:10 +01003485 int dest_cpu;
Peter Zijlstra38022902009-12-16 18:04:37 +01003486
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 rq = task_rq_lock(p, &flags);
Peter Zijlstra0017d732010-03-24 18:34:10 +01003488 dest_cpu = p->sched_class->select_task_rq(rq, p, SD_BALANCE_EXEC, 0);
3489 if (dest_cpu == smp_processor_id())
3490 goto unlock;
Peter Zijlstra38022902009-12-16 18:04:37 +01003491
3492 /*
3493 * select_task_rq() can race against ->cpus_allowed
3494 */
Oleg Nesterov30da6882010-03-15 10:10:19 +01003495 if (cpumask_test_cpu(dest_cpu, &p->cpus_allowed) &&
Tejun Heo969c7922010-05-06 18:49:21 +02003496 likely(cpu_active(dest_cpu)) && migrate_task(p, dest_cpu)) {
3497 struct migration_arg arg = { p, dest_cpu };
Ingo Molnar36c8b582006-07-03 00:25:41 -07003498
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 task_rq_unlock(rq, &flags);
Tejun Heo969c7922010-05-06 18:49:21 +02003500 stop_one_cpu(cpu_of(rq), migration_cpu_stop, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501 return;
3502 }
Peter Zijlstra0017d732010-03-24 18:34:10 +01003503unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 task_rq_unlock(rq, &flags);
3505}
3506
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507#endif
3508
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509DEFINE_PER_CPU(struct kernel_stat, kstat);
3510
3511EXPORT_PER_CPU_SYMBOL(kstat);
3512
3513/*
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09003514 * Return any ns on the sched_clock that have not yet been accounted in
Frank Mayharf06febc2008-09-12 09:54:39 -07003515 * @p in case that task is currently running.
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09003516 *
3517 * Called with task_rq_lock() held on @rq.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 */
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09003519static u64 do_task_delta_exec(struct task_struct *p, struct rq *rq)
3520{
3521 u64 ns = 0;
3522
3523 if (task_current(rq, p)) {
3524 update_rq_clock(rq);
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -07003525 ns = rq->clock_task - p->se.exec_start;
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09003526 if ((s64)ns < 0)
3527 ns = 0;
3528 }
3529
3530 return ns;
3531}
3532
Frank Mayharbb34d922008-09-12 09:54:39 -07003533unsigned long long task_delta_exec(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003536 struct rq *rq;
Frank Mayharbb34d922008-09-12 09:54:39 -07003537 u64 ns = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003538
Ingo Molnar41b86e92007-07-09 18:51:58 +02003539 rq = task_rq_lock(p, &flags);
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09003540 ns = do_task_delta_exec(p, rq);
3541 task_rq_unlock(rq, &flags);
Ingo Molnar15084872008-09-30 08:28:17 +02003542
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09003543 return ns;
3544}
Frank Mayharf06febc2008-09-12 09:54:39 -07003545
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09003546/*
3547 * Return accounted runtime for the task.
3548 * In case the task is currently running, return the runtime plus current's
3549 * pending runtime that have not been accounted yet.
3550 */
3551unsigned long long task_sched_runtime(struct task_struct *p)
3552{
3553 unsigned long flags;
3554 struct rq *rq;
3555 u64 ns = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003556
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09003557 rq = task_rq_lock(p, &flags);
3558 ns = p->se.sum_exec_runtime + do_task_delta_exec(p, rq);
3559 task_rq_unlock(rq, &flags);
3560
3561 return ns;
3562}
3563
3564/*
3565 * Return sum_exec_runtime for the thread group.
3566 * In case the task is currently running, return the sum plus current's
3567 * pending runtime that have not been accounted yet.
3568 *
3569 * Note that the thread group might have other running tasks as well,
3570 * so the return value not includes other pending runtime that other
3571 * running tasks might have.
3572 */
3573unsigned long long thread_group_sched_runtime(struct task_struct *p)
3574{
3575 struct task_cputime totals;
3576 unsigned long flags;
3577 struct rq *rq;
3578 u64 ns;
3579
3580 rq = task_rq_lock(p, &flags);
3581 thread_group_cputime(p, &totals);
3582 ns = totals.sum_exec_runtime + do_task_delta_exec(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 task_rq_unlock(rq, &flags);
3584
3585 return ns;
3586}
3587
3588/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589 * Account user cpu time to a process.
3590 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591 * @cputime: the cpu time spent in user space since the last update
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003592 * @cputime_scaled: cputime scaled by cpu frequency
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593 */
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003594void account_user_time(struct task_struct *p, cputime_t cputime,
3595 cputime_t cputime_scaled)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596{
3597 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3598 cputime64_t tmp;
3599
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003600 /* Add user time to process. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601 p->utime = cputime_add(p->utime, cputime);
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003602 p->utimescaled = cputime_add(p->utimescaled, cputime_scaled);
Frank Mayharf06febc2008-09-12 09:54:39 -07003603 account_group_user_time(p, cputime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604
3605 /* Add user time to cpustat. */
3606 tmp = cputime_to_cputime64(cputime);
3607 if (TASK_NICE(p) > 0)
3608 cpustat->nice = cputime64_add(cpustat->nice, tmp);
3609 else
3610 cpustat->user = cputime64_add(cpustat->user, tmp);
Bharata B Raoef12fef2009-03-31 10:02:22 +05303611
3612 cpuacct_update_stats(p, CPUACCT_STAT_USER, cputime);
Jonathan Lim49b5cf32008-07-25 01:48:40 -07003613 /* Account for user time used */
3614 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615}
3616
3617/*
Laurent Vivier94886b82007-10-15 17:00:19 +02003618 * Account guest cpu time to a process.
3619 * @p: the process that the cpu time gets accounted to
3620 * @cputime: the cpu time spent in virtual machine since the last update
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003621 * @cputime_scaled: cputime scaled by cpu frequency
Laurent Vivier94886b82007-10-15 17:00:19 +02003622 */
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003623static void account_guest_time(struct task_struct *p, cputime_t cputime,
3624 cputime_t cputime_scaled)
Laurent Vivier94886b82007-10-15 17:00:19 +02003625{
3626 cputime64_t tmp;
3627 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3628
3629 tmp = cputime_to_cputime64(cputime);
3630
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003631 /* Add guest time to process. */
Laurent Vivier94886b82007-10-15 17:00:19 +02003632 p->utime = cputime_add(p->utime, cputime);
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003633 p->utimescaled = cputime_add(p->utimescaled, cputime_scaled);
Frank Mayharf06febc2008-09-12 09:54:39 -07003634 account_group_user_time(p, cputime);
Laurent Vivier94886b82007-10-15 17:00:19 +02003635 p->gtime = cputime_add(p->gtime, cputime);
3636
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003637 /* Add guest time to cpustat. */
Ryota Ozakice0e7b22009-10-24 01:20:10 +09003638 if (TASK_NICE(p) > 0) {
3639 cpustat->nice = cputime64_add(cpustat->nice, tmp);
3640 cpustat->guest_nice = cputime64_add(cpustat->guest_nice, tmp);
3641 } else {
3642 cpustat->user = cputime64_add(cpustat->user, tmp);
3643 cpustat->guest = cputime64_add(cpustat->guest, tmp);
3644 }
Laurent Vivier94886b82007-10-15 17:00:19 +02003645}
3646
3647/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 * Account system cpu time to a process.
3649 * @p: the process that the cpu time gets accounted to
3650 * @hardirq_offset: the offset to subtract from hardirq_count()
3651 * @cputime: the cpu time spent in kernel space since the last update
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003652 * @cputime_scaled: cputime scaled by cpu frequency
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 */
3654void account_system_time(struct task_struct *p, int hardirq_offset,
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003655 cputime_t cputime, cputime_t cputime_scaled)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656{
3657 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658 cputime64_t tmp;
3659
Harvey Harrison983ed7a2008-04-24 18:17:55 -07003660 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) {
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003661 account_guest_time(p, cputime, cputime_scaled);
Harvey Harrison983ed7a2008-04-24 18:17:55 -07003662 return;
3663 }
Laurent Vivier94886b82007-10-15 17:00:19 +02003664
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003665 /* Add system time to process. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666 p->stime = cputime_add(p->stime, cputime);
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003667 p->stimescaled = cputime_add(p->stimescaled, cputime_scaled);
Frank Mayharf06febc2008-09-12 09:54:39 -07003668 account_group_system_time(p, cputime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669
3670 /* Add system time to cpustat. */
3671 tmp = cputime_to_cputime64(cputime);
3672 if (hardirq_count() - hardirq_offset)
3673 cpustat->irq = cputime64_add(cpustat->irq, tmp);
Venkatesh Pallipadi75e10562010-10-04 17:03:16 -07003674 else if (in_serving_softirq())
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 else
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01003677 cpustat->system = cputime64_add(cpustat->system, tmp);
3678
Bharata B Raoef12fef2009-03-31 10:02:22 +05303679 cpuacct_update_stats(p, CPUACCT_STAT_SYSTEM, cputime);
3680
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681 /* Account for system time used */
3682 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683}
3684
3685/*
3686 * Account for involuntary wait time.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687 * @steal: the cpu time spent in involuntary wait
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688 */
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01003689void account_steal_time(cputime_t cputime)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01003692 cputime64_t cputime64 = cputime_to_cputime64(cputime);
3693
3694 cpustat->steal = cputime64_add(cpustat->steal, cputime64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695}
3696
Christoph Lameter7835b982006-12-10 02:20:22 -08003697/*
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01003698 * Account for idle time.
3699 * @cputime: the cpu time spent in idle wait
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700 */
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01003701void account_idle_time(cputime_t cputime)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702{
3703 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01003704 cputime64_t cputime64 = cputime_to_cputime64(cputime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705 struct rq *rq = this_rq();
3706
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01003707 if (atomic_read(&rq->nr_iowait) > 0)
3708 cpustat->iowait = cputime64_add(cpustat->iowait, cputime64);
3709 else
3710 cpustat->idle = cputime64_add(cpustat->idle, cputime64);
Christoph Lameter7835b982006-12-10 02:20:22 -08003711}
3712
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01003713#ifndef CONFIG_VIRT_CPU_ACCOUNTING
3714
3715/*
3716 * Account a single tick of cpu time.
3717 * @p: the process that the cpu time gets accounted to
3718 * @user_tick: indicates if the tick is a user or a system tick
3719 */
3720void account_process_tick(struct task_struct *p, int user_tick)
3721{
Stanislaw Gruszkaa42548a2009-07-29 12:15:29 +02003722 cputime_t one_jiffy_scaled = cputime_to_scaled(cputime_one_jiffy);
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01003723 struct rq *rq = this_rq();
3724
3725 if (user_tick)
Stanislaw Gruszkaa42548a2009-07-29 12:15:29 +02003726 account_user_time(p, cputime_one_jiffy, one_jiffy_scaled);
Eric Dumazetf5f293a2009-04-29 14:44:49 +02003727 else if ((p != rq->idle) || (irq_count() != HARDIRQ_OFFSET))
Stanislaw Gruszkaa42548a2009-07-29 12:15:29 +02003728 account_system_time(p, HARDIRQ_OFFSET, cputime_one_jiffy,
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01003729 one_jiffy_scaled);
3730 else
Stanislaw Gruszkaa42548a2009-07-29 12:15:29 +02003731 account_idle_time(cputime_one_jiffy);
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01003732}
3733
3734/*
3735 * Account multiple ticks of steal time.
3736 * @p: the process from which the cpu time has been stolen
3737 * @ticks: number of stolen ticks
3738 */
3739void account_steal_ticks(unsigned long ticks)
3740{
3741 account_steal_time(jiffies_to_cputime(ticks));
3742}
3743
3744/*
3745 * Account multiple ticks of idle time.
3746 * @ticks: number of stolen ticks
3747 */
3748void account_idle_ticks(unsigned long ticks)
3749{
3750 account_idle_time(jiffies_to_cputime(ticks));
3751}
3752
3753#endif
3754
Christoph Lameter7835b982006-12-10 02:20:22 -08003755/*
Balbir Singh49048622008-09-05 18:12:23 +02003756 * Use precise platform statistics if available:
3757 */
3758#ifdef CONFIG_VIRT_CPU_ACCOUNTING
Hidetoshi Setod180c5b2009-11-26 14:48:30 +09003759void task_times(struct task_struct *p, cputime_t *ut, cputime_t *st)
Balbir Singh49048622008-09-05 18:12:23 +02003760{
Hidetoshi Setod99ca3b2009-12-02 17:26:47 +09003761 *ut = p->utime;
3762 *st = p->stime;
Balbir Singh49048622008-09-05 18:12:23 +02003763}
3764
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +09003765void thread_group_times(struct task_struct *p, cputime_t *ut, cputime_t *st)
Balbir Singh49048622008-09-05 18:12:23 +02003766{
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +09003767 struct task_cputime cputime;
3768
3769 thread_group_cputime(p, &cputime);
3770
3771 *ut = cputime.utime;
3772 *st = cputime.stime;
Balbir Singh49048622008-09-05 18:12:23 +02003773}
3774#else
Hidetoshi Seto761b1d22009-11-12 13:33:45 +09003775
3776#ifndef nsecs_to_cputime
Hidetoshi Setob7b20df92009-11-26 14:49:27 +09003777# define nsecs_to_cputime(__nsecs) nsecs_to_jiffies(__nsecs)
Hidetoshi Seto761b1d22009-11-12 13:33:45 +09003778#endif
3779
Hidetoshi Setod180c5b2009-11-26 14:48:30 +09003780void task_times(struct task_struct *p, cputime_t *ut, cputime_t *st)
Balbir Singh49048622008-09-05 18:12:23 +02003781{
Hidetoshi Setod99ca3b2009-12-02 17:26:47 +09003782 cputime_t rtime, utime = p->utime, total = cputime_add(utime, p->stime);
Balbir Singh49048622008-09-05 18:12:23 +02003783
3784 /*
3785 * Use CFS's precise accounting:
3786 */
Hidetoshi Setod180c5b2009-11-26 14:48:30 +09003787 rtime = nsecs_to_cputime(p->se.sum_exec_runtime);
Balbir Singh49048622008-09-05 18:12:23 +02003788
3789 if (total) {
Stanislaw Gruszkae75e8632010-09-14 16:35:14 +02003790 u64 temp = rtime;
Balbir Singh49048622008-09-05 18:12:23 +02003791
Stanislaw Gruszkae75e8632010-09-14 16:35:14 +02003792 temp *= utime;
Balbir Singh49048622008-09-05 18:12:23 +02003793 do_div(temp, total);
Hidetoshi Setod180c5b2009-11-26 14:48:30 +09003794 utime = (cputime_t)temp;
3795 } else
3796 utime = rtime;
Balbir Singh49048622008-09-05 18:12:23 +02003797
3798 /*
Hidetoshi Setod180c5b2009-11-26 14:48:30 +09003799 * Compare with previous values, to keep monotonicity:
Balbir Singh49048622008-09-05 18:12:23 +02003800 */
Hidetoshi Seto761b1d22009-11-12 13:33:45 +09003801 p->prev_utime = max(p->prev_utime, utime);
Hidetoshi Setod99ca3b2009-12-02 17:26:47 +09003802 p->prev_stime = max(p->prev_stime, cputime_sub(rtime, p->prev_utime));
Balbir Singh49048622008-09-05 18:12:23 +02003803
Hidetoshi Setod99ca3b2009-12-02 17:26:47 +09003804 *ut = p->prev_utime;
3805 *st = p->prev_stime;
Hidetoshi Setod180c5b2009-11-26 14:48:30 +09003806}
Balbir Singh49048622008-09-05 18:12:23 +02003807
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +09003808/*
3809 * Must be called with siglock held.
3810 */
3811void thread_group_times(struct task_struct *p, cputime_t *ut, cputime_t *st)
3812{
3813 struct signal_struct *sig = p->signal;
3814 struct task_cputime cputime;
3815 cputime_t rtime, utime, total;
3816
3817 thread_group_cputime(p, &cputime);
3818
3819 total = cputime_add(cputime.utime, cputime.stime);
3820 rtime = nsecs_to_cputime(cputime.sum_exec_runtime);
3821
3822 if (total) {
Stanislaw Gruszkae75e8632010-09-14 16:35:14 +02003823 u64 temp = rtime;
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +09003824
Stanislaw Gruszkae75e8632010-09-14 16:35:14 +02003825 temp *= cputime.utime;
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +09003826 do_div(temp, total);
3827 utime = (cputime_t)temp;
3828 } else
3829 utime = rtime;
3830
3831 sig->prev_utime = max(sig->prev_utime, utime);
3832 sig->prev_stime = max(sig->prev_stime,
3833 cputime_sub(rtime, sig->prev_utime));
3834
3835 *ut = sig->prev_utime;
3836 *st = sig->prev_stime;
Balbir Singh49048622008-09-05 18:12:23 +02003837}
3838#endif
3839
Balbir Singh49048622008-09-05 18:12:23 +02003840/*
Christoph Lameter7835b982006-12-10 02:20:22 -08003841 * This function gets called by the timer code, with HZ frequency.
3842 * We call it with interrupts disabled.
3843 *
3844 * It also gets called by the fork code, when changing the parent's
3845 * timeslices.
3846 */
3847void scheduler_tick(void)
3848{
Christoph Lameter7835b982006-12-10 02:20:22 -08003849 int cpu = smp_processor_id();
3850 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003851 struct task_struct *curr = rq->curr;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02003852
3853 sched_clock_tick();
Christoph Lameter7835b982006-12-10 02:20:22 -08003854
Thomas Gleixner05fa7852009-11-17 14:28:38 +01003855 raw_spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02003856 update_rq_clock(rq);
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07003857 update_cpu_load_active(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01003858 curr->sched_class->task_tick(rq, curr, 0);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01003859 raw_spin_unlock(&rq->lock);
Ingo Molnardd41f592007-07-09 18:51:59 +02003860
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02003861 perf_event_task_tick();
Peter Zijlstrae220d2d2009-05-23 18:28:55 +02003862
Christoph Lametere418e1c2006-12-10 02:20:23 -08003863#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02003864 rq->idle_at_tick = idle_cpu(cpu);
3865 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08003866#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867}
3868
Lai Jiangshan132380a2009-04-02 14:18:25 +08003869notrace unsigned long get_parent_ip(unsigned long addr)
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02003870{
3871 if (in_lock_functions(addr)) {
3872 addr = CALLER_ADDR2;
3873 if (in_lock_functions(addr))
3874 addr = CALLER_ADDR3;
3875 }
3876 return addr;
3877}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878
Steven Rostedt7e49fcc2009-01-22 19:01:40 -05003879#if defined(CONFIG_PREEMPT) && (defined(CONFIG_DEBUG_PREEMPT) || \
3880 defined(CONFIG_PREEMPT_TRACER))
3881
Srinivasa Ds43627582008-02-23 15:24:04 -08003882void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02003884#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885 /*
3886 * Underflow?
3887 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003888 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
3889 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02003890#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891 preempt_count() += val;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02003892#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893 /*
3894 * Spinlock count overflowing soon?
3895 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003896 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
3897 PREEMPT_MASK - 10);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02003898#endif
3899 if (preempt_count() == val)
3900 trace_preempt_off(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901}
3902EXPORT_SYMBOL(add_preempt_count);
3903
Srinivasa Ds43627582008-02-23 15:24:04 -08003904void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02003906#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 /*
3908 * Underflow?
3909 */
Ingo Molnar01e3eb82009-01-12 13:00:50 +01003910 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003911 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912 /*
3913 * Is the spinlock portion underflowing?
3914 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003915 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
3916 !(preempt_count() & PREEMPT_MASK)))
3917 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02003918#endif
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003919
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02003920 if (preempt_count() == val)
3921 trace_preempt_on(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922 preempt_count() -= val;
3923}
3924EXPORT_SYMBOL(sub_preempt_count);
3925
3926#endif
3927
3928/*
Ingo Molnardd41f592007-07-09 18:51:59 +02003929 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003931static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932{
Satyam Sharma838225b2007-10-24 18:23:50 +02003933 struct pt_regs *regs = get_irq_regs();
3934
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01003935 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
3936 prev->comm, prev->pid, preempt_count());
Satyam Sharma838225b2007-10-24 18:23:50 +02003937
Ingo Molnardd41f592007-07-09 18:51:59 +02003938 debug_show_held_locks(prev);
Arjan van de Vene21f5b12008-05-23 09:05:58 -07003939 print_modules();
Ingo Molnardd41f592007-07-09 18:51:59 +02003940 if (irqs_disabled())
3941 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02003942
3943 if (regs)
3944 show_regs(regs);
3945 else
3946 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02003947}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948
Ingo Molnardd41f592007-07-09 18:51:59 +02003949/*
3950 * Various schedule()-time debugging checks and statistics:
3951 */
3952static inline void schedule_debug(struct task_struct *prev)
3953{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003955 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956 * schedule() atomically, we ignore that path for now.
3957 * Otherwise, whine if we are scheduling when we should not be.
3958 */
Roel Kluin3f33a7c2008-05-13 23:44:11 +02003959 if (unlikely(in_atomic_preempt_off() && !prev->exit_state))
Ingo Molnardd41f592007-07-09 18:51:59 +02003960 __schedule_bug(prev);
3961
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
3963
Ingo Molnar2d723762007-10-15 17:00:12 +02003964 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02003965#ifdef CONFIG_SCHEDSTATS
3966 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003967 schedstat_inc(this_rq(), bkl_count);
3968 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02003969 }
3970#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02003971}
3972
Peter Zijlstra6cecd082009-11-30 13:00:37 +01003973static void put_prev_task(struct rq *rq, struct task_struct *prev)
Mike Galbraithdf1c99d2009-03-10 19:08:11 +01003974{
Mike Galbraitha64692a2010-03-11 17:16:20 +01003975 if (prev->se.on_rq)
3976 update_rq_clock(rq);
Peter Zijlstra6cecd082009-11-30 13:00:37 +01003977 prev->sched_class->put_prev_task(rq, prev);
Mike Galbraithdf1c99d2009-03-10 19:08:11 +01003978}
3979
Ingo Molnardd41f592007-07-09 18:51:59 +02003980/*
3981 * Pick up the highest-prio task:
3982 */
3983static inline struct task_struct *
Wang Chenb67802e2009-03-02 13:55:26 +08003984pick_next_task(struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02003985{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003986 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02003987 struct task_struct *p;
3988
3989 /*
3990 * Optimization: we know that if all tasks are in
3991 * the fair class we can call that function directly:
3992 */
3993 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02003994 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003995 if (likely(p))
3996 return p;
3997 }
3998
Peter Zijlstra34f971f2010-09-22 13:53:15 +02003999 for_each_class(class) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004000 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004001 if (p)
4002 return p;
Ingo Molnardd41f592007-07-09 18:51:59 +02004003 }
Peter Zijlstra34f971f2010-09-22 13:53:15 +02004004
4005 BUG(); /* the idle class will always have a runnable task */
Ingo Molnardd41f592007-07-09 18:51:59 +02004006}
4007
4008/*
4009 * schedule() is the main scheduler function.
4010 */
Peter Zijlstraff743342009-03-13 12:21:26 +01004011asmlinkage void __sched schedule(void)
Ingo Molnardd41f592007-07-09 18:51:59 +02004012{
4013 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08004014 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02004015 struct rq *rq;
Peter Zijlstra31656512008-07-18 18:01:23 +02004016 int cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02004017
Peter Zijlstraff743342009-03-13 12:21:26 +01004018need_resched:
4019 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02004020 cpu = smp_processor_id();
4021 rq = cpu_rq(cpu);
Paul E. McKenney25502a62010-04-01 17:37:01 -07004022 rcu_note_context_switch(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004023 prev = rq->curr;
Ingo Molnardd41f592007-07-09 18:51:59 +02004024
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025 release_kernel_lock(prev);
4026need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027
Ingo Molnardd41f592007-07-09 18:51:59 +02004028 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029
Peter Zijlstra31656512008-07-18 18:01:23 +02004030 if (sched_feat(HRTICK))
Mike Galbraithf333fdc2008-05-12 21:20:55 +02004031 hrtick_clear(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004032
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004033 raw_spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034
Oleg Nesterov246d86b2010-05-19 14:57:11 +02004035 switch_count = &prev->nivcsw;
Ingo Molnardd41f592007-07-09 18:51:59 +02004036 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
Tejun Heo21aa9af2010-06-08 21:40:37 +02004037 if (unlikely(signal_pending_state(prev->state, prev))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02004038 prev->state = TASK_RUNNING;
Tejun Heo21aa9af2010-06-08 21:40:37 +02004039 } else {
4040 /*
4041 * If a worker is going to sleep, notify and
4042 * ask workqueue whether it wants to wake up a
4043 * task to maintain concurrency. If so, wake
4044 * up the task.
4045 */
4046 if (prev->flags & PF_WQ_WORKER) {
4047 struct task_struct *to_wakeup;
4048
4049 to_wakeup = wq_worker_sleeping(prev, cpu);
4050 if (to_wakeup)
4051 try_to_wake_up_local(to_wakeup);
4052 }
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01004053 deactivate_task(rq, prev, DEQUEUE_SLEEP);
Tejun Heo21aa9af2010-06-08 21:40:37 +02004054 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004055 switch_count = &prev->nvcsw;
4056 }
4057
Gregory Haskins3f029d32009-07-29 11:08:47 -04004058 pre_schedule(rq, prev);
Steven Rostedtf65eda42008-01-25 21:08:07 +01004059
Ingo Molnardd41f592007-07-09 18:51:59 +02004060 if (unlikely(!rq->nr_running))
4061 idle_balance(cpu, rq);
4062
Mike Galbraithdf1c99d2009-03-10 19:08:11 +01004063 put_prev_task(rq, prev);
Wang Chenb67802e2009-03-02 13:55:26 +08004064 next = pick_next_task(rq);
Mike Galbraithf26f9af2010-12-08 11:05:42 +01004065 clear_tsk_need_resched(prev);
4066 rq->skip_clock_update = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068 if (likely(prev != next)) {
David Simner673a90a2008-04-29 10:08:59 +01004069 sched_info_switch(prev, next);
Peter Zijlstra49f47432009-12-27 11:51:52 +01004070 perf_event_task_sched_out(prev, next);
David Simner673a90a2008-04-29 10:08:59 +01004071
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072 rq->nr_switches++;
4073 rq->curr = next;
4074 ++*switch_count;
Mike Galbraithf26f9af2010-12-08 11:05:42 +01004075 WARN_ON_ONCE(test_tsk_need_resched(next));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076
Ingo Molnardd41f592007-07-09 18:51:59 +02004077 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004078 /*
Oleg Nesterov246d86b2010-05-19 14:57:11 +02004079 * The context switch have flipped the stack from under us
4080 * and restored the local variables which were saved when
4081 * this task called schedule() in the past. prev == current
4082 * is still correct, but it can be moved to another cpu/rq.
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004083 */
4084 cpu = smp_processor_id();
4085 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 } else
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004087 raw_spin_unlock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088
Gregory Haskins3f029d32009-07-29 11:08:47 -04004089 post_schedule(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090
Oleg Nesterov246d86b2010-05-19 14:57:11 +02004091 if (unlikely(reacquire_kernel_lock(prev)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092 goto need_resched_nonpreemptible;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004093
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094 preempt_enable_no_resched();
Peter Zijlstraff743342009-03-13 12:21:26 +01004095 if (need_resched())
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096 goto need_resched;
4097}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098EXPORT_SYMBOL(schedule);
4099
Frederic Weisbeckerc08f7822009-12-02 20:49:17 +01004100#ifdef CONFIG_MUTEX_SPIN_ON_OWNER
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01004101/*
4102 * Look out! "owner" is an entirely speculative pointer
4103 * access and not reliable.
4104 */
4105int mutex_spin_on_owner(struct mutex *lock, struct thread_info *owner)
4106{
4107 unsigned int cpu;
4108 struct rq *rq;
4109
4110 if (!sched_feat(OWNER_SPIN))
4111 return 0;
4112
4113#ifdef CONFIG_DEBUG_PAGEALLOC
4114 /*
4115 * Need to access the cpu field knowing that
4116 * DEBUG_PAGEALLOC could have unmapped it if
4117 * the mutex owner just released it and exited.
4118 */
4119 if (probe_kernel_address(&owner->cpu, cpu))
Benjamin Herrenschmidt4b402212010-04-16 23:20:00 +02004120 return 0;
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01004121#else
4122 cpu = owner->cpu;
4123#endif
4124
4125 /*
4126 * Even if the access succeeded (likely case),
4127 * the cpu field may no longer be valid.
4128 */
4129 if (cpu >= nr_cpumask_bits)
Benjamin Herrenschmidt4b402212010-04-16 23:20:00 +02004130 return 0;
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01004131
4132 /*
4133 * We need to validate that we can do a
4134 * get_cpu() and that we have the percpu area.
4135 */
4136 if (!cpu_online(cpu))
Benjamin Herrenschmidt4b402212010-04-16 23:20:00 +02004137 return 0;
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01004138
4139 rq = cpu_rq(cpu);
4140
4141 for (;;) {
4142 /*
4143 * Owner changed, break to re-assess state.
4144 */
Tim Chen9d0f4dc2010-08-18 15:00:27 -07004145 if (lock->owner != owner) {
4146 /*
4147 * If the lock has switched to a different owner,
4148 * we likely have heavy contention. Return 0 to quit
4149 * optimistic spinning and not contend further:
4150 */
4151 if (lock->owner)
4152 return 0;
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01004153 break;
Tim Chen9d0f4dc2010-08-18 15:00:27 -07004154 }
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01004155
4156 /*
4157 * Is that owner really running on that cpu?
4158 */
4159 if (task_thread_info(rq->curr) != owner || need_resched())
4160 return 0;
4161
4162 cpu_relax();
4163 }
Benjamin Herrenschmidt4b402212010-04-16 23:20:00 +02004164
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01004165 return 1;
4166}
4167#endif
4168
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169#ifdef CONFIG_PREEMPT
4170/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004171 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004172 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173 * occur there and call schedule directly.
4174 */
Steven Rostedtd1f74e22010-06-02 21:52:29 -04004175asmlinkage void __sched notrace preempt_schedule(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176{
4177 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004178
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179 /*
4180 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004181 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07004183 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184 return;
4185
Andi Kleen3a5c3592007-10-15 17:00:14 +02004186 do {
Steven Rostedtd1f74e22010-06-02 21:52:29 -04004187 add_preempt_count_notrace(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004188 schedule();
Steven Rostedtd1f74e22010-06-02 21:52:29 -04004189 sub_preempt_count_notrace(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004190
4191 /*
4192 * Check again in case we missed a preemption opportunity
4193 * between schedule and now.
4194 */
4195 barrier();
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08004196 } while (need_resched());
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198EXPORT_SYMBOL(preempt_schedule);
4199
4200/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004201 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202 * off of irq context.
4203 * Note, that this is called and return with irqs disabled. This will
4204 * protect us against recursive calling from irq.
4205 */
4206asmlinkage void __sched preempt_schedule_irq(void)
4207{
4208 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004209
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004210 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211 BUG_ON(ti->preempt_count || !irqs_disabled());
4212
Andi Kleen3a5c3592007-10-15 17:00:14 +02004213 do {
4214 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004215 local_irq_enable();
4216 schedule();
4217 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004218 sub_preempt_count(PREEMPT_ACTIVE);
4219
4220 /*
4221 * Check again in case we missed a preemption opportunity
4222 * between schedule and now.
4223 */
4224 barrier();
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08004225 } while (need_resched());
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226}
4227
4228#endif /* CONFIG_PREEMPT */
4229
Peter Zijlstra63859d42009-09-15 19:14:42 +02004230int default_wake_function(wait_queue_t *curr, unsigned mode, int wake_flags,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004231 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232{
Peter Zijlstra63859d42009-09-15 19:14:42 +02004233 return try_to_wake_up(curr->private, mode, wake_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235EXPORT_SYMBOL(default_wake_function);
4236
4237/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004238 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4239 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240 * number) then we wake all the non-exclusive tasks and one exclusive task.
4241 *
4242 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004243 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4245 */
Johannes Weiner78ddb082009-04-14 16:53:05 +02004246static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
Peter Zijlstra63859d42009-09-15 19:14:42 +02004247 int nr_exclusive, int wake_flags, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004249 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004251 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004252 unsigned flags = curr->flags;
4253
Peter Zijlstra63859d42009-09-15 19:14:42 +02004254 if (curr->func(curr, mode, wake_flags, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004255 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256 break;
4257 }
4258}
4259
4260/**
4261 * __wake_up - wake up threads blocked on a waitqueue.
4262 * @q: the waitqueue
4263 * @mode: which threads
4264 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004265 * @key: is directly passed to the wakeup function
David Howells50fa6102009-04-28 15:01:38 +01004266 *
4267 * It may be assumed that this function implies a write memory barrier before
4268 * changing the task state if and only if any tasks are woken up.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004270void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004271 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272{
4273 unsigned long flags;
4274
4275 spin_lock_irqsave(&q->lock, flags);
4276 __wake_up_common(q, mode, nr_exclusive, 0, key);
4277 spin_unlock_irqrestore(&q->lock, flags);
4278}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279EXPORT_SYMBOL(__wake_up);
4280
4281/*
4282 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4283 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004284void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285{
4286 __wake_up_common(q, mode, 1, 0, NULL);
4287}
Michal Nazarewicz22c43c82010-05-05 12:53:11 +02004288EXPORT_SYMBOL_GPL(__wake_up_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004289
Davide Libenzi4ede8162009-03-31 15:24:20 -07004290void __wake_up_locked_key(wait_queue_head_t *q, unsigned int mode, void *key)
4291{
4292 __wake_up_common(q, mode, 1, 0, key);
4293}
4294
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295/**
Davide Libenzi4ede8162009-03-31 15:24:20 -07004296 * __wake_up_sync_key - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297 * @q: the waitqueue
4298 * @mode: which threads
4299 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Davide Libenzi4ede8162009-03-31 15:24:20 -07004300 * @key: opaque value to be passed to wakeup targets
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301 *
4302 * The sync wakeup differs that the waker knows that it will schedule
4303 * away soon, so while the target thread will be woken up, it will not
4304 * be migrated to another CPU - ie. the two threads are 'synchronized'
4305 * with each other. This can prevent needless bouncing between CPUs.
4306 *
4307 * On UP it can prevent extra preemption.
David Howells50fa6102009-04-28 15:01:38 +01004308 *
4309 * It may be assumed that this function implies a write memory barrier before
4310 * changing the task state if and only if any tasks are woken up.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311 */
Davide Libenzi4ede8162009-03-31 15:24:20 -07004312void __wake_up_sync_key(wait_queue_head_t *q, unsigned int mode,
4313 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314{
4315 unsigned long flags;
Peter Zijlstra7d478722009-09-14 19:55:44 +02004316 int wake_flags = WF_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317
4318 if (unlikely(!q))
4319 return;
4320
4321 if (unlikely(!nr_exclusive))
Peter Zijlstra7d478722009-09-14 19:55:44 +02004322 wake_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323
4324 spin_lock_irqsave(&q->lock, flags);
Peter Zijlstra7d478722009-09-14 19:55:44 +02004325 __wake_up_common(q, mode, nr_exclusive, wake_flags, key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326 spin_unlock_irqrestore(&q->lock, flags);
4327}
Davide Libenzi4ede8162009-03-31 15:24:20 -07004328EXPORT_SYMBOL_GPL(__wake_up_sync_key);
4329
4330/*
4331 * __wake_up_sync - see __wake_up_sync_key()
4332 */
4333void __wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
4334{
4335 __wake_up_sync_key(q, mode, nr_exclusive, NULL);
4336}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4338
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004339/**
4340 * complete: - signals a single thread waiting on this completion
4341 * @x: holds the state of this particular completion
4342 *
4343 * This will wake up a single thread waiting on this completion. Threads will be
4344 * awakened in the same order in which they were queued.
4345 *
4346 * See also complete_all(), wait_for_completion() and related routines.
David Howells50fa6102009-04-28 15:01:38 +01004347 *
4348 * It may be assumed that this function implies a write memory barrier before
4349 * changing the task state if and only if any tasks are woken up.
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004350 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004351void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352{
4353 unsigned long flags;
4354
4355 spin_lock_irqsave(&x->wait.lock, flags);
4356 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004357 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358 spin_unlock_irqrestore(&x->wait.lock, flags);
4359}
4360EXPORT_SYMBOL(complete);
4361
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004362/**
4363 * complete_all: - signals all threads waiting on this completion
4364 * @x: holds the state of this particular completion
4365 *
4366 * This will wake up all threads waiting on this particular completion event.
David Howells50fa6102009-04-28 15:01:38 +01004367 *
4368 * It may be assumed that this function implies a write memory barrier before
4369 * changing the task state if and only if any tasks are woken up.
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004370 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004371void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372{
4373 unsigned long flags;
4374
4375 spin_lock_irqsave(&x->wait.lock, flags);
4376 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004377 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378 spin_unlock_irqrestore(&x->wait.lock, flags);
4379}
4380EXPORT_SYMBOL(complete_all);
4381
Andi Kleen8cbbe862007-10-15 17:00:14 +02004382static inline long __sched
4383do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385 if (!x->done) {
4386 DECLARE_WAITQUEUE(wait, current);
4387
Changli Gaoa93d2f172010-05-07 14:33:26 +08004388 __add_wait_queue_tail_exclusive(&x->wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389 do {
Oleg Nesterov94d3d822008-08-20 16:54:41 -07004390 if (signal_pending_state(state, current)) {
Oleg Nesterovea71a542008-06-20 18:32:20 +04004391 timeout = -ERESTARTSYS;
4392 break;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004393 }
4394 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004396 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397 spin_lock_irq(&x->wait.lock);
Oleg Nesterovea71a542008-06-20 18:32:20 +04004398 } while (!x->done && timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399 __remove_wait_queue(&x->wait, &wait);
Oleg Nesterovea71a542008-06-20 18:32:20 +04004400 if (!x->done)
4401 return timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402 }
4403 x->done--;
Oleg Nesterovea71a542008-06-20 18:32:20 +04004404 return timeout ?: 1;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004405}
4406
4407static long __sched
4408wait_for_common(struct completion *x, long timeout, int state)
4409{
4410 might_sleep();
4411
4412 spin_lock_irq(&x->wait.lock);
4413 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004415 return timeout;
4416}
4417
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004418/**
4419 * wait_for_completion: - waits for completion of a task
4420 * @x: holds the state of this particular completion
4421 *
4422 * This waits to be signaled for completion of a specific task. It is NOT
4423 * interruptible and there is no timeout.
4424 *
4425 * See also similar routines (i.e. wait_for_completion_timeout()) with timeout
4426 * and interrupt capability. Also see complete().
4427 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004428void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004429{
4430 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431}
4432EXPORT_SYMBOL(wait_for_completion);
4433
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004434/**
4435 * wait_for_completion_timeout: - waits for completion of a task (w/timeout)
4436 * @x: holds the state of this particular completion
4437 * @timeout: timeout value in jiffies
4438 *
4439 * This waits for either a completion of a specific task to be signaled or for a
4440 * specified timeout to expire. The timeout is in jiffies. It is not
4441 * interruptible.
4442 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004443unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4445{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004446 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447}
4448EXPORT_SYMBOL(wait_for_completion_timeout);
4449
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004450/**
4451 * wait_for_completion_interruptible: - waits for completion of a task (w/intr)
4452 * @x: holds the state of this particular completion
4453 *
4454 * This waits for completion of a specific task to be signaled. It is
4455 * interruptible.
4456 */
Andi Kleen8cbbe862007-10-15 17:00:14 +02004457int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458{
Andi Kleen51e97992007-10-18 21:32:55 +02004459 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4460 if (t == -ERESTARTSYS)
4461 return t;
4462 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463}
4464EXPORT_SYMBOL(wait_for_completion_interruptible);
4465
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004466/**
4467 * wait_for_completion_interruptible_timeout: - waits for completion (w/(to,intr))
4468 * @x: holds the state of this particular completion
4469 * @timeout: timeout value in jiffies
4470 *
4471 * This waits for either a completion of a specific task to be signaled or for a
4472 * specified timeout to expire. It is interruptible. The timeout is in jiffies.
4473 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004474unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475wait_for_completion_interruptible_timeout(struct completion *x,
4476 unsigned long timeout)
4477{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004478 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479}
4480EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4481
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004482/**
4483 * wait_for_completion_killable: - waits for completion of a task (killable)
4484 * @x: holds the state of this particular completion
4485 *
4486 * This waits to be signaled for completion of a specific task. It can be
4487 * interrupted by a kill signal.
4488 */
Matthew Wilcox009e5772007-12-06 12:29:54 -05004489int __sched wait_for_completion_killable(struct completion *x)
4490{
4491 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
4492 if (t == -ERESTARTSYS)
4493 return t;
4494 return 0;
4495}
4496EXPORT_SYMBOL(wait_for_completion_killable);
4497
Dave Chinnerbe4de352008-08-15 00:40:44 -07004498/**
Sage Weil0aa12fb2010-05-29 09:12:30 -07004499 * wait_for_completion_killable_timeout: - waits for completion of a task (w/(to,killable))
4500 * @x: holds the state of this particular completion
4501 * @timeout: timeout value in jiffies
4502 *
4503 * This waits for either a completion of a specific task to be
4504 * signaled or for a specified timeout to expire. It can be
4505 * interrupted by a kill signal. The timeout is in jiffies.
4506 */
4507unsigned long __sched
4508wait_for_completion_killable_timeout(struct completion *x,
4509 unsigned long timeout)
4510{
4511 return wait_for_common(x, timeout, TASK_KILLABLE);
4512}
4513EXPORT_SYMBOL(wait_for_completion_killable_timeout);
4514
4515/**
Dave Chinnerbe4de352008-08-15 00:40:44 -07004516 * try_wait_for_completion - try to decrement a completion without blocking
4517 * @x: completion structure
4518 *
4519 * Returns: 0 if a decrement cannot be done without blocking
4520 * 1 if a decrement succeeded.
4521 *
4522 * If a completion is being used as a counting completion,
4523 * attempt to decrement the counter without blocking. This
4524 * enables us to avoid waiting if the resource the completion
4525 * is protecting is not available.
4526 */
4527bool try_wait_for_completion(struct completion *x)
4528{
Rafael J. Wysocki7539a3b2009-12-13 00:07:30 +01004529 unsigned long flags;
Dave Chinnerbe4de352008-08-15 00:40:44 -07004530 int ret = 1;
4531
Rafael J. Wysocki7539a3b2009-12-13 00:07:30 +01004532 spin_lock_irqsave(&x->wait.lock, flags);
Dave Chinnerbe4de352008-08-15 00:40:44 -07004533 if (!x->done)
4534 ret = 0;
4535 else
4536 x->done--;
Rafael J. Wysocki7539a3b2009-12-13 00:07:30 +01004537 spin_unlock_irqrestore(&x->wait.lock, flags);
Dave Chinnerbe4de352008-08-15 00:40:44 -07004538 return ret;
4539}
4540EXPORT_SYMBOL(try_wait_for_completion);
4541
4542/**
4543 * completion_done - Test to see if a completion has any waiters
4544 * @x: completion structure
4545 *
4546 * Returns: 0 if there are waiters (wait_for_completion() in progress)
4547 * 1 if there are no waiters.
4548 *
4549 */
4550bool completion_done(struct completion *x)
4551{
Rafael J. Wysocki7539a3b2009-12-13 00:07:30 +01004552 unsigned long flags;
Dave Chinnerbe4de352008-08-15 00:40:44 -07004553 int ret = 1;
4554
Rafael J. Wysocki7539a3b2009-12-13 00:07:30 +01004555 spin_lock_irqsave(&x->wait.lock, flags);
Dave Chinnerbe4de352008-08-15 00:40:44 -07004556 if (!x->done)
4557 ret = 0;
Rafael J. Wysocki7539a3b2009-12-13 00:07:30 +01004558 spin_unlock_irqrestore(&x->wait.lock, flags);
Dave Chinnerbe4de352008-08-15 00:40:44 -07004559 return ret;
4560}
4561EXPORT_SYMBOL(completion_done);
4562
Andi Kleen8cbbe862007-10-15 17:00:14 +02004563static long __sched
4564sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004565{
4566 unsigned long flags;
4567 wait_queue_t wait;
4568
4569 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570
Andi Kleen8cbbe862007-10-15 17:00:14 +02004571 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572
Andi Kleen8cbbe862007-10-15 17:00:14 +02004573 spin_lock_irqsave(&q->lock, flags);
4574 __add_wait_queue(q, &wait);
4575 spin_unlock(&q->lock);
4576 timeout = schedule_timeout(timeout);
4577 spin_lock_irq(&q->lock);
4578 __remove_wait_queue(q, &wait);
4579 spin_unlock_irqrestore(&q->lock, flags);
4580
4581 return timeout;
4582}
4583
4584void __sched interruptible_sleep_on(wait_queue_head_t *q)
4585{
4586 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588EXPORT_SYMBOL(interruptible_sleep_on);
4589
Ingo Molnar0fec1712007-07-09 18:52:01 +02004590long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004591interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004593 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4596
Ingo Molnar0fec1712007-07-09 18:52:01 +02004597void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004599 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601EXPORT_SYMBOL(sleep_on);
4602
Ingo Molnar0fec1712007-07-09 18:52:01 +02004603long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004605 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607EXPORT_SYMBOL(sleep_on_timeout);
4608
Ingo Molnarb29739f2006-06-27 02:54:51 -07004609#ifdef CONFIG_RT_MUTEXES
4610
4611/*
4612 * rt_mutex_setprio - set the current priority of a task
4613 * @p: task
4614 * @prio: prio value (kernel-internal form)
4615 *
4616 * This function changes the 'effective' priority of a task. It does
4617 * not touch ->normal_prio like __setscheduler().
4618 *
4619 * Used by the rt_mutex code to implement priority inheritance logic.
4620 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004621void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07004622{
4623 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004624 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004625 struct rq *rq;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01004626 const struct sched_class *prev_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004627
4628 BUG_ON(prio < 0 || prio > MAX_PRIO);
4629
4630 rq = task_rq_lock(p, &flags);
4631
Steven Rostedta8027072010-09-20 15:13:34 -04004632 trace_sched_pi_setprio(p, prio);
Andrew Mortond5f9f942007-05-08 20:27:06 -07004633 oldprio = p->prio;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01004634 prev_class = p->sched_class;
Ingo Molnardd41f592007-07-09 18:51:59 +02004635 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004636 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004637 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004638 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004639 if (running)
4640 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02004641
4642 if (rt_prio(prio))
4643 p->sched_class = &rt_sched_class;
4644 else
4645 p->sched_class = &fair_sched_class;
4646
Ingo Molnarb29739f2006-06-27 02:54:51 -07004647 p->prio = prio;
4648
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004649 if (running)
4650 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004651 if (on_rq) {
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01004652 enqueue_task(rq, p, oldprio < prio ? ENQUEUE_HEAD : 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004653
4654 check_class_changed(rq, p, prev_class, oldprio, running);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004655 }
4656 task_rq_unlock(rq, &flags);
4657}
4658
4659#endif
4660
Ingo Molnar36c8b582006-07-03 00:25:41 -07004661void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662{
Ingo Molnardd41f592007-07-09 18:51:59 +02004663 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004665 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666
4667 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
4668 return;
4669 /*
4670 * We have to be careful, if called from sys_setpriority(),
4671 * the task might be in the middle of scheduling on another CPU.
4672 */
4673 rq = task_rq_lock(p, &flags);
4674 /*
4675 * The RT priorities are set via sched_setscheduler(), but we still
4676 * allow the 'normal' nice value to be set - but as expected
4677 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02004678 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679 */
Ingo Molnare05606d2007-07-09 18:51:59 +02004680 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681 p->static_prio = NICE_TO_PRIO(nice);
4682 goto out_unlock;
4683 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004684 on_rq = p->se.on_rq;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02004685 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004686 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07004689 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004690 old_prio = p->prio;
4691 p->prio = effective_prio(p);
4692 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693
Ingo Molnardd41f592007-07-09 18:51:59 +02004694 if (on_rq) {
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01004695 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07004697 * If the task increased its priority or is running and
4698 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07004700 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701 resched_task(rq->curr);
4702 }
4703out_unlock:
4704 task_rq_unlock(rq, &flags);
4705}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706EXPORT_SYMBOL(set_user_nice);
4707
Matt Mackalle43379f2005-05-01 08:59:00 -07004708/*
4709 * can_nice - check if a task can reduce its nice value
4710 * @p: task
4711 * @nice: nice value
4712 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004713int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07004714{
Matt Mackall024f4742005-08-18 11:24:19 -07004715 /* convert nice value [19,-20] to rlimit style value [1,40] */
4716 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004717
Jiri Slaby78d7d402010-03-05 13:42:54 -08004718 return (nice_rlim <= task_rlimit(p, RLIMIT_NICE) ||
Matt Mackalle43379f2005-05-01 08:59:00 -07004719 capable(CAP_SYS_NICE));
4720}
4721
Linus Torvalds1da177e2005-04-16 15:20:36 -07004722#ifdef __ARCH_WANT_SYS_NICE
4723
4724/*
4725 * sys_nice - change the priority of the current process.
4726 * @increment: priority increment
4727 *
4728 * sys_setpriority is a more generic, but much slower function that
4729 * does similar things.
4730 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01004731SYSCALL_DEFINE1(nice, int, increment)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004733 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734
4735 /*
4736 * Setpriority might change our priority at the same moment.
4737 * We don't have to worry. Conceptually one call occurs first
4738 * and we have a single winner.
4739 */
Matt Mackalle43379f2005-05-01 08:59:00 -07004740 if (increment < -40)
4741 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742 if (increment > 40)
4743 increment = 40;
4744
Américo Wang2b8f8362009-02-16 18:54:21 +08004745 nice = TASK_NICE(current) + increment;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746 if (nice < -20)
4747 nice = -20;
4748 if (nice > 19)
4749 nice = 19;
4750
Matt Mackalle43379f2005-05-01 08:59:00 -07004751 if (increment < 0 && !can_nice(current, nice))
4752 return -EPERM;
4753
Linus Torvalds1da177e2005-04-16 15:20:36 -07004754 retval = security_task_setnice(current, nice);
4755 if (retval)
4756 return retval;
4757
4758 set_user_nice(current, nice);
4759 return 0;
4760}
4761
4762#endif
4763
4764/**
4765 * task_prio - return the priority value of a given task.
4766 * @p: the task in question.
4767 *
4768 * This is the priority value as seen by users in /proc.
4769 * RT tasks are offset by -200. Normal tasks are centered
4770 * around 0, value goes from -16 to +15.
4771 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004772int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773{
4774 return p->prio - MAX_RT_PRIO;
4775}
4776
4777/**
4778 * task_nice - return the nice value of a given task.
4779 * @p: the task in question.
4780 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004781int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004782{
4783 return TASK_NICE(p);
4784}
Pavel Roskin150d8be2008-03-05 16:56:37 -05004785EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786
4787/**
4788 * idle_cpu - is a given cpu idle currently?
4789 * @cpu: the processor in question.
4790 */
4791int idle_cpu(int cpu)
4792{
4793 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
4794}
4795
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796/**
4797 * idle_task - return the idle task for a given cpu.
4798 * @cpu: the processor in question.
4799 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004800struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801{
4802 return cpu_rq(cpu)->idle;
4803}
4804
4805/**
4806 * find_process_by_pid - find a process with a matching PID value.
4807 * @pid: the pid in question.
4808 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02004809static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07004811 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812}
4813
4814/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02004815static void
4816__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817{
Ingo Molnardd41f592007-07-09 18:51:59 +02004818 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004819
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820 p->policy = policy;
4821 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004822 p->normal_prio = normal_prio(p);
4823 /* we are holding p->pi_lock already */
4824 p->prio = rt_mutex_getprio(p);
Peter Zijlstraffd44db2009-11-10 20:12:01 +01004825 if (rt_prio(p->prio))
4826 p->sched_class = &rt_sched_class;
4827 else
4828 p->sched_class = &fair_sched_class;
Peter Williams2dd73a42006-06-27 02:54:34 -07004829 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004830}
4831
David Howellsc69e8d92008-11-14 10:39:19 +11004832/*
4833 * check the target process has a UID that matches the current process's
4834 */
4835static bool check_same_owner(struct task_struct *p)
4836{
4837 const struct cred *cred = current_cred(), *pcred;
4838 bool match;
4839
4840 rcu_read_lock();
4841 pcred = __task_cred(p);
4842 match = (cred->euid == pcred->euid ||
4843 cred->euid == pcred->uid);
4844 rcu_read_unlock();
4845 return match;
4846}
4847
Rusty Russell961ccdd2008-06-23 13:55:38 +10004848static int __sched_setscheduler(struct task_struct *p, int policy,
4849 struct sched_param *param, bool user)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004851 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852 unsigned long flags;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01004853 const struct sched_class *prev_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004854 struct rq *rq;
Lennart Poetteringca94c442009-06-15 17:17:47 +02004855 int reset_on_fork;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856
Steven Rostedt66e53932006-06-27 02:54:44 -07004857 /* may grab non-irq protected spin_locks */
4858 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859recheck:
4860 /* double check policy once rq lock held */
Lennart Poetteringca94c442009-06-15 17:17:47 +02004861 if (policy < 0) {
4862 reset_on_fork = p->sched_reset_on_fork;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863 policy = oldpolicy = p->policy;
Lennart Poetteringca94c442009-06-15 17:17:47 +02004864 } else {
4865 reset_on_fork = !!(policy & SCHED_RESET_ON_FORK);
4866 policy &= ~SCHED_RESET_ON_FORK;
4867
4868 if (policy != SCHED_FIFO && policy != SCHED_RR &&
4869 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
4870 policy != SCHED_IDLE)
4871 return -EINVAL;
4872 }
4873
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874 /*
4875 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02004876 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
4877 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878 */
4879 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004880 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04004881 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02004883 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884 return -EINVAL;
4885
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004886 /*
4887 * Allow unprivileged RT tasks to decrease priority:
4888 */
Rusty Russell961ccdd2008-06-23 13:55:38 +10004889 if (user && !capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02004890 if (rt_policy(policy)) {
Oleg Nesterova44702e82010-06-11 01:09:44 +02004891 unsigned long rlim_rtprio =
4892 task_rlimit(p, RLIMIT_RTPRIO);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004893
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004894 /* can't set/change the rt policy */
4895 if (policy != p->policy && !rlim_rtprio)
4896 return -EPERM;
4897
4898 /* can't increase priority */
4899 if (param->sched_priority > p->rt_priority &&
4900 param->sched_priority > rlim_rtprio)
4901 return -EPERM;
4902 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004903 /*
4904 * Like positive nice levels, dont allow tasks to
4905 * move out of SCHED_IDLE either:
4906 */
4907 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
4908 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004909
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004910 /* can't change other user's priorities */
David Howellsc69e8d92008-11-14 10:39:19 +11004911 if (!check_same_owner(p))
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004912 return -EPERM;
Lennart Poetteringca94c442009-06-15 17:17:47 +02004913
4914 /* Normal users shall not reset the sched_reset_on_fork flag */
4915 if (p->sched_reset_on_fork && !reset_on_fork)
4916 return -EPERM;
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07004919 if (user) {
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09004920 retval = security_task_setscheduler(p);
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07004921 if (retval)
4922 return retval;
4923 }
4924
Linus Torvalds1da177e2005-04-16 15:20:36 -07004925 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07004926 * make sure no PI-waiters arrive (or leave) while we are
4927 * changing the priority of the task:
4928 */
Thomas Gleixner1d615482009-11-17 14:54:03 +01004929 raw_spin_lock_irqsave(&p->pi_lock, flags);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004930 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931 * To be able to change p->policy safely, the apropriate
4932 * runqueue lock must be held.
4933 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07004934 rq = __task_rq_lock(p);
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02004935
Peter Zijlstra34f971f2010-09-22 13:53:15 +02004936 /*
4937 * Changing the policy of the stop threads its a very bad idea
4938 */
4939 if (p == rq->stop) {
4940 __task_rq_unlock(rq);
4941 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
4942 return -EINVAL;
4943 }
4944
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02004945#ifdef CONFIG_RT_GROUP_SCHED
4946 if (user) {
4947 /*
4948 * Do not allow realtime tasks into groups that have no runtime
4949 * assigned.
4950 */
4951 if (rt_bandwidth_enabled() && rt_policy(policy) &&
4952 task_group(p)->rt_bandwidth.rt_runtime == 0) {
4953 __task_rq_unlock(rq);
4954 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
4955 return -EPERM;
4956 }
4957 }
4958#endif
4959
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960 /* recheck policy now with rq lock held */
4961 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
4962 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004963 __task_rq_unlock(rq);
Thomas Gleixner1d615482009-11-17 14:54:03 +01004964 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965 goto recheck;
4966 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004967 on_rq = p->se.on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004968 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004969 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004970 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004971 if (running)
4972 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02004973
Lennart Poetteringca94c442009-06-15 17:17:47 +02004974 p->sched_reset_on_fork = reset_on_fork;
4975
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976 oldprio = p->prio;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01004977 prev_class = p->sched_class;
Ingo Molnardd41f592007-07-09 18:51:59 +02004978 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b532052007-10-15 17:00:08 +02004979
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004980 if (running)
4981 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004982 if (on_rq) {
4983 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004984
4985 check_class_changed(rq, p, prev_class, oldprio, running);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07004987 __task_rq_unlock(rq);
Thomas Gleixner1d615482009-11-17 14:54:03 +01004988 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004989
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07004990 rt_mutex_adjust_pi(p);
4991
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992 return 0;
4993}
Rusty Russell961ccdd2008-06-23 13:55:38 +10004994
4995/**
4996 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
4997 * @p: the task in question.
4998 * @policy: new policy.
4999 * @param: structure containing the new RT priority.
5000 *
5001 * NOTE that the task may be already dead.
5002 */
5003int sched_setscheduler(struct task_struct *p, int policy,
5004 struct sched_param *param)
5005{
5006 return __sched_setscheduler(p, policy, param, true);
5007}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005008EXPORT_SYMBOL_GPL(sched_setscheduler);
5009
Rusty Russell961ccdd2008-06-23 13:55:38 +10005010/**
5011 * sched_setscheduler_nocheck - change the scheduling policy and/or RT priority of a thread from kernelspace.
5012 * @p: the task in question.
5013 * @policy: new policy.
5014 * @param: structure containing the new RT priority.
5015 *
5016 * Just like sched_setscheduler, only don't bother checking if the
5017 * current context has permission. For example, this is needed in
5018 * stop_machine(): we create temporary high priority worker threads,
5019 * but our caller might not have that capability.
5020 */
5021int sched_setscheduler_nocheck(struct task_struct *p, int policy,
5022 struct sched_param *param)
5023{
5024 return __sched_setscheduler(p, policy, param, false);
5025}
5026
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005027static int
5028do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005029{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030 struct sched_param lparam;
5031 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005032 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033
5034 if (!param || pid < 0)
5035 return -EINVAL;
5036 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
5037 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005038
5039 rcu_read_lock();
5040 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005042 if (p != NULL)
5043 retval = sched_setscheduler(p, policy, &lparam);
5044 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07005045
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046 return retval;
5047}
5048
5049/**
5050 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
5051 * @pid: the pid in question.
5052 * @policy: new policy.
5053 * @param: structure containing the new RT priority.
5054 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005055SYSCALL_DEFINE3(sched_setscheduler, pid_t, pid, int, policy,
5056 struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005057{
Jason Baronc21761f2006-01-18 17:43:03 -08005058 /* negative values for policy are not valid */
5059 if (policy < 0)
5060 return -EINVAL;
5061
Linus Torvalds1da177e2005-04-16 15:20:36 -07005062 return do_sched_setscheduler(pid, policy, param);
5063}
5064
5065/**
5066 * sys_sched_setparam - set/change the RT priority of a thread
5067 * @pid: the pid in question.
5068 * @param: structure containing the new RT priority.
5069 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005070SYSCALL_DEFINE2(sched_setparam, pid_t, pid, struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005071{
5072 return do_sched_setscheduler(pid, -1, param);
5073}
5074
5075/**
5076 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
5077 * @pid: the pid in question.
5078 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005079SYSCALL_DEFINE1(sched_getscheduler, pid_t, pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005081 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005082 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083
5084 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005085 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086
5087 retval = -ESRCH;
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00005088 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089 p = find_process_by_pid(pid);
5090 if (p) {
5091 retval = security_task_getscheduler(p);
5092 if (!retval)
Lennart Poetteringca94c442009-06-15 17:17:47 +02005093 retval = p->policy
5094 | (p->sched_reset_on_fork ? SCHED_RESET_ON_FORK : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005095 }
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00005096 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097 return retval;
5098}
5099
5100/**
Lennart Poetteringca94c442009-06-15 17:17:47 +02005101 * sys_sched_getparam - get the RT priority of a thread
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102 * @pid: the pid in question.
5103 * @param: structure containing the RT priority.
5104 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005105SYSCALL_DEFINE2(sched_getparam, pid_t, pid, struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106{
5107 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005108 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005109 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110
5111 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005112 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00005114 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115 p = find_process_by_pid(pid);
5116 retval = -ESRCH;
5117 if (!p)
5118 goto out_unlock;
5119
5120 retval = security_task_getscheduler(p);
5121 if (retval)
5122 goto out_unlock;
5123
5124 lp.sched_priority = p->rt_priority;
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00005125 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126
5127 /*
5128 * This one might sleep, we cannot do it with a spinlock held ...
5129 */
5130 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
5131
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132 return retval;
5133
5134out_unlock:
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00005135 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005136 return retval;
5137}
5138
Rusty Russell96f874e22008-11-25 02:35:14 +10305139long sched_setaffinity(pid_t pid, const struct cpumask *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005140{
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305141 cpumask_var_t cpus_allowed, new_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005142 struct task_struct *p;
5143 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005145 get_online_cpus();
Thomas Gleixner23f5d142009-12-09 10:15:01 +00005146 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147
5148 p = find_process_by_pid(pid);
5149 if (!p) {
Thomas Gleixner23f5d142009-12-09 10:15:01 +00005150 rcu_read_unlock();
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005151 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152 return -ESRCH;
5153 }
5154
Thomas Gleixner23f5d142009-12-09 10:15:01 +00005155 /* Prevent p going away */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156 get_task_struct(p);
Thomas Gleixner23f5d142009-12-09 10:15:01 +00005157 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305159 if (!alloc_cpumask_var(&cpus_allowed, GFP_KERNEL)) {
5160 retval = -ENOMEM;
5161 goto out_put_task;
5162 }
5163 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL)) {
5164 retval = -ENOMEM;
5165 goto out_free_cpus_allowed;
5166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167 retval = -EPERM;
David Howellsc69e8d92008-11-14 10:39:19 +11005168 if (!check_same_owner(p) && !capable(CAP_SYS_NICE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169 goto out_unlock;
5170
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09005171 retval = security_task_setscheduler(p);
David Quigleye7834f82006-06-23 02:03:59 -07005172 if (retval)
5173 goto out_unlock;
5174
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305175 cpuset_cpus_allowed(p, cpus_allowed);
5176 cpumask_and(new_mask, in_mask, cpus_allowed);
Peter Zijlstra49246272010-10-17 21:46:10 +02005177again:
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305178 retval = set_cpus_allowed_ptr(p, new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179
Paul Menage8707d8b2007-10-18 23:40:22 -07005180 if (!retval) {
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305181 cpuset_cpus_allowed(p, cpus_allowed);
5182 if (!cpumask_subset(new_mask, cpus_allowed)) {
Paul Menage8707d8b2007-10-18 23:40:22 -07005183 /*
5184 * We must have raced with a concurrent cpuset
5185 * update. Just reset the cpus_allowed to the
5186 * cpuset's cpus_allowed
5187 */
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305188 cpumask_copy(new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005189 goto again;
5190 }
5191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192out_unlock:
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305193 free_cpumask_var(new_mask);
5194out_free_cpus_allowed:
5195 free_cpumask_var(cpus_allowed);
5196out_put_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005197 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005198 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199 return retval;
5200}
5201
5202static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
Rusty Russell96f874e22008-11-25 02:35:14 +10305203 struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204{
Rusty Russell96f874e22008-11-25 02:35:14 +10305205 if (len < cpumask_size())
5206 cpumask_clear(new_mask);
5207 else if (len > cpumask_size())
5208 len = cpumask_size();
5209
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
5211}
5212
5213/**
5214 * sys_sched_setaffinity - set the cpu affinity of a process
5215 * @pid: pid of the process
5216 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5217 * @user_mask_ptr: user-space pointer to the new cpu mask
5218 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005219SYSCALL_DEFINE3(sched_setaffinity, pid_t, pid, unsigned int, len,
5220 unsigned long __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221{
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305222 cpumask_var_t new_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223 int retval;
5224
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305225 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
5226 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005227
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305228 retval = get_user_cpu_mask(user_mask_ptr, len, new_mask);
5229 if (retval == 0)
5230 retval = sched_setaffinity(pid, new_mask);
5231 free_cpumask_var(new_mask);
5232 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005233}
5234
Rusty Russell96f874e22008-11-25 02:35:14 +10305235long sched_getaffinity(pid_t pid, struct cpumask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005237 struct task_struct *p;
Thomas Gleixner31605682009-12-08 20:24:16 +00005238 unsigned long flags;
5239 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005240 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005241
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005242 get_online_cpus();
Thomas Gleixner23f5d142009-12-09 10:15:01 +00005243 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005244
5245 retval = -ESRCH;
5246 p = find_process_by_pid(pid);
5247 if (!p)
5248 goto out_unlock;
5249
David Quigleye7834f82006-06-23 02:03:59 -07005250 retval = security_task_getscheduler(p);
5251 if (retval)
5252 goto out_unlock;
5253
Thomas Gleixner31605682009-12-08 20:24:16 +00005254 rq = task_rq_lock(p, &flags);
Rusty Russell96f874e22008-11-25 02:35:14 +10305255 cpumask_and(mask, &p->cpus_allowed, cpu_online_mask);
Thomas Gleixner31605682009-12-08 20:24:16 +00005256 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257
5258out_unlock:
Thomas Gleixner23f5d142009-12-09 10:15:01 +00005259 rcu_read_unlock();
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005260 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005261
Ulrich Drepper9531b622007-08-09 11:16:46 +02005262 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263}
5264
5265/**
5266 * sys_sched_getaffinity - get the cpu affinity of a process
5267 * @pid: pid of the process
5268 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5269 * @user_mask_ptr: user-space pointer to hold the current cpu mask
5270 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005271SYSCALL_DEFINE3(sched_getaffinity, pid_t, pid, unsigned int, len,
5272 unsigned long __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005273{
5274 int ret;
Rusty Russellf17c8602008-11-25 02:35:11 +10305275 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276
Anton Blanchard84fba5e2010-04-06 17:02:19 +10005277 if ((len * BITS_PER_BYTE) < nr_cpu_ids)
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09005278 return -EINVAL;
5279 if (len & (sizeof(unsigned long)-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280 return -EINVAL;
5281
Rusty Russellf17c8602008-11-25 02:35:11 +10305282 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
5283 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005284
Rusty Russellf17c8602008-11-25 02:35:11 +10305285 ret = sched_getaffinity(pid, mask);
5286 if (ret == 0) {
KOSAKI Motohiro8bc037f2010-03-17 09:36:58 +09005287 size_t retlen = min_t(size_t, len, cpumask_size());
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09005288
5289 if (copy_to_user(user_mask_ptr, mask, retlen))
Rusty Russellf17c8602008-11-25 02:35:11 +10305290 ret = -EFAULT;
5291 else
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09005292 ret = retlen;
Rusty Russellf17c8602008-11-25 02:35:11 +10305293 }
5294 free_cpumask_var(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005295
Rusty Russellf17c8602008-11-25 02:35:11 +10305296 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297}
5298
5299/**
5300 * sys_sched_yield - yield the current processor to other threads.
5301 *
Ingo Molnardd41f592007-07-09 18:51:59 +02005302 * This function yields the current CPU to other tasks. If there are no
5303 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005305SYSCALL_DEFINE0(sched_yield)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005307 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005308
Ingo Molnar2d723762007-10-15 17:00:12 +02005309 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02005310 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005311
5312 /*
5313 * Since we are going to call schedule() anyway, there's
5314 * no need to preempt or enable interrupts:
5315 */
5316 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07005317 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Thomas Gleixner9828ea92009-12-03 20:55:53 +01005318 do_raw_spin_unlock(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005319 preempt_enable_no_resched();
5320
5321 schedule();
5322
5323 return 0;
5324}
5325
Peter Zijlstrad86ee482009-07-10 14:57:57 +02005326static inline int should_resched(void)
5327{
5328 return need_resched() && !(preempt_count() & PREEMPT_ACTIVE);
5329}
5330
Andrew Mortone7b38402006-06-30 01:56:00 -07005331static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005332{
Frederic Weisbeckere7aaaa62009-07-16 15:44:29 +02005333 add_preempt_count(PREEMPT_ACTIVE);
5334 schedule();
5335 sub_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005336}
5337
Herbert Xu02b67cc32008-01-25 21:08:28 +01005338int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005339{
Peter Zijlstrad86ee482009-07-10 14:57:57 +02005340 if (should_resched()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341 __cond_resched();
5342 return 1;
5343 }
5344 return 0;
5345}
Herbert Xu02b67cc32008-01-25 21:08:28 +01005346EXPORT_SYMBOL(_cond_resched);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005347
5348/*
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02005349 * __cond_resched_lock() - if a reschedule is pending, drop the given lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005350 * call schedule, and on return reacquire the lock.
5351 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005352 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353 * operations here to prevent schedule() from being called twice (once via
5354 * spin_unlock(), once by hand).
5355 */
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02005356int __cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357{
Peter Zijlstrad86ee482009-07-10 14:57:57 +02005358 int resched = should_resched();
Jan Kara6df3cec2005-06-13 15:52:32 -07005359 int ret = 0;
5360
Peter Zijlstraf607c662009-07-20 19:16:29 +02005361 lockdep_assert_held(lock);
5362
Nick Piggin95c354f2008-01-30 13:31:20 +01005363 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005364 spin_unlock(lock);
Peter Zijlstrad86ee482009-07-10 14:57:57 +02005365 if (resched)
Nick Piggin95c354f2008-01-30 13:31:20 +01005366 __cond_resched();
5367 else
5368 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07005369 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005370 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005371 }
Jan Kara6df3cec2005-06-13 15:52:32 -07005372 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005373}
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02005374EXPORT_SYMBOL(__cond_resched_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02005376int __sched __cond_resched_softirq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377{
5378 BUG_ON(!in_softirq());
5379
Peter Zijlstrad86ee482009-07-10 14:57:57 +02005380 if (should_resched()) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07005381 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005382 __cond_resched();
5383 local_bh_disable();
5384 return 1;
5385 }
5386 return 0;
5387}
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02005388EXPORT_SYMBOL(__cond_resched_softirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389
Linus Torvalds1da177e2005-04-16 15:20:36 -07005390/**
5391 * yield - yield the current processor to other threads.
5392 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005393 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394 * thread runnable and calls sys_sched_yield().
5395 */
5396void __sched yield(void)
5397{
5398 set_current_state(TASK_RUNNING);
5399 sys_sched_yield();
5400}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005401EXPORT_SYMBOL(yield);
5402
5403/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005404 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07005405 * that process accounting knows that this is a task in IO wait state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005406 */
5407void __sched io_schedule(void)
5408{
Hitoshi Mitake54d35f22009-06-29 14:44:57 +09005409 struct rq *rq = raw_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005410
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005411 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412 atomic_inc(&rq->nr_iowait);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07005413 current->in_iowait = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414 schedule();
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07005415 current->in_iowait = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005416 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005417 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005418}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419EXPORT_SYMBOL(io_schedule);
5420
5421long __sched io_schedule_timeout(long timeout)
5422{
Hitoshi Mitake54d35f22009-06-29 14:44:57 +09005423 struct rq *rq = raw_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005424 long ret;
5425
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005426 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427 atomic_inc(&rq->nr_iowait);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07005428 current->in_iowait = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005429 ret = schedule_timeout(timeout);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07005430 current->in_iowait = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005432 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005433 return ret;
5434}
5435
5436/**
5437 * sys_sched_get_priority_max - return maximum RT priority.
5438 * @policy: scheduling class.
5439 *
5440 * this syscall returns the maximum rt_priority that can be used
5441 * by a given scheduling class.
5442 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005443SYSCALL_DEFINE1(sched_get_priority_max, int, policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005444{
5445 int ret = -EINVAL;
5446
5447 switch (policy) {
5448 case SCHED_FIFO:
5449 case SCHED_RR:
5450 ret = MAX_USER_RT_PRIO-1;
5451 break;
5452 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005453 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005454 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005455 ret = 0;
5456 break;
5457 }
5458 return ret;
5459}
5460
5461/**
5462 * sys_sched_get_priority_min - return minimum RT priority.
5463 * @policy: scheduling class.
5464 *
5465 * this syscall returns the minimum rt_priority that can be used
5466 * by a given scheduling class.
5467 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005468SYSCALL_DEFINE1(sched_get_priority_min, int, policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469{
5470 int ret = -EINVAL;
5471
5472 switch (policy) {
5473 case SCHED_FIFO:
5474 case SCHED_RR:
5475 ret = 1;
5476 break;
5477 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005478 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005479 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005480 ret = 0;
5481 }
5482 return ret;
5483}
5484
5485/**
5486 * sys_sched_rr_get_interval - return the default timeslice of a process.
5487 * @pid: pid of the process.
5488 * @interval: userspace pointer to the timeslice value.
5489 *
5490 * this syscall writes the default timeslice value of a given process
5491 * into the user-space timespec buffer. A value of '0' means infinity.
5492 */
Heiko Carstens17da2bd2009-01-14 14:14:10 +01005493SYSCALL_DEFINE2(sched_rr_get_interval, pid_t, pid,
Heiko Carstens754fe8d2009-01-14 14:14:09 +01005494 struct timespec __user *, interval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005495{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005496 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005497 unsigned int time_slice;
Thomas Gleixnerdba091b2009-12-09 09:32:03 +01005498 unsigned long flags;
5499 struct rq *rq;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005500 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005501 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005502
5503 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005504 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005505
5506 retval = -ESRCH;
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00005507 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508 p = find_process_by_pid(pid);
5509 if (!p)
5510 goto out_unlock;
5511
5512 retval = security_task_getscheduler(p);
5513 if (retval)
5514 goto out_unlock;
5515
Thomas Gleixnerdba091b2009-12-09 09:32:03 +01005516 rq = task_rq_lock(p, &flags);
5517 time_slice = p->sched_class->get_rr_interval(rq, p);
5518 task_rq_unlock(rq, &flags);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005519
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00005520 rcu_read_unlock();
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005521 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005522 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005523 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005524
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525out_unlock:
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00005526 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005527 return retval;
5528}
5529
Steven Rostedt7c731e02008-05-12 21:20:41 +02005530static const char stat_nam[] = TASK_STATE_TO_CHAR_STR;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005531
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005532void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005533{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005534 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005535 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005536
Linus Torvalds1da177e2005-04-16 15:20:36 -07005537 state = p->state ? __ffs(p->state) + 1 : 0;
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005538 printk(KERN_INFO "%-13.13s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005539 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005540#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005541 if (state == TASK_RUNNING)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005542 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005543 else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005544 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005545#else
5546 if (state == TASK_RUNNING)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005547 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005548 else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005549 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005550#endif
5551#ifdef CONFIG_DEBUG_STACK_USAGE
Eric Sandeen7c9f8862008-04-22 16:38:23 -05005552 free = stack_not_used(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005553#endif
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005554 printk(KERN_CONT "%5lu %5d %6d 0x%08lx\n", free,
David Rientjesaa47b7e2009-05-04 01:38:05 -07005555 task_pid_nr(p), task_pid_nr(p->real_parent),
5556 (unsigned long)task_thread_info(p)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005557
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01005558 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559}
5560
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005561void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005562{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005563 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005564
Ingo Molnar4bd77322007-07-11 21:21:47 +02005565#if BITS_PER_LONG == 32
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005566 printk(KERN_INFO
5567 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005568#else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005569 printk(KERN_INFO
5570 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005571#endif
5572 read_lock(&tasklist_lock);
5573 do_each_thread(g, p) {
5574 /*
5575 * reset the NMI-timeout, listing all files on a slow
5576 * console might take alot of time:
5577 */
5578 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07005579 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005580 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005581 } while_each_thread(g, p);
5582
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07005583 touch_all_softlockup_watchdogs();
5584
Ingo Molnardd41f592007-07-09 18:51:59 +02005585#ifdef CONFIG_SCHED_DEBUG
5586 sysrq_sched_debug_show();
5587#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005588 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005589 /*
5590 * Only show locks if all tasks are dumped:
5591 */
Shmulik Ladkani93335a22009-11-25 15:23:41 +02005592 if (!state_filter)
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005593 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005594}
5595
Ingo Molnar1df21052007-07-09 18:51:58 +02005596void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5597{
Ingo Molnardd41f592007-07-09 18:51:59 +02005598 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02005599}
5600
Ingo Molnarf340c0d2005-06-28 16:40:42 +02005601/**
5602 * init_idle - set up an idle thread for a given CPU
5603 * @idle: task in question
5604 * @cpu: cpu the idle task belongs to
5605 *
5606 * NOTE: this function does not set the idle thread's NEED_RESCHED
5607 * flag, to make booting more robust.
5608 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07005609void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005610{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005611 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005612 unsigned long flags;
5613
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005614 raw_spin_lock_irqsave(&rq->lock, flags);
Ingo Molnar5cbd54e2008-11-12 20:05:50 +01005615
Ingo Molnardd41f592007-07-09 18:51:59 +02005616 __sched_fork(idle);
Peter Zijlstra06b83b52009-12-16 18:04:35 +01005617 idle->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02005618 idle->se.exec_start = sched_clock();
5619
Rusty Russell96f874e22008-11-25 02:35:14 +10305620 cpumask_copy(&idle->cpus_allowed, cpumask_of(cpu));
Peter Zijlstra6506cf6c2010-09-16 17:50:31 +02005621 /*
5622 * We're having a chicken and egg problem, even though we are
5623 * holding rq->lock, the cpu isn't yet set to this cpu so the
5624 * lockdep check in task_group() will fail.
5625 *
5626 * Similar case to sched_fork(). / Alternatively we could
5627 * use task_rq_lock() here and obtain the other rq->lock.
5628 *
5629 * Silence PROVE_RCU
5630 */
5631 rcu_read_lock();
Ingo Molnardd41f592007-07-09 18:51:59 +02005632 __set_task_cpu(idle, cpu);
Peter Zijlstra6506cf6c2010-09-16 17:50:31 +02005633 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005634
Linus Torvalds1da177e2005-04-16 15:20:36 -07005635 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07005636#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
5637 idle->oncpu = 1;
5638#endif
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005639 raw_spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005640
5641 /* Set the preempt count _outside_ the spinlocks! */
Linus Torvalds8e3e0762008-05-10 20:58:02 -07005642#if defined(CONFIG_PREEMPT)
5643 task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0);
5644#else
Al Viroa1261f542005-11-13 16:06:55 -08005645 task_thread_info(idle)->preempt_count = 0;
Linus Torvalds8e3e0762008-05-10 20:58:02 -07005646#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02005647 /*
5648 * The idle tasks have their own, simple scheduling class:
5649 */
5650 idle->sched_class = &idle_sched_class;
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01005651 ftrace_graph_init_task(idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005652}
5653
5654/*
5655 * In a system that switches off the HZ timer nohz_cpu_mask
5656 * indicates which cpus entered this state. This is used
5657 * in the rcu update to wait only for active cpus. For system
5658 * which do not switch off the HZ timer nohz_cpu_mask should
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10305659 * always be CPU_BITS_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005660 */
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10305661cpumask_var_t nohz_cpu_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005662
Ingo Molnar19978ca2007-11-09 22:39:38 +01005663/*
5664 * Increase the granularity value when there are more CPUs,
5665 * because with more CPUs the 'effective latency' as visible
5666 * to users decreases. But the relationship is not linear,
5667 * so pick a second-best guess by going with the log2 of the
5668 * number of CPUs.
5669 *
5670 * This idea comes from the SD scheduler of Con Kolivas:
5671 */
Christian Ehrhardtacb4a842009-11-30 12:16:48 +01005672static int get_update_sysctl_factor(void)
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +01005673{
Mike Galbraith4ca3ef72009-12-10 09:25:53 +01005674 unsigned int cpus = min_t(int, num_online_cpus(), 8);
Christian Ehrhardt1983a922009-11-30 12:16:47 +01005675 unsigned int factor;
5676
5677 switch (sysctl_sched_tunable_scaling) {
5678 case SCHED_TUNABLESCALING_NONE:
5679 factor = 1;
5680 break;
5681 case SCHED_TUNABLESCALING_LINEAR:
5682 factor = cpus;
5683 break;
5684 case SCHED_TUNABLESCALING_LOG:
5685 default:
5686 factor = 1 + ilog2(cpus);
5687 break;
5688 }
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +01005689
Christian Ehrhardtacb4a842009-11-30 12:16:48 +01005690 return factor;
5691}
5692
5693static void update_sysctl(void)
5694{
5695 unsigned int factor = get_update_sysctl_factor();
5696
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +01005697#define SET_SYSCTL(name) \
5698 (sysctl_##name = (factor) * normalized_sysctl_##name)
5699 SET_SYSCTL(sched_min_granularity);
5700 SET_SYSCTL(sched_latency);
5701 SET_SYSCTL(sched_wakeup_granularity);
5702 SET_SYSCTL(sched_shares_ratelimit);
5703#undef SET_SYSCTL
5704}
5705
Ingo Molnar19978ca2007-11-09 22:39:38 +01005706static inline void sched_init_granularity(void)
5707{
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +01005708 update_sysctl();
Ingo Molnar19978ca2007-11-09 22:39:38 +01005709}
5710
Linus Torvalds1da177e2005-04-16 15:20:36 -07005711#ifdef CONFIG_SMP
5712/*
5713 * This is how migration works:
5714 *
Tejun Heo969c7922010-05-06 18:49:21 +02005715 * 1) we invoke migration_cpu_stop() on the target CPU using
5716 * stop_one_cpu().
5717 * 2) stopper starts to run (implicitly forcing the migrated thread
5718 * off the CPU)
5719 * 3) it checks whether the migrated task is still in the wrong runqueue.
5720 * 4) if it's in the wrong runqueue then the migration thread removes
Linus Torvalds1da177e2005-04-16 15:20:36 -07005721 * it and puts it into the right queue.
Tejun Heo969c7922010-05-06 18:49:21 +02005722 * 5) stopper completes and stop_one_cpu() returns and the migration
5723 * is done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005724 */
5725
5726/*
5727 * Change a given task's CPU affinity. Migrate the thread to a
5728 * proper CPU and schedule it away if the CPU it's executing on
5729 * is removed from the allowed bitmask.
5730 *
5731 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005732 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07005733 * call is not atomic; no spinlocks may be held.
5734 */
Rusty Russell96f874e22008-11-25 02:35:14 +10305735int set_cpus_allowed_ptr(struct task_struct *p, const struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005736{
5737 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005738 struct rq *rq;
Tejun Heo969c7922010-05-06 18:49:21 +02005739 unsigned int dest_cpu;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005740 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005741
Peter Zijlstra65cc8e42010-03-25 21:05:16 +01005742 /*
5743 * Serialize against TASK_WAKING so that ttwu() and wunt() can
5744 * drop the rq->lock and still rely on ->cpus_allowed.
5745 */
5746again:
5747 while (task_is_waking(p))
5748 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005749 rq = task_rq_lock(p, &flags);
Peter Zijlstra65cc8e42010-03-25 21:05:16 +01005750 if (task_is_waking(p)) {
5751 task_rq_unlock(rq, &flags);
5752 goto again;
5753 }
Peter Zijlstrae2912002009-12-16 18:04:36 +01005754
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01005755 if (!cpumask_intersects(new_mask, cpu_active_mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005756 ret = -EINVAL;
5757 goto out;
5758 }
5759
David Rientjes9985b0b2008-06-05 12:57:11 -07005760 if (unlikely((p->flags & PF_THREAD_BOUND) && p != current &&
Rusty Russell96f874e22008-11-25 02:35:14 +10305761 !cpumask_equal(&p->cpus_allowed, new_mask))) {
David Rientjes9985b0b2008-06-05 12:57:11 -07005762 ret = -EINVAL;
5763 goto out;
5764 }
5765
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005766 if (p->sched_class->set_cpus_allowed)
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005767 p->sched_class->set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005768 else {
Rusty Russell96f874e22008-11-25 02:35:14 +10305769 cpumask_copy(&p->cpus_allowed, new_mask);
5770 p->rt.nr_cpus_allowed = cpumask_weight(new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01005771 }
5772
Linus Torvalds1da177e2005-04-16 15:20:36 -07005773 /* Can the task run on the task's current CPU? If so, we're done */
Rusty Russell96f874e22008-11-25 02:35:14 +10305774 if (cpumask_test_cpu(task_cpu(p), new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005775 goto out;
5776
Tejun Heo969c7922010-05-06 18:49:21 +02005777 dest_cpu = cpumask_any_and(cpu_active_mask, new_mask);
5778 if (migrate_task(p, dest_cpu)) {
5779 struct migration_arg arg = { p, dest_cpu };
Linus Torvalds1da177e2005-04-16 15:20:36 -07005780 /* Need help from migration thread: drop lock and wait. */
5781 task_rq_unlock(rq, &flags);
Tejun Heo969c7922010-05-06 18:49:21 +02005782 stop_one_cpu(cpu_of(rq), migration_cpu_stop, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005783 tlb_migrate_finish(p->mm);
5784 return 0;
5785 }
5786out:
5787 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005788
Linus Torvalds1da177e2005-04-16 15:20:36 -07005789 return ret;
5790}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07005791EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005792
5793/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005794 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795 * this because either it can't run here any more (set_cpus_allowed()
5796 * away from this CPU, or CPU going down), or because we're
5797 * attempting to rebalance this task on exec (sched_exec).
5798 *
5799 * So we race with normal scheduler movements, but that's OK, as long
5800 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07005801 *
5802 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005803 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07005804static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005805{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005806 struct rq *rq_dest, *rq_src;
Peter Zijlstrae2912002009-12-16 18:04:36 +01005807 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808
Max Krasnyanskye761b772008-07-15 04:43:49 -07005809 if (unlikely(!cpu_active(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07005810 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005811
5812 rq_src = cpu_rq(src_cpu);
5813 rq_dest = cpu_rq(dest_cpu);
5814
5815 double_rq_lock(rq_src, rq_dest);
5816 /* Already moved. */
5817 if (task_cpu(p) != src_cpu)
Linus Torvaldsb1e38732008-07-10 11:25:03 -07005818 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819 /* Affinity changed (again). */
Rusty Russell96f874e22008-11-25 02:35:14 +10305820 if (!cpumask_test_cpu(dest_cpu, &p->cpus_allowed))
Linus Torvaldsb1e38732008-07-10 11:25:03 -07005821 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005822
Peter Zijlstrae2912002009-12-16 18:04:36 +01005823 /*
5824 * If we're not on a rq, the next wake-up will ensure we're
5825 * placed properly.
5826 */
5827 if (p->se.on_rq) {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005828 deactivate_task(rq_src, p, 0);
Peter Zijlstrae2912002009-12-16 18:04:36 +01005829 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005830 activate_task(rq_dest, p, 0);
Peter Zijlstra15afe092008-09-20 23:38:02 +02005831 check_preempt_curr(rq_dest, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005832 }
Linus Torvaldsb1e38732008-07-10 11:25:03 -07005833done:
Kirill Korotaevefc30812006-06-27 02:54:32 -07005834 ret = 1;
Linus Torvaldsb1e38732008-07-10 11:25:03 -07005835fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005836 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005837 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005838}
5839
5840/*
Tejun Heo969c7922010-05-06 18:49:21 +02005841 * migration_cpu_stop - this will be executed by a highprio stopper thread
5842 * and performs thread migration by bumping thread off CPU then
5843 * 'pushing' onto another runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005844 */
Tejun Heo969c7922010-05-06 18:49:21 +02005845static int migration_cpu_stop(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005846{
Tejun Heo969c7922010-05-06 18:49:21 +02005847 struct migration_arg *arg = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848
Tejun Heo969c7922010-05-06 18:49:21 +02005849 /*
5850 * The original target cpu might have gone down and we might
5851 * be on another cpu but it doesn't matter.
5852 */
5853 local_irq_disable();
5854 __migrate_task(arg->task, raw_smp_processor_id(), arg->dest_cpu);
5855 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856 return 0;
5857}
5858
5859#ifdef CONFIG_HOTPLUG_CPU
Kirill Korotaev054b9102006-12-10 02:20:11 -08005860/*
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +02005861 * Figure out where task on dead CPU should go, use force if necessary.
Kirill Korotaev054b9102006-12-10 02:20:11 -08005862 */
Oleg Nesterov6a1bdc12010-03-15 10:10:23 +01005863void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005864{
Oleg Nesterov1445c082010-03-15 10:10:10 +01005865 struct rq *rq = cpu_rq(dead_cpu);
5866 int needs_cpu, uninitialized_var(dest_cpu);
5867 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005868
Oleg Nesterov1445c082010-03-15 10:10:10 +01005869 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005870
Oleg Nesterov1445c082010-03-15 10:10:10 +01005871 raw_spin_lock(&rq->lock);
5872 needs_cpu = (task_cpu(p) == dead_cpu) && (p->state != TASK_WAKING);
5873 if (needs_cpu)
5874 dest_cpu = select_fallback_rq(dead_cpu, p);
5875 raw_spin_unlock(&rq->lock);
Oleg Nesterovc1804d52010-03-15 10:10:14 +01005876 /*
5877 * It can only fail if we race with set_cpus_allowed(),
5878 * in the racer should migrate the task anyway.
5879 */
Oleg Nesterov1445c082010-03-15 10:10:10 +01005880 if (needs_cpu)
Oleg Nesterovc1804d52010-03-15 10:10:14 +01005881 __migrate_task(p, dead_cpu, dest_cpu);
Oleg Nesterov1445c082010-03-15 10:10:10 +01005882 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005883}
5884
5885/*
5886 * While a dead CPU has no uninterruptible tasks queued at this point,
5887 * it might still have a nonzero ->nr_uninterruptible counter, because
5888 * for performance reasons the counter is not stricly tracking tasks to
5889 * their home CPUs. So we just add the counter to another CPU's counter,
5890 * to keep the global sum constant after CPU-down:
5891 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07005892static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005893{
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01005894 struct rq *rq_dest = cpu_rq(cpumask_any(cpu_active_mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005895 unsigned long flags;
5896
5897 local_irq_save(flags);
5898 double_rq_lock(rq_src, rq_dest);
5899 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
5900 rq_src->nr_uninterruptible = 0;
5901 double_rq_unlock(rq_src, rq_dest);
5902 local_irq_restore(flags);
5903}
5904
5905/* Run through task list and migrate tasks from the dead cpu. */
5906static void migrate_live_tasks(int src_cpu)
5907{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005908 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005909
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005910 read_lock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005911
Ingo Molnar48f24c42006-07-03 00:25:40 -07005912 do_each_thread(t, p) {
5913 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005914 continue;
5915
Ingo Molnar48f24c42006-07-03 00:25:40 -07005916 if (task_cpu(p) == src_cpu)
5917 move_task_off_dead_cpu(src_cpu, p);
5918 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005919
Oleg Nesterovf7b4cdd2007-10-16 23:30:56 -07005920 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005921}
5922
Ingo Molnardd41f592007-07-09 18:51:59 +02005923/*
5924 * Schedules idle task to be the next runnable task on current CPU.
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005925 * It does so by boosting its priority to highest possible.
5926 * Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005927 */
5928void sched_idle_next(void)
5929{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005930 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07005931 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005932 struct task_struct *p = rq->idle;
5933 unsigned long flags;
5934
5935 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005936 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005937
Ingo Molnar48f24c42006-07-03 00:25:40 -07005938 /*
5939 * Strictly not necessary since rest of the CPUs are stopped by now
5940 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005941 */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005942 raw_spin_lock_irqsave(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005943
Ingo Molnardd41f592007-07-09 18:51:59 +02005944 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005945
Dmitry Adamushko94bc9a72007-11-15 20:57:40 +01005946 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005947
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005948 raw_spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005949}
5950
Ingo Molnar48f24c42006-07-03 00:25:40 -07005951/*
5952 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07005953 * offline.
5954 */
5955void idle_task_exit(void)
5956{
5957 struct mm_struct *mm = current->active_mm;
5958
5959 BUG_ON(cpu_online(smp_processor_id()));
5960
5961 if (mm != &init_mm)
5962 switch_mm(mm, &init_mm, current);
5963 mmdrop(mm);
5964}
5965
Kirill Korotaev054b9102006-12-10 02:20:11 -08005966/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005967static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005968{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005969 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005970
5971 /* Must be exiting, otherwise would be on tasklist. */
Eugene Teo270f7222007-10-18 23:40:38 -07005972 BUG_ON(!p->exit_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005973
5974 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07005975 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976
Ingo Molnar48f24c42006-07-03 00:25:40 -07005977 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978
5979 /*
5980 * Drop lock around migration; if someone else moves it,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005981 * that's OK. No task can be added to this CPU, so iteration is
Linus Torvalds1da177e2005-04-16 15:20:36 -07005982 * fine.
5983 */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005984 raw_spin_unlock_irq(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005985 move_task_off_dead_cpu(dead_cpu, p);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005986 raw_spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005987
Ingo Molnar48f24c42006-07-03 00:25:40 -07005988 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989}
5990
5991/* release_task() removes task from tasklist, so we won't find dead tasks. */
5992static void migrate_dead_tasks(unsigned int dead_cpu)
5993{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005994 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005995 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005996
Ingo Molnardd41f592007-07-09 18:51:59 +02005997 for ( ; ; ) {
5998 if (!rq->nr_running)
5999 break;
Wang Chenb67802e2009-03-02 13:55:26 +08006000 next = pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02006001 if (!next)
6002 break;
Dmitry Adamushko79c53792008-06-29 00:16:56 +02006003 next->sched_class->put_prev_task(rq, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02006004 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02006005
Linus Torvalds1da177e2005-04-16 15:20:36 -07006006 }
6007}
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02006008
6009/*
6010 * remove the tasks which were accounted by rq from calc_load_tasks.
6011 */
6012static void calc_global_load_remove(struct rq *rq)
6013{
6014 atomic_long_sub(rq->calc_load_active, &calc_load_tasks);
Thomas Gleixnera468d382009-07-17 14:15:46 +02006015 rq->calc_load_active = 0;
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02006016}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006017#endif /* CONFIG_HOTPLUG_CPU */
6018
Nick Piggine692ab52007-07-26 13:40:43 +02006019#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
6020
6021static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006022 {
6023 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006024 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006025 },
Eric W. Biederman56992302009-11-05 15:38:40 -08006026 {}
Nick Piggine692ab52007-07-26 13:40:43 +02006027};
6028
6029static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006030 {
6031 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006032 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006033 .child = sd_ctl_dir,
6034 },
Eric W. Biederman56992302009-11-05 15:38:40 -08006035 {}
Nick Piggine692ab52007-07-26 13:40:43 +02006036};
6037
6038static struct ctl_table *sd_alloc_ctl_entry(int n)
6039{
6040 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02006041 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02006042
Nick Piggine692ab52007-07-26 13:40:43 +02006043 return entry;
6044}
6045
Milton Miller6382bc92007-10-15 17:00:19 +02006046static void sd_free_ctl_entry(struct ctl_table **tablep)
6047{
Milton Millercd7900762007-10-17 16:55:11 +02006048 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02006049
Milton Millercd7900762007-10-17 16:55:11 +02006050 /*
6051 * In the intermediate directories, both the child directory and
6052 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006053 * will always be set. In the lowest directory the names are
Milton Millercd7900762007-10-17 16:55:11 +02006054 * static strings and all have proc handlers.
6055 */
6056 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02006057 if (entry->child)
6058 sd_free_ctl_entry(&entry->child);
Milton Millercd7900762007-10-17 16:55:11 +02006059 if (entry->proc_handler == NULL)
6060 kfree(entry->procname);
6061 }
Milton Miller6382bc92007-10-15 17:00:19 +02006062
6063 kfree(*tablep);
6064 *tablep = NULL;
6065}
6066
Nick Piggine692ab52007-07-26 13:40:43 +02006067static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02006068set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02006069 const char *procname, void *data, int maxlen,
6070 mode_t mode, proc_handler *proc_handler)
6071{
Nick Piggine692ab52007-07-26 13:40:43 +02006072 entry->procname = procname;
6073 entry->data = data;
6074 entry->maxlen = maxlen;
6075 entry->mode = mode;
6076 entry->proc_handler = proc_handler;
6077}
6078
6079static struct ctl_table *
6080sd_alloc_ctl_domain_table(struct sched_domain *sd)
6081{
Ingo Molnara5d8c342008-10-09 11:35:51 +02006082 struct ctl_table *table = sd_alloc_ctl_entry(13);
Nick Piggine692ab52007-07-26 13:40:43 +02006083
Milton Millerad1cdc12007-10-15 17:00:19 +02006084 if (table == NULL)
6085 return NULL;
6086
Alexey Dobriyane0361852007-08-09 11:16:46 +02006087 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006088 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006089 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006090 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006091 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006092 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006093 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006094 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006095 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006096 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006097 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006098 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006099 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006100 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006101 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02006102 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006103 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02006104 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006105 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02006106 &sd->cache_nice_tries,
6107 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006108 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02006109 sizeof(int), 0644, proc_dointvec_minmax);
Ingo Molnara5d8c342008-10-09 11:35:51 +02006110 set_table_entry(&table[11], "name", sd->name,
6111 CORENAME_MAX_SIZE, 0444, proc_dostring);
6112 /* &table[12] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02006113
6114 return table;
6115}
6116
Ingo Molnar9a4e7152007-11-28 15:52:56 +01006117static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02006118{
6119 struct ctl_table *entry, *table;
6120 struct sched_domain *sd;
6121 int domain_num = 0, i;
6122 char buf[32];
6123
6124 for_each_domain(cpu, sd)
6125 domain_num++;
6126 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02006127 if (table == NULL)
6128 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02006129
6130 i = 0;
6131 for_each_domain(cpu, sd) {
6132 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006133 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006134 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006135 entry->child = sd_alloc_ctl_domain_table(sd);
6136 entry++;
6137 i++;
6138 }
6139 return table;
6140}
6141
6142static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02006143static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006144{
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01006145 int i, cpu_num = num_possible_cpus();
Nick Piggine692ab52007-07-26 13:40:43 +02006146 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
6147 char buf[32];
6148
Milton Miller73785472007-10-24 18:23:48 +02006149 WARN_ON(sd_ctl_dir[0].child);
6150 sd_ctl_dir[0].child = entry;
6151
Milton Millerad1cdc12007-10-15 17:00:19 +02006152 if (entry == NULL)
6153 return;
6154
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01006155 for_each_possible_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02006156 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006157 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006158 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006159 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02006160 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02006161 }
Milton Miller73785472007-10-24 18:23:48 +02006162
6163 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02006164 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
6165}
Milton Miller6382bc92007-10-15 17:00:19 +02006166
Milton Miller73785472007-10-24 18:23:48 +02006167/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02006168static void unregister_sched_domain_sysctl(void)
6169{
Milton Miller73785472007-10-24 18:23:48 +02006170 if (sd_sysctl_header)
6171 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02006172 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02006173 if (sd_ctl_dir[0].child)
6174 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02006175}
Nick Piggine692ab52007-07-26 13:40:43 +02006176#else
Milton Miller6382bc92007-10-15 17:00:19 +02006177static void register_sched_domain_sysctl(void)
6178{
6179}
6180static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006181{
6182}
6183#endif
6184
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04006185static void set_rq_online(struct rq *rq)
6186{
6187 if (!rq->online) {
6188 const struct sched_class *class;
6189
Rusty Russellc6c49272008-11-25 02:35:05 +10306190 cpumask_set_cpu(rq->cpu, rq->rd->online);
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04006191 rq->online = 1;
6192
6193 for_each_class(class) {
6194 if (class->rq_online)
6195 class->rq_online(rq);
6196 }
6197 }
6198}
6199
6200static void set_rq_offline(struct rq *rq)
6201{
6202 if (rq->online) {
6203 const struct sched_class *class;
6204
6205 for_each_class(class) {
6206 if (class->rq_offline)
6207 class->rq_offline(rq);
6208 }
6209
Rusty Russellc6c49272008-11-25 02:35:05 +10306210 cpumask_clear_cpu(rq->cpu, rq->rd->online);
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04006211 rq->online = 0;
6212 }
6213}
6214
Linus Torvalds1da177e2005-04-16 15:20:36 -07006215/*
6216 * migration_call - callback that gets triggered when a CPU is added.
6217 * Here we can start up the necessary migration thread for the new CPU.
6218 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006219static int __cpuinit
6220migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006221{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006222 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006223 unsigned long flags;
Tejun Heo969c7922010-05-06 18:49:21 +02006224 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006225
6226 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006227
Linus Torvalds1da177e2005-04-16 15:20:36 -07006228 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006229 case CPU_UP_PREPARE_FROZEN:
Thomas Gleixnera468d382009-07-17 14:15:46 +02006230 rq->calc_load_update = calc_load_update;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006231 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006232
Linus Torvalds1da177e2005-04-16 15:20:36 -07006233 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006234 case CPU_ONLINE_FROZEN:
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006235 /* Update our root-domain */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006236 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006237 if (rq->rd) {
Rusty Russellc6c49272008-11-25 02:35:05 +10306238 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04006239
6240 set_rq_online(rq);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006241 }
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006242 raw_spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006243 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006244
Linus Torvalds1da177e2005-04-16 15:20:36 -07006245#ifdef CONFIG_HOTPLUG_CPU
Linus Torvalds1da177e2005-04-16 15:20:36 -07006246 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006247 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006248 migrate_live_tasks(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006249 /* Idle task back to normal (off runqueue, low prio) */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006250 raw_spin_lock_irq(&rq->lock);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006251 deactivate_task(rq, rq->idle, 0);
Ingo Molnardd41f592007-07-09 18:51:59 +02006252 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
6253 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006254 migrate_dead_tasks(cpu);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006255 raw_spin_unlock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006256 migrate_nr_uninterruptible(rq);
6257 BUG_ON(rq->nr_running != 0);
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02006258 calc_global_load_remove(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006259 break;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006260
Gregory Haskins08f503b2008-03-10 17:59:11 -04006261 case CPU_DYING:
6262 case CPU_DYING_FROZEN:
Gregory Haskins57d885f2008-01-25 21:08:18 +01006263 /* Update our root-domain */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006264 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006265 if (rq->rd) {
Rusty Russellc6c49272008-11-25 02:35:05 +10306266 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04006267 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006268 }
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006269 raw_spin_unlock_irqrestore(&rq->lock, flags);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006270 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006271#endif
6272 }
6273 return NOTIFY_OK;
6274}
6275
Paul Mackerrasf38b0822009-06-02 21:05:16 +10006276/*
6277 * Register at high priority so that task migration (migrate_all_tasks)
6278 * happens before everything else. This has to be lower priority than
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006279 * the notifier in the perf_event subsystem, though.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006280 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07006281static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006282 .notifier_call = migration_call,
Tejun Heo50a323b2010-06-08 21:40:36 +02006283 .priority = CPU_PRI_MIGRATION,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006284};
6285
Tejun Heo3a101d02010-06-08 21:40:36 +02006286static int __cpuinit sched_cpu_active(struct notifier_block *nfb,
6287 unsigned long action, void *hcpu)
6288{
6289 switch (action & ~CPU_TASKS_FROZEN) {
6290 case CPU_ONLINE:
6291 case CPU_DOWN_FAILED:
6292 set_cpu_active((long)hcpu, true);
6293 return NOTIFY_OK;
6294 default:
6295 return NOTIFY_DONE;
6296 }
6297}
6298
6299static int __cpuinit sched_cpu_inactive(struct notifier_block *nfb,
6300 unsigned long action, void *hcpu)
6301{
6302 switch (action & ~CPU_TASKS_FROZEN) {
6303 case CPU_DOWN_PREPARE:
6304 set_cpu_active((long)hcpu, false);
6305 return NOTIFY_OK;
6306 default:
6307 return NOTIFY_DONE;
6308 }
6309}
6310
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07006311static int __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006312{
6313 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07006314 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006315
Tejun Heo3a101d02010-06-08 21:40:36 +02006316 /* Initialize migration for the boot CPU */
Akinobu Mita07dccf32006-09-29 02:00:22 -07006317 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
6318 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006319 migration_call(&migration_notifier, CPU_ONLINE, cpu);
6320 register_cpu_notifier(&migration_notifier);
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07006321
Tejun Heo3a101d02010-06-08 21:40:36 +02006322 /* Register cpu active notifiers */
6323 cpu_notifier(sched_cpu_active, CPU_PRI_SCHED_ACTIVE);
6324 cpu_notifier(sched_cpu_inactive, CPU_PRI_SCHED_INACTIVE);
6325
Thomas Gleixnera004cd42009-07-21 09:54:05 +02006326 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006327}
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07006328early_initcall(migration_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006329#endif
6330
6331#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07006332
Ingo Molnar3e9830d2007-10-15 17:00:13 +02006333#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006334
Mike Travisf6630112009-11-17 18:22:15 -06006335static __read_mostly int sched_domain_debug_enabled;
6336
6337static int __init sched_domain_debug_setup(char *str)
6338{
6339 sched_domain_debug_enabled = 1;
6340
6341 return 0;
6342}
6343early_param("sched_debug", sched_domain_debug_setup);
6344
Mike Travis7c16ec52008-04-04 18:11:11 -07006345static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
Rusty Russell96f874e22008-11-25 02:35:14 +10306346 struct cpumask *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006347{
6348 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07006349 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006350
Rusty Russell968ea6d2008-12-13 21:55:51 +10306351 cpulist_scnprintf(str, sizeof(str), sched_domain_span(sd));
Rusty Russell96f874e22008-11-25 02:35:14 +10306352 cpumask_clear(groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006353
6354 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
6355
6356 if (!(sd->flags & SD_LOAD_BALANCE)) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006357 printk("does not load-balance\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006358 if (sd->parent)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006359 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
6360 " has parent");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006361 return -1;
6362 }
6363
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006364 printk(KERN_CONT "span %s level %s\n", str, sd->name);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006365
Rusty Russell758b2cd2008-11-25 02:35:04 +10306366 if (!cpumask_test_cpu(cpu, sched_domain_span(sd))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006367 printk(KERN_ERR "ERROR: domain->span does not contain "
6368 "CPU%d\n", cpu);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006369 }
Rusty Russell758b2cd2008-11-25 02:35:04 +10306370 if (!cpumask_test_cpu(cpu, sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006371 printk(KERN_ERR "ERROR: domain->groups does not contain"
6372 " CPU%d\n", cpu);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006373 }
6374
6375 printk(KERN_DEBUG "%*s groups:", level + 1, "");
6376 do {
6377 if (!group) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006378 printk("\n");
6379 printk(KERN_ERR "ERROR: group is NULL\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006380 break;
6381 }
6382
Peter Zijlstra18a38852009-09-01 10:34:39 +02006383 if (!group->cpu_power) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006384 printk(KERN_CONT "\n");
6385 printk(KERN_ERR "ERROR: domain->cpu_power not "
6386 "set\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006387 break;
6388 }
6389
Rusty Russell758b2cd2008-11-25 02:35:04 +10306390 if (!cpumask_weight(sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006391 printk(KERN_CONT "\n");
6392 printk(KERN_ERR "ERROR: empty group\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006393 break;
6394 }
6395
Rusty Russell758b2cd2008-11-25 02:35:04 +10306396 if (cpumask_intersects(groupmask, sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006397 printk(KERN_CONT "\n");
6398 printk(KERN_ERR "ERROR: repeated CPUs\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006399 break;
6400 }
6401
Rusty Russell758b2cd2008-11-25 02:35:04 +10306402 cpumask_or(groupmask, groupmask, sched_group_cpus(group));
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006403
Rusty Russell968ea6d2008-12-13 21:55:51 +10306404 cpulist_scnprintf(str, sizeof(str), sched_group_cpus(group));
Gautham R Shenoy381512c2009-04-14 09:09:36 +05306405
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006406 printk(KERN_CONT " %s", str);
Peter Zijlstra18a38852009-09-01 10:34:39 +02006407 if (group->cpu_power != SCHED_LOAD_SCALE) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006408 printk(KERN_CONT " (cpu_power = %d)",
6409 group->cpu_power);
Gautham R Shenoy381512c2009-04-14 09:09:36 +05306410 }
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006411
6412 group = group->next;
6413 } while (group != sd->groups);
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006414 printk(KERN_CONT "\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006415
Rusty Russell758b2cd2008-11-25 02:35:04 +10306416 if (!cpumask_equal(sched_domain_span(sd), groupmask))
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006417 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006418
Rusty Russell758b2cd2008-11-25 02:35:04 +10306419 if (sd->parent &&
6420 !cpumask_subset(groupmask, sched_domain_span(sd->parent)))
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006421 printk(KERN_ERR "ERROR: parent span is not a superset "
6422 "of domain->span\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006423 return 0;
6424}
6425
Linus Torvalds1da177e2005-04-16 15:20:36 -07006426static void sched_domain_debug(struct sched_domain *sd, int cpu)
6427{
Rusty Russelld5dd3db2008-11-25 02:35:12 +10306428 cpumask_var_t groupmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006429 int level = 0;
6430
Mike Travisf6630112009-11-17 18:22:15 -06006431 if (!sched_domain_debug_enabled)
6432 return;
6433
Nick Piggin41c7ce92005-06-25 14:57:24 -07006434 if (!sd) {
6435 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6436 return;
6437 }
6438
Linus Torvalds1da177e2005-04-16 15:20:36 -07006439 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6440
Rusty Russelld5dd3db2008-11-25 02:35:12 +10306441 if (!alloc_cpumask_var(&groupmask, GFP_KERNEL)) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006442 printk(KERN_DEBUG "Cannot load-balance (out of memory)\n");
6443 return;
6444 }
6445
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006446 for (;;) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006447 if (sched_domain_debug_one(sd, cpu, level, groupmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006448 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006449 level++;
6450 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006451 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006452 break;
6453 }
Rusty Russelld5dd3db2008-11-25 02:35:12 +10306454 free_cpumask_var(groupmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006455}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006456#else /* !CONFIG_SCHED_DEBUG */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006457# define sched_domain_debug(sd, cpu) do { } while (0)
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006458#endif /* CONFIG_SCHED_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006459
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006460static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006461{
Rusty Russell758b2cd2008-11-25 02:35:04 +10306462 if (cpumask_weight(sched_domain_span(sd)) == 1)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006463 return 1;
6464
6465 /* Following flags need at least 2 groups */
6466 if (sd->flags & (SD_LOAD_BALANCE |
6467 SD_BALANCE_NEWIDLE |
6468 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006469 SD_BALANCE_EXEC |
6470 SD_SHARE_CPUPOWER |
6471 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006472 if (sd->groups != sd->groups->next)
6473 return 0;
6474 }
6475
6476 /* Following flags don't use groups */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02006477 if (sd->flags & (SD_WAKE_AFFINE))
Suresh Siddha245af2c2005-06-25 14:57:25 -07006478 return 0;
6479
6480 return 1;
6481}
6482
Ingo Molnar48f24c42006-07-03 00:25:40 -07006483static int
6484sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006485{
6486 unsigned long cflags = sd->flags, pflags = parent->flags;
6487
6488 if (sd_degenerate(parent))
6489 return 1;
6490
Rusty Russell758b2cd2008-11-25 02:35:04 +10306491 if (!cpumask_equal(sched_domain_span(sd), sched_domain_span(parent)))
Suresh Siddha245af2c2005-06-25 14:57:25 -07006492 return 0;
6493
Suresh Siddha245af2c2005-06-25 14:57:25 -07006494 /* Flags needing groups don't count if only 1 group in parent */
6495 if (parent->groups == parent->groups->next) {
6496 pflags &= ~(SD_LOAD_BALANCE |
6497 SD_BALANCE_NEWIDLE |
6498 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006499 SD_BALANCE_EXEC |
6500 SD_SHARE_CPUPOWER |
6501 SD_SHARE_PKG_RESOURCES);
Ken Chen54364992008-12-07 18:47:37 -08006502 if (nr_node_ids == 1)
6503 pflags &= ~SD_SERIALIZE;
Suresh Siddha245af2c2005-06-25 14:57:25 -07006504 }
6505 if (~cflags & pflags)
6506 return 0;
6507
6508 return 1;
6509}
6510
Rusty Russellc6c49272008-11-25 02:35:05 +10306511static void free_rootdomain(struct root_domain *rd)
6512{
Peter Zijlstra047106a2009-11-16 10:28:09 +01006513 synchronize_sched();
6514
Rusty Russell68e74562008-11-25 02:35:13 +10306515 cpupri_cleanup(&rd->cpupri);
6516
Rusty Russellc6c49272008-11-25 02:35:05 +10306517 free_cpumask_var(rd->rto_mask);
6518 free_cpumask_var(rd->online);
6519 free_cpumask_var(rd->span);
6520 kfree(rd);
6521}
6522
Gregory Haskins57d885f2008-01-25 21:08:18 +01006523static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6524{
Ingo Molnara0490fa2009-02-12 11:35:40 +01006525 struct root_domain *old_rd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006526 unsigned long flags;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006527
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006528 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006529
6530 if (rq->rd) {
Ingo Molnara0490fa2009-02-12 11:35:40 +01006531 old_rd = rq->rd;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006532
Rusty Russellc6c49272008-11-25 02:35:05 +10306533 if (cpumask_test_cpu(rq->cpu, old_rd->online))
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04006534 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006535
Rusty Russellc6c49272008-11-25 02:35:05 +10306536 cpumask_clear_cpu(rq->cpu, old_rd->span);
Gregory Haskinsdc938522008-01-25 21:08:26 +01006537
Ingo Molnara0490fa2009-02-12 11:35:40 +01006538 /*
6539 * If we dont want to free the old_rt yet then
6540 * set old_rd to NULL to skip the freeing later
6541 * in this function:
6542 */
6543 if (!atomic_dec_and_test(&old_rd->refcount))
6544 old_rd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006545 }
6546
6547 atomic_inc(&rd->refcount);
6548 rq->rd = rd;
6549
Rusty Russellc6c49272008-11-25 02:35:05 +10306550 cpumask_set_cpu(rq->cpu, rd->span);
Gregory Haskins00aec932009-07-30 10:57:23 -04006551 if (cpumask_test_cpu(rq->cpu, cpu_active_mask))
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04006552 set_rq_online(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006553
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006554 raw_spin_unlock_irqrestore(&rq->lock, flags);
Ingo Molnara0490fa2009-02-12 11:35:40 +01006555
6556 if (old_rd)
6557 free_rootdomain(old_rd);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006558}
6559
Pekka Enberg68c38fc2010-07-15 23:18:22 +03006560static int init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006561{
6562 memset(rd, 0, sizeof(*rd));
6563
Pekka Enberg68c38fc2010-07-15 23:18:22 +03006564 if (!alloc_cpumask_var(&rd->span, GFP_KERNEL))
Li Zefan0c910d22009-01-06 17:39:06 +08006565 goto out;
Pekka Enberg68c38fc2010-07-15 23:18:22 +03006566 if (!alloc_cpumask_var(&rd->online, GFP_KERNEL))
Rusty Russellc6c49272008-11-25 02:35:05 +10306567 goto free_span;
Pekka Enberg68c38fc2010-07-15 23:18:22 +03006568 if (!alloc_cpumask_var(&rd->rto_mask, GFP_KERNEL))
Rusty Russellc6c49272008-11-25 02:35:05 +10306569 goto free_online;
Gregory Haskins6e0534f2008-05-12 21:21:01 +02006570
Pekka Enberg68c38fc2010-07-15 23:18:22 +03006571 if (cpupri_init(&rd->cpupri) != 0)
Rusty Russell68e74562008-11-25 02:35:13 +10306572 goto free_rto_mask;
Rusty Russellc6c49272008-11-25 02:35:05 +10306573 return 0;
6574
Rusty Russell68e74562008-11-25 02:35:13 +10306575free_rto_mask:
6576 free_cpumask_var(rd->rto_mask);
Rusty Russellc6c49272008-11-25 02:35:05 +10306577free_online:
6578 free_cpumask_var(rd->online);
6579free_span:
6580 free_cpumask_var(rd->span);
Li Zefan0c910d22009-01-06 17:39:06 +08006581out:
Rusty Russellc6c49272008-11-25 02:35:05 +10306582 return -ENOMEM;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006583}
6584
6585static void init_defrootdomain(void)
6586{
Pekka Enberg68c38fc2010-07-15 23:18:22 +03006587 init_rootdomain(&def_root_domain);
Rusty Russellc6c49272008-11-25 02:35:05 +10306588
Gregory Haskins57d885f2008-01-25 21:08:18 +01006589 atomic_set(&def_root_domain.refcount, 1);
6590}
6591
Gregory Haskinsdc938522008-01-25 21:08:26 +01006592static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006593{
6594 struct root_domain *rd;
6595
6596 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6597 if (!rd)
6598 return NULL;
6599
Pekka Enberg68c38fc2010-07-15 23:18:22 +03006600 if (init_rootdomain(rd) != 0) {
Rusty Russellc6c49272008-11-25 02:35:05 +10306601 kfree(rd);
6602 return NULL;
6603 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006604
6605 return rd;
6606}
6607
Linus Torvalds1da177e2005-04-16 15:20:36 -07006608/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01006609 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07006610 * hold the hotplug lock.
6611 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01006612static void
6613cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006614{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006615 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006616 struct sched_domain *tmp;
6617
Peter Zijlstra669c55e2010-04-16 14:59:29 +02006618 for (tmp = sd; tmp; tmp = tmp->parent)
6619 tmp->span_weight = cpumask_weight(sched_domain_span(tmp));
6620
Suresh Siddha245af2c2005-06-25 14:57:25 -07006621 /* Remove the sched domains which do not contribute to scheduling. */
Li Zefanf29c9b12008-11-06 09:45:16 +08006622 for (tmp = sd; tmp; ) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006623 struct sched_domain *parent = tmp->parent;
6624 if (!parent)
6625 break;
Li Zefanf29c9b12008-11-06 09:45:16 +08006626
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006627 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006628 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006629 if (parent->parent)
6630 parent->parent->child = tmp;
Li Zefanf29c9b12008-11-06 09:45:16 +08006631 } else
6632 tmp = tmp->parent;
Suresh Siddha245af2c2005-06-25 14:57:25 -07006633 }
6634
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006635 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006636 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006637 if (sd)
6638 sd->child = NULL;
6639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006640
6641 sched_domain_debug(sd, cpu);
6642
Gregory Haskins57d885f2008-01-25 21:08:18 +01006643 rq_attach_root(rq, rd);
Nick Piggin674311d2005-06-25 14:57:27 -07006644 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006645}
6646
6647/* cpus with isolated domains */
Rusty Russelldcc30a32008-11-25 02:35:12 +10306648static cpumask_var_t cpu_isolated_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006649
6650/* Setup the mask of cpus configured for isolated domains */
6651static int __init isolated_cpu_setup(char *str)
6652{
Rusty Russellbdddd292009-12-02 14:09:16 +10306653 alloc_bootmem_cpumask_var(&cpu_isolated_map);
Rusty Russell968ea6d2008-12-13 21:55:51 +10306654 cpulist_parse(str, cpu_isolated_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006655 return 1;
6656}
6657
Ingo Molnar8927f492007-10-15 17:00:13 +02006658__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006659
6660/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006661 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
6662 * to a function which identifies what group(along with sched group) a CPU
Rusty Russell96f874e22008-11-25 02:35:14 +10306663 * belongs to. The return value of group_fn must be a >= 0 and < nr_cpu_ids
6664 * (due to the fact that we keep track of groups covered with a struct cpumask).
Linus Torvalds1da177e2005-04-16 15:20:36 -07006665 *
6666 * init_sched_build_groups will build a circular linked list of the groups
6667 * covered by the given span, and will set each group's ->cpumask correctly,
6668 * and ->cpu_power to 0.
6669 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006670static void
Rusty Russell96f874e22008-11-25 02:35:14 +10306671init_sched_build_groups(const struct cpumask *span,
6672 const struct cpumask *cpu_map,
6673 int (*group_fn)(int cpu, const struct cpumask *cpu_map,
Mike Travis7c16ec52008-04-04 18:11:11 -07006674 struct sched_group **sg,
Rusty Russell96f874e22008-11-25 02:35:14 +10306675 struct cpumask *tmpmask),
6676 struct cpumask *covered, struct cpumask *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006677{
6678 struct sched_group *first = NULL, *last = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006679 int i;
6680
Rusty Russell96f874e22008-11-25 02:35:14 +10306681 cpumask_clear(covered);
Mike Travis7c16ec52008-04-04 18:11:11 -07006682
Rusty Russellabcd0832008-11-25 02:35:02 +10306683 for_each_cpu(i, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006684 struct sched_group *sg;
Mike Travis7c16ec52008-04-04 18:11:11 -07006685 int group = group_fn(i, cpu_map, &sg, tmpmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006686 int j;
6687
Rusty Russell758b2cd2008-11-25 02:35:04 +10306688 if (cpumask_test_cpu(i, covered))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006689 continue;
6690
Rusty Russell758b2cd2008-11-25 02:35:04 +10306691 cpumask_clear(sched_group_cpus(sg));
Peter Zijlstra18a38852009-09-01 10:34:39 +02006692 sg->cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006693
Rusty Russellabcd0832008-11-25 02:35:02 +10306694 for_each_cpu(j, span) {
Mike Travis7c16ec52008-04-04 18:11:11 -07006695 if (group_fn(j, cpu_map, NULL, tmpmask) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006696 continue;
6697
Rusty Russell96f874e22008-11-25 02:35:14 +10306698 cpumask_set_cpu(j, covered);
Rusty Russell758b2cd2008-11-25 02:35:04 +10306699 cpumask_set_cpu(j, sched_group_cpus(sg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006700 }
6701 if (!first)
6702 first = sg;
6703 if (last)
6704 last->next = sg;
6705 last = sg;
6706 }
6707 last->next = first;
6708}
6709
John Hawkes9c1cfda2005-09-06 15:18:14 -07006710#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07006711
John Hawkes9c1cfda2005-09-06 15:18:14 -07006712#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006713
John Hawkes9c1cfda2005-09-06 15:18:14 -07006714/**
6715 * find_next_best_node - find the next node to include in a sched_domain
6716 * @node: node whose sched_domain we're building
6717 * @used_nodes: nodes already in the sched_domain
6718 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006719 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07006720 * finds the closest node not already in the @used_nodes map.
6721 *
6722 * Should use nodemask_t.
6723 */
Mike Travisc5f59f02008-04-04 18:11:10 -07006724static int find_next_best_node(int node, nodemask_t *used_nodes)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006725{
6726 int i, n, val, min_val, best_node = 0;
6727
6728 min_val = INT_MAX;
6729
Mike Travis076ac2a2008-05-12 21:21:12 +02006730 for (i = 0; i < nr_node_ids; i++) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07006731 /* Start at @node */
Mike Travis076ac2a2008-05-12 21:21:12 +02006732 n = (node + i) % nr_node_ids;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006733
6734 if (!nr_cpus_node(n))
6735 continue;
6736
6737 /* Skip already used nodes */
Mike Travisc5f59f02008-04-04 18:11:10 -07006738 if (node_isset(n, *used_nodes))
John Hawkes9c1cfda2005-09-06 15:18:14 -07006739 continue;
6740
6741 /* Simple min distance search */
6742 val = node_distance(node, n);
6743
6744 if (val < min_val) {
6745 min_val = val;
6746 best_node = n;
6747 }
6748 }
6749
Mike Travisc5f59f02008-04-04 18:11:10 -07006750 node_set(best_node, *used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006751 return best_node;
6752}
6753
6754/**
6755 * sched_domain_node_span - get a cpumask for a node's sched_domain
6756 * @node: node whose cpumask we're constructing
Randy Dunlap73486722008-04-22 10:07:22 -07006757 * @span: resulting cpumask
John Hawkes9c1cfda2005-09-06 15:18:14 -07006758 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006759 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07006760 * should be one that prevents unnecessary balancing, but also spreads tasks
6761 * out optimally.
6762 */
Rusty Russell96f874e22008-11-25 02:35:14 +10306763static void sched_domain_node_span(int node, struct cpumask *span)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006764{
Mike Travisc5f59f02008-04-04 18:11:10 -07006765 nodemask_t used_nodes;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006766 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006767
Mike Travis6ca09df2008-12-31 18:08:45 -08006768 cpumask_clear(span);
Mike Travisc5f59f02008-04-04 18:11:10 -07006769 nodes_clear(used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006770
Mike Travis6ca09df2008-12-31 18:08:45 -08006771 cpumask_or(span, span, cpumask_of_node(node));
Mike Travisc5f59f02008-04-04 18:11:10 -07006772 node_set(node, used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006773
6774 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
Mike Travisc5f59f02008-04-04 18:11:10 -07006775 int next_node = find_next_best_node(node, &used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006776
Mike Travis6ca09df2008-12-31 18:08:45 -08006777 cpumask_or(span, span, cpumask_of_node(next_node));
John Hawkes9c1cfda2005-09-06 15:18:14 -07006778 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006779}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006780#endif /* CONFIG_NUMA */
John Hawkes9c1cfda2005-09-06 15:18:14 -07006781
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006782int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006783
John Hawkes9c1cfda2005-09-06 15:18:14 -07006784/*
Rusty Russell6c99e9a2008-11-25 02:35:04 +10306785 * The cpus mask in sched_group and sched_domain hangs off the end.
Ingo Molnar4200efd2009-05-19 09:22:19 +02006786 *
6787 * ( See the the comments in include/linux/sched.h:struct sched_group
6788 * and struct sched_domain. )
Rusty Russell6c99e9a2008-11-25 02:35:04 +10306789 */
6790struct static_sched_group {
6791 struct sched_group sg;
6792 DECLARE_BITMAP(cpus, CONFIG_NR_CPUS);
6793};
6794
6795struct static_sched_domain {
6796 struct sched_domain sd;
6797 DECLARE_BITMAP(span, CONFIG_NR_CPUS);
6798};
6799
Andreas Herrmann49a02c52009-08-18 12:51:52 +02006800struct s_data {
6801#ifdef CONFIG_NUMA
6802 int sd_allnodes;
6803 cpumask_var_t domainspan;
6804 cpumask_var_t covered;
6805 cpumask_var_t notcovered;
6806#endif
6807 cpumask_var_t nodemask;
6808 cpumask_var_t this_sibling_map;
6809 cpumask_var_t this_core_map;
Heiko Carstens01a08542010-08-31 10:28:16 +02006810 cpumask_var_t this_book_map;
Andreas Herrmann49a02c52009-08-18 12:51:52 +02006811 cpumask_var_t send_covered;
6812 cpumask_var_t tmpmask;
6813 struct sched_group **sched_group_nodes;
6814 struct root_domain *rd;
6815};
6816
Andreas Herrmann2109b992009-08-18 12:53:00 +02006817enum s_alloc {
6818 sa_sched_groups = 0,
6819 sa_rootdomain,
6820 sa_tmpmask,
6821 sa_send_covered,
Heiko Carstens01a08542010-08-31 10:28:16 +02006822 sa_this_book_map,
Andreas Herrmann2109b992009-08-18 12:53:00 +02006823 sa_this_core_map,
6824 sa_this_sibling_map,
6825 sa_nodemask,
6826 sa_sched_group_nodes,
6827#ifdef CONFIG_NUMA
6828 sa_notcovered,
6829 sa_covered,
6830 sa_domainspan,
6831#endif
6832 sa_none,
6833};
6834
Rusty Russell6c99e9a2008-11-25 02:35:04 +10306835/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07006836 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07006837 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006838#ifdef CONFIG_SCHED_SMT
Rusty Russell6c99e9a2008-11-25 02:35:04 +10306839static DEFINE_PER_CPU(struct static_sched_domain, cpu_domains);
Tejun Heo1871e522009-10-29 22:34:13 +09006840static DEFINE_PER_CPU(struct static_sched_group, sched_groups);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006841
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006842static int
Rusty Russell96f874e22008-11-25 02:35:14 +10306843cpu_to_cpu_group(int cpu, const struct cpumask *cpu_map,
6844 struct sched_group **sg, struct cpumask *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006845{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006846 if (sg)
Tejun Heo1871e522009-10-29 22:34:13 +09006847 *sg = &per_cpu(sched_groups, cpu).sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006848 return cpu;
6849}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006850#endif /* CONFIG_SCHED_SMT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006851
Ingo Molnar48f24c42006-07-03 00:25:40 -07006852/*
6853 * multi-core sched-domains:
6854 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006855#ifdef CONFIG_SCHED_MC
Rusty Russell6c99e9a2008-11-25 02:35:04 +10306856static DEFINE_PER_CPU(struct static_sched_domain, core_domains);
6857static DEFINE_PER_CPU(struct static_sched_group, sched_group_core);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006858
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006859static int
Rusty Russell96f874e22008-11-25 02:35:14 +10306860cpu_to_core_group(int cpu, const struct cpumask *cpu_map,
6861 struct sched_group **sg, struct cpumask *mask)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006862{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006863 int group;
Heiko Carstensf2698932010-08-31 10:28:15 +02006864#ifdef CONFIG_SCHED_SMT
Rusty Russellc69fc562009-03-13 14:49:46 +10306865 cpumask_and(mask, topology_thread_cpumask(cpu), cpu_map);
Rusty Russell96f874e22008-11-25 02:35:14 +10306866 group = cpumask_first(mask);
Heiko Carstensf2698932010-08-31 10:28:15 +02006867#else
6868 group = cpu;
6869#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006870 if (sg)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10306871 *sg = &per_cpu(sched_group_core, group).sg;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006872 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006873}
Heiko Carstensf2698932010-08-31 10:28:15 +02006874#endif /* CONFIG_SCHED_MC */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006875
Heiko Carstens01a08542010-08-31 10:28:16 +02006876/*
6877 * book sched-domains:
6878 */
6879#ifdef CONFIG_SCHED_BOOK
6880static DEFINE_PER_CPU(struct static_sched_domain, book_domains);
6881static DEFINE_PER_CPU(struct static_sched_group, sched_group_book);
6882
Linus Torvalds1da177e2005-04-16 15:20:36 -07006883static int
Heiko Carstens01a08542010-08-31 10:28:16 +02006884cpu_to_book_group(int cpu, const struct cpumask *cpu_map,
6885 struct sched_group **sg, struct cpumask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006886{
Heiko Carstens01a08542010-08-31 10:28:16 +02006887 int group = cpu;
6888#ifdef CONFIG_SCHED_MC
6889 cpumask_and(mask, cpu_coregroup_mask(cpu), cpu_map);
6890 group = cpumask_first(mask);
6891#elif defined(CONFIG_SCHED_SMT)
6892 cpumask_and(mask, topology_thread_cpumask(cpu), cpu_map);
6893 group = cpumask_first(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006894#endif
Heiko Carstens01a08542010-08-31 10:28:16 +02006895 if (sg)
6896 *sg = &per_cpu(sched_group_book, group).sg;
6897 return group;
6898}
6899#endif /* CONFIG_SCHED_BOOK */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006900
Rusty Russell6c99e9a2008-11-25 02:35:04 +10306901static DEFINE_PER_CPU(struct static_sched_domain, phys_domains);
6902static DEFINE_PER_CPU(struct static_sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006903
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006904static int
Rusty Russell96f874e22008-11-25 02:35:14 +10306905cpu_to_phys_group(int cpu, const struct cpumask *cpu_map,
6906 struct sched_group **sg, struct cpumask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006907{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006908 int group;
Heiko Carstens01a08542010-08-31 10:28:16 +02006909#ifdef CONFIG_SCHED_BOOK
6910 cpumask_and(mask, cpu_book_mask(cpu), cpu_map);
6911 group = cpumask_first(mask);
6912#elif defined(CONFIG_SCHED_MC)
Mike Travis6ca09df2008-12-31 18:08:45 -08006913 cpumask_and(mask, cpu_coregroup_mask(cpu), cpu_map);
Rusty Russell96f874e22008-11-25 02:35:14 +10306914 group = cpumask_first(mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006915#elif defined(CONFIG_SCHED_SMT)
Rusty Russellc69fc562009-03-13 14:49:46 +10306916 cpumask_and(mask, topology_thread_cpumask(cpu), cpu_map);
Rusty Russell96f874e22008-11-25 02:35:14 +10306917 group = cpumask_first(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006918#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006919 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006920#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006921 if (sg)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10306922 *sg = &per_cpu(sched_group_phys, group).sg;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006923 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006924}
6925
6926#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07006927/*
6928 * The init_sched_build_groups can't handle what we want to do with node
6929 * groups, so roll our own. Now each node has its own list of groups which
6930 * gets dynamically allocated.
6931 */
Rusty Russell62ea9ce2009-01-11 01:04:16 +01006932static DEFINE_PER_CPU(struct static_sched_domain, node_domains);
Mike Travis434d53b2008-04-04 18:11:04 -07006933static struct sched_group ***sched_group_nodes_bycpu;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006934
Rusty Russell62ea9ce2009-01-11 01:04:16 +01006935static DEFINE_PER_CPU(struct static_sched_domain, allnodes_domains);
Rusty Russell6c99e9a2008-11-25 02:35:04 +10306936static DEFINE_PER_CPU(struct static_sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006937
Rusty Russell96f874e22008-11-25 02:35:14 +10306938static int cpu_to_allnodes_group(int cpu, const struct cpumask *cpu_map,
6939 struct sched_group **sg,
6940 struct cpumask *nodemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006941{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006942 int group;
6943
Mike Travis6ca09df2008-12-31 18:08:45 -08006944 cpumask_and(nodemask, cpumask_of_node(cpu_to_node(cpu)), cpu_map);
Rusty Russell96f874e22008-11-25 02:35:14 +10306945 group = cpumask_first(nodemask);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006946
6947 if (sg)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10306948 *sg = &per_cpu(sched_group_allnodes, group).sg;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006949 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006950}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006951
Siddha, Suresh B08069032006-03-27 01:15:23 -08006952static void init_numa_sched_groups_power(struct sched_group *group_head)
6953{
6954 struct sched_group *sg = group_head;
6955 int j;
6956
6957 if (!sg)
6958 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02006959 do {
Rusty Russell758b2cd2008-11-25 02:35:04 +10306960 for_each_cpu(j, sched_group_cpus(sg)) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02006961 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08006962
Rusty Russell6c99e9a2008-11-25 02:35:04 +10306963 sd = &per_cpu(phys_domains, j).sd;
Miao Xie13318a72009-04-15 09:59:10 +08006964 if (j != group_first_cpu(sd->groups)) {
Andi Kleen3a5c3592007-10-15 17:00:14 +02006965 /*
6966 * Only add "power" once for each
6967 * physical package.
6968 */
6969 continue;
6970 }
6971
Peter Zijlstra18a38852009-09-01 10:34:39 +02006972 sg->cpu_power += sd->groups->cpu_power;
Siddha, Suresh B08069032006-03-27 01:15:23 -08006973 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02006974 sg = sg->next;
6975 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08006976}
Andreas Herrmann0601a882009-08-18 13:01:11 +02006977
6978static int build_numa_sched_groups(struct s_data *d,
6979 const struct cpumask *cpu_map, int num)
6980{
6981 struct sched_domain *sd;
6982 struct sched_group *sg, *prev;
6983 int n, j;
6984
6985 cpumask_clear(d->covered);
6986 cpumask_and(d->nodemask, cpumask_of_node(num), cpu_map);
6987 if (cpumask_empty(d->nodemask)) {
6988 d->sched_group_nodes[num] = NULL;
6989 goto out;
6990 }
6991
6992 sched_domain_node_span(num, d->domainspan);
6993 cpumask_and(d->domainspan, d->domainspan, cpu_map);
6994
6995 sg = kmalloc_node(sizeof(struct sched_group) + cpumask_size(),
6996 GFP_KERNEL, num);
6997 if (!sg) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006998 printk(KERN_WARNING "Can not alloc domain group for node %d\n",
6999 num);
Andreas Herrmann0601a882009-08-18 13:01:11 +02007000 return -ENOMEM;
7001 }
7002 d->sched_group_nodes[num] = sg;
7003
7004 for_each_cpu(j, d->nodemask) {
7005 sd = &per_cpu(node_domains, j).sd;
7006 sd->groups = sg;
7007 }
7008
Peter Zijlstra18a38852009-09-01 10:34:39 +02007009 sg->cpu_power = 0;
Andreas Herrmann0601a882009-08-18 13:01:11 +02007010 cpumask_copy(sched_group_cpus(sg), d->nodemask);
7011 sg->next = sg;
7012 cpumask_or(d->covered, d->covered, d->nodemask);
7013
7014 prev = sg;
7015 for (j = 0; j < nr_node_ids; j++) {
7016 n = (num + j) % nr_node_ids;
7017 cpumask_complement(d->notcovered, d->covered);
7018 cpumask_and(d->tmpmask, d->notcovered, cpu_map);
7019 cpumask_and(d->tmpmask, d->tmpmask, d->domainspan);
7020 if (cpumask_empty(d->tmpmask))
7021 break;
7022 cpumask_and(d->tmpmask, d->tmpmask, cpumask_of_node(n));
7023 if (cpumask_empty(d->tmpmask))
7024 continue;
7025 sg = kmalloc_node(sizeof(struct sched_group) + cpumask_size(),
7026 GFP_KERNEL, num);
7027 if (!sg) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01007028 printk(KERN_WARNING
7029 "Can not alloc domain group for node %d\n", j);
Andreas Herrmann0601a882009-08-18 13:01:11 +02007030 return -ENOMEM;
7031 }
Peter Zijlstra18a38852009-09-01 10:34:39 +02007032 sg->cpu_power = 0;
Andreas Herrmann0601a882009-08-18 13:01:11 +02007033 cpumask_copy(sched_group_cpus(sg), d->tmpmask);
7034 sg->next = prev->next;
7035 cpumask_or(d->covered, d->covered, d->tmpmask);
7036 prev->next = sg;
7037 prev = sg;
7038 }
7039out:
7040 return 0;
7041}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007042#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007043
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007044#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007045/* Free memory allocated for various sched_group structures */
Rusty Russell96f874e22008-11-25 02:35:14 +10307046static void free_sched_groups(const struct cpumask *cpu_map,
7047 struct cpumask *nodemask)
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007048{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007049 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007050
Rusty Russellabcd0832008-11-25 02:35:02 +10307051 for_each_cpu(cpu, cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007052 struct sched_group **sched_group_nodes
7053 = sched_group_nodes_bycpu[cpu];
7054
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007055 if (!sched_group_nodes)
7056 continue;
7057
Mike Travis076ac2a2008-05-12 21:21:12 +02007058 for (i = 0; i < nr_node_ids; i++) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007059 struct sched_group *oldsg, *sg = sched_group_nodes[i];
7060
Mike Travis6ca09df2008-12-31 18:08:45 -08007061 cpumask_and(nodemask, cpumask_of_node(i), cpu_map);
Rusty Russell96f874e22008-11-25 02:35:14 +10307062 if (cpumask_empty(nodemask))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007063 continue;
7064
7065 if (sg == NULL)
7066 continue;
7067 sg = sg->next;
7068next_sg:
7069 oldsg = sg;
7070 sg = sg->next;
7071 kfree(oldsg);
7072 if (oldsg != sched_group_nodes[i])
7073 goto next_sg;
7074 }
7075 kfree(sched_group_nodes);
7076 sched_group_nodes_bycpu[cpu] = NULL;
7077 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007078}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007079#else /* !CONFIG_NUMA */
Rusty Russell96f874e22008-11-25 02:35:14 +10307080static void free_sched_groups(const struct cpumask *cpu_map,
7081 struct cpumask *nodemask)
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07007082{
7083}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007084#endif /* CONFIG_NUMA */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007085
Linus Torvalds1da177e2005-04-16 15:20:36 -07007086/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007087 * Initialize sched groups cpu_power.
7088 *
7089 * cpu_power indicates the capacity of sched group, which is used while
7090 * distributing the load between different sched groups in a sched domain.
7091 * Typically cpu_power for all the groups in a sched domain will be same unless
7092 * there are asymmetries in the topology. If there are asymmetries, group
7093 * having more cpu_power will pickup more load compared to the group having
7094 * less cpu_power.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007095 */
7096static void init_sched_groups_power(int cpu, struct sched_domain *sd)
7097{
7098 struct sched_domain *child;
7099 struct sched_group *group;
Peter Zijlstraf93e65c2009-09-01 10:34:32 +02007100 long power;
7101 int weight;
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007102
7103 WARN_ON(!sd || !sd->groups);
7104
Miao Xie13318a72009-04-15 09:59:10 +08007105 if (cpu != group_first_cpu(sd->groups))
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007106 return;
7107
Suresh Siddhaaae6d3d2010-09-17 15:02:32 -07007108 sd->groups->group_weight = cpumask_weight(sched_group_cpus(sd->groups));
7109
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007110 child = sd->child;
7111
Peter Zijlstra18a38852009-09-01 10:34:39 +02007112 sd->groups->cpu_power = 0;
Eric Dumazet5517d862007-05-08 00:32:57 -07007113
Peter Zijlstraf93e65c2009-09-01 10:34:32 +02007114 if (!child) {
7115 power = SCHED_LOAD_SCALE;
7116 weight = cpumask_weight(sched_domain_span(sd));
7117 /*
7118 * SMT siblings share the power of a single core.
Peter Zijlstraa52bfd732009-09-01 10:34:35 +02007119 * Usually multiple threads get a better yield out of
7120 * that one core than a single thread would have,
7121 * reflect that in sd->smt_gain.
Peter Zijlstraf93e65c2009-09-01 10:34:32 +02007122 */
Peter Zijlstraa52bfd732009-09-01 10:34:35 +02007123 if ((sd->flags & SD_SHARE_CPUPOWER) && weight > 1) {
7124 power *= sd->smt_gain;
Peter Zijlstraf93e65c2009-09-01 10:34:32 +02007125 power /= weight;
Peter Zijlstraa52bfd732009-09-01 10:34:35 +02007126 power >>= SCHED_LOAD_SHIFT;
7127 }
Peter Zijlstra18a38852009-09-01 10:34:39 +02007128 sd->groups->cpu_power += power;
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007129 return;
7130 }
7131
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007132 /*
Peter Zijlstraf93e65c2009-09-01 10:34:32 +02007133 * Add cpu_power of each child group to this groups cpu_power.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007134 */
7135 group = child->groups;
7136 do {
Peter Zijlstra18a38852009-09-01 10:34:39 +02007137 sd->groups->cpu_power += group->cpu_power;
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007138 group = group->next;
7139 } while (group != child->groups);
7140}
7141
7142/*
Mike Travis7c16ec52008-04-04 18:11:11 -07007143 * Initializers for schedule domains
7144 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
7145 */
7146
Ingo Molnara5d8c342008-10-09 11:35:51 +02007147#ifdef CONFIG_SCHED_DEBUG
7148# define SD_INIT_NAME(sd, type) sd->name = #type
7149#else
7150# define SD_INIT_NAME(sd, type) do { } while (0)
7151#endif
7152
Mike Travis7c16ec52008-04-04 18:11:11 -07007153#define SD_INIT(sd, type) sd_init_##type(sd)
Ingo Molnara5d8c342008-10-09 11:35:51 +02007154
Mike Travis7c16ec52008-04-04 18:11:11 -07007155#define SD_INIT_FUNC(type) \
7156static noinline void sd_init_##type(struct sched_domain *sd) \
7157{ \
7158 memset(sd, 0, sizeof(*sd)); \
7159 *sd = SD_##type##_INIT; \
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007160 sd->level = SD_LV_##type; \
Ingo Molnara5d8c342008-10-09 11:35:51 +02007161 SD_INIT_NAME(sd, type); \
Mike Travis7c16ec52008-04-04 18:11:11 -07007162}
7163
7164SD_INIT_FUNC(CPU)
7165#ifdef CONFIG_NUMA
7166 SD_INIT_FUNC(ALLNODES)
7167 SD_INIT_FUNC(NODE)
7168#endif
7169#ifdef CONFIG_SCHED_SMT
7170 SD_INIT_FUNC(SIBLING)
7171#endif
7172#ifdef CONFIG_SCHED_MC
7173 SD_INIT_FUNC(MC)
7174#endif
Heiko Carstens01a08542010-08-31 10:28:16 +02007175#ifdef CONFIG_SCHED_BOOK
7176 SD_INIT_FUNC(BOOK)
7177#endif
Mike Travis7c16ec52008-04-04 18:11:11 -07007178
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007179static int default_relax_domain_level = -1;
7180
7181static int __init setup_relax_domain_level(char *str)
7182{
Li Zefan30e0e172008-05-13 10:27:17 +08007183 unsigned long val;
7184
7185 val = simple_strtoul(str, NULL, 0);
7186 if (val < SD_LV_MAX)
7187 default_relax_domain_level = val;
7188
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007189 return 1;
7190}
7191__setup("relax_domain_level=", setup_relax_domain_level);
7192
7193static void set_domain_attribute(struct sched_domain *sd,
7194 struct sched_domain_attr *attr)
7195{
7196 int request;
7197
7198 if (!attr || attr->relax_domain_level < 0) {
7199 if (default_relax_domain_level < 0)
7200 return;
7201 else
7202 request = default_relax_domain_level;
7203 } else
7204 request = attr->relax_domain_level;
7205 if (request < sd->level) {
7206 /* turn off idle balance on this domain */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02007207 sd->flags &= ~(SD_BALANCE_WAKE|SD_BALANCE_NEWIDLE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007208 } else {
7209 /* turn on idle balance on this domain */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02007210 sd->flags |= (SD_BALANCE_WAKE|SD_BALANCE_NEWIDLE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007211 }
7212}
7213
Andreas Herrmann2109b992009-08-18 12:53:00 +02007214static void __free_domain_allocs(struct s_data *d, enum s_alloc what,
7215 const struct cpumask *cpu_map)
7216{
7217 switch (what) {
7218 case sa_sched_groups:
7219 free_sched_groups(cpu_map, d->tmpmask); /* fall through */
7220 d->sched_group_nodes = NULL;
7221 case sa_rootdomain:
7222 free_rootdomain(d->rd); /* fall through */
7223 case sa_tmpmask:
7224 free_cpumask_var(d->tmpmask); /* fall through */
7225 case sa_send_covered:
7226 free_cpumask_var(d->send_covered); /* fall through */
Heiko Carstens01a08542010-08-31 10:28:16 +02007227 case sa_this_book_map:
7228 free_cpumask_var(d->this_book_map); /* fall through */
Andreas Herrmann2109b992009-08-18 12:53:00 +02007229 case sa_this_core_map:
7230 free_cpumask_var(d->this_core_map); /* fall through */
7231 case sa_this_sibling_map:
7232 free_cpumask_var(d->this_sibling_map); /* fall through */
7233 case sa_nodemask:
7234 free_cpumask_var(d->nodemask); /* fall through */
7235 case sa_sched_group_nodes:
7236#ifdef CONFIG_NUMA
7237 kfree(d->sched_group_nodes); /* fall through */
7238 case sa_notcovered:
7239 free_cpumask_var(d->notcovered); /* fall through */
7240 case sa_covered:
7241 free_cpumask_var(d->covered); /* fall through */
7242 case sa_domainspan:
7243 free_cpumask_var(d->domainspan); /* fall through */
7244#endif
7245 case sa_none:
7246 break;
7247 }
7248}
7249
7250static enum s_alloc __visit_domain_allocation_hell(struct s_data *d,
7251 const struct cpumask *cpu_map)
7252{
7253#ifdef CONFIG_NUMA
7254 if (!alloc_cpumask_var(&d->domainspan, GFP_KERNEL))
7255 return sa_none;
7256 if (!alloc_cpumask_var(&d->covered, GFP_KERNEL))
7257 return sa_domainspan;
7258 if (!alloc_cpumask_var(&d->notcovered, GFP_KERNEL))
7259 return sa_covered;
7260 /* Allocate the per-node list of sched groups */
7261 d->sched_group_nodes = kcalloc(nr_node_ids,
7262 sizeof(struct sched_group *), GFP_KERNEL);
7263 if (!d->sched_group_nodes) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01007264 printk(KERN_WARNING "Can not alloc sched group node list\n");
Andreas Herrmann2109b992009-08-18 12:53:00 +02007265 return sa_notcovered;
7266 }
7267 sched_group_nodes_bycpu[cpumask_first(cpu_map)] = d->sched_group_nodes;
7268#endif
7269 if (!alloc_cpumask_var(&d->nodemask, GFP_KERNEL))
7270 return sa_sched_group_nodes;
7271 if (!alloc_cpumask_var(&d->this_sibling_map, GFP_KERNEL))
7272 return sa_nodemask;
7273 if (!alloc_cpumask_var(&d->this_core_map, GFP_KERNEL))
7274 return sa_this_sibling_map;
Heiko Carstens01a08542010-08-31 10:28:16 +02007275 if (!alloc_cpumask_var(&d->this_book_map, GFP_KERNEL))
Andreas Herrmann2109b992009-08-18 12:53:00 +02007276 return sa_this_core_map;
Heiko Carstens01a08542010-08-31 10:28:16 +02007277 if (!alloc_cpumask_var(&d->send_covered, GFP_KERNEL))
7278 return sa_this_book_map;
Andreas Herrmann2109b992009-08-18 12:53:00 +02007279 if (!alloc_cpumask_var(&d->tmpmask, GFP_KERNEL))
7280 return sa_send_covered;
7281 d->rd = alloc_rootdomain();
7282 if (!d->rd) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01007283 printk(KERN_WARNING "Cannot alloc root domain\n");
Andreas Herrmann2109b992009-08-18 12:53:00 +02007284 return sa_tmpmask;
7285 }
7286 return sa_rootdomain;
7287}
7288
Andreas Herrmann7f4588f2009-08-18 12:54:06 +02007289static struct sched_domain *__build_numa_sched_domains(struct s_data *d,
7290 const struct cpumask *cpu_map, struct sched_domain_attr *attr, int i)
7291{
7292 struct sched_domain *sd = NULL;
7293#ifdef CONFIG_NUMA
7294 struct sched_domain *parent;
7295
7296 d->sd_allnodes = 0;
7297 if (cpumask_weight(cpu_map) >
7298 SD_NODES_PER_DOMAIN * cpumask_weight(d->nodemask)) {
7299 sd = &per_cpu(allnodes_domains, i).sd;
7300 SD_INIT(sd, ALLNODES);
7301 set_domain_attribute(sd, attr);
7302 cpumask_copy(sched_domain_span(sd), cpu_map);
7303 cpu_to_allnodes_group(i, cpu_map, &sd->groups, d->tmpmask);
7304 d->sd_allnodes = 1;
7305 }
7306 parent = sd;
7307
7308 sd = &per_cpu(node_domains, i).sd;
7309 SD_INIT(sd, NODE);
7310 set_domain_attribute(sd, attr);
7311 sched_domain_node_span(cpu_to_node(i), sched_domain_span(sd));
7312 sd->parent = parent;
7313 if (parent)
7314 parent->child = sd;
7315 cpumask_and(sched_domain_span(sd), sched_domain_span(sd), cpu_map);
7316#endif
7317 return sd;
7318}
7319
Andreas Herrmann87cce662009-08-18 12:54:55 +02007320static struct sched_domain *__build_cpu_sched_domain(struct s_data *d,
7321 const struct cpumask *cpu_map, struct sched_domain_attr *attr,
7322 struct sched_domain *parent, int i)
7323{
7324 struct sched_domain *sd;
7325 sd = &per_cpu(phys_domains, i).sd;
7326 SD_INIT(sd, CPU);
7327 set_domain_attribute(sd, attr);
7328 cpumask_copy(sched_domain_span(sd), d->nodemask);
7329 sd->parent = parent;
7330 if (parent)
7331 parent->child = sd;
7332 cpu_to_phys_group(i, cpu_map, &sd->groups, d->tmpmask);
7333 return sd;
7334}
7335
Heiko Carstens01a08542010-08-31 10:28:16 +02007336static struct sched_domain *__build_book_sched_domain(struct s_data *d,
7337 const struct cpumask *cpu_map, struct sched_domain_attr *attr,
7338 struct sched_domain *parent, int i)
7339{
7340 struct sched_domain *sd = parent;
7341#ifdef CONFIG_SCHED_BOOK
7342 sd = &per_cpu(book_domains, i).sd;
7343 SD_INIT(sd, BOOK);
7344 set_domain_attribute(sd, attr);
7345 cpumask_and(sched_domain_span(sd), cpu_map, cpu_book_mask(i));
7346 sd->parent = parent;
7347 parent->child = sd;
7348 cpu_to_book_group(i, cpu_map, &sd->groups, d->tmpmask);
7349#endif
7350 return sd;
7351}
7352
Andreas Herrmann410c4082009-08-18 12:56:14 +02007353static struct sched_domain *__build_mc_sched_domain(struct s_data *d,
7354 const struct cpumask *cpu_map, struct sched_domain_attr *attr,
7355 struct sched_domain *parent, int i)
7356{
7357 struct sched_domain *sd = parent;
7358#ifdef CONFIG_SCHED_MC
7359 sd = &per_cpu(core_domains, i).sd;
7360 SD_INIT(sd, MC);
7361 set_domain_attribute(sd, attr);
7362 cpumask_and(sched_domain_span(sd), cpu_map, cpu_coregroup_mask(i));
7363 sd->parent = parent;
7364 parent->child = sd;
7365 cpu_to_core_group(i, cpu_map, &sd->groups, d->tmpmask);
7366#endif
7367 return sd;
7368}
7369
Andreas Herrmannd8173532009-08-18 12:57:03 +02007370static struct sched_domain *__build_smt_sched_domain(struct s_data *d,
7371 const struct cpumask *cpu_map, struct sched_domain_attr *attr,
7372 struct sched_domain *parent, int i)
7373{
7374 struct sched_domain *sd = parent;
7375#ifdef CONFIG_SCHED_SMT
7376 sd = &per_cpu(cpu_domains, i).sd;
7377 SD_INIT(sd, SIBLING);
7378 set_domain_attribute(sd, attr);
7379 cpumask_and(sched_domain_span(sd), cpu_map, topology_thread_cpumask(i));
7380 sd->parent = parent;
7381 parent->child = sd;
7382 cpu_to_cpu_group(i, cpu_map, &sd->groups, d->tmpmask);
7383#endif
7384 return sd;
7385}
7386
Andreas Herrmann0e8e85c2009-08-18 12:57:51 +02007387static void build_sched_groups(struct s_data *d, enum sched_domain_level l,
7388 const struct cpumask *cpu_map, int cpu)
7389{
7390 switch (l) {
7391#ifdef CONFIG_SCHED_SMT
7392 case SD_LV_SIBLING: /* set up CPU (sibling) groups */
7393 cpumask_and(d->this_sibling_map, cpu_map,
7394 topology_thread_cpumask(cpu));
7395 if (cpu == cpumask_first(d->this_sibling_map))
7396 init_sched_build_groups(d->this_sibling_map, cpu_map,
7397 &cpu_to_cpu_group,
7398 d->send_covered, d->tmpmask);
7399 break;
7400#endif
Andreas Herrmanna2af04c2009-08-18 12:58:38 +02007401#ifdef CONFIG_SCHED_MC
7402 case SD_LV_MC: /* set up multi-core groups */
7403 cpumask_and(d->this_core_map, cpu_map, cpu_coregroup_mask(cpu));
7404 if (cpu == cpumask_first(d->this_core_map))
7405 init_sched_build_groups(d->this_core_map, cpu_map,
7406 &cpu_to_core_group,
7407 d->send_covered, d->tmpmask);
7408 break;
7409#endif
Heiko Carstens01a08542010-08-31 10:28:16 +02007410#ifdef CONFIG_SCHED_BOOK
7411 case SD_LV_BOOK: /* set up book groups */
7412 cpumask_and(d->this_book_map, cpu_map, cpu_book_mask(cpu));
7413 if (cpu == cpumask_first(d->this_book_map))
7414 init_sched_build_groups(d->this_book_map, cpu_map,
7415 &cpu_to_book_group,
7416 d->send_covered, d->tmpmask);
7417 break;
7418#endif
Andreas Herrmann86548092009-08-18 12:59:28 +02007419 case SD_LV_CPU: /* set up physical groups */
7420 cpumask_and(d->nodemask, cpumask_of_node(cpu), cpu_map);
7421 if (!cpumask_empty(d->nodemask))
7422 init_sched_build_groups(d->nodemask, cpu_map,
7423 &cpu_to_phys_group,
7424 d->send_covered, d->tmpmask);
7425 break;
Andreas Herrmannde616e32009-08-18 13:00:13 +02007426#ifdef CONFIG_NUMA
7427 case SD_LV_ALLNODES:
7428 init_sched_build_groups(cpu_map, cpu_map, &cpu_to_allnodes_group,
7429 d->send_covered, d->tmpmask);
7430 break;
7431#endif
Andreas Herrmann0e8e85c2009-08-18 12:57:51 +02007432 default:
7433 break;
7434 }
7435}
7436
Mike Travis7c16ec52008-04-04 18:11:11 -07007437/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007438 * Build sched domains for a given set of cpus and attach the sched domains
7439 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07007440 */
Rusty Russell96f874e22008-11-25 02:35:14 +10307441static int __build_sched_domains(const struct cpumask *cpu_map,
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007442 struct sched_domain_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007443{
Andreas Herrmann2109b992009-08-18 12:53:00 +02007444 enum s_alloc alloc_state = sa_none;
Andreas Herrmann49a02c52009-08-18 12:51:52 +02007445 struct s_data d;
Andreas Herrmann294b0c92009-08-18 13:02:29 +02007446 struct sched_domain *sd;
Andreas Herrmann2109b992009-08-18 12:53:00 +02007447 int i;
John Hawkesd1b55132005-09-06 15:18:14 -07007448#ifdef CONFIG_NUMA
Andreas Herrmann49a02c52009-08-18 12:51:52 +02007449 d.sd_allnodes = 0;
Rusty Russell3404c8d2008-11-25 02:35:03 +10307450#endif
7451
Andreas Herrmann2109b992009-08-18 12:53:00 +02007452 alloc_state = __visit_domain_allocation_hell(&d, cpu_map);
7453 if (alloc_state != sa_rootdomain)
7454 goto error;
7455 alloc_state = sa_sched_groups;
Mike Travis7c16ec52008-04-04 18:11:11 -07007456
Linus Torvalds1da177e2005-04-16 15:20:36 -07007457 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007458 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007459 */
Rusty Russellabcd0832008-11-25 02:35:02 +10307460 for_each_cpu(i, cpu_map) {
Andreas Herrmann49a02c52009-08-18 12:51:52 +02007461 cpumask_and(d.nodemask, cpumask_of_node(cpu_to_node(i)),
7462 cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007463
Andreas Herrmann7f4588f2009-08-18 12:54:06 +02007464 sd = __build_numa_sched_domains(&d, cpu_map, attr, i);
Andreas Herrmann87cce662009-08-18 12:54:55 +02007465 sd = __build_cpu_sched_domain(&d, cpu_map, attr, sd, i);
Heiko Carstens01a08542010-08-31 10:28:16 +02007466 sd = __build_book_sched_domain(&d, cpu_map, attr, sd, i);
Andreas Herrmann410c4082009-08-18 12:56:14 +02007467 sd = __build_mc_sched_domain(&d, cpu_map, attr, sd, i);
Andreas Herrmannd8173532009-08-18 12:57:03 +02007468 sd = __build_smt_sched_domain(&d, cpu_map, attr, sd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007469 }
7470
Rusty Russellabcd0832008-11-25 02:35:02 +10307471 for_each_cpu(i, cpu_map) {
Andreas Herrmann0e8e85c2009-08-18 12:57:51 +02007472 build_sched_groups(&d, SD_LV_SIBLING, cpu_map, i);
Heiko Carstens01a08542010-08-31 10:28:16 +02007473 build_sched_groups(&d, SD_LV_BOOK, cpu_map, i);
Andreas Herrmanna2af04c2009-08-18 12:58:38 +02007474 build_sched_groups(&d, SD_LV_MC, cpu_map, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007475 }
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007476
Linus Torvalds1da177e2005-04-16 15:20:36 -07007477 /* Set up physical groups */
Andreas Herrmann86548092009-08-18 12:59:28 +02007478 for (i = 0; i < nr_node_ids; i++)
7479 build_sched_groups(&d, SD_LV_CPU, cpu_map, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007480
7481#ifdef CONFIG_NUMA
7482 /* Set up node groups */
Andreas Herrmannde616e32009-08-18 13:00:13 +02007483 if (d.sd_allnodes)
7484 build_sched_groups(&d, SD_LV_ALLNODES, cpu_map, 0);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007485
Andreas Herrmann0601a882009-08-18 13:01:11 +02007486 for (i = 0; i < nr_node_ids; i++)
7487 if (build_numa_sched_groups(&d, cpu_map, i))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007488 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007489#endif
7490
7491 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007492#ifdef CONFIG_SCHED_SMT
Rusty Russellabcd0832008-11-25 02:35:02 +10307493 for_each_cpu(i, cpu_map) {
Andreas Herrmann294b0c92009-08-18 13:02:29 +02007494 sd = &per_cpu(cpu_domains, i).sd;
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007495 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007496 }
7497#endif
7498#ifdef CONFIG_SCHED_MC
Rusty Russellabcd0832008-11-25 02:35:02 +10307499 for_each_cpu(i, cpu_map) {
Andreas Herrmann294b0c92009-08-18 13:02:29 +02007500 sd = &per_cpu(core_domains, i).sd;
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007501 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007502 }
7503#endif
Heiko Carstens01a08542010-08-31 10:28:16 +02007504#ifdef CONFIG_SCHED_BOOK
7505 for_each_cpu(i, cpu_map) {
7506 sd = &per_cpu(book_domains, i).sd;
7507 init_sched_groups_power(i, sd);
7508 }
7509#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07007510
Rusty Russellabcd0832008-11-25 02:35:02 +10307511 for_each_cpu(i, cpu_map) {
Andreas Herrmann294b0c92009-08-18 13:02:29 +02007512 sd = &per_cpu(phys_domains, i).sd;
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007513 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007514 }
7515
John Hawkes9c1cfda2005-09-06 15:18:14 -07007516#ifdef CONFIG_NUMA
Mike Travis076ac2a2008-05-12 21:21:12 +02007517 for (i = 0; i < nr_node_ids; i++)
Andreas Herrmann49a02c52009-08-18 12:51:52 +02007518 init_numa_sched_groups_power(d.sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007519
Andreas Herrmann49a02c52009-08-18 12:51:52 +02007520 if (d.sd_allnodes) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08007521 struct sched_group *sg;
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07007522
Rusty Russell96f874e22008-11-25 02:35:14 +10307523 cpu_to_allnodes_group(cpumask_first(cpu_map), cpu_map, &sg,
Andreas Herrmann49a02c52009-08-18 12:51:52 +02007524 d.tmpmask);
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07007525 init_numa_sched_groups_power(sg);
7526 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007527#endif
7528
Linus Torvalds1da177e2005-04-16 15:20:36 -07007529 /* Attach the domains */
Rusty Russellabcd0832008-11-25 02:35:02 +10307530 for_each_cpu(i, cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007531#ifdef CONFIG_SCHED_SMT
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307532 sd = &per_cpu(cpu_domains, i).sd;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007533#elif defined(CONFIG_SCHED_MC)
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307534 sd = &per_cpu(core_domains, i).sd;
Heiko Carstens01a08542010-08-31 10:28:16 +02007535#elif defined(CONFIG_SCHED_BOOK)
7536 sd = &per_cpu(book_domains, i).sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007537#else
Rusty Russell6c99e9a2008-11-25 02:35:04 +10307538 sd = &per_cpu(phys_domains, i).sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007539#endif
Andreas Herrmann49a02c52009-08-18 12:51:52 +02007540 cpu_attach_domain(sd, d.rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007541 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007542
Andreas Herrmann2109b992009-08-18 12:53:00 +02007543 d.sched_group_nodes = NULL; /* don't free this we still need it */
7544 __free_domain_allocs(&d, sa_tmpmask, cpu_map);
7545 return 0;
Rusty Russell3404c8d2008-11-25 02:35:03 +10307546
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007547error:
Andreas Herrmann2109b992009-08-18 12:53:00 +02007548 __free_domain_allocs(&d, alloc_state, cpu_map);
7549 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007550}
Paul Jackson029190c2007-10-18 23:40:20 -07007551
Rusty Russell96f874e22008-11-25 02:35:14 +10307552static int build_sched_domains(const struct cpumask *cpu_map)
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007553{
7554 return __build_sched_domains(cpu_map, NULL);
7555}
7556
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307557static cpumask_var_t *doms_cur; /* current sched domains */
Paul Jackson029190c2007-10-18 23:40:20 -07007558static int ndoms_cur; /* number of sched domains in 'doms_cur' */
Ingo Molnar4285f5942008-05-16 17:47:14 +02007559static struct sched_domain_attr *dattr_cur;
7560 /* attribues of custom domains in 'doms_cur' */
Paul Jackson029190c2007-10-18 23:40:20 -07007561
7562/*
7563 * Special case: If a kmalloc of a doms_cur partition (array of
Rusty Russell42128232008-11-25 02:35:12 +10307564 * cpumask) fails, then fallback to a single sched domain,
7565 * as determined by the single cpumask fallback_doms.
Paul Jackson029190c2007-10-18 23:40:20 -07007566 */
Rusty Russell42128232008-11-25 02:35:12 +10307567static cpumask_var_t fallback_doms;
Paul Jackson029190c2007-10-18 23:40:20 -07007568
Heiko Carstensee79d1b2008-12-09 18:49:50 +01007569/*
7570 * arch_update_cpu_topology lets virtualized architectures update the
7571 * cpu core maps. It is supposed to return 1 if the topology changed
7572 * or 0 if it stayed the same.
7573 */
7574int __attribute__((weak)) arch_update_cpu_topology(void)
Heiko Carstens22e52b02008-03-12 18:31:59 +01007575{
Heiko Carstensee79d1b2008-12-09 18:49:50 +01007576 return 0;
Heiko Carstens22e52b02008-03-12 18:31:59 +01007577}
7578
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307579cpumask_var_t *alloc_sched_domains(unsigned int ndoms)
7580{
7581 int i;
7582 cpumask_var_t *doms;
7583
7584 doms = kmalloc(sizeof(*doms) * ndoms, GFP_KERNEL);
7585 if (!doms)
7586 return NULL;
7587 for (i = 0; i < ndoms; i++) {
7588 if (!alloc_cpumask_var(&doms[i], GFP_KERNEL)) {
7589 free_sched_domains(doms, i);
7590 return NULL;
7591 }
7592 }
7593 return doms;
7594}
7595
7596void free_sched_domains(cpumask_var_t doms[], unsigned int ndoms)
7597{
7598 unsigned int i;
7599 for (i = 0; i < ndoms; i++)
7600 free_cpumask_var(doms[i]);
7601 kfree(doms);
7602}
7603
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007604/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007605 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07007606 * For now this just excludes isolated cpus, but could be used to
7607 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007608 */
Rusty Russell96f874e22008-11-25 02:35:14 +10307609static int arch_init_sched_domains(const struct cpumask *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007610{
Milton Miller73785472007-10-24 18:23:48 +02007611 int err;
7612
Heiko Carstens22e52b02008-03-12 18:31:59 +01007613 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07007614 ndoms_cur = 1;
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307615 doms_cur = alloc_sched_domains(ndoms_cur);
Paul Jackson029190c2007-10-18 23:40:20 -07007616 if (!doms_cur)
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307617 doms_cur = &fallback_doms;
7618 cpumask_andnot(doms_cur[0], cpu_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007619 dattr_cur = NULL;
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307620 err = build_sched_domains(doms_cur[0]);
Milton Miller6382bc92007-10-15 17:00:19 +02007621 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02007622
7623 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007624}
7625
Rusty Russell96f874e22008-11-25 02:35:14 +10307626static void arch_destroy_sched_domains(const struct cpumask *cpu_map,
7627 struct cpumask *tmpmask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007628{
Mike Travis7c16ec52008-04-04 18:11:11 -07007629 free_sched_groups(cpu_map, tmpmask);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007630}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007631
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007632/*
7633 * Detach sched domains from a group of cpus specified in cpu_map
7634 * These cpus will now be attached to the NULL domain
7635 */
Rusty Russell96f874e22008-11-25 02:35:14 +10307636static void detach_destroy_domains(const struct cpumask *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007637{
Rusty Russell96f874e22008-11-25 02:35:14 +10307638 /* Save because hotplug lock held. */
7639 static DECLARE_BITMAP(tmpmask, CONFIG_NR_CPUS);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007640 int i;
7641
Rusty Russellabcd0832008-11-25 02:35:02 +10307642 for_each_cpu(i, cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01007643 cpu_attach_domain(NULL, &def_root_domain, i);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007644 synchronize_sched();
Rusty Russell96f874e22008-11-25 02:35:14 +10307645 arch_destroy_sched_domains(cpu_map, to_cpumask(tmpmask));
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007646}
7647
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007648/* handle null as "default" */
7649static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
7650 struct sched_domain_attr *new, int idx_new)
7651{
7652 struct sched_domain_attr tmp;
7653
7654 /* fast path */
7655 if (!new && !cur)
7656 return 1;
7657
7658 tmp = SD_ATTR_INIT;
7659 return !memcmp(cur ? (cur + idx_cur) : &tmp,
7660 new ? (new + idx_new) : &tmp,
7661 sizeof(struct sched_domain_attr));
7662}
7663
Paul Jackson029190c2007-10-18 23:40:20 -07007664/*
7665 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007666 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07007667 * doms_new[] to the current sched domain partitioning, doms_cur[].
7668 * It destroys each deleted domain and builds each new domain.
7669 *
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307670 * 'doms_new' is an array of cpumask_var_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007671 * The masks don't intersect (don't overlap.) We should setup one
7672 * sched domain for each mask. CPUs not in any of the cpumasks will
7673 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07007674 * current 'doms_cur' domains and in the new 'doms_new', we can leave
7675 * it as it is.
7676 *
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307677 * The passed in 'doms_new' should be allocated using
7678 * alloc_sched_domains. This routine takes ownership of it and will
7679 * free_sched_domains it when done with it. If the caller failed the
7680 * alloc call, then it can pass in doms_new == NULL && ndoms_new == 1,
7681 * and partition_sched_domains() will fallback to the single partition
7682 * 'fallback_doms', it also forces the domains to be rebuilt.
Paul Jackson029190c2007-10-18 23:40:20 -07007683 *
Rusty Russell96f874e22008-11-25 02:35:14 +10307684 * If doms_new == NULL it will be replaced with cpu_online_mask.
Li Zefan700018e2008-11-18 14:02:03 +08007685 * ndoms_new == 0 is a special case for destroying existing domains,
7686 * and it will not create the default domain.
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007687 *
Paul Jackson029190c2007-10-18 23:40:20 -07007688 * Call with hotplug lock held
7689 */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307690void partition_sched_domains(int ndoms_new, cpumask_var_t doms_new[],
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007691 struct sched_domain_attr *dattr_new)
Paul Jackson029190c2007-10-18 23:40:20 -07007692{
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007693 int i, j, n;
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01007694 int new_topology;
Paul Jackson029190c2007-10-18 23:40:20 -07007695
Heiko Carstens712555e2008-04-28 11:33:07 +02007696 mutex_lock(&sched_domains_mutex);
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007697
Milton Miller73785472007-10-24 18:23:48 +02007698 /* always unregister in case we don't destroy any domains */
7699 unregister_sched_domain_sysctl();
7700
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01007701 /* Let architecture update cpu core mappings. */
7702 new_topology = arch_update_cpu_topology();
7703
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007704 n = doms_new ? ndoms_new : 0;
Paul Jackson029190c2007-10-18 23:40:20 -07007705
7706 /* Destroy deleted domains */
7707 for (i = 0; i < ndoms_cur; i++) {
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01007708 for (j = 0; j < n && !new_topology; j++) {
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307709 if (cpumask_equal(doms_cur[i], doms_new[j])
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007710 && dattrs_equal(dattr_cur, i, dattr_new, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007711 goto match1;
7712 }
7713 /* no match - a current sched domain not in new doms_new[] */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307714 detach_destroy_domains(doms_cur[i]);
Paul Jackson029190c2007-10-18 23:40:20 -07007715match1:
7716 ;
7717 }
7718
Max Krasnyanskye761b772008-07-15 04:43:49 -07007719 if (doms_new == NULL) {
7720 ndoms_cur = 0;
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307721 doms_new = &fallback_doms;
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01007722 cpumask_andnot(doms_new[0], cpu_active_mask, cpu_isolated_map);
Li Zefanfaa2f982008-11-04 16:20:23 +08007723 WARN_ON_ONCE(dattr_new);
Max Krasnyanskye761b772008-07-15 04:43:49 -07007724 }
7725
Paul Jackson029190c2007-10-18 23:40:20 -07007726 /* Build new domains */
7727 for (i = 0; i < ndoms_new; i++) {
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01007728 for (j = 0; j < ndoms_cur && !new_topology; j++) {
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307729 if (cpumask_equal(doms_new[i], doms_cur[j])
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007730 && dattrs_equal(dattr_new, i, dattr_cur, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007731 goto match2;
7732 }
7733 /* no match - add a new doms_new */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307734 __build_sched_domains(doms_new[i],
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007735 dattr_new ? dattr_new + i : NULL);
Paul Jackson029190c2007-10-18 23:40:20 -07007736match2:
7737 ;
7738 }
7739
7740 /* Remember the new sched domains */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307741 if (doms_cur != &fallback_doms)
7742 free_sched_domains(doms_cur, ndoms_cur);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007743 kfree(dattr_cur); /* kfree(NULL) is safe */
Paul Jackson029190c2007-10-18 23:40:20 -07007744 doms_cur = doms_new;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007745 dattr_cur = dattr_new;
Paul Jackson029190c2007-10-18 23:40:20 -07007746 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02007747
7748 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007749
Heiko Carstens712555e2008-04-28 11:33:07 +02007750 mutex_unlock(&sched_domains_mutex);
Paul Jackson029190c2007-10-18 23:40:20 -07007751}
7752
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007753#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Li Zefanc70f22d2009-01-05 19:07:50 +08007754static void arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007755{
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007756 get_online_cpus();
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007757
7758 /* Destroy domains first to force the rebuild */
7759 partition_sched_domains(0, NULL, NULL);
7760
Max Krasnyanskye761b772008-07-15 04:43:49 -07007761 rebuild_sched_domains();
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007762 put_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007763}
7764
7765static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
7766{
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05307767 unsigned int level = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007768
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05307769 if (sscanf(buf, "%u", &level) != 1)
7770 return -EINVAL;
7771
7772 /*
7773 * level is always be positive so don't check for
7774 * level < POWERSAVINGS_BALANCE_NONE which is 0
7775 * What happens on 0 or 1 byte write,
7776 * need to check for count as well?
7777 */
7778
7779 if (level >= MAX_POWERSAVINGS_BALANCE_LEVELS)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007780 return -EINVAL;
7781
7782 if (smt)
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05307783 sched_smt_power_savings = level;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007784 else
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05307785 sched_mc_power_savings = level;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007786
Li Zefanc70f22d2009-01-05 19:07:50 +08007787 arch_reinit_sched_domains();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007788
Li Zefanc70f22d2009-01-05 19:07:50 +08007789 return count;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007790}
7791
Adrian Bunk6707de002007-08-12 18:08:19 +02007792#ifdef CONFIG_SCHED_MC
Andi Kleenf718cd42008-07-29 22:33:52 -07007793static ssize_t sched_mc_power_savings_show(struct sysdev_class *class,
Andi Kleenc9be0a32010-01-05 12:47:58 +01007794 struct sysdev_class_attribute *attr,
Andi Kleenf718cd42008-07-29 22:33:52 -07007795 char *page)
Adrian Bunk6707de002007-08-12 18:08:19 +02007796{
7797 return sprintf(page, "%u\n", sched_mc_power_savings);
7798}
Andi Kleenf718cd42008-07-29 22:33:52 -07007799static ssize_t sched_mc_power_savings_store(struct sysdev_class *class,
Andi Kleenc9be0a32010-01-05 12:47:58 +01007800 struct sysdev_class_attribute *attr,
Adrian Bunk6707de002007-08-12 18:08:19 +02007801 const char *buf, size_t count)
7802{
7803 return sched_power_savings_store(buf, count, 0);
7804}
Andi Kleenf718cd42008-07-29 22:33:52 -07007805static SYSDEV_CLASS_ATTR(sched_mc_power_savings, 0644,
7806 sched_mc_power_savings_show,
7807 sched_mc_power_savings_store);
Adrian Bunk6707de002007-08-12 18:08:19 +02007808#endif
7809
7810#ifdef CONFIG_SCHED_SMT
Andi Kleenf718cd42008-07-29 22:33:52 -07007811static ssize_t sched_smt_power_savings_show(struct sysdev_class *dev,
Andi Kleenc9be0a32010-01-05 12:47:58 +01007812 struct sysdev_class_attribute *attr,
Andi Kleenf718cd42008-07-29 22:33:52 -07007813 char *page)
Adrian Bunk6707de002007-08-12 18:08:19 +02007814{
7815 return sprintf(page, "%u\n", sched_smt_power_savings);
7816}
Andi Kleenf718cd42008-07-29 22:33:52 -07007817static ssize_t sched_smt_power_savings_store(struct sysdev_class *dev,
Andi Kleenc9be0a32010-01-05 12:47:58 +01007818 struct sysdev_class_attribute *attr,
Adrian Bunk6707de002007-08-12 18:08:19 +02007819 const char *buf, size_t count)
7820{
7821 return sched_power_savings_store(buf, count, 1);
7822}
Andi Kleenf718cd42008-07-29 22:33:52 -07007823static SYSDEV_CLASS_ATTR(sched_smt_power_savings, 0644,
7824 sched_smt_power_savings_show,
Adrian Bunk6707de002007-08-12 18:08:19 +02007825 sched_smt_power_savings_store);
7826#endif
7827
Li Zefan39aac642009-01-05 19:18:02 +08007828int __init sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007829{
7830 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007831
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007832#ifdef CONFIG_SCHED_SMT
7833 if (smt_capable())
7834 err = sysfs_create_file(&cls->kset.kobj,
7835 &attr_sched_smt_power_savings.attr);
7836#endif
7837#ifdef CONFIG_SCHED_MC
7838 if (!err && mc_capable())
7839 err = sysfs_create_file(&cls->kset.kobj,
7840 &attr_sched_mc_power_savings.attr);
7841#endif
7842 return err;
7843}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007844#endif /* CONFIG_SCHED_MC || CONFIG_SCHED_SMT */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007845
Linus Torvalds1da177e2005-04-16 15:20:36 -07007846/*
Tejun Heo3a101d02010-06-08 21:40:36 +02007847 * Update cpusets according to cpu_active mask. If cpusets are
7848 * disabled, cpuset_update_active_cpus() becomes a simple wrapper
7849 * around partition_sched_domains().
Linus Torvalds1da177e2005-04-16 15:20:36 -07007850 */
Tejun Heo0b2e9182010-06-21 23:53:31 +02007851static int cpuset_cpu_active(struct notifier_block *nfb, unsigned long action,
7852 void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007853{
Tejun Heo3a101d02010-06-08 21:40:36 +02007854 switch (action & ~CPU_TASKS_FROZEN) {
Max Krasnyanskye761b772008-07-15 04:43:49 -07007855 case CPU_ONLINE:
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01007856 case CPU_DOWN_FAILED:
Tejun Heo3a101d02010-06-08 21:40:36 +02007857 cpuset_update_active_cpus();
Max Krasnyanskye761b772008-07-15 04:43:49 -07007858 return NOTIFY_OK;
Max Krasnyanskye761b772008-07-15 04:43:49 -07007859 default:
7860 return NOTIFY_DONE;
7861 }
7862}
Tejun Heo3a101d02010-06-08 21:40:36 +02007863
Tejun Heo0b2e9182010-06-21 23:53:31 +02007864static int cpuset_cpu_inactive(struct notifier_block *nfb, unsigned long action,
7865 void *hcpu)
Tejun Heo3a101d02010-06-08 21:40:36 +02007866{
7867 switch (action & ~CPU_TASKS_FROZEN) {
7868 case CPU_DOWN_PREPARE:
7869 cpuset_update_active_cpus();
7870 return NOTIFY_OK;
7871 default:
7872 return NOTIFY_DONE;
7873 }
7874}
Max Krasnyanskye761b772008-07-15 04:43:49 -07007875
7876static int update_runtime(struct notifier_block *nfb,
7877 unsigned long action, void *hcpu)
7878{
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007879 int cpu = (int)(long)hcpu;
7880
Linus Torvalds1da177e2005-04-16 15:20:36 -07007881 switch (action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007882 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007883 case CPU_DOWN_PREPARE_FROZEN:
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007884 disable_runtime(cpu_rq(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007885 return NOTIFY_OK;
7886
Linus Torvalds1da177e2005-04-16 15:20:36 -07007887 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007888 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007889 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007890 case CPU_ONLINE_FROZEN:
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007891 enable_runtime(cpu_rq(cpu));
Max Krasnyanskye761b772008-07-15 04:43:49 -07007892 return NOTIFY_OK;
7893
Linus Torvalds1da177e2005-04-16 15:20:36 -07007894 default:
7895 return NOTIFY_DONE;
7896 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007897}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007898
7899void __init sched_init_smp(void)
7900{
Rusty Russelldcc30a32008-11-25 02:35:12 +10307901 cpumask_var_t non_isolated_cpus;
7902
7903 alloc_cpumask_var(&non_isolated_cpus, GFP_KERNEL);
Yong Zhangcb5fd132009-09-14 20:20:16 +08007904 alloc_cpumask_var(&fallback_doms, GFP_KERNEL);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007905
Mike Travis434d53b2008-04-04 18:11:04 -07007906#if defined(CONFIG_NUMA)
7907 sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **),
7908 GFP_KERNEL);
7909 BUG_ON(sched_group_nodes_bycpu == NULL);
7910#endif
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007911 get_online_cpus();
Heiko Carstens712555e2008-04-28 11:33:07 +02007912 mutex_lock(&sched_domains_mutex);
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01007913 arch_init_sched_domains(cpu_active_mask);
Rusty Russelldcc30a32008-11-25 02:35:12 +10307914 cpumask_andnot(non_isolated_cpus, cpu_possible_mask, cpu_isolated_map);
7915 if (cpumask_empty(non_isolated_cpus))
7916 cpumask_set_cpu(smp_processor_id(), non_isolated_cpus);
Heiko Carstens712555e2008-04-28 11:33:07 +02007917 mutex_unlock(&sched_domains_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007918 put_online_cpus();
Max Krasnyanskye761b772008-07-15 04:43:49 -07007919
Tejun Heo3a101d02010-06-08 21:40:36 +02007920 hotcpu_notifier(cpuset_cpu_active, CPU_PRI_CPUSET_ACTIVE);
7921 hotcpu_notifier(cpuset_cpu_inactive, CPU_PRI_CPUSET_INACTIVE);
Max Krasnyanskye761b772008-07-15 04:43:49 -07007922
7923 /* RT runtime code needs to handle some hotplug events */
7924 hotcpu_notifier(update_runtime, 0);
7925
Peter Zijlstrab328ca12008-04-29 10:02:46 +02007926 init_hrtick();
Nick Piggin5c1e1762006-10-03 01:14:04 -07007927
7928 /* Move init over to a non-isolated CPU */
Rusty Russelldcc30a32008-11-25 02:35:12 +10307929 if (set_cpus_allowed_ptr(current, non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07007930 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01007931 sched_init_granularity();
Rusty Russelldcc30a32008-11-25 02:35:12 +10307932 free_cpumask_var(non_isolated_cpus);
Rusty Russell42128232008-11-25 02:35:12 +10307933
Rusty Russell0e3900e2008-11-25 02:35:13 +10307934 init_sched_rt_class();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007935}
7936#else
7937void __init sched_init_smp(void)
7938{
Ingo Molnar19978ca2007-11-09 22:39:38 +01007939 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007940}
7941#endif /* CONFIG_SMP */
7942
Arun R Bharadwajcd1bb942009-04-16 12:15:34 +05307943const_debug unsigned int sysctl_timer_migration = 1;
7944
Linus Torvalds1da177e2005-04-16 15:20:36 -07007945int in_sched_functions(unsigned long addr)
7946{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007947 return in_lock_functions(addr) ||
7948 (addr >= (unsigned long)__sched_text_start
7949 && addr < (unsigned long)__sched_text_end);
7950}
7951
Alexey Dobriyana9957442007-10-15 17:00:13 +02007952static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02007953{
7954 cfs_rq->tasks_timeline = RB_ROOT;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02007955 INIT_LIST_HEAD(&cfs_rq->tasks);
Ingo Molnardd41f592007-07-09 18:51:59 +02007956#ifdef CONFIG_FAIR_GROUP_SCHED
7957 cfs_rq->rq = rq;
7958#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02007959 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02007960}
7961
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007962static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
7963{
7964 struct rt_prio_array *array;
7965 int i;
7966
7967 array = &rt_rq->active;
7968 for (i = 0; i < MAX_RT_PRIO; i++) {
7969 INIT_LIST_HEAD(array->queue + i);
7970 __clear_bit(i, array->bitmap);
7971 }
7972 /* delimiter for bitsearch: */
7973 __set_bit(MAX_RT_PRIO, array->bitmap);
7974
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007975#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Gregory Haskinse864c492008-12-29 09:39:49 -05007976 rt_rq->highest_prio.curr = MAX_RT_PRIO;
Gregory Haskins398a1532009-01-14 09:10:04 -05007977#ifdef CONFIG_SMP
Gregory Haskinse864c492008-12-29 09:39:49 -05007978 rt_rq->highest_prio.next = MAX_RT_PRIO;
Peter Zijlstra48d5e252008-01-25 21:08:31 +01007979#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007980#endif
7981#ifdef CONFIG_SMP
7982 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007983 rt_rq->overloaded = 0;
Thomas Gleixner05fa7852009-11-17 14:28:38 +01007984 plist_head_init_raw(&rt_rq->pushable_tasks, &rq->lock);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007985#endif
7986
7987 rt_rq->rt_time = 0;
7988 rt_rq->rt_throttled = 0;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02007989 rt_rq->rt_runtime = 0;
Thomas Gleixner0986b112009-11-17 15:32:06 +01007990 raw_spin_lock_init(&rt_rq->rt_runtime_lock);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007991
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01007992#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +01007993 rt_rq->rt_nr_boosted = 0;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007994 rt_rq->rq = rq;
7995#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007996}
7997
Peter Zijlstra6f505b12008-01-25 21:08:30 +01007998#ifdef CONFIG_FAIR_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02007999static void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq,
8000 struct sched_entity *se, int cpu, int add,
8001 struct sched_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008002{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008003 struct rq *rq = cpu_rq(cpu);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008004 tg->cfs_rq[cpu] = cfs_rq;
8005 init_cfs_rq(cfs_rq, rq);
8006 cfs_rq->tg = tg;
8007 if (add)
8008 list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
8009
8010 tg->se[cpu] = se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02008011 /* se could be NULL for init_task_group */
8012 if (!se)
8013 return;
8014
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008015 if (!parent)
8016 se->cfs_rq = &rq->cfs;
8017 else
8018 se->cfs_rq = parent->my_q;
8019
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008020 se->my_q = cfs_rq;
8021 se->load.weight = tg->shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02008022 se->load.inv_weight = 0;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008023 se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008024}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008025#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008026
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008027#ifdef CONFIG_RT_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008028static void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq,
8029 struct sched_rt_entity *rt_se, int cpu, int add,
8030 struct sched_rt_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008031{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008032 struct rq *rq = cpu_rq(cpu);
8033
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008034 tg->rt_rq[cpu] = rt_rq;
8035 init_rt_rq(rt_rq, rq);
8036 rt_rq->tg = tg;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008037 rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008038 if (add)
8039 list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list);
8040
8041 tg->rt_se[cpu] = rt_se;
Dhaval Giani354d60c2008-04-19 19:44:59 +02008042 if (!rt_se)
8043 return;
8044
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008045 if (!parent)
8046 rt_se->rt_rq = &rq->rt;
8047 else
8048 rt_se->rt_rq = parent->my_q;
8049
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008050 rt_se->my_q = rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008051 rt_se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008052 INIT_LIST_HEAD(&rt_se->run_list);
8053}
8054#endif
8055
Linus Torvalds1da177e2005-04-16 15:20:36 -07008056void __init sched_init(void)
8057{
Ingo Molnardd41f592007-07-09 18:51:59 +02008058 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07008059 unsigned long alloc_size = 0, ptr;
8060
8061#ifdef CONFIG_FAIR_GROUP_SCHED
8062 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
8063#endif
8064#ifdef CONFIG_RT_GROUP_SCHED
8065 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
8066#endif
Rusty Russelldf7c8e82009-03-19 15:22:20 +10308067#ifdef CONFIG_CPUMASK_OFFSTACK
Rusty Russell8c083f02009-03-19 15:22:20 +10308068 alloc_size += num_possible_cpus() * cpumask_size();
Rusty Russelldf7c8e82009-03-19 15:22:20 +10308069#endif
Mike Travis434d53b2008-04-04 18:11:04 -07008070 if (alloc_size) {
Pekka Enberg36b7b6d2009-06-10 23:42:36 +03008071 ptr = (unsigned long)kzalloc(alloc_size, GFP_NOWAIT);
Mike Travis434d53b2008-04-04 18:11:04 -07008072
8073#ifdef CONFIG_FAIR_GROUP_SCHED
8074 init_task_group.se = (struct sched_entity **)ptr;
8075 ptr += nr_cpu_ids * sizeof(void **);
8076
8077 init_task_group.cfs_rq = (struct cfs_rq **)ptr;
8078 ptr += nr_cpu_ids * sizeof(void **);
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008079
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008080#endif /* CONFIG_FAIR_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07008081#ifdef CONFIG_RT_GROUP_SCHED
8082 init_task_group.rt_se = (struct sched_rt_entity **)ptr;
8083 ptr += nr_cpu_ids * sizeof(void **);
8084
8085 init_task_group.rt_rq = (struct rt_rq **)ptr;
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008086 ptr += nr_cpu_ids * sizeof(void **);
8087
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008088#endif /* CONFIG_RT_GROUP_SCHED */
Rusty Russelldf7c8e82009-03-19 15:22:20 +10308089#ifdef CONFIG_CPUMASK_OFFSTACK
8090 for_each_possible_cpu(i) {
8091 per_cpu(load_balance_tmpmask, i) = (void *)ptr;
8092 ptr += cpumask_size();
8093 }
8094#endif /* CONFIG_CPUMASK_OFFSTACK */
Mike Travis434d53b2008-04-04 18:11:04 -07008095 }
Ingo Molnardd41f592007-07-09 18:51:59 +02008096
Gregory Haskins57d885f2008-01-25 21:08:18 +01008097#ifdef CONFIG_SMP
8098 init_defrootdomain();
8099#endif
8100
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008101 init_rt_bandwidth(&def_rt_bandwidth,
8102 global_rt_period(), global_rt_runtime());
8103
8104#ifdef CONFIG_RT_GROUP_SCHED
8105 init_rt_bandwidth(&init_task_group.rt_bandwidth,
8106 global_rt_period(), global_rt_runtime());
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008107#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008108
Dhaval Giani7c941432010-01-20 13:26:18 +01008109#ifdef CONFIG_CGROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008110 list_add(&init_task_group.list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008111 INIT_LIST_HEAD(&init_task_group.children);
8112
Dhaval Giani7c941432010-01-20 13:26:18 +01008113#endif /* CONFIG_CGROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008114
Jiri Kosina4a6cc4b2009-10-29 00:26:00 +09008115#if defined CONFIG_FAIR_GROUP_SCHED && defined CONFIG_SMP
8116 update_shares_data = __alloc_percpu(nr_cpu_ids * sizeof(unsigned long),
8117 __alignof__(unsigned long));
8118#endif
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08008119 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07008120 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008121
8122 rq = cpu_rq(i);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01008123 raw_spin_lock_init(&rq->lock);
Nick Piggin78979862005-06-25 14:57:13 -07008124 rq->nr_running = 0;
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02008125 rq->calc_load_active = 0;
8126 rq->calc_load_update = jiffies + LOAD_FREQ;
Ingo Molnardd41f592007-07-09 18:51:59 +02008127 init_cfs_rq(&rq->cfs, rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008128 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008129#ifdef CONFIG_FAIR_GROUP_SCHED
8130 init_task_group.shares = init_task_group_load;
8131 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008132#ifdef CONFIG_CGROUP_SCHED
8133 /*
8134 * How much cpu bandwidth does init_task_group get?
8135 *
8136 * In case of task-groups formed thr' the cgroup filesystem, it
8137 * gets 100% of the cpu resources in the system. This overall
8138 * system cpu resource is divided among the tasks of
8139 * init_task_group and its child task-groups in a fair manner,
8140 * based on each entity's (task or task-group's) weight
8141 * (se->load.weight).
8142 *
8143 * In other words, if init_task_group has 10 tasks of weight
8144 * 1024) and two child groups A0 and A1 (of weight 1024 each),
8145 * then A0's share of the cpu resource is:
8146 *
Ingo Molnar0d905bc2009-05-04 19:13:30 +02008147 * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
Dhaval Giani354d60c2008-04-19 19:44:59 +02008148 *
8149 * We achieve this by letting init_task_group's tasks sit
8150 * directly in rq->cfs (i.e init_task_group->se[] = NULL).
8151 */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008152 init_tg_cfs_entry(&init_task_group, &rq->cfs, NULL, i, 1, NULL);
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008153#endif
Dhaval Giani354d60c2008-04-19 19:44:59 +02008154#endif /* CONFIG_FAIR_GROUP_SCHED */
8155
8156 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008157#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008158 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008159#ifdef CONFIG_CGROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008160 init_tg_rt_entry(&init_task_group, &rq->rt, NULL, i, 1, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008161#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008162#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07008163
Ingo Molnardd41f592007-07-09 18:51:59 +02008164 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
8165 rq->cpu_load[j] = 0;
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07008166
8167 rq->last_load_update_tick = jiffies;
8168
Linus Torvalds1da177e2005-04-16 15:20:36 -07008169#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07008170 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01008171 rq->rd = NULL;
Peter Zijlstrae51fd5e2010-05-31 12:37:30 +02008172 rq->cpu_power = SCHED_LOAD_SCALE;
Gregory Haskins3f029d32009-07-29 11:08:47 -04008173 rq->post_schedule = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008174 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008175 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008176 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07008177 rq->cpu = i;
Gregory Haskins1f11eb6a2008-06-04 15:04:05 -04008178 rq->online = 0;
Mike Galbraitheae0c9d2009-11-10 03:50:02 +01008179 rq->idle_stamp = 0;
8180 rq->avg_idle = 2*sysctl_sched_migration_cost;
Gregory Haskinsdc938522008-01-25 21:08:26 +01008181 rq_attach_root(rq, &def_root_domain);
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07008182#ifdef CONFIG_NO_HZ
8183 rq->nohz_balance_kick = 0;
8184 init_sched_softirq_csd(&per_cpu(remote_sched_softirq_cb, i));
8185#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07008186#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01008187 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008188 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008189 }
8190
Peter Williams2dd73a42006-06-27 02:54:34 -07008191 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008192
Avi Kivitye107be32007-07-26 13:40:43 +02008193#ifdef CONFIG_PREEMPT_NOTIFIERS
8194 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
8195#endif
8196
Christoph Lameterc9819f42006-12-10 02:20:25 -08008197#ifdef CONFIG_SMP
Carlos R. Mafra962cf362008-05-15 11:15:37 -03008198 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains);
Christoph Lameterc9819f42006-12-10 02:20:25 -08008199#endif
8200
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008201#ifdef CONFIG_RT_MUTEXES
Thomas Gleixner1d615482009-11-17 14:54:03 +01008202 plist_head_init_raw(&init_task.pi_waiters, &init_task.pi_lock);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008203#endif
8204
Linus Torvalds1da177e2005-04-16 15:20:36 -07008205 /*
8206 * The boot idle thread does lazy MMU switching as well:
8207 */
8208 atomic_inc(&init_mm.mm_count);
8209 enter_lazy_tlb(&init_mm, current);
8210
8211 /*
8212 * Make us the idle thread. Technically, schedule() should not be
8213 * called from this thread, however somewhere below it might be,
8214 * but because we are the idle thread, we just pick up running again
8215 * when this runqueue becomes "idle".
8216 */
8217 init_idle(current, smp_processor_id());
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02008218
8219 calc_load_update = jiffies + LOAD_FREQ;
8220
Ingo Molnardd41f592007-07-09 18:51:59 +02008221 /*
8222 * During early bootup we pretend to be a normal task:
8223 */
8224 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01008225
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10308226 /* Allocate the nohz_cpu_mask if CONFIG_CPUMASK_OFFSTACK */
Rusty Russell49557e62009-11-02 20:37:20 +10308227 zalloc_cpumask_var(&nohz_cpu_mask, GFP_NOWAIT);
Rusty Russellbf4d83f2008-11-25 09:57:51 +10308228#ifdef CONFIG_SMP
Rusty Russell7d1e6a92008-11-25 02:35:09 +10308229#ifdef CONFIG_NO_HZ
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07008230 zalloc_cpumask_var(&nohz.idle_cpus_mask, GFP_NOWAIT);
8231 alloc_cpumask_var(&nohz.grp_idle_mask, GFP_NOWAIT);
8232 atomic_set(&nohz.load_balancer, nr_cpu_ids);
8233 atomic_set(&nohz.first_pick_cpu, nr_cpu_ids);
8234 atomic_set(&nohz.second_pick_cpu, nr_cpu_ids);
Rusty Russell7d1e6a92008-11-25 02:35:09 +10308235#endif
Rusty Russellbdddd292009-12-02 14:09:16 +10308236 /* May be allocated at isolcpus cmdline parse time */
8237 if (cpu_isolated_map == NULL)
8238 zalloc_cpumask_var(&cpu_isolated_map, GFP_NOWAIT);
Rusty Russellbf4d83f2008-11-25 09:57:51 +10308239#endif /* SMP */
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10308240
Ingo Molnarcdd6c482009-09-21 12:02:48 +02008241 perf_event_init();
Ingo Molnar0d905bc2009-05-04 19:13:30 +02008242
Ingo Molnar6892b752008-02-13 14:02:36 +01008243 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008244}
8245
8246#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02008247static inline int preempt_count_equals(int preempt_offset)
8248{
Frederic Weisbecker234da7b2009-12-16 20:21:05 +01008249 int nested = (preempt_count() & ~PREEMPT_ACTIVE) + rcu_preempt_depth();
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02008250
8251 return (nested == PREEMPT_INATOMIC_BASE + preempt_offset);
8252}
8253
Simon Kagstromd8948372009-12-23 11:08:18 +01008254void __might_sleep(const char *file, int line, int preempt_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008255{
Ingo Molnar48f24c42006-07-03 00:25:40 -07008256#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07008257 static unsigned long prev_jiffy; /* ratelimiting */
8258
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02008259 if ((preempt_count_equals(preempt_offset) && !irqs_disabled()) ||
8260 system_state != SYSTEM_RUNNING || oops_in_progress)
Ingo Molnaraef745f2008-08-28 11:34:43 +02008261 return;
8262 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
8263 return;
8264 prev_jiffy = jiffies;
8265
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01008266 printk(KERN_ERR
8267 "BUG: sleeping function called from invalid context at %s:%d\n",
8268 file, line);
8269 printk(KERN_ERR
8270 "in_atomic(): %d, irqs_disabled(): %d, pid: %d, name: %s\n",
8271 in_atomic(), irqs_disabled(),
8272 current->pid, current->comm);
Ingo Molnaraef745f2008-08-28 11:34:43 +02008273
8274 debug_show_held_locks(current);
8275 if (irqs_disabled())
8276 print_irqtrace_events(current);
8277 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008278#endif
8279}
8280EXPORT_SYMBOL(__might_sleep);
8281#endif
8282
8283#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008284static void normalize_task(struct rq *rq, struct task_struct *p)
8285{
8286 int on_rq;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02008287
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008288 on_rq = p->se.on_rq;
8289 if (on_rq)
8290 deactivate_task(rq, p, 0);
8291 __setscheduler(rq, p, SCHED_NORMAL, 0);
8292 if (on_rq) {
8293 activate_task(rq, p, 0);
8294 resched_task(rq->curr);
8295 }
8296}
8297
Linus Torvalds1da177e2005-04-16 15:20:36 -07008298void normalize_rt_tasks(void)
8299{
Ingo Molnara0f98a12007-06-17 18:37:45 +02008300 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008301 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07008302 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008303
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008304 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008305 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02008306 /*
8307 * Only normalize user tasks:
8308 */
8309 if (!p->mm)
8310 continue;
8311
Ingo Molnardd41f592007-07-09 18:51:59 +02008312 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008313#ifdef CONFIG_SCHEDSTATS
Lucas De Marchi41acab82010-03-10 23:37:45 -03008314 p->se.statistics.wait_start = 0;
8315 p->se.statistics.sleep_start = 0;
8316 p->se.statistics.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008317#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02008318
8319 if (!rt_task(p)) {
8320 /*
8321 * Renice negative nice level userspace
8322 * tasks back to 0:
8323 */
8324 if (TASK_NICE(p) < 0 && p->mm)
8325 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008326 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02008327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008328
Thomas Gleixner1d615482009-11-17 14:54:03 +01008329 raw_spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07008330 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008331
Ingo Molnar178be792007-10-15 17:00:18 +02008332 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008333
Ingo Molnarb29739f2006-06-27 02:54:51 -07008334 __task_rq_unlock(rq);
Thomas Gleixner1d615482009-11-17 14:54:03 +01008335 raw_spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008336 } while_each_thread(g, p);
8337
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008338 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008339}
8340
8341#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07008342
Jason Wessel67fc4e02010-05-20 21:04:21 -05008343#if defined(CONFIG_IA64) || defined(CONFIG_KGDB_KDB)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008344/*
Jason Wessel67fc4e02010-05-20 21:04:21 -05008345 * These functions are only useful for the IA64 MCA handling, or kdb.
Linus Torvalds1df5c102005-09-12 07:59:21 -07008346 *
8347 * They can only be called when the whole system has been
8348 * stopped - every CPU needs to be quiescent, and no scheduling
8349 * activity can take place. Using them for anything else would
8350 * be a serious bug, and as a result, they aren't even visible
8351 * under any other configuration.
8352 */
8353
8354/**
8355 * curr_task - return the current task for a given cpu.
8356 * @cpu: the processor in question.
8357 *
8358 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8359 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008360struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008361{
8362 return cpu_curr(cpu);
8363}
8364
Jason Wessel67fc4e02010-05-20 21:04:21 -05008365#endif /* defined(CONFIG_IA64) || defined(CONFIG_KGDB_KDB) */
8366
8367#ifdef CONFIG_IA64
Linus Torvalds1df5c102005-09-12 07:59:21 -07008368/**
8369 * set_curr_task - set the current task for a given cpu.
8370 * @cpu: the processor in question.
8371 * @p: the task pointer to set.
8372 *
8373 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008374 * are serviced on a separate stack. It allows the architecture to switch the
8375 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07008376 * must be called with all CPU's synchronized, and interrupts disabled, the
8377 * and caller must save the original value of the current task (see
8378 * curr_task() above) and restore that value before reenabling interrupts and
8379 * re-starting the system.
8380 *
8381 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8382 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008383void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008384{
8385 cpu_curr(cpu) = p;
8386}
8387
8388#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008389
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008390#ifdef CONFIG_FAIR_GROUP_SCHED
8391static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008392{
8393 int i;
8394
8395 for_each_possible_cpu(i) {
8396 if (tg->cfs_rq)
8397 kfree(tg->cfs_rq[i]);
8398 if (tg->se)
8399 kfree(tg->se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008400 }
8401
8402 kfree(tg->cfs_rq);
8403 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008404}
8405
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008406static
8407int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008408{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008409 struct cfs_rq *cfs_rq;
Li Zefaneab17222008-10-29 17:03:22 +08008410 struct sched_entity *se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008411 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008412 int i;
8413
Mike Travis434d53b2008-04-04 18:11:04 -07008414 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008415 if (!tg->cfs_rq)
8416 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008417 tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008418 if (!tg->se)
8419 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008420
8421 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008422
8423 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008424 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008425
Li Zefaneab17222008-10-29 17:03:22 +08008426 cfs_rq = kzalloc_node(sizeof(struct cfs_rq),
8427 GFP_KERNEL, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008428 if (!cfs_rq)
8429 goto err;
8430
Li Zefaneab17222008-10-29 17:03:22 +08008431 se = kzalloc_node(sizeof(struct sched_entity),
8432 GFP_KERNEL, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008433 if (!se)
Phil Carmodydfc12eb2009-12-10 14:29:37 +02008434 goto err_free_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008435
Li Zefaneab17222008-10-29 17:03:22 +08008436 init_tg_cfs_entry(tg, cfs_rq, se, i, 0, parent->se[i]);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008437 }
8438
8439 return 1;
8440
Peter Zijlstra49246272010-10-17 21:46:10 +02008441err_free_rq:
Phil Carmodydfc12eb2009-12-10 14:29:37 +02008442 kfree(cfs_rq);
Peter Zijlstra49246272010-10-17 21:46:10 +02008443err:
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008444 return 0;
8445}
8446
8447static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8448{
8449 list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list,
8450 &cpu_rq(cpu)->leaf_cfs_rq_list);
8451}
8452
8453static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8454{
8455 list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list);
8456}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008457#else /* !CONFG_FAIR_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008458static inline void free_fair_sched_group(struct task_group *tg)
8459{
8460}
8461
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008462static inline
8463int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008464{
8465 return 1;
8466}
8467
8468static inline void register_fair_sched_group(struct task_group *tg, int cpu)
8469{
8470}
8471
8472static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8473{
8474}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008475#endif /* CONFIG_FAIR_GROUP_SCHED */
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008476
8477#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008478static void free_rt_sched_group(struct task_group *tg)
8479{
8480 int i;
8481
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008482 destroy_rt_bandwidth(&tg->rt_bandwidth);
8483
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008484 for_each_possible_cpu(i) {
8485 if (tg->rt_rq)
8486 kfree(tg->rt_rq[i]);
8487 if (tg->rt_se)
8488 kfree(tg->rt_se[i]);
8489 }
8490
8491 kfree(tg->rt_rq);
8492 kfree(tg->rt_se);
8493}
8494
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008495static
8496int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008497{
8498 struct rt_rq *rt_rq;
Li Zefaneab17222008-10-29 17:03:22 +08008499 struct sched_rt_entity *rt_se;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008500 struct rq *rq;
8501 int i;
8502
Mike Travis434d53b2008-04-04 18:11:04 -07008503 tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008504 if (!tg->rt_rq)
8505 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008506 tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008507 if (!tg->rt_se)
8508 goto err;
8509
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008510 init_rt_bandwidth(&tg->rt_bandwidth,
8511 ktime_to_ns(def_rt_bandwidth.rt_period), 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008512
8513 for_each_possible_cpu(i) {
8514 rq = cpu_rq(i);
8515
Li Zefaneab17222008-10-29 17:03:22 +08008516 rt_rq = kzalloc_node(sizeof(struct rt_rq),
8517 GFP_KERNEL, cpu_to_node(i));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008518 if (!rt_rq)
8519 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008520
Li Zefaneab17222008-10-29 17:03:22 +08008521 rt_se = kzalloc_node(sizeof(struct sched_rt_entity),
8522 GFP_KERNEL, cpu_to_node(i));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008523 if (!rt_se)
Phil Carmodydfc12eb2009-12-10 14:29:37 +02008524 goto err_free_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008525
Li Zefaneab17222008-10-29 17:03:22 +08008526 init_tg_rt_entry(tg, rt_rq, rt_se, i, 0, parent->rt_se[i]);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008527 }
8528
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008529 return 1;
8530
Peter Zijlstra49246272010-10-17 21:46:10 +02008531err_free_rq:
Phil Carmodydfc12eb2009-12-10 14:29:37 +02008532 kfree(rt_rq);
Peter Zijlstra49246272010-10-17 21:46:10 +02008533err:
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008534 return 0;
8535}
8536
8537static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8538{
8539 list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list,
8540 &cpu_rq(cpu)->leaf_rt_rq_list);
8541}
8542
8543static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8544{
8545 list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list);
8546}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008547#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008548static inline void free_rt_sched_group(struct task_group *tg)
8549{
8550}
8551
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008552static inline
8553int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008554{
8555 return 1;
8556}
8557
8558static inline void register_rt_sched_group(struct task_group *tg, int cpu)
8559{
8560}
8561
8562static inline void unregister_rt_sched_group(struct task_group *tg, int cpu)
8563{
8564}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008565#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008566
Dhaval Giani7c941432010-01-20 13:26:18 +01008567#ifdef CONFIG_CGROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008568static void free_sched_group(struct task_group *tg)
8569{
8570 free_fair_sched_group(tg);
8571 free_rt_sched_group(tg);
8572 kfree(tg);
8573}
8574
8575/* allocate runqueue etc for a new task group */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008576struct task_group *sched_create_group(struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008577{
8578 struct task_group *tg;
8579 unsigned long flags;
8580 int i;
8581
8582 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
8583 if (!tg)
8584 return ERR_PTR(-ENOMEM);
8585
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008586 if (!alloc_fair_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008587 goto err;
8588
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008589 if (!alloc_rt_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008590 goto err;
8591
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008592 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008593 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008594 register_fair_sched_group(tg, i);
8595 register_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008596 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008597 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008598
8599 WARN_ON(!parent); /* root should already exist */
8600
8601 tg->parent = parent;
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008602 INIT_LIST_HEAD(&tg->children);
Zhang, Yanmin09f27242030-08-14 15:56:40 +08008603 list_add_rcu(&tg->siblings, &parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008604 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008605
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008606 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008607
8608err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008609 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008610 return ERR_PTR(-ENOMEM);
8611}
8612
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008613/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008614static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008615{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008616 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008617 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008618}
8619
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008620/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008621void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008622{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008623 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008624 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008625
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008626 spin_lock_irqsave(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008627 for_each_possible_cpu(i) {
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008628 unregister_fair_sched_group(tg, i);
8629 unregister_rt_sched_group(tg, i);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008630 }
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008631 list_del_rcu(&tg->list);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008632 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008633 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008634
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008635 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008636 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008637}
8638
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008639/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02008640 * The caller of this function should have put the task in its new group
8641 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
8642 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008643 */
8644void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008645{
8646 int on_rq, running;
8647 unsigned long flags;
8648 struct rq *rq;
8649
8650 rq = task_rq_lock(tsk, &flags);
8651
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01008652 running = task_current(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008653 on_rq = tsk->se.on_rq;
8654
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008655 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008656 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008657 if (unlikely(running))
8658 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008659
Peter Zijlstra810b3812008-02-29 15:21:01 -05008660#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstrab2b5ce02010-10-15 15:24:15 +02008661 if (tsk->sched_class->task_move_group)
8662 tsk->sched_class->task_move_group(tsk, on_rq);
8663 else
Peter Zijlstra810b3812008-02-29 15:21:01 -05008664#endif
Peter Zijlstrab2b5ce02010-10-15 15:24:15 +02008665 set_task_rq(tsk, task_cpu(tsk));
Peter Zijlstra810b3812008-02-29 15:21:01 -05008666
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008667 if (unlikely(running))
8668 tsk->sched_class->set_curr_task(rq);
8669 if (on_rq)
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01008670 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008671
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008672 task_rq_unlock(rq, &flags);
8673}
Dhaval Giani7c941432010-01-20 13:26:18 +01008674#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008675
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008676#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008677static void __set_se_shares(struct sched_entity *se, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008678{
8679 struct cfs_rq *cfs_rq = se->cfs_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008680 int on_rq;
8681
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008682 on_rq = se->on_rq;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008683 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008684 dequeue_entity(cfs_rq, se, 0);
8685
8686 se->load.weight = shares;
Peter Zijlstrae05510d2008-05-05 23:56:17 +02008687 se->load.inv_weight = 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008688
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008689 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008690 enqueue_entity(cfs_rq, se, 0);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008691}
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008692
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008693static void set_se_shares(struct sched_entity *se, unsigned long shares)
8694{
8695 struct cfs_rq *cfs_rq = se->cfs_rq;
8696 struct rq *rq = cfs_rq->rq;
8697 unsigned long flags;
8698
Thomas Gleixner05fa7852009-11-17 14:28:38 +01008699 raw_spin_lock_irqsave(&rq->lock, flags);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008700 __set_se_shares(se, shares);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01008701 raw_spin_unlock_irqrestore(&rq->lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008702}
8703
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008704static DEFINE_MUTEX(shares_mutex);
8705
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008706int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008707{
8708 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008709 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +01008710
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008711 /*
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008712 * We can't change the weight of the root cgroup.
8713 */
8714 if (!tg->se[0])
8715 return -EINVAL;
8716
Peter Zijlstra18d95a22008-04-19 19:45:00 +02008717 if (shares < MIN_SHARES)
8718 shares = MIN_SHARES;
Miao Xiecb4ad1f2008-04-28 12:54:56 +08008719 else if (shares > MAX_SHARES)
8720 shares = MAX_SHARES;
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008721
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008722 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008723 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008724 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008725
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008726 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008727 for_each_possible_cpu(i)
8728 unregister_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008729 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008730 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008731
8732 /* wait for any ongoing reference to this group to finish */
8733 synchronize_sched();
8734
8735 /*
8736 * Now we are free to modify the group's share on each cpu
8737 * w/o tripping rebalance_share or load_balance_fair.
8738 */
8739 tg->shares = shares;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008740 for_each_possible_cpu(i) {
8741 /*
8742 * force a rebalance
8743 */
8744 cfs_rq_set_shares(tg->cfs_rq[i], 0);
Miao Xiecb4ad1f2008-04-28 12:54:56 +08008745 set_se_shares(tg->se[i], shares);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008746 }
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008747
8748 /*
8749 * Enable load balance activity on this group, by inserting it back on
8750 * each cpu's rq->leaf_cfs_rq_list.
8751 */
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008752 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008753 for_each_possible_cpu(i)
8754 register_fair_sched_group(tg, i);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008755 list_add_rcu(&tg->siblings, &tg->parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008756 spin_unlock_irqrestore(&task_group_lock, flags);
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008757done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008758 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008759 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008760}
8761
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008762unsigned long sched_group_shares(struct task_group *tg)
8763{
8764 return tg->shares;
8765}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008766#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008767
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008768#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008769/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008770 * Ensure that the real time constraints are schedulable.
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008771 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008772static DEFINE_MUTEX(rt_constraints_mutex);
8773
8774static unsigned long to_ratio(u64 period, u64 runtime)
8775{
8776 if (runtime == RUNTIME_INF)
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008777 return 1ULL << 20;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008778
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008779 return div64_u64(runtime << 20, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008780}
8781
Dhaval Giani521f1a242008-02-28 15:21:56 +05308782/* Must be called with tasklist_lock held */
8783static inline int tg_has_rt_tasks(struct task_group *tg)
8784{
8785 struct task_struct *g, *p;
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008786
Dhaval Giani521f1a242008-02-28 15:21:56 +05308787 do_each_thread(g, p) {
8788 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
8789 return 1;
8790 } while_each_thread(g, p);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008791
Dhaval Giani521f1a242008-02-28 15:21:56 +05308792 return 0;
8793}
8794
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008795struct rt_schedulable_data {
8796 struct task_group *tg;
8797 u64 rt_period;
8798 u64 rt_runtime;
8799};
8800
8801static int tg_schedulable(struct task_group *tg, void *data)
8802{
8803 struct rt_schedulable_data *d = data;
8804 struct task_group *child;
8805 unsigned long total, sum = 0;
8806 u64 period, runtime;
8807
8808 period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8809 runtime = tg->rt_bandwidth.rt_runtime;
8810
8811 if (tg == d->tg) {
8812 period = d->rt_period;
8813 runtime = d->rt_runtime;
8814 }
8815
Peter Zijlstra4653f802008-09-23 15:33:44 +02008816 /*
8817 * Cannot have more runtime than the period.
8818 */
8819 if (runtime > period && runtime != RUNTIME_INF)
8820 return -EINVAL;
8821
8822 /*
8823 * Ensure we don't starve existing RT tasks.
8824 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008825 if (rt_bandwidth_enabled() && !runtime && tg_has_rt_tasks(tg))
8826 return -EBUSY;
8827
8828 total = to_ratio(period, runtime);
8829
Peter Zijlstra4653f802008-09-23 15:33:44 +02008830 /*
8831 * Nobody can have more than the global setting allows.
8832 */
8833 if (total > to_ratio(global_rt_period(), global_rt_runtime()))
8834 return -EINVAL;
8835
8836 /*
8837 * The sum of our children's runtime should not exceed our own.
8838 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008839 list_for_each_entry_rcu(child, &tg->children, siblings) {
8840 period = ktime_to_ns(child->rt_bandwidth.rt_period);
8841 runtime = child->rt_bandwidth.rt_runtime;
8842
8843 if (child == d->tg) {
8844 period = d->rt_period;
8845 runtime = d->rt_runtime;
8846 }
8847
8848 sum += to_ratio(period, runtime);
8849 }
8850
8851 if (sum > total)
8852 return -EINVAL;
8853
8854 return 0;
8855}
8856
8857static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
8858{
8859 struct rt_schedulable_data data = {
8860 .tg = tg,
8861 .rt_period = period,
8862 .rt_runtime = runtime,
8863 };
8864
8865 return walk_tg_tree(tg_schedulable, tg_nop, &data);
8866}
8867
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008868static int tg_set_bandwidth(struct task_group *tg,
8869 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008870{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008871 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008872
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008873 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05308874 read_lock(&tasklist_lock);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008875 err = __rt_schedulable(tg, rt_period, rt_runtime);
8876 if (err)
Dhaval Giani521f1a242008-02-28 15:21:56 +05308877 goto unlock;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008878
Thomas Gleixner0986b112009-11-17 15:32:06 +01008879 raw_spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008880 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
8881 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008882
8883 for_each_possible_cpu(i) {
8884 struct rt_rq *rt_rq = tg->rt_rq[i];
8885
Thomas Gleixner0986b112009-11-17 15:32:06 +01008886 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008887 rt_rq->rt_runtime = rt_runtime;
Thomas Gleixner0986b112009-11-17 15:32:06 +01008888 raw_spin_unlock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008889 }
Thomas Gleixner0986b112009-11-17 15:32:06 +01008890 raw_spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra49246272010-10-17 21:46:10 +02008891unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05308892 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008893 mutex_unlock(&rt_constraints_mutex);
8894
8895 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008896}
8897
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008898int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
8899{
8900 u64 rt_runtime, rt_period;
8901
8902 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8903 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
8904 if (rt_runtime_us < 0)
8905 rt_runtime = RUNTIME_INF;
8906
8907 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8908}
8909
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008910long sched_group_rt_runtime(struct task_group *tg)
8911{
8912 u64 rt_runtime_us;
8913
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008914 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008915 return -1;
8916
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008917 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008918 do_div(rt_runtime_us, NSEC_PER_USEC);
8919 return rt_runtime_us;
8920}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008921
8922int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
8923{
8924 u64 rt_runtime, rt_period;
8925
8926 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
8927 rt_runtime = tg->rt_bandwidth.rt_runtime;
8928
Raistlin619b0482008-06-26 18:54:09 +02008929 if (rt_period == 0)
8930 return -EINVAL;
8931
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008932 return tg_set_bandwidth(tg, rt_period, rt_runtime);
8933}
8934
8935long sched_group_rt_period(struct task_group *tg)
8936{
8937 u64 rt_period_us;
8938
8939 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
8940 do_div(rt_period_us, NSEC_PER_USEC);
8941 return rt_period_us;
8942}
8943
8944static int sched_rt_global_constraints(void)
8945{
Peter Zijlstra4653f802008-09-23 15:33:44 +02008946 u64 runtime, period;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008947 int ret = 0;
8948
Hiroshi Shimamotoec5d4982008-09-10 17:00:19 -07008949 if (sysctl_sched_rt_period <= 0)
8950 return -EINVAL;
8951
Peter Zijlstra4653f802008-09-23 15:33:44 +02008952 runtime = global_rt_runtime();
8953 period = global_rt_period();
8954
8955 /*
8956 * Sanity check on the sysctl variables.
8957 */
8958 if (runtime > period && runtime != RUNTIME_INF)
8959 return -EINVAL;
Peter Zijlstra10b612f2008-06-19 14:22:27 +02008960
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008961 mutex_lock(&rt_constraints_mutex);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008962 read_lock(&tasklist_lock);
Peter Zijlstra4653f802008-09-23 15:33:44 +02008963 ret = __rt_schedulable(NULL, 0, 0);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008964 read_unlock(&tasklist_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008965 mutex_unlock(&rt_constraints_mutex);
8966
8967 return ret;
8968}
Dhaval Giani54e99122009-02-27 15:13:54 +05308969
8970int sched_rt_can_attach(struct task_group *tg, struct task_struct *tsk)
8971{
8972 /* Don't accept realtime tasks when there is no way for them to run */
8973 if (rt_task(tsk) && tg->rt_bandwidth.rt_runtime == 0)
8974 return 0;
8975
8976 return 1;
8977}
8978
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008979#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008980static int sched_rt_global_constraints(void)
8981{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008982 unsigned long flags;
8983 int i;
8984
Hiroshi Shimamotoec5d4982008-09-10 17:00:19 -07008985 if (sysctl_sched_rt_period <= 0)
8986 return -EINVAL;
8987
Peter Zijlstra60aa6052009-05-05 17:50:21 +02008988 /*
8989 * There's always some RT tasks in the root group
8990 * -- migration, kstopmachine etc..
8991 */
8992 if (sysctl_sched_rt_runtime == 0)
8993 return -EBUSY;
8994
Thomas Gleixner0986b112009-11-17 15:32:06 +01008995 raw_spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008996 for_each_possible_cpu(i) {
8997 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
8998
Thomas Gleixner0986b112009-11-17 15:32:06 +01008999 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009000 rt_rq->rt_runtime = global_rt_runtime();
Thomas Gleixner0986b112009-11-17 15:32:06 +01009001 raw_spin_unlock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009002 }
Thomas Gleixner0986b112009-11-17 15:32:06 +01009003 raw_spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009004
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009005 return 0;
9006}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009007#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009008
9009int sched_rt_handler(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07009010 void __user *buffer, size_t *lenp,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009011 loff_t *ppos)
9012{
9013 int ret;
9014 int old_period, old_runtime;
9015 static DEFINE_MUTEX(mutex);
9016
9017 mutex_lock(&mutex);
9018 old_period = sysctl_sched_rt_period;
9019 old_runtime = sysctl_sched_rt_runtime;
9020
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07009021 ret = proc_dointvec(table, write, buffer, lenp, ppos);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009022
9023 if (!ret && write) {
9024 ret = sched_rt_global_constraints();
9025 if (ret) {
9026 sysctl_sched_rt_period = old_period;
9027 sysctl_sched_rt_runtime = old_runtime;
9028 } else {
9029 def_rt_bandwidth.rt_runtime = global_rt_runtime();
9030 def_rt_bandwidth.rt_period =
9031 ns_to_ktime(global_rt_period());
9032 }
9033 }
9034 mutex_unlock(&mutex);
9035
9036 return ret;
9037}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009038
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009039#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009040
9041/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02009042static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009043{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009044 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
9045 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009046}
9047
9048static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02009049cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009050{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009051 struct task_group *tg, *parent;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009052
Paul Menage2b01dfe2007-10-24 18:23:50 +02009053 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009054 /* This is early initialization for the top cgroup */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009055 return &init_task_group.css;
9056 }
9057
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009058 parent = cgroup_tg(cgrp->parent);
9059 tg = sched_create_group(parent);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009060 if (IS_ERR(tg))
9061 return ERR_PTR(-ENOMEM);
9062
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009063 return &tg->css;
9064}
9065
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009066static void
9067cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009068{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009069 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009070
9071 sched_destroy_group(tg);
9072}
9073
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009074static int
Ben Blumbe367d02009-09-23 15:56:31 -07009075cpu_cgroup_can_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009076{
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009077#ifdef CONFIG_RT_GROUP_SCHED
Dhaval Giani54e99122009-02-27 15:13:54 +05309078 if (!sched_rt_can_attach(cgroup_tg(cgrp), tsk))
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009079 return -EINVAL;
9080#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009081 /* We don't support RT-tasks being in separate groups */
9082 if (tsk->sched_class != &fair_sched_class)
9083 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009084#endif
Ben Blumbe367d02009-09-23 15:56:31 -07009085 return 0;
9086}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009087
Ben Blumbe367d02009-09-23 15:56:31 -07009088static int
9089cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
9090 struct task_struct *tsk, bool threadgroup)
9091{
9092 int retval = cpu_cgroup_can_attach_task(cgrp, tsk);
9093 if (retval)
9094 return retval;
9095 if (threadgroup) {
9096 struct task_struct *c;
9097 rcu_read_lock();
9098 list_for_each_entry_rcu(c, &tsk->thread_group, thread_group) {
9099 retval = cpu_cgroup_can_attach_task(cgrp, c);
9100 if (retval) {
9101 rcu_read_unlock();
9102 return retval;
9103 }
9104 }
9105 rcu_read_unlock();
9106 }
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009107 return 0;
9108}
9109
9110static void
Paul Menage2b01dfe2007-10-24 18:23:50 +02009111cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
Ben Blumbe367d02009-09-23 15:56:31 -07009112 struct cgroup *old_cont, struct task_struct *tsk,
9113 bool threadgroup)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009114{
9115 sched_move_task(tsk);
Ben Blumbe367d02009-09-23 15:56:31 -07009116 if (threadgroup) {
9117 struct task_struct *c;
9118 rcu_read_lock();
9119 list_for_each_entry_rcu(c, &tsk->thread_group, thread_group) {
9120 sched_move_task(c);
9121 }
9122 rcu_read_unlock();
9123 }
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009124}
9125
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009126#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagef4c753b2008-04-29 00:59:56 -07009127static int cpu_shares_write_u64(struct cgroup *cgrp, struct cftype *cftype,
Paul Menage2b01dfe2007-10-24 18:23:50 +02009128 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009129{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009130 return sched_group_set_shares(cgroup_tg(cgrp), shareval);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009131}
9132
Paul Menagef4c753b2008-04-29 00:59:56 -07009133static u64 cpu_shares_read_u64(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009134{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009135 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009136
9137 return (u64) tg->shares;
9138}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009139#endif /* CONFIG_FAIR_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009140
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009141#ifdef CONFIG_RT_GROUP_SCHED
Mirco Tischler0c708142008-05-14 16:05:46 -07009142static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
Paul Menage06ecb272008-04-29 01:00:06 -07009143 s64 val)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009144{
Paul Menage06ecb272008-04-29 01:00:06 -07009145 return sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009146}
9147
Paul Menage06ecb272008-04-29 01:00:06 -07009148static s64 cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009149{
Paul Menage06ecb272008-04-29 01:00:06 -07009150 return sched_group_rt_runtime(cgroup_tg(cgrp));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009151}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009152
9153static int cpu_rt_period_write_uint(struct cgroup *cgrp, struct cftype *cftype,
9154 u64 rt_period_us)
9155{
9156 return sched_group_set_rt_period(cgroup_tg(cgrp), rt_period_us);
9157}
9158
9159static u64 cpu_rt_period_read_uint(struct cgroup *cgrp, struct cftype *cft)
9160{
9161 return sched_group_rt_period(cgroup_tg(cgrp));
9162}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009163#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009164
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009165static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009166#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009167 {
9168 .name = "shares",
Paul Menagef4c753b2008-04-29 00:59:56 -07009169 .read_u64 = cpu_shares_read_u64,
9170 .write_u64 = cpu_shares_write_u64,
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009171 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009172#endif
9173#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009174 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009175 .name = "rt_runtime_us",
Paul Menage06ecb272008-04-29 01:00:06 -07009176 .read_s64 = cpu_rt_runtime_read,
9177 .write_s64 = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009178 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009179 {
9180 .name = "rt_period_us",
Paul Menagef4c753b2008-04-29 00:59:56 -07009181 .read_u64 = cpu_rt_period_read_uint,
9182 .write_u64 = cpu_rt_period_write_uint,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009183 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009184#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009185};
9186
9187static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
9188{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009189 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009190}
9191
9192struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01009193 .name = "cpu",
9194 .create = cpu_cgroup_create,
9195 .destroy = cpu_cgroup_destroy,
9196 .can_attach = cpu_cgroup_can_attach,
9197 .attach = cpu_cgroup_attach,
9198 .populate = cpu_cgroup_populate,
9199 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009200 .early_init = 1,
9201};
9202
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009203#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009204
9205#ifdef CONFIG_CGROUP_CPUACCT
9206
9207/*
9208 * CPU accounting code for task groups.
9209 *
9210 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
9211 * (balbir@in.ibm.com).
9212 */
9213
Bharata B Rao934352f2008-11-10 20:41:13 +05309214/* track cpu usage of a group of tasks and its child groups */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009215struct cpuacct {
9216 struct cgroup_subsys_state css;
9217 /* cpuusage holds pointer to a u64-type object on every cpu */
Tejun Heo43cf38e2010-02-02 14:38:57 +09009218 u64 __percpu *cpuusage;
Bharata B Raoef12fef2009-03-31 10:02:22 +05309219 struct percpu_counter cpustat[CPUACCT_STAT_NSTATS];
Bharata B Rao934352f2008-11-10 20:41:13 +05309220 struct cpuacct *parent;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009221};
9222
9223struct cgroup_subsys cpuacct_subsys;
9224
9225/* return cpu accounting group corresponding to this container */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309226static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009227{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309228 return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id),
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009229 struct cpuacct, css);
9230}
9231
9232/* return cpu accounting group to which this task belongs */
9233static inline struct cpuacct *task_ca(struct task_struct *tsk)
9234{
9235 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
9236 struct cpuacct, css);
9237}
9238
9239/* create a new cpu accounting group */
9240static struct cgroup_subsys_state *cpuacct_create(
Dhaval Giani32cd7562008-02-29 10:02:43 +05309241 struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009242{
9243 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
Bharata B Raoef12fef2009-03-31 10:02:22 +05309244 int i;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009245
9246 if (!ca)
Bharata B Raoef12fef2009-03-31 10:02:22 +05309247 goto out;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009248
9249 ca->cpuusage = alloc_percpu(u64);
Bharata B Raoef12fef2009-03-31 10:02:22 +05309250 if (!ca->cpuusage)
9251 goto out_free_ca;
9252
9253 for (i = 0; i < CPUACCT_STAT_NSTATS; i++)
9254 if (percpu_counter_init(&ca->cpustat[i], 0))
9255 goto out_free_counters;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009256
Bharata B Rao934352f2008-11-10 20:41:13 +05309257 if (cgrp->parent)
9258 ca->parent = cgroup_ca(cgrp->parent);
9259
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009260 return &ca->css;
Bharata B Raoef12fef2009-03-31 10:02:22 +05309261
9262out_free_counters:
9263 while (--i >= 0)
9264 percpu_counter_destroy(&ca->cpustat[i]);
9265 free_percpu(ca->cpuusage);
9266out_free_ca:
9267 kfree(ca);
9268out:
9269 return ERR_PTR(-ENOMEM);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009270}
9271
9272/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009273static void
Dhaval Giani32cd7562008-02-29 10:02:43 +05309274cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009275{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309276 struct cpuacct *ca = cgroup_ca(cgrp);
Bharata B Raoef12fef2009-03-31 10:02:22 +05309277 int i;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009278
Bharata B Raoef12fef2009-03-31 10:02:22 +05309279 for (i = 0; i < CPUACCT_STAT_NSTATS; i++)
9280 percpu_counter_destroy(&ca->cpustat[i]);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009281 free_percpu(ca->cpuusage);
9282 kfree(ca);
9283}
9284
Ken Chen720f5492008-12-15 22:02:01 -08009285static u64 cpuacct_cpuusage_read(struct cpuacct *ca, int cpu)
9286{
Rusty Russellb36128c2009-02-20 16:29:08 +09009287 u64 *cpuusage = per_cpu_ptr(ca->cpuusage, cpu);
Ken Chen720f5492008-12-15 22:02:01 -08009288 u64 data;
9289
9290#ifndef CONFIG_64BIT
9291 /*
9292 * Take rq->lock to make 64-bit read safe on 32-bit platforms.
9293 */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01009294 raw_spin_lock_irq(&cpu_rq(cpu)->lock);
Ken Chen720f5492008-12-15 22:02:01 -08009295 data = *cpuusage;
Thomas Gleixner05fa7852009-11-17 14:28:38 +01009296 raw_spin_unlock_irq(&cpu_rq(cpu)->lock);
Ken Chen720f5492008-12-15 22:02:01 -08009297#else
9298 data = *cpuusage;
9299#endif
9300
9301 return data;
9302}
9303
9304static void cpuacct_cpuusage_write(struct cpuacct *ca, int cpu, u64 val)
9305{
Rusty Russellb36128c2009-02-20 16:29:08 +09009306 u64 *cpuusage = per_cpu_ptr(ca->cpuusage, cpu);
Ken Chen720f5492008-12-15 22:02:01 -08009307
9308#ifndef CONFIG_64BIT
9309 /*
9310 * Take rq->lock to make 64-bit write safe on 32-bit platforms.
9311 */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01009312 raw_spin_lock_irq(&cpu_rq(cpu)->lock);
Ken Chen720f5492008-12-15 22:02:01 -08009313 *cpuusage = val;
Thomas Gleixner05fa7852009-11-17 14:28:38 +01009314 raw_spin_unlock_irq(&cpu_rq(cpu)->lock);
Ken Chen720f5492008-12-15 22:02:01 -08009315#else
9316 *cpuusage = val;
9317#endif
9318}
9319
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009320/* return total cpu usage (in nanoseconds) of a group */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309321static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009322{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309323 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009324 u64 totalcpuusage = 0;
9325 int i;
9326
Ken Chen720f5492008-12-15 22:02:01 -08009327 for_each_present_cpu(i)
9328 totalcpuusage += cpuacct_cpuusage_read(ca, i);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009329
9330 return totalcpuusage;
9331}
9332
Dhaval Giani0297b802008-02-29 10:02:44 +05309333static int cpuusage_write(struct cgroup *cgrp, struct cftype *cftype,
9334 u64 reset)
9335{
9336 struct cpuacct *ca = cgroup_ca(cgrp);
9337 int err = 0;
9338 int i;
9339
9340 if (reset) {
9341 err = -EINVAL;
9342 goto out;
9343 }
9344
Ken Chen720f5492008-12-15 22:02:01 -08009345 for_each_present_cpu(i)
9346 cpuacct_cpuusage_write(ca, i, 0);
Dhaval Giani0297b802008-02-29 10:02:44 +05309347
Dhaval Giani0297b802008-02-29 10:02:44 +05309348out:
9349 return err;
9350}
9351
Ken Chene9515c32008-12-15 22:04:15 -08009352static int cpuacct_percpu_seq_read(struct cgroup *cgroup, struct cftype *cft,
9353 struct seq_file *m)
9354{
9355 struct cpuacct *ca = cgroup_ca(cgroup);
9356 u64 percpu;
9357 int i;
9358
9359 for_each_present_cpu(i) {
9360 percpu = cpuacct_cpuusage_read(ca, i);
9361 seq_printf(m, "%llu ", (unsigned long long) percpu);
9362 }
9363 seq_printf(m, "\n");
9364 return 0;
9365}
9366
Bharata B Raoef12fef2009-03-31 10:02:22 +05309367static const char *cpuacct_stat_desc[] = {
9368 [CPUACCT_STAT_USER] = "user",
9369 [CPUACCT_STAT_SYSTEM] = "system",
9370};
9371
9372static int cpuacct_stats_show(struct cgroup *cgrp, struct cftype *cft,
9373 struct cgroup_map_cb *cb)
9374{
9375 struct cpuacct *ca = cgroup_ca(cgrp);
9376 int i;
9377
9378 for (i = 0; i < CPUACCT_STAT_NSTATS; i++) {
9379 s64 val = percpu_counter_read(&ca->cpustat[i]);
9380 val = cputime64_to_clock_t(val);
9381 cb->fill(cb, cpuacct_stat_desc[i], val);
9382 }
9383 return 0;
9384}
9385
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009386static struct cftype files[] = {
9387 {
9388 .name = "usage",
Paul Menagef4c753b2008-04-29 00:59:56 -07009389 .read_u64 = cpuusage_read,
9390 .write_u64 = cpuusage_write,
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009391 },
Ken Chene9515c32008-12-15 22:04:15 -08009392 {
9393 .name = "usage_percpu",
9394 .read_seq_string = cpuacct_percpu_seq_read,
9395 },
Bharata B Raoef12fef2009-03-31 10:02:22 +05309396 {
9397 .name = "stat",
9398 .read_map = cpuacct_stats_show,
9399 },
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009400};
9401
Dhaval Giani32cd7562008-02-29 10:02:43 +05309402static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009403{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309404 return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files));
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009405}
9406
9407/*
9408 * charge this task's execution time to its accounting group.
9409 *
9410 * called with rq->lock held.
9411 */
9412static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
9413{
9414 struct cpuacct *ca;
Bharata B Rao934352f2008-11-10 20:41:13 +05309415 int cpu;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009416
Li Zefanc40c6f82009-02-26 15:40:15 +08009417 if (unlikely(!cpuacct_subsys.active))
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009418 return;
9419
Bharata B Rao934352f2008-11-10 20:41:13 +05309420 cpu = task_cpu(tsk);
Bharata B Raoa18b83b2009-03-23 10:02:53 +05309421
9422 rcu_read_lock();
9423
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009424 ca = task_ca(tsk);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009425
Bharata B Rao934352f2008-11-10 20:41:13 +05309426 for (; ca; ca = ca->parent) {
Rusty Russellb36128c2009-02-20 16:29:08 +09009427 u64 *cpuusage = per_cpu_ptr(ca->cpuusage, cpu);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009428 *cpuusage += cputime;
9429 }
Bharata B Raoa18b83b2009-03-23 10:02:53 +05309430
9431 rcu_read_unlock();
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009432}
9433
Bharata B Raoef12fef2009-03-31 10:02:22 +05309434/*
Anton Blanchardfa535a72010-02-02 14:46:13 -08009435 * When CONFIG_VIRT_CPU_ACCOUNTING is enabled one jiffy can be very large
9436 * in cputime_t units. As a result, cpuacct_update_stats calls
9437 * percpu_counter_add with values large enough to always overflow the
9438 * per cpu batch limit causing bad SMP scalability.
9439 *
9440 * To fix this we scale percpu_counter_batch by cputime_one_jiffy so we
9441 * batch the same amount of time with CONFIG_VIRT_CPU_ACCOUNTING disabled
9442 * and enabled. We cap it at INT_MAX which is the largest allowed batch value.
9443 */
9444#ifdef CONFIG_SMP
9445#define CPUACCT_BATCH \
9446 min_t(long, percpu_counter_batch * cputime_one_jiffy, INT_MAX)
9447#else
9448#define CPUACCT_BATCH 0
9449#endif
9450
9451/*
Bharata B Raoef12fef2009-03-31 10:02:22 +05309452 * Charge the system/user time to the task's accounting group.
9453 */
9454static void cpuacct_update_stats(struct task_struct *tsk,
9455 enum cpuacct_stat_index idx, cputime_t val)
9456{
9457 struct cpuacct *ca;
Anton Blanchardfa535a72010-02-02 14:46:13 -08009458 int batch = CPUACCT_BATCH;
Bharata B Raoef12fef2009-03-31 10:02:22 +05309459
9460 if (unlikely(!cpuacct_subsys.active))
9461 return;
9462
9463 rcu_read_lock();
9464 ca = task_ca(tsk);
9465
9466 do {
Anton Blanchardfa535a72010-02-02 14:46:13 -08009467 __percpu_counter_add(&ca->cpustat[idx], val, batch);
Bharata B Raoef12fef2009-03-31 10:02:22 +05309468 ca = ca->parent;
9469 } while (ca);
9470 rcu_read_unlock();
9471}
9472
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009473struct cgroup_subsys cpuacct_subsys = {
9474 .name = "cpuacct",
9475 .create = cpuacct_create,
9476 .destroy = cpuacct_destroy,
9477 .populate = cpuacct_populate,
9478 .subsys_id = cpuacct_subsys_id,
9479};
9480#endif /* CONFIG_CGROUP_CPUACCT */
Paul E. McKenney03b042b2009-06-25 09:08:16 -07009481
9482#ifndef CONFIG_SMP
9483
Paul E. McKenney03b042b2009-06-25 09:08:16 -07009484void synchronize_sched_expedited(void)
9485{
Paul E. McKenneyfc390cd2010-05-06 11:42:52 -07009486 barrier();
Paul E. McKenney03b042b2009-06-25 09:08:16 -07009487}
9488EXPORT_SYMBOL_GPL(synchronize_sched_expedited);
9489
9490#else /* #ifndef CONFIG_SMP */
9491
Paul E. McKenneycc631fb2010-05-06 18:49:21 +02009492static atomic_t synchronize_sched_expedited_count = ATOMIC_INIT(0);
Paul E. McKenney03b042b2009-06-25 09:08:16 -07009493
Paul E. McKenneycc631fb2010-05-06 18:49:21 +02009494static int synchronize_sched_expedited_cpu_stop(void *data)
Paul E. McKenney03b042b2009-06-25 09:08:16 -07009495{
Tejun Heo969c7922010-05-06 18:49:21 +02009496 /*
9497 * There must be a full memory barrier on each affected CPU
9498 * between the time that try_stop_cpus() is called and the
9499 * time that it returns.
9500 *
9501 * In the current initial implementation of cpu_stop, the
9502 * above condition is already met when the control reaches
9503 * this point and the following smp_mb() is not strictly
9504 * necessary. Do smp_mb() anyway for documentation and
9505 * robustness against future implementation changes.
9506 */
Paul E. McKenneycc631fb2010-05-06 18:49:21 +02009507 smp_mb(); /* See above comment block. */
Tejun Heo969c7922010-05-06 18:49:21 +02009508 return 0;
Paul E. McKenney03b042b2009-06-25 09:08:16 -07009509}
Paul E. McKenney03b042b2009-06-25 09:08:16 -07009510
9511/*
9512 * Wait for an rcu-sched grace period to elapse, but use "big hammer"
9513 * approach to force grace period to end quickly. This consumes
9514 * significant time on all CPUs, and is thus not recommended for
9515 * any sort of common-case code.
9516 *
9517 * Note that it is illegal to call this function while holding any
9518 * lock that is acquired by a CPU-hotplug notifier. Failing to
9519 * observe this restriction will result in deadlock.
9520 */
9521void synchronize_sched_expedited(void)
9522{
Tejun Heo969c7922010-05-06 18:49:21 +02009523 int snap, trycount = 0;
Paul E. McKenney03b042b2009-06-25 09:08:16 -07009524
9525 smp_mb(); /* ensure prior mod happens before capturing snap. */
Tejun Heo969c7922010-05-06 18:49:21 +02009526 snap = atomic_read(&synchronize_sched_expedited_count) + 1;
Paul E. McKenney03b042b2009-06-25 09:08:16 -07009527 get_online_cpus();
Tejun Heo969c7922010-05-06 18:49:21 +02009528 while (try_stop_cpus(cpu_online_mask,
9529 synchronize_sched_expedited_cpu_stop,
Tejun Heo94458d52010-05-06 18:49:21 +02009530 NULL) == -EAGAIN) {
Paul E. McKenney03b042b2009-06-25 09:08:16 -07009531 put_online_cpus();
9532 if (trycount++ < 10)
9533 udelay(trycount * num_online_cpus());
9534 else {
9535 synchronize_sched();
9536 return;
9537 }
Tejun Heo969c7922010-05-06 18:49:21 +02009538 if (atomic_read(&synchronize_sched_expedited_count) - snap > 0) {
Paul E. McKenney03b042b2009-06-25 09:08:16 -07009539 smp_mb(); /* ensure test happens before caller kfree */
9540 return;
9541 }
9542 get_online_cpus();
9543 }
Tejun Heo969c7922010-05-06 18:49:21 +02009544 atomic_inc(&synchronize_sched_expedited_count);
Paul E. McKenneycc631fb2010-05-06 18:49:21 +02009545 smp_mb__after_atomic_inc(); /* ensure post-GP actions seen after GP. */
Paul E. McKenney03b042b2009-06-25 09:08:16 -07009546 put_online_cpus();
Paul E. McKenney03b042b2009-06-25 09:08:16 -07009547}
9548EXPORT_SYMBOL_GPL(synchronize_sched_expedited);
9549
9550#endif /* #else #ifndef CONFIG_SMP */