blob: ea6850d93b2a1c71998c3bcb24b7ef8250ebfac0 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/mmu_context.h>
36#include <linux/interrupt.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080037#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/completion.h>
39#include <linux/kernel_stat.h>
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070040#include <linux/debug_locks.h>
Ingo Molnarcdd6c482009-09-21 12:02:48 +020041#include <linux/perf_event.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/security.h>
43#include <linux/notifier.h>
44#include <linux/profile.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080045#include <linux/freezer.h>
akpm@osdl.org198e2f12006-01-12 01:05:30 -080046#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/blkdev.h>
48#include <linux/delay.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070049#include <linux/pid_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/smp.h>
51#include <linux/threads.h>
52#include <linux/timer.h>
53#include <linux/rcupdate.h>
54#include <linux/cpu.h>
55#include <linux/cpuset.h>
56#include <linux/percpu.h>
Alexey Dobriyanb5aadf72008-10-06 13:23:43 +040057#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <linux/seq_file.h>
Tejun Heo969c7922010-05-06 18:49:21 +020059#include <linux/stop_machine.h>
Nick Piggine692ab52007-07-26 13:40:43 +020060#include <linux/sysctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <linux/syscalls.h>
62#include <linux/times.h>
Jay Lan8f0ab512006-09-30 23:28:59 -070063#include <linux/tsacct_kern.h>
bibo maoc6fd91f2006-03-26 01:38:20 -080064#include <linux/kprobes.h>
Shailabh Nagar0ff92242006-07-14 00:24:37 -070065#include <linux/delayacct.h>
Ingo Molnardff06c12007-07-09 18:52:00 +020066#include <linux/unistd.h>
Jens Axboef5ff8422007-09-21 09:19:54 +020067#include <linux/pagemap.h>
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +010068#include <linux/hrtimer.h>
Reynes Philippe30914a52008-03-17 16:19:05 -070069#include <linux/tick.h>
Peter Zijlstraf00b45c2008-04-19 19:45:00 +020070#include <linux/debugfs.h>
71#include <linux/ctype.h>
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +020072#include <linux/ftrace.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090073#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Eric Dumazet5517d862007-05-08 00:32:57 -070075#include <asm/tlb.h>
Satyam Sharma838225b2007-10-24 18:23:50 +020076#include <asm/irq_regs.h>
Gerald Schaefer335d7af2010-11-22 15:47:36 +010077#include <asm/mutex.h>
Glauber Costae6e66852011-07-11 15:28:17 -040078#ifdef CONFIG_PARAVIRT
79#include <asm/paravirt.h>
80#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Gregory Haskins6e0534f2008-05-12 21:21:01 +020082#include "sched_cpupri.h"
Tejun Heo21aa9af2010-06-08 21:40:37 +020083#include "workqueue_sched.h"
Mike Galbraith5091faa2010-11-30 14:18:03 +010084#include "sched_autogroup.h"
Gregory Haskins6e0534f2008-05-12 21:21:01 +020085
Steven Rostedta8d154b2009-04-10 09:36:00 -040086#define CREATE_TRACE_POINTS
Steven Rostedtad8d75f2009-04-14 19:39:12 -040087#include <trace/events/sched.h>
Steven Rostedta8d154b2009-04-10 09:36:00 -040088
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/*
90 * Convert user-nice values [ -20 ... 0 ... 19 ]
91 * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ],
92 * and back.
93 */
94#define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20)
95#define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20)
96#define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio)
97
98/*
99 * 'User priority' is the nice value converted to something we
100 * can work with better when scaling various scheduler parameters,
101 * it's a [ 0 ... 39 ] range.
102 */
103#define USER_PRIO(p) ((p)-MAX_RT_PRIO)
104#define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio)
105#define MAX_USER_PRIO (USER_PRIO(MAX_PRIO))
106
107/*
Ingo Molnard7876a02008-01-25 21:08:19 +0100108 * Helpers for converting nanosecond timing to jiffy resolution
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 */
Eric Dumazetd6322fa2007-11-09 22:39:38 +0100110#define NS_TO_JIFFIES(TIME) ((unsigned long)(TIME) / (NSEC_PER_SEC / HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200112#define NICE_0_LOAD SCHED_LOAD_SCALE
113#define NICE_0_SHIFT SCHED_LOAD_SHIFT
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115/*
116 * These are the 'tuning knobs' of the scheduler:
117 *
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +0200118 * default timeslice is 100 msecs (used only for SCHED_RR tasks).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 * Timeslices get refilled after they expire.
120 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121#define DEF_TIMESLICE (100 * HZ / 1000)
Peter Williams2dd73a42006-06-27 02:54:34 -0700122
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200123/*
124 * single value that denotes runtime == period, ie unlimited time.
125 */
126#define RUNTIME_INF ((u64)~0ULL)
127
Ingo Molnare05606d2007-07-09 18:51:59 +0200128static inline int rt_policy(int policy)
129{
Steven Rostedt63f01242010-12-06 14:48:10 -0500130 if (policy == SCHED_FIFO || policy == SCHED_RR)
Ingo Molnare05606d2007-07-09 18:51:59 +0200131 return 1;
132 return 0;
133}
134
135static inline int task_has_rt_policy(struct task_struct *p)
136{
137 return rt_policy(p->policy);
138}
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140/*
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200141 * This is the priority-queue data structure of the RT scheduling class:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200143struct rt_prio_array {
144 DECLARE_BITMAP(bitmap, MAX_RT_PRIO+1); /* include 1 bit for delimiter */
145 struct list_head queue[MAX_RT_PRIO];
146};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200148struct rt_bandwidth {
Ingo Molnarea736ed2008-03-25 13:51:45 +0100149 /* nests inside the rq lock: */
Thomas Gleixner0986b112009-11-17 15:32:06 +0100150 raw_spinlock_t rt_runtime_lock;
Ingo Molnarea736ed2008-03-25 13:51:45 +0100151 ktime_t rt_period;
152 u64 rt_runtime;
153 struct hrtimer rt_period_timer;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200154};
155
156static struct rt_bandwidth def_rt_bandwidth;
157
158static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun);
159
160static enum hrtimer_restart sched_rt_period_timer(struct hrtimer *timer)
161{
162 struct rt_bandwidth *rt_b =
163 container_of(timer, struct rt_bandwidth, rt_period_timer);
164 ktime_t now;
165 int overrun;
166 int idle = 0;
167
168 for (;;) {
169 now = hrtimer_cb_get_time(timer);
170 overrun = hrtimer_forward(timer, now, rt_b->rt_period);
171
172 if (!overrun)
173 break;
174
175 idle = do_sched_rt_period_timer(rt_b, overrun);
176 }
177
178 return idle ? HRTIMER_NORESTART : HRTIMER_RESTART;
179}
180
181static
182void init_rt_bandwidth(struct rt_bandwidth *rt_b, u64 period, u64 runtime)
183{
184 rt_b->rt_period = ns_to_ktime(period);
185 rt_b->rt_runtime = runtime;
186
Thomas Gleixner0986b112009-11-17 15:32:06 +0100187 raw_spin_lock_init(&rt_b->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200188
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200189 hrtimer_init(&rt_b->rt_period_timer,
190 CLOCK_MONOTONIC, HRTIMER_MODE_REL);
191 rt_b->rt_period_timer.function = sched_rt_period_timer;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200192}
193
Krzysztof Heltc8bfff62008-09-05 23:46:19 +0200194static inline int rt_bandwidth_enabled(void)
195{
196 return sysctl_sched_rt_runtime >= 0;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200197}
198
199static void start_rt_bandwidth(struct rt_bandwidth *rt_b)
200{
201 ktime_t now;
202
Hiroshi Shimamotocac64d02009-02-25 09:59:26 -0800203 if (!rt_bandwidth_enabled() || rt_b->rt_runtime == RUNTIME_INF)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200204 return;
205
206 if (hrtimer_active(&rt_b->rt_period_timer))
207 return;
208
Thomas Gleixner0986b112009-11-17 15:32:06 +0100209 raw_spin_lock(&rt_b->rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200210 for (;;) {
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +0100211 unsigned long delta;
212 ktime_t soft, hard;
213
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200214 if (hrtimer_active(&rt_b->rt_period_timer))
215 break;
216
217 now = hrtimer_cb_get_time(&rt_b->rt_period_timer);
218 hrtimer_forward(&rt_b->rt_period_timer, now, rt_b->rt_period);
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +0100219
220 soft = hrtimer_get_softexpires(&rt_b->rt_period_timer);
221 hard = hrtimer_get_expires(&rt_b->rt_period_timer);
222 delta = ktime_to_ns(ktime_sub(hard, soft));
223 __hrtimer_start_range_ns(&rt_b->rt_period_timer, soft, delta,
Arun R Bharadwaj5c333862009-04-16 12:14:37 +0530224 HRTIMER_MODE_ABS_PINNED, 0);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200225 }
Thomas Gleixner0986b112009-11-17 15:32:06 +0100226 raw_spin_unlock(&rt_b->rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200227}
228
229#ifdef CONFIG_RT_GROUP_SCHED
230static void destroy_rt_bandwidth(struct rt_bandwidth *rt_b)
231{
232 hrtimer_cancel(&rt_b->rt_period_timer);
233}
234#endif
235
Heiko Carstens712555e2008-04-28 11:33:07 +0200236/*
Peter Zijlstrac4a88492011-04-07 14:09:42 +0200237 * sched_domains_mutex serializes calls to init_sched_domains,
Heiko Carstens712555e2008-04-28 11:33:07 +0200238 * detach_destroy_domains and partition_sched_domains.
239 */
240static DEFINE_MUTEX(sched_domains_mutex);
241
Dhaval Giani7c941432010-01-20 13:26:18 +0100242#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200243
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700244#include <linux/cgroup.h>
245
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200246struct cfs_rq;
247
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100248static LIST_HEAD(task_groups);
249
Paul Turnerab84d312011-07-21 09:43:28 -0700250struct cfs_bandwidth {
251#ifdef CONFIG_CFS_BANDWIDTH
252 raw_spinlock_t lock;
253 ktime_t period;
254 u64 quota;
Paul Turnera790de92011-07-21 09:43:29 -0700255 s64 hierarchal_quota;
Paul Turnerab84d312011-07-21 09:43:28 -0700256#endif
257};
258
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200259/* task group related information */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200260struct task_group {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700261 struct cgroup_subsys_state css;
Arun R Bharadwaj6c415b92008-12-01 20:49:05 +0530262
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100263#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200264 /* schedulable entities of this group on each cpu */
265 struct sched_entity **se;
266 /* runqueue "owned" by this group on each cpu */
267 struct cfs_rq **cfs_rq;
268 unsigned long shares;
Peter Zijlstra2069dd72010-11-15 15:47:00 -0800269
270 atomic_t load_weight;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100271#endif
272
273#ifdef CONFIG_RT_GROUP_SCHED
274 struct sched_rt_entity **rt_se;
275 struct rt_rq **rt_rq;
276
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200277 struct rt_bandwidth rt_bandwidth;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100278#endif
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100279
Srivatsa Vaddagiriae8393e2007-10-29 21:18:11 +0100280 struct rcu_head rcu;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100281 struct list_head list;
Peter Zijlstraf473aa52008-04-19 19:45:00 +0200282
283 struct task_group *parent;
284 struct list_head siblings;
285 struct list_head children;
Mike Galbraith5091faa2010-11-30 14:18:03 +0100286
287#ifdef CONFIG_SCHED_AUTOGROUP
288 struct autogroup *autogroup;
289#endif
Paul Turnerab84d312011-07-21 09:43:28 -0700290
291 struct cfs_bandwidth cfs_bandwidth;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200292};
293
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -0800294/* task_group_lock serializes the addition/removal of task groups */
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100295static DEFINE_SPINLOCK(task_group_lock);
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100296
Cyrill Gorcunove9036b32009-10-26 22:24:14 +0300297#ifdef CONFIG_FAIR_GROUP_SCHED
298
Yong Zhang07e06b02011-01-07 15:17:36 +0800299# define ROOT_TASK_GROUP_LOAD NICE_0_LOAD
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200300
Miao Xiecb4ad1f2008-04-28 12:54:56 +0800301/*
Lai Jiangshan2e084782008-06-12 16:42:58 +0800302 * A weight of 0 or 1 can cause arithmetics problems.
303 * A weight of a cfs_rq is the sum of weights of which entities
304 * are queued on this cfs_rq, so a weight of a entity should not be
305 * too large, so as the shares value of a task group.
Miao Xiecb4ad1f2008-04-28 12:54:56 +0800306 * (The default weight is 1024 - so there's no practical
307 * limitation from this.)
308 */
Mike Galbraithcd622872011-06-04 15:03:20 +0200309#define MIN_SHARES (1UL << 1)
310#define MAX_SHARES (1UL << 18)
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200311
Yong Zhang07e06b02011-01-07 15:17:36 +0800312static int root_task_group_load = ROOT_TASK_GROUP_LOAD;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100313#endif
314
315/* Default task group.
316 * Every task in system belong to this group at bootup.
317 */
Yong Zhang07e06b02011-01-07 15:17:36 +0800318struct task_group root_task_group;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200319
Dhaval Giani7c941432010-01-20 13:26:18 +0100320#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200321
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200322/* CFS-related fields in a runqueue */
323struct cfs_rq {
324 struct load_weight load;
Paul Turner953bfcd2011-07-21 09:43:27 -0700325 unsigned long nr_running, h_nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200326
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200327 u64 exec_clock;
Ingo Molnare9acbff2007-10-15 17:00:04 +0200328 u64 min_vruntime;
Peter Zijlstra3fe16982011-04-05 17:23:48 +0200329#ifndef CONFIG_64BIT
330 u64 min_vruntime_copy;
331#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200332
333 struct rb_root tasks_timeline;
334 struct rb_node *rb_leftmost;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +0200335
336 struct list_head tasks;
337 struct list_head *balance_iterator;
338
339 /*
340 * 'curr' points to currently running entity on this cfs_rq.
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200341 * It is set to NULL otherwise (i.e when none are currently running).
342 */
Rik van Rielac53db52011-02-01 09:51:03 -0500343 struct sched_entity *curr, *next, *last, *skip;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200344
Rakib Mullick4934a4d2011-05-04 22:53:46 +0600345#ifdef CONFIG_SCHED_DEBUG
Peter Zijlstra5ac5c4d2008-11-10 10:46:32 +0100346 unsigned int nr_spread_over;
Rakib Mullick4934a4d2011-05-04 22:53:46 +0600347#endif
Peter Zijlstraddc97292007-10-15 17:00:10 +0200348
Ingo Molnar62160e32007-10-15 17:00:03 +0200349#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200350 struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */
351
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100352 /*
353 * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200354 * a hierarchy). Non-leaf lrqs hold other higher schedulable entities
355 * (like users, containers etc.)
356 *
357 * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This
358 * list is used during load balance.
359 */
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -0800360 int on_list;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100361 struct list_head leaf_cfs_rq_list;
362 struct task_group *tg; /* group that "owns" this runqueue */
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200363
364#ifdef CONFIG_SMP
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200365 /*
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200366 * the part of load.weight contributed by tasks
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200367 */
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200368 unsigned long task_weight;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200369
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200370 /*
371 * h_load = weight * f(tg)
372 *
373 * Where f(tg) is the recursive weight fraction assigned to
374 * this group.
375 */
376 unsigned long h_load;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200377
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200378 /*
Paul Turner3b3d1902010-11-15 15:47:08 -0800379 * Maintaining per-cpu shares distribution for group scheduling
380 *
381 * load_stamp is the last time we updated the load average
382 * load_last is the last time we updated the load average and saw load
383 * load_unacc_exec_time is currently unaccounted execution time
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200384 */
Peter Zijlstra2069dd72010-11-15 15:47:00 -0800385 u64 load_avg;
386 u64 load_period;
Paul Turner3b3d1902010-11-15 15:47:08 -0800387 u64 load_stamp, load_last, load_unacc_exec_time;
Peter Zijlstraf1d239f2008-06-27 13:41:38 +0200388
Peter Zijlstra2069dd72010-11-15 15:47:00 -0800389 unsigned long load_contribution;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200390#endif
Paul Turnerab84d312011-07-21 09:43:28 -0700391#ifdef CONFIG_CFS_BANDWIDTH
392 int runtime_enabled;
393 s64 runtime_remaining;
394#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200395#endif
396};
397
Paul Turnerab84d312011-07-21 09:43:28 -0700398#ifdef CONFIG_FAIR_GROUP_SCHED
399#ifdef CONFIG_CFS_BANDWIDTH
400static inline struct cfs_bandwidth *tg_cfs_bandwidth(struct task_group *tg)
401{
402 return &tg->cfs_bandwidth;
403}
404
405static inline u64 default_cfs_period(void);
406
407static void init_cfs_bandwidth(struct cfs_bandwidth *cfs_b)
408{
409 raw_spin_lock_init(&cfs_b->lock);
410 cfs_b->quota = RUNTIME_INF;
411 cfs_b->period = ns_to_ktime(default_cfs_period());
412}
413
414static void init_cfs_rq_runtime(struct cfs_rq *cfs_rq)
415{
416 cfs_rq->runtime_enabled = 0;
417}
418
419static void destroy_cfs_bandwidth(struct cfs_bandwidth *cfs_b)
420{}
421#else
422static void init_cfs_rq_runtime(struct cfs_rq *cfs_rq) {}
423static void init_cfs_bandwidth(struct cfs_bandwidth *cfs_b) {}
424static void destroy_cfs_bandwidth(struct cfs_bandwidth *cfs_b) {}
425
426static inline struct cfs_bandwidth *tg_cfs_bandwidth(struct task_group *tg)
427{
428 return NULL;
429}
430#endif /* CONFIG_CFS_BANDWIDTH */
431#endif /* CONFIG_FAIR_GROUP_SCHED */
432
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200433/* Real-Time classes' related field in a runqueue: */
434struct rt_rq {
435 struct rt_prio_array active;
Steven Rostedt63489e42008-01-25 21:08:03 +0100436 unsigned long rt_nr_running;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100437#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Gregory Haskinse864c492008-12-29 09:39:49 -0500438 struct {
439 int curr; /* highest queued rt task prio */
Gregory Haskins398a1532009-01-14 09:10:04 -0500440#ifdef CONFIG_SMP
Gregory Haskinse864c492008-12-29 09:39:49 -0500441 int next; /* next highest */
Gregory Haskins398a1532009-01-14 09:10:04 -0500442#endif
Gregory Haskinse864c492008-12-29 09:39:49 -0500443 } highest_prio;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100444#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100445#ifdef CONFIG_SMP
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100446 unsigned long rt_nr_migratory;
Peter Zijlstraa1ba4d82009-04-01 18:40:15 +0200447 unsigned long rt_nr_total;
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100448 int overloaded;
Gregory Haskins917b6272008-12-29 09:39:53 -0500449 struct plist_head pushable_tasks;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100450#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100451 int rt_throttled;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100452 u64 rt_time;
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200453 u64 rt_runtime;
Ingo Molnarea736ed2008-03-25 13:51:45 +0100454 /* Nests inside the rq lock: */
Thomas Gleixner0986b112009-11-17 15:32:06 +0100455 raw_spinlock_t rt_runtime_lock;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100456
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100457#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100458 unsigned long rt_nr_boosted;
459
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100460 struct rq *rq;
461 struct list_head leaf_rt_rq_list;
462 struct task_group *tg;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100463#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200464};
465
Gregory Haskins57d885f2008-01-25 21:08:18 +0100466#ifdef CONFIG_SMP
467
468/*
469 * We add the notion of a root-domain which will be used to define per-domain
Ingo Molnar0eab9142008-01-25 21:08:19 +0100470 * variables. Each exclusive cpuset essentially defines an island domain by
471 * fully partitioning the member cpus from any other cpuset. Whenever a new
Gregory Haskins57d885f2008-01-25 21:08:18 +0100472 * exclusive cpuset is created, we also create and attach a new root-domain
473 * object.
474 *
Gregory Haskins57d885f2008-01-25 21:08:18 +0100475 */
476struct root_domain {
477 atomic_t refcount;
Richard Kennedy26a148e2011-07-15 11:41:31 +0100478 atomic_t rto_count;
Peter Zijlstradce840a2011-04-07 14:09:50 +0200479 struct rcu_head rcu;
Rusty Russellc6c49272008-11-25 02:35:05 +1030480 cpumask_var_t span;
481 cpumask_var_t online;
Gregory Haskins637f5082008-01-25 21:08:18 +0100482
Ingo Molnar0eab9142008-01-25 21:08:19 +0100483 /*
Gregory Haskins637f5082008-01-25 21:08:18 +0100484 * The "RT overload" flag: it gets set if a CPU has more than
485 * one runnable RT task.
486 */
Rusty Russellc6c49272008-11-25 02:35:05 +1030487 cpumask_var_t rto_mask;
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200488 struct cpupri cpupri;
Gregory Haskins57d885f2008-01-25 21:08:18 +0100489};
490
Gregory Haskinsdc938522008-01-25 21:08:26 +0100491/*
492 * By default the system creates a single root-domain with all cpus as
493 * members (mimicking the global state we have today).
494 */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100495static struct root_domain def_root_domain;
496
Christian Dietriched2d3722010-09-06 16:37:05 +0200497#endif /* CONFIG_SMP */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100498
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200499/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 * This is the main, per-CPU runqueue data structure.
501 *
502 * Locking rule: those places that want to lock multiple runqueues
503 * (such as the load balancing or the thread migration code), lock
504 * acquire operations must be ordered by ascending &runqueue.
505 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700506struct rq {
Ingo Molnard8016492007-10-18 21:32:55 +0200507 /* runqueue lock: */
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100508 raw_spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 /*
511 * nr_running and cpu_load should be in the same cacheline because
512 * remote CPUs use both these fields when doing load calculation.
513 */
514 unsigned long nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200515 #define CPU_LOAD_IDX_MAX 5
516 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -0700517 unsigned long last_load_update_tick;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700518#ifdef CONFIG_NO_HZ
Mike Galbraith39c0cbe2010-03-11 17:17:13 +0100519 u64 nohz_stamp;
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -0700520 unsigned char nohz_balance_kick;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700521#endif
Mike Galbraith61eadef2011-04-29 08:36:50 +0200522 int skip_clock_update;
Mike Galbraitha64692a2010-03-11 17:16:20 +0100523
Ingo Molnard8016492007-10-18 21:32:55 +0200524 /* capture load from *all* tasks on this cpu: */
525 struct load_weight load;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200526 unsigned long nr_load_updates;
527 u64 nr_switches;
528
529 struct cfs_rq cfs;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100530 struct rt_rq rt;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100531
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200532#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnard8016492007-10-18 21:32:55 +0200533 /* list of leaf cfs_rq on this cpu: */
534 struct list_head leaf_cfs_rq_list;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100535#endif
536#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100537 struct list_head leaf_rt_rq_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 /*
541 * This is part of a global counter where only the total sum
542 * over all CPUs matters. A task can increase this counter on
543 * one CPU and if it got migrated afterwards it may decrease
544 * it on another CPU. Always updated under the runqueue lock:
545 */
546 unsigned long nr_uninterruptible;
547
Peter Zijlstra34f971f2010-09-22 13:53:15 +0200548 struct task_struct *curr, *idle, *stop;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800549 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 struct mm_struct *prev_mm;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200551
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200552 u64 clock;
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -0700553 u64 clock_task;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 atomic_t nr_iowait;
556
557#ifdef CONFIG_SMP
Ingo Molnar0eab9142008-01-25 21:08:19 +0100558 struct root_domain *rd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 struct sched_domain *sd;
560
Peter Zijlstrae51fd5e2010-05-31 12:37:30 +0200561 unsigned long cpu_power;
562
Henrik Austada0a522c2009-02-13 20:35:45 +0100563 unsigned char idle_at_tick;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 /* For active balancing */
Gregory Haskins3f029d32009-07-29 11:08:47 -0400565 int post_schedule;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 int active_balance;
567 int push_cpu;
Tejun Heo969c7922010-05-06 18:49:21 +0200568 struct cpu_stop_work active_balance_work;
Ingo Molnard8016492007-10-18 21:32:55 +0200569 /* cpu of this runqueue: */
570 int cpu;
Gregory Haskins1f11eb62008-06-04 15:04:05 -0400571 int online;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200573 u64 rt_avg;
574 u64 age_stamp;
Mike Galbraith1b9508f2009-11-04 17:53:50 +0100575 u64 idle_stamp;
576 u64 avg_idle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577#endif
578
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -0700579#ifdef CONFIG_IRQ_TIME_ACCOUNTING
580 u64 prev_irq_time;
581#endif
Glauber Costae6e66852011-07-11 15:28:17 -0400582#ifdef CONFIG_PARAVIRT
583 u64 prev_steal_time;
584#endif
Glauber Costa095c0aa2011-07-11 15:28:18 -0400585#ifdef CONFIG_PARAVIRT_TIME_ACCOUNTING
586 u64 prev_steal_time_rq;
587#endif
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -0700588
Thomas Gleixnerdce48a82009-04-11 10:43:41 +0200589 /* calc_load related fields */
590 unsigned long calc_load_update;
591 long calc_load_active;
592
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100593#ifdef CONFIG_SCHED_HRTICK
Peter Zijlstra31656512008-07-18 18:01:23 +0200594#ifdef CONFIG_SMP
595 int hrtick_csd_pending;
596 struct call_single_data hrtick_csd;
597#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100598 struct hrtimer hrtick_timer;
599#endif
600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601#ifdef CONFIG_SCHEDSTATS
602 /* latency stats */
603 struct sched_info rq_sched_info;
Ken Chen9c2c4802008-12-16 23:41:22 -0800604 unsigned long long rq_cpu_time;
605 /* could above be rq->cfs_rq.exec_clock + rq->rt_rq.rt_runtime ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607 /* sys_sched_yield() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200608 unsigned int yld_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610 /* schedule() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200611 unsigned int sched_switch;
612 unsigned int sched_count;
613 unsigned int sched_goidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615 /* try_to_wake_up() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200616 unsigned int ttwu_count;
617 unsigned int ttwu_local;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618#endif
Peter Zijlstra317f3942011-04-05 17:23:58 +0200619
620#ifdef CONFIG_SMP
621 struct task_struct *wake_list;
622#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623};
624
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700625static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Mike Galbraitha64692a2010-03-11 17:16:20 +0100627
Peter Zijlstra1e5a7402010-10-31 12:37:04 +0100628static void check_preempt_curr(struct rq *rq, struct task_struct *p, int flags);
Ingo Molnardd41f592007-07-09 18:51:59 +0200629
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700630static inline int cpu_of(struct rq *rq)
631{
632#ifdef CONFIG_SMP
633 return rq->cpu;
634#else
635 return 0;
636#endif
637}
638
Paul E. McKenney497f0ab2010-02-22 17:04:51 -0800639#define rcu_dereference_check_sched_domain(p) \
Paul E. McKenneyd11c5632010-02-22 17:04:50 -0800640 rcu_dereference_check((p), \
Paul E. McKenneyd11c5632010-02-22 17:04:50 -0800641 lockdep_is_held(&sched_domains_mutex))
642
Ingo Molnar20d315d2007-07-09 18:51:58 +0200643/*
Nick Piggin674311d2005-06-25 14:57:27 -0700644 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700645 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700646 *
647 * The domain tree of any CPU may only be accessed from within
648 * preempt-disabled sections.
649 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700650#define for_each_domain(cpu, __sd) \
Paul E. McKenney497f0ab2010-02-22 17:04:51 -0800651 for (__sd = rcu_dereference_check_sched_domain(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
654#define this_rq() (&__get_cpu_var(runqueues))
655#define task_rq(p) cpu_rq(task_cpu(p))
656#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
Hitoshi Mitake54d35f22009-06-29 14:44:57 +0900657#define raw_rq() (&__raw_get_cpu_var(runqueues))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Peter Zijlstradc61b1d2010-06-08 11:40:42 +0200659#ifdef CONFIG_CGROUP_SCHED
660
661/*
662 * Return the group to which this tasks belongs.
663 *
Peter Zijlstra6c6c54e2011-06-03 17:37:07 +0200664 * We use task_subsys_state_check() and extend the RCU verification with
665 * pi->lock and rq->lock because cpu_cgroup_attach() holds those locks for each
666 * task it moves into the cgroup. Therefore by holding either of those locks,
667 * we pin the task to the current cgroup.
Peter Zijlstradc61b1d2010-06-08 11:40:42 +0200668 */
669static inline struct task_group *task_group(struct task_struct *p)
670{
Mike Galbraith5091faa2010-11-30 14:18:03 +0100671 struct task_group *tg;
Peter Zijlstradc61b1d2010-06-08 11:40:42 +0200672 struct cgroup_subsys_state *css;
673
674 css = task_subsys_state_check(p, cpu_cgroup_subsys_id,
Peter Zijlstra6c6c54e2011-06-03 17:37:07 +0200675 lockdep_is_held(&p->pi_lock) ||
676 lockdep_is_held(&task_rq(p)->lock));
Mike Galbraith5091faa2010-11-30 14:18:03 +0100677 tg = container_of(css, struct task_group, css);
678
679 return autogroup_task_group(p, tg);
Peter Zijlstradc61b1d2010-06-08 11:40:42 +0200680}
681
682/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
683static inline void set_task_rq(struct task_struct *p, unsigned int cpu)
684{
685#ifdef CONFIG_FAIR_GROUP_SCHED
686 p->se.cfs_rq = task_group(p)->cfs_rq[cpu];
687 p->se.parent = task_group(p)->se[cpu];
688#endif
689
690#ifdef CONFIG_RT_GROUP_SCHED
691 p->rt.rt_rq = task_group(p)->rt_rq[cpu];
692 p->rt.parent = task_group(p)->rt_se[cpu];
693#endif
694}
695
696#else /* CONFIG_CGROUP_SCHED */
697
698static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { }
699static inline struct task_group *task_group(struct task_struct *p)
700{
701 return NULL;
702}
703
704#endif /* CONFIG_CGROUP_SCHED */
705
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100706static void update_rq_clock_task(struct rq *rq, s64 delta);
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -0700707
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100708static void update_rq_clock(struct rq *rq)
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200709{
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100710 s64 delta;
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -0700711
Mike Galbraith61eadef2011-04-29 08:36:50 +0200712 if (rq->skip_clock_update > 0)
Mike Galbraithf26f9af2010-12-08 11:05:42 +0100713 return;
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -0700714
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100715 delta = sched_clock_cpu(cpu_of(rq)) - rq->clock;
716 rq->clock += delta;
717 update_rq_clock_task(rq, delta);
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200718}
719
Ingo Molnare436d802007-07-19 21:28:35 +0200720/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200721 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
722 */
723#ifdef CONFIG_SCHED_DEBUG
724# define const_debug __read_mostly
725#else
726# define const_debug static const
727#endif
728
Ingo Molnar017730c2008-05-12 21:20:52 +0200729/**
Randy Dunlap1fd06bb2011-03-15 16:12:30 -0700730 * runqueue_is_locked - Returns true if the current cpu runqueue is locked
Randy Dunlape17b38b2009-10-11 19:12:00 -0700731 * @cpu: the processor in question.
Ingo Molnar017730c2008-05-12 21:20:52 +0200732 *
Ingo Molnar017730c2008-05-12 21:20:52 +0200733 * This interface allows printk to be called with the runqueue lock
734 * held and know whether or not it is OK to wake up the klogd.
735 */
Andrew Morton89f19f02009-09-19 11:55:44 -0700736int runqueue_is_locked(int cpu)
Ingo Molnar017730c2008-05-12 21:20:52 +0200737{
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100738 return raw_spin_is_locked(&cpu_rq(cpu)->lock);
Ingo Molnar017730c2008-05-12 21:20:52 +0200739}
740
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200741/*
742 * Debugging: various feature bits
743 */
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200744
745#define SCHED_FEAT(name, enabled) \
746 __SCHED_FEAT_##name ,
747
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200748enum {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200749#include "sched_features.h"
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200750};
751
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200752#undef SCHED_FEAT
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200753
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200754#define SCHED_FEAT(name, enabled) \
755 (1UL << __SCHED_FEAT_##name) * enabled |
756
757const_debug unsigned int sysctl_sched_features =
758#include "sched_features.h"
759 0;
760
761#undef SCHED_FEAT
762
763#ifdef CONFIG_SCHED_DEBUG
764#define SCHED_FEAT(name, enabled) \
765 #name ,
766
Harvey Harrison983ed7a2008-04-24 18:17:55 -0700767static __read_mostly char *sched_feat_names[] = {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200768#include "sched_features.h"
769 NULL
770};
771
772#undef SCHED_FEAT
773
Li Zefan34f3a812008-10-30 15:23:32 +0800774static int sched_feat_show(struct seq_file *m, void *v)
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200775{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200776 int i;
777
778 for (i = 0; sched_feat_names[i]; i++) {
Li Zefan34f3a812008-10-30 15:23:32 +0800779 if (!(sysctl_sched_features & (1UL << i)))
780 seq_puts(m, "NO_");
781 seq_printf(m, "%s ", sched_feat_names[i]);
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200782 }
Li Zefan34f3a812008-10-30 15:23:32 +0800783 seq_puts(m, "\n");
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200784
Li Zefan34f3a812008-10-30 15:23:32 +0800785 return 0;
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200786}
787
788static ssize_t
789sched_feat_write(struct file *filp, const char __user *ubuf,
790 size_t cnt, loff_t *ppos)
791{
792 char buf[64];
Mathieu Desnoyers77401912010-09-13 17:47:00 -0400793 char *cmp;
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200794 int neg = 0;
795 int i;
796
797 if (cnt > 63)
798 cnt = 63;
799
800 if (copy_from_user(&buf, ubuf, cnt))
801 return -EFAULT;
802
803 buf[cnt] = 0;
Mathieu Desnoyers77401912010-09-13 17:47:00 -0400804 cmp = strstrip(buf);
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200805
Hillf Danton524429c2011-01-06 20:58:12 +0800806 if (strncmp(cmp, "NO_", 3) == 0) {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200807 neg = 1;
808 cmp += 3;
809 }
810
811 for (i = 0; sched_feat_names[i]; i++) {
Mathieu Desnoyers77401912010-09-13 17:47:00 -0400812 if (strcmp(cmp, sched_feat_names[i]) == 0) {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200813 if (neg)
814 sysctl_sched_features &= ~(1UL << i);
815 else
816 sysctl_sched_features |= (1UL << i);
817 break;
818 }
819 }
820
821 if (!sched_feat_names[i])
822 return -EINVAL;
823
Jan Blunck42994722009-11-20 17:40:37 +0100824 *ppos += cnt;
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200825
826 return cnt;
827}
828
Li Zefan34f3a812008-10-30 15:23:32 +0800829static int sched_feat_open(struct inode *inode, struct file *filp)
830{
831 return single_open(filp, sched_feat_show, NULL);
832}
833
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700834static const struct file_operations sched_feat_fops = {
Li Zefan34f3a812008-10-30 15:23:32 +0800835 .open = sched_feat_open,
836 .write = sched_feat_write,
837 .read = seq_read,
838 .llseek = seq_lseek,
839 .release = single_release,
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200840};
841
842static __init int sched_init_debug(void)
843{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200844 debugfs_create_file("sched_features", 0644, NULL, NULL,
845 &sched_feat_fops);
846
847 return 0;
848}
849late_initcall(sched_init_debug);
850
851#endif
852
853#define sched_feat(x) (sysctl_sched_features & (1UL << __SCHED_FEAT_##x))
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200854
855/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100856 * Number of tasks to iterate in a single balance run.
857 * Limited because this is done with IRQs disabled.
858 */
859const_debug unsigned int sysctl_sched_nr_migrate = 32;
860
861/*
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200862 * period over which we average the RT time consumption, measured
863 * in ms.
864 *
865 * default: 1s
866 */
867const_debug unsigned int sysctl_sched_time_avg = MSEC_PER_SEC;
868
869/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100870 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100871 * default: 1s
872 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100873unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100874
Ingo Molnar6892b752008-02-13 14:02:36 +0100875static __read_mostly int scheduler_running;
876
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100877/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100878 * part of the period that we allow rt tasks to run in us.
879 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100880 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100881int sysctl_sched_rt_runtime = 950000;
882
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200883static inline u64 global_rt_period(void)
884{
885 return (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
886}
887
888static inline u64 global_rt_runtime(void)
889{
roel kluine26873b2008-07-22 16:51:15 -0400890 if (sysctl_sched_rt_runtime < 0)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200891 return RUNTIME_INF;
892
893 return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC;
894}
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700897# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700899#ifndef finish_arch_switch
900# define finish_arch_switch(prev) do { } while (0)
901#endif
902
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100903static inline int task_current(struct rq *rq, struct task_struct *p)
904{
905 return rq->curr == p;
906}
907
Ingo Molnar70b97a72006-07-03 00:25:42 -0700908static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700909{
Peter Zijlstra3ca7a442011-04-05 17:23:40 +0200910#ifdef CONFIG_SMP
911 return p->on_cpu;
912#else
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100913 return task_current(rq, p);
Peter Zijlstra3ca7a442011-04-05 17:23:40 +0200914#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700915}
916
Peter Zijlstra3ca7a442011-04-05 17:23:40 +0200917#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700918static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700919{
Peter Zijlstra3ca7a442011-04-05 17:23:40 +0200920#ifdef CONFIG_SMP
921 /*
922 * We can optimise this out completely for !SMP, because the
923 * SMP rebalancing from interrupt is the only thing that cares
924 * here.
925 */
926 next->on_cpu = 1;
927#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700928}
929
Ingo Molnar70b97a72006-07-03 00:25:42 -0700930static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700931{
Peter Zijlstra3ca7a442011-04-05 17:23:40 +0200932#ifdef CONFIG_SMP
933 /*
934 * After ->on_cpu is cleared, the task can be moved to a different CPU.
935 * We must ensure this doesn't happen until the switch is completely
936 * finished.
937 */
938 smp_wmb();
939 prev->on_cpu = 0;
940#endif
Ingo Molnarda04c032005-09-13 11:17:59 +0200941#ifdef CONFIG_DEBUG_SPINLOCK
942 /* this is a valid case when another task releases the spinlock */
943 rq->lock.owner = current;
944#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700945 /*
946 * If we are tracking spinlock dependencies then we have to
947 * fix up the runqueue lock - which gets 'carried over' from
948 * prev into current:
949 */
950 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
951
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100952 raw_spin_unlock_irq(&rq->lock);
Nick Piggin4866cde2005-06-25 14:57:23 -0700953}
954
955#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700956static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700957{
958#ifdef CONFIG_SMP
959 /*
960 * We can optimise this out completely for !SMP, because the
961 * SMP rebalancing from interrupt is the only thing that cares
962 * here.
963 */
Peter Zijlstra3ca7a442011-04-05 17:23:40 +0200964 next->on_cpu = 1;
Nick Piggin4866cde2005-06-25 14:57:23 -0700965#endif
966#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100967 raw_spin_unlock_irq(&rq->lock);
Nick Piggin4866cde2005-06-25 14:57:23 -0700968#else
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100969 raw_spin_unlock(&rq->lock);
Nick Piggin4866cde2005-06-25 14:57:23 -0700970#endif
971}
972
Ingo Molnar70b97a72006-07-03 00:25:42 -0700973static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700974{
975#ifdef CONFIG_SMP
976 /*
Peter Zijlstra3ca7a442011-04-05 17:23:40 +0200977 * After ->on_cpu is cleared, the task can be moved to a different CPU.
Nick Piggin4866cde2005-06-25 14:57:23 -0700978 * We must ensure this doesn't happen until the switch is completely
979 * finished.
980 */
981 smp_wmb();
Peter Zijlstra3ca7a442011-04-05 17:23:40 +0200982 prev->on_cpu = 0;
Nick Piggin4866cde2005-06-25 14:57:23 -0700983#endif
984#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
985 local_irq_enable();
986#endif
987}
988#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990/*
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200991 * __task_rq_lock - lock the rq @p resides on.
Ingo Molnarb29739f2006-06-27 02:54:51 -0700992 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700993static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700994 __acquires(rq->lock)
995{
Peter Zijlstra0970d292010-02-15 14:45:54 +0100996 struct rq *rq;
997
Peter Zijlstra0122ec52011-04-05 17:23:51 +0200998 lockdep_assert_held(&p->pi_lock);
999
Andi Kleen3a5c3592007-10-15 17:00:14 +02001000 for (;;) {
Peter Zijlstra0970d292010-02-15 14:45:54 +01001001 rq = task_rq(p);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001002 raw_spin_lock(&rq->lock);
Peter Zijlstra65cc8e42010-03-25 21:05:16 +01001003 if (likely(rq == task_rq(p)))
Andi Kleen3a5c3592007-10-15 17:00:14 +02001004 return rq;
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001005 raw_spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07001006 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07001007}
1008
1009/*
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001010 * task_rq_lock - lock p->pi_lock and lock the rq @p resides on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001012static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001013 __acquires(p->pi_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 __acquires(rq->lock)
1015{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001016 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Andi Kleen3a5c3592007-10-15 17:00:14 +02001018 for (;;) {
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001019 raw_spin_lock_irqsave(&p->pi_lock, *flags);
Andi Kleen3a5c3592007-10-15 17:00:14 +02001020 rq = task_rq(p);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001021 raw_spin_lock(&rq->lock);
Peter Zijlstra65cc8e42010-03-25 21:05:16 +01001022 if (likely(rq == task_rq(p)))
Andi Kleen3a5c3592007-10-15 17:00:14 +02001023 return rq;
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001024 raw_spin_unlock(&rq->lock);
1025 raw_spin_unlock_irqrestore(&p->pi_lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027}
1028
Alexey Dobriyana9957442007-10-15 17:00:13 +02001029static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001030 __releases(rq->lock)
1031{
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001032 raw_spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07001033}
1034
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001035static inline void
1036task_rq_unlock(struct rq *rq, struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 __releases(rq->lock)
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001038 __releases(p->pi_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039{
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001040 raw_spin_unlock(&rq->lock);
1041 raw_spin_unlock_irqrestore(&p->pi_lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042}
1043
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -08001045 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001047static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 __acquires(rq->lock)
1049{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001050 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
1052 local_irq_disable();
1053 rq = this_rq();
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001054 raw_spin_lock(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056 return rq;
1057}
1058
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001059#ifdef CONFIG_SCHED_HRTICK
1060/*
1061 * Use HR-timers to deliver accurate preemption points.
1062 *
1063 * Its all a bit involved since we cannot program an hrt while holding the
1064 * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a
1065 * reschedule event.
1066 *
1067 * When we get rescheduled we reprogram the hrtick_timer outside of the
1068 * rq->lock.
1069 */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001070
1071/*
1072 * Use hrtick when:
1073 * - enabled by features
1074 * - hrtimer is actually high res
1075 */
1076static inline int hrtick_enabled(struct rq *rq)
1077{
1078 if (!sched_feat(HRTICK))
1079 return 0;
Ingo Molnarba420592008-07-20 11:02:06 +02001080 if (!cpu_active(cpu_of(rq)))
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001081 return 0;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001082 return hrtimer_is_hres_active(&rq->hrtick_timer);
1083}
1084
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001085static void hrtick_clear(struct rq *rq)
1086{
1087 if (hrtimer_active(&rq->hrtick_timer))
1088 hrtimer_cancel(&rq->hrtick_timer);
1089}
1090
1091/*
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001092 * High-resolution timer tick.
1093 * Runs from hardirq context with interrupts disabled.
1094 */
1095static enum hrtimer_restart hrtick(struct hrtimer *timer)
1096{
1097 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
1098
1099 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1100
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001101 raw_spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02001102 update_rq_clock(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001103 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001104 raw_spin_unlock(&rq->lock);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001105
1106 return HRTIMER_NORESTART;
1107}
1108
Rabin Vincent95e904c2008-05-11 05:55:33 +05301109#ifdef CONFIG_SMP
Peter Zijlstra31656512008-07-18 18:01:23 +02001110/*
1111 * called from hardirq (IPI) context
1112 */
1113static void __hrtick_start(void *arg)
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001114{
Peter Zijlstra31656512008-07-18 18:01:23 +02001115 struct rq *rq = arg;
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001116
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001117 raw_spin_lock(&rq->lock);
Peter Zijlstra31656512008-07-18 18:01:23 +02001118 hrtimer_restart(&rq->hrtick_timer);
1119 rq->hrtick_csd_pending = 0;
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001120 raw_spin_unlock(&rq->lock);
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001121}
1122
Peter Zijlstra31656512008-07-18 18:01:23 +02001123/*
1124 * Called to set the hrtick timer state.
1125 *
1126 * called with rq->lock held and irqs disabled
1127 */
1128static void hrtick_start(struct rq *rq, u64 delay)
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001129{
Peter Zijlstra31656512008-07-18 18:01:23 +02001130 struct hrtimer *timer = &rq->hrtick_timer;
1131 ktime_t time = ktime_add_ns(timer->base->get_time(), delay);
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001132
Arjan van de Vencc584b22008-09-01 15:02:30 -07001133 hrtimer_set_expires(timer, time);
Peter Zijlstra31656512008-07-18 18:01:23 +02001134
1135 if (rq == this_rq()) {
1136 hrtimer_restart(timer);
1137 } else if (!rq->hrtick_csd_pending) {
Peter Zijlstra6e275632009-02-25 13:59:48 +01001138 __smp_call_function_single(cpu_of(rq), &rq->hrtick_csd, 0);
Peter Zijlstra31656512008-07-18 18:01:23 +02001139 rq->hrtick_csd_pending = 1;
1140 }
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001141}
1142
1143static int
1144hotplug_hrtick(struct notifier_block *nfb, unsigned long action, void *hcpu)
1145{
1146 int cpu = (int)(long)hcpu;
1147
1148 switch (action) {
1149 case CPU_UP_CANCELED:
1150 case CPU_UP_CANCELED_FROZEN:
1151 case CPU_DOWN_PREPARE:
1152 case CPU_DOWN_PREPARE_FROZEN:
1153 case CPU_DEAD:
1154 case CPU_DEAD_FROZEN:
Peter Zijlstra31656512008-07-18 18:01:23 +02001155 hrtick_clear(cpu_rq(cpu));
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001156 return NOTIFY_OK;
1157 }
1158
1159 return NOTIFY_DONE;
1160}
1161
Rakib Mullickfa748202008-09-22 14:55:45 -07001162static __init void init_hrtick(void)
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001163{
1164 hotcpu_notifier(hotplug_hrtick, 0);
1165}
Peter Zijlstra31656512008-07-18 18:01:23 +02001166#else
1167/*
1168 * Called to set the hrtick timer state.
1169 *
1170 * called with rq->lock held and irqs disabled
1171 */
1172static void hrtick_start(struct rq *rq, u64 delay)
1173{
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +01001174 __hrtimer_start_range_ns(&rq->hrtick_timer, ns_to_ktime(delay), 0,
Arun R Bharadwaj5c333862009-04-16 12:14:37 +05301175 HRTIMER_MODE_REL_PINNED, 0);
Peter Zijlstra31656512008-07-18 18:01:23 +02001176}
1177
Andrew Morton006c75f2008-09-22 14:55:46 -07001178static inline void init_hrtick(void)
Peter Zijlstra31656512008-07-18 18:01:23 +02001179{
1180}
Rabin Vincent95e904c2008-05-11 05:55:33 +05301181#endif /* CONFIG_SMP */
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001182
1183static void init_rq_hrtick(struct rq *rq)
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001184{
Peter Zijlstra31656512008-07-18 18:01:23 +02001185#ifdef CONFIG_SMP
1186 rq->hrtick_csd_pending = 0;
1187
1188 rq->hrtick_csd.flags = 0;
1189 rq->hrtick_csd.func = __hrtick_start;
1190 rq->hrtick_csd.info = rq;
1191#endif
1192
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001193 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1194 rq->hrtick_timer.function = hrtick;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001195}
Andrew Morton006c75f2008-09-22 14:55:46 -07001196#else /* CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001197static inline void hrtick_clear(struct rq *rq)
1198{
1199}
1200
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001201static inline void init_rq_hrtick(struct rq *rq)
1202{
1203}
1204
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001205static inline void init_hrtick(void)
1206{
1207}
Andrew Morton006c75f2008-09-22 14:55:46 -07001208#endif /* CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001209
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001210/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001211 * resched_task - mark a task 'to be rescheduled now'.
1212 *
1213 * On UP this means the setting of the need_resched flag, on SMP it
1214 * might also involve a cross-CPU call to trigger the scheduler on
1215 * the target CPU.
1216 */
1217#ifdef CONFIG_SMP
1218
1219#ifndef tsk_is_polling
1220#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1221#endif
1222
Peter Zijlstra31656512008-07-18 18:01:23 +02001223static void resched_task(struct task_struct *p)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001224{
1225 int cpu;
1226
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001227 assert_raw_spin_locked(&task_rq(p)->lock);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001228
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08001229 if (test_tsk_need_resched(p))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001230 return;
1231
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08001232 set_tsk_need_resched(p);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001233
1234 cpu = task_cpu(p);
1235 if (cpu == smp_processor_id())
1236 return;
1237
1238 /* NEED_RESCHED must be visible before we test polling */
1239 smp_mb();
1240 if (!tsk_is_polling(p))
1241 smp_send_reschedule(cpu);
1242}
1243
1244static void resched_cpu(int cpu)
1245{
1246 struct rq *rq = cpu_rq(cpu);
1247 unsigned long flags;
1248
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001249 if (!raw_spin_trylock_irqsave(&rq->lock, flags))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001250 return;
1251 resched_task(cpu_curr(cpu));
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001252 raw_spin_unlock_irqrestore(&rq->lock, flags);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001253}
Thomas Gleixner06d83082008-03-22 09:20:24 +01001254
1255#ifdef CONFIG_NO_HZ
1256/*
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07001257 * In the semi idle case, use the nearest busy cpu for migrating timers
1258 * from an idle cpu. This is good for power-savings.
1259 *
1260 * We don't do similar optimization for completely idle system, as
1261 * selecting an idle cpu will add more delays to the timers than intended
1262 * (as that cpu's timer base may not be uptodate wrt jiffies etc).
1263 */
1264int get_nohz_timer_target(void)
1265{
1266 int cpu = smp_processor_id();
1267 int i;
1268 struct sched_domain *sd;
1269
Peter Zijlstra057f3fa2011-04-18 11:24:34 +02001270 rcu_read_lock();
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07001271 for_each_domain(cpu, sd) {
Peter Zijlstra057f3fa2011-04-18 11:24:34 +02001272 for_each_cpu(i, sched_domain_span(sd)) {
1273 if (!idle_cpu(i)) {
1274 cpu = i;
1275 goto unlock;
1276 }
1277 }
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07001278 }
Peter Zijlstra057f3fa2011-04-18 11:24:34 +02001279unlock:
1280 rcu_read_unlock();
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07001281 return cpu;
1282}
1283/*
Thomas Gleixner06d83082008-03-22 09:20:24 +01001284 * When add_timer_on() enqueues a timer into the timer wheel of an
1285 * idle CPU then this timer might expire before the next timer event
1286 * which is scheduled to wake up that CPU. In case of a completely
1287 * idle system the next event might even be infinite time into the
1288 * future. wake_up_idle_cpu() ensures that the CPU is woken up and
1289 * leaves the inner idle loop so the newly added timer is taken into
1290 * account when the CPU goes back to idle and evaluates the timer
1291 * wheel for the next timer event.
1292 */
1293void wake_up_idle_cpu(int cpu)
1294{
1295 struct rq *rq = cpu_rq(cpu);
1296
1297 if (cpu == smp_processor_id())
1298 return;
1299
1300 /*
1301 * This is safe, as this function is called with the timer
1302 * wheel base lock of (cpu) held. When the CPU is on the way
1303 * to idle and has not yet set rq->curr to idle then it will
1304 * be serialized on the timer wheel base lock and take the new
1305 * timer into account automatically.
1306 */
1307 if (rq->curr != rq->idle)
1308 return;
1309
1310 /*
1311 * We can set TIF_RESCHED on the idle task of the other CPU
1312 * lockless. The worst case is that the other CPU runs the
1313 * idle task through an additional NOOP schedule()
1314 */
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08001315 set_tsk_need_resched(rq->idle);
Thomas Gleixner06d83082008-03-22 09:20:24 +01001316
1317 /* NEED_RESCHED must be visible before we test polling */
1318 smp_mb();
1319 if (!tsk_is_polling(rq->idle))
1320 smp_send_reschedule(cpu);
1321}
Mike Galbraith39c0cbe2010-03-11 17:17:13 +01001322
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001323#endif /* CONFIG_NO_HZ */
Thomas Gleixner06d83082008-03-22 09:20:24 +01001324
Peter Zijlstrae9e92502009-09-01 10:34:37 +02001325static u64 sched_avg_period(void)
1326{
1327 return (u64)sysctl_sched_time_avg * NSEC_PER_MSEC / 2;
1328}
1329
1330static void sched_avg_update(struct rq *rq)
1331{
1332 s64 period = sched_avg_period();
1333
1334 while ((s64)(rq->clock - rq->age_stamp) > period) {
Will Deacon0d98bb22010-05-24 12:11:43 -07001335 /*
1336 * Inline assembly required to prevent the compiler
1337 * optimising this loop into a divmod call.
1338 * See __iter_div_u64_rem() for another example of this.
1339 */
1340 asm("" : "+rm" (rq->age_stamp));
Peter Zijlstrae9e92502009-09-01 10:34:37 +02001341 rq->age_stamp += period;
1342 rq->rt_avg /= 2;
1343 }
1344}
1345
1346static void sched_rt_avg_update(struct rq *rq, u64 rt_delta)
1347{
1348 rq->rt_avg += rt_delta;
1349 sched_avg_update(rq);
1350}
1351
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001352#else /* !CONFIG_SMP */
Peter Zijlstra31656512008-07-18 18:01:23 +02001353static void resched_task(struct task_struct *p)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001354{
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001355 assert_raw_spin_locked(&task_rq(p)->lock);
Peter Zijlstra31656512008-07-18 18:01:23 +02001356 set_tsk_need_resched(p);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001357}
Peter Zijlstrae9e92502009-09-01 10:34:37 +02001358
1359static void sched_rt_avg_update(struct rq *rq, u64 rt_delta)
1360{
1361}
Suresh Siddhada2b71e2010-08-23 13:42:51 -07001362
1363static void sched_avg_update(struct rq *rq)
1364{
1365}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001366#endif /* CONFIG_SMP */
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001367
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001368#if BITS_PER_LONG == 32
1369# define WMULT_CONST (~0UL)
1370#else
1371# define WMULT_CONST (1UL << 32)
1372#endif
1373
1374#define WMULT_SHIFT 32
1375
Ingo Molnar194081e2007-08-09 11:16:51 +02001376/*
1377 * Shift right and round:
1378 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001379#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +02001380
Peter Zijlstraa7be37a2008-06-27 13:41:11 +02001381/*
1382 * delta *= weight / lw
1383 */
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +02001384static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001385calc_delta_mine(unsigned long delta_exec, unsigned long weight,
1386 struct load_weight *lw)
1387{
1388 u64 tmp;
1389
Nikhil Raoc8b28112011-05-18 14:37:48 -07001390 /*
1391 * weight can be less than 2^SCHED_LOAD_RESOLUTION for task group sched
1392 * entities since MIN_SHARES = 2. Treat weight as 1 if less than
1393 * 2^SCHED_LOAD_RESOLUTION.
1394 */
1395 if (likely(weight > (1UL << SCHED_LOAD_RESOLUTION)))
1396 tmp = (u64)delta_exec * scale_load_down(weight);
1397 else
1398 tmp = (u64)delta_exec;
Stephan Baerwolfdb670da2011-05-11 18:03:29 +02001399
Lai Jiangshan7a232e02008-06-12 16:43:07 +08001400 if (!lw->inv_weight) {
Nikhil Raoc8b28112011-05-18 14:37:48 -07001401 unsigned long w = scale_load_down(lw->weight);
1402
1403 if (BITS_PER_LONG > 32 && unlikely(w >= WMULT_CONST))
Lai Jiangshan7a232e02008-06-12 16:43:07 +08001404 lw->inv_weight = 1;
Nikhil Raoc8b28112011-05-18 14:37:48 -07001405 else if (unlikely(!w))
1406 lw->inv_weight = WMULT_CONST;
Lai Jiangshan7a232e02008-06-12 16:43:07 +08001407 else
Nikhil Raoc8b28112011-05-18 14:37:48 -07001408 lw->inv_weight = WMULT_CONST / w;
Lai Jiangshan7a232e02008-06-12 16:43:07 +08001409 }
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001410
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001411 /*
1412 * Check whether we'd overflow the 64-bit multiplication:
1413 */
Ingo Molnar194081e2007-08-09 11:16:51 +02001414 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001415 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +02001416 WMULT_SHIFT/2);
1417 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001418 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001419
Ingo Molnarecf691d2007-08-02 17:41:40 +02001420 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001421}
1422
Ingo Molnar10919852007-10-15 17:00:04 +02001423static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001424{
1425 lw->weight += inc;
Ingo Molnare89996a2008-03-14 23:48:28 +01001426 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001427}
1428
Ingo Molnar10919852007-10-15 17:00:04 +02001429static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001430{
1431 lw->weight -= dec;
Ingo Molnare89996a2008-03-14 23:48:28 +01001432 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001433}
1434
Peter Zijlstra2069dd72010-11-15 15:47:00 -08001435static inline void update_load_set(struct load_weight *lw, unsigned long w)
1436{
1437 lw->weight = w;
1438 lw->inv_weight = 0;
1439}
1440
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001442 * To aid in avoiding the subversion of "niceness" due to uneven distribution
1443 * of tasks with abnormal "nice" values across CPUs the contribution that
1444 * each task makes to its run queue's load is weighted according to its
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001445 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
Peter Williams2dd73a42006-06-27 02:54:34 -07001446 * scaled version of the new time slice allocation that they receive on time
1447 * slice expiry etc.
1448 */
1449
Peter Zijlstracce7ade2009-01-15 14:53:37 +01001450#define WEIGHT_IDLEPRIO 3
1451#define WMULT_IDLEPRIO 1431655765
Ingo Molnardd41f592007-07-09 18:51:59 +02001452
1453/*
1454 * Nice levels are multiplicative, with a gentle 10% change for every
1455 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
1456 * nice 1, it will get ~10% less CPU time than another CPU-bound task
1457 * that remained on nice 0.
1458 *
1459 * The "10% effect" is relative and cumulative: from _any_ nice level,
1460 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee2007-07-16 09:46:30 +02001461 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
1462 * If a task goes up by ~10% and another task goes down by ~10% then
1463 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +02001464 */
1465static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001466 /* -20 */ 88761, 71755, 56483, 46273, 36291,
1467 /* -15 */ 29154, 23254, 18705, 14949, 11916,
1468 /* -10 */ 9548, 7620, 6100, 4904, 3906,
1469 /* -5 */ 3121, 2501, 1991, 1586, 1277,
1470 /* 0 */ 1024, 820, 655, 526, 423,
1471 /* 5 */ 335, 272, 215, 172, 137,
1472 /* 10 */ 110, 87, 70, 56, 45,
1473 /* 15 */ 36, 29, 23, 18, 15,
Ingo Molnardd41f592007-07-09 18:51:59 +02001474};
1475
Ingo Molnar5714d2d2007-07-16 09:46:31 +02001476/*
1477 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
1478 *
1479 * In cases where the weight does not change often, we can use the
1480 * precalculated inverse to speed up arithmetics by turning divisions
1481 * into multiplications:
1482 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001483static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001484 /* -20 */ 48388, 59856, 76040, 92818, 118348,
1485 /* -15 */ 147320, 184698, 229616, 287308, 360437,
1486 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
1487 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
1488 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
1489 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
1490 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
1491 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +02001492};
Peter Williams2dd73a42006-06-27 02:54:34 -07001493
Bharata B Raoef12fef2009-03-31 10:02:22 +05301494/* Time spent by the tasks of the cpu accounting group executing in ... */
1495enum cpuacct_stat_index {
1496 CPUACCT_STAT_USER, /* ... user mode */
1497 CPUACCT_STAT_SYSTEM, /* ... kernel mode */
1498
1499 CPUACCT_STAT_NSTATS,
1500};
1501
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001502#ifdef CONFIG_CGROUP_CPUACCT
1503static void cpuacct_charge(struct task_struct *tsk, u64 cputime);
Bharata B Raoef12fef2009-03-31 10:02:22 +05301504static void cpuacct_update_stats(struct task_struct *tsk,
1505 enum cpuacct_stat_index idx, cputime_t val);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001506#else
1507static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
Bharata B Raoef12fef2009-03-31 10:02:22 +05301508static inline void cpuacct_update_stats(struct task_struct *tsk,
1509 enum cpuacct_stat_index idx, cputime_t val) {}
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001510#endif
1511
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001512static inline void inc_cpu_load(struct rq *rq, unsigned long load)
1513{
1514 update_load_add(&rq->load, load);
1515}
1516
1517static inline void dec_cpu_load(struct rq *rq, unsigned long load)
1518{
1519 update_load_sub(&rq->load, load);
1520}
1521
Paul Turnera790de92011-07-21 09:43:29 -07001522#if defined(CONFIG_RT_GROUP_SCHED) || (defined(CONFIG_FAIR_GROUP_SCHED) && \
1523 (defined(CONFIG_SMP) || defined(CONFIG_CFS_BANDWIDTH)))
Peter Zijlstraeb755802008-08-19 12:33:05 +02001524typedef int (*tg_visitor)(struct task_group *, void *);
1525
1526/*
1527 * Iterate the full tree, calling @down when first entering a node and @up when
1528 * leaving it for the final time.
1529 */
1530static int walk_tg_tree(tg_visitor down, tg_visitor up, void *data)
1531{
1532 struct task_group *parent, *child;
1533 int ret;
1534
1535 rcu_read_lock();
1536 parent = &root_task_group;
1537down:
1538 ret = (*down)(parent, data);
1539 if (ret)
1540 goto out_unlock;
1541 list_for_each_entry_rcu(child, &parent->children, siblings) {
1542 parent = child;
1543 goto down;
1544
1545up:
1546 continue;
1547 }
1548 ret = (*up)(parent, data);
1549 if (ret)
1550 goto out_unlock;
1551
1552 child = parent;
1553 parent = parent->parent;
1554 if (parent)
1555 goto up;
1556out_unlock:
1557 rcu_read_unlock();
1558
1559 return ret;
1560}
1561
1562static int tg_nop(struct task_group *tg, void *data)
1563{
1564 return 0;
1565}
1566#endif
1567
Gregory Haskinse7693a32008-01-25 21:08:09 +01001568#ifdef CONFIG_SMP
Peter Zijlstraf5f08f32009-09-10 13:35:28 +02001569/* Used instead of source_load when we know the type == 0 */
1570static unsigned long weighted_cpuload(const int cpu)
1571{
1572 return cpu_rq(cpu)->load.weight;
1573}
1574
1575/*
1576 * Return a low guess at the load of a migration-source cpu weighted
1577 * according to the scheduling class and "nice" value.
1578 *
1579 * We want to under-estimate the load of migration sources, to
1580 * balance conservatively.
1581 */
1582static unsigned long source_load(int cpu, int type)
1583{
1584 struct rq *rq = cpu_rq(cpu);
1585 unsigned long total = weighted_cpuload(cpu);
1586
1587 if (type == 0 || !sched_feat(LB_BIAS))
1588 return total;
1589
1590 return min(rq->cpu_load[type-1], total);
1591}
1592
1593/*
1594 * Return a high guess at the load of a migration-target cpu weighted
1595 * according to the scheduling class and "nice" value.
1596 */
1597static unsigned long target_load(int cpu, int type)
1598{
1599 struct rq *rq = cpu_rq(cpu);
1600 unsigned long total = weighted_cpuload(cpu);
1601
1602 if (type == 0 || !sched_feat(LB_BIAS))
1603 return total;
1604
1605 return max(rq->cpu_load[type-1], total);
1606}
1607
Peter Zijlstraae154be2009-09-10 14:40:57 +02001608static unsigned long power_of(int cpu)
1609{
Peter Zijlstrae51fd5e2010-05-31 12:37:30 +02001610 return cpu_rq(cpu)->cpu_power;
Peter Zijlstraae154be2009-09-10 14:40:57 +02001611}
1612
Gregory Haskinse7693a32008-01-25 21:08:09 +01001613static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001614
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001615static unsigned long cpu_avg_load_per_task(int cpu)
1616{
1617 struct rq *rq = cpu_rq(cpu);
Ingo Molnaraf6d5962008-11-29 20:45:15 +01001618 unsigned long nr_running = ACCESS_ONCE(rq->nr_running);
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001619
Steven Rostedt4cd42622008-11-26 21:04:24 -05001620 if (nr_running)
Jan H. Schönherre2b245f2011-08-01 11:03:28 +02001621 return rq->load.weight / nr_running;
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001622
Jan H. Schönherre2b245f2011-08-01 11:03:28 +02001623 return 0;
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001624}
1625
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001626#ifdef CONFIG_PREEMPT
1627
Peter Zijlstrab78bb862009-09-15 14:23:18 +02001628static void double_rq_lock(struct rq *rq1, struct rq *rq2);
1629
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001630/*
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001631 * fair double_lock_balance: Safely acquires both rq->locks in a fair
1632 * way at the expense of forcing extra atomic operations in all
1633 * invocations. This assures that the double_lock is acquired using the
1634 * same underlying policy as the spinlock_t on this architecture, which
1635 * reduces latency compared to the unfair variant below. However, it
1636 * also adds more overhead and therefore may reduce throughput.
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001637 */
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001638static inline int _double_lock_balance(struct rq *this_rq, struct rq *busiest)
1639 __releases(this_rq->lock)
1640 __acquires(busiest->lock)
1641 __acquires(this_rq->lock)
1642{
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001643 raw_spin_unlock(&this_rq->lock);
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001644 double_rq_lock(this_rq, busiest);
1645
1646 return 1;
1647}
1648
1649#else
1650/*
1651 * Unfair double_lock_balance: Optimizes throughput at the expense of
1652 * latency by eliminating extra atomic operations when the locks are
1653 * already in proper order on entry. This favors lower cpu-ids and will
1654 * grant the double lock to lower cpus over higher ids under contention,
1655 * regardless of entry order into the function.
1656 */
1657static int _double_lock_balance(struct rq *this_rq, struct rq *busiest)
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001658 __releases(this_rq->lock)
1659 __acquires(busiest->lock)
1660 __acquires(this_rq->lock)
1661{
1662 int ret = 0;
1663
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001664 if (unlikely(!raw_spin_trylock(&busiest->lock))) {
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001665 if (busiest < this_rq) {
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001666 raw_spin_unlock(&this_rq->lock);
1667 raw_spin_lock(&busiest->lock);
1668 raw_spin_lock_nested(&this_rq->lock,
1669 SINGLE_DEPTH_NESTING);
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001670 ret = 1;
1671 } else
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001672 raw_spin_lock_nested(&busiest->lock,
1673 SINGLE_DEPTH_NESTING);
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001674 }
1675 return ret;
1676}
1677
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001678#endif /* CONFIG_PREEMPT */
1679
1680/*
1681 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
1682 */
1683static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
1684{
1685 if (unlikely(!irqs_disabled())) {
1686 /* printk() doesn't work good under rq->lock */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001687 raw_spin_unlock(&this_rq->lock);
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001688 BUG_ON(1);
1689 }
1690
1691 return _double_lock_balance(this_rq, busiest);
1692}
1693
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001694static inline void double_unlock_balance(struct rq *this_rq, struct rq *busiest)
1695 __releases(busiest->lock)
1696{
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001697 raw_spin_unlock(&busiest->lock);
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001698 lock_set_subclass(&this_rq->lock.dep_map, 0, _RET_IP_);
1699}
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001700
1701/*
1702 * double_rq_lock - safely lock two runqueues
1703 *
1704 * Note this does not disable interrupts like task_rq_lock,
1705 * you need to do so manually before calling.
1706 */
1707static void double_rq_lock(struct rq *rq1, struct rq *rq2)
1708 __acquires(rq1->lock)
1709 __acquires(rq2->lock)
1710{
1711 BUG_ON(!irqs_disabled());
1712 if (rq1 == rq2) {
1713 raw_spin_lock(&rq1->lock);
1714 __acquire(rq2->lock); /* Fake it out ;) */
1715 } else {
1716 if (rq1 < rq2) {
1717 raw_spin_lock(&rq1->lock);
1718 raw_spin_lock_nested(&rq2->lock, SINGLE_DEPTH_NESTING);
1719 } else {
1720 raw_spin_lock(&rq2->lock);
1721 raw_spin_lock_nested(&rq1->lock, SINGLE_DEPTH_NESTING);
1722 }
1723 }
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001724}
1725
1726/*
1727 * double_rq_unlock - safely unlock two runqueues
1728 *
1729 * Note this does not restore interrupts like task_rq_unlock,
1730 * you need to do so manually after calling.
1731 */
1732static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
1733 __releases(rq1->lock)
1734 __releases(rq2->lock)
1735{
1736 raw_spin_unlock(&rq1->lock);
1737 if (rq1 != rq2)
1738 raw_spin_unlock(&rq2->lock);
1739 else
1740 __release(rq2->lock);
1741}
1742
Mike Galbraithd95f4122011-02-01 09:50:51 -05001743#else /* CONFIG_SMP */
1744
1745/*
1746 * double_rq_lock - safely lock two runqueues
1747 *
1748 * Note this does not disable interrupts like task_rq_lock,
1749 * you need to do so manually before calling.
1750 */
1751static void double_rq_lock(struct rq *rq1, struct rq *rq2)
1752 __acquires(rq1->lock)
1753 __acquires(rq2->lock)
1754{
1755 BUG_ON(!irqs_disabled());
1756 BUG_ON(rq1 != rq2);
1757 raw_spin_lock(&rq1->lock);
1758 __acquire(rq2->lock); /* Fake it out ;) */
1759}
1760
1761/*
1762 * double_rq_unlock - safely unlock two runqueues
1763 *
1764 * Note this does not restore interrupts like task_rq_unlock,
1765 * you need to do so manually after calling.
1766 */
1767static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
1768 __releases(rq1->lock)
1769 __releases(rq2->lock)
1770{
1771 BUG_ON(rq1 != rq2);
1772 raw_spin_unlock(&rq1->lock);
1773 __release(rq2->lock);
1774}
1775
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001776#endif
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001777
Peter Zijlstra74f51872010-04-22 21:50:19 +02001778static void calc_load_account_idle(struct rq *this_rq);
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +01001779static void update_sysctl(void);
Christian Ehrhardtacb4a842009-11-30 12:16:48 +01001780static int get_update_sysctl_factor(void);
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07001781static void update_cpu_load(struct rq *this_rq);
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02001782
Peter Zijlstracd29fe62009-11-27 17:32:46 +01001783static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1784{
1785 set_task_rq(p, cpu);
1786#ifdef CONFIG_SMP
1787 /*
1788 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
1789 * successfuly executed on another CPU. We must ensure that updates of
1790 * per-task data have been completed by this moment.
1791 */
1792 smp_wmb();
1793 task_thread_info(p)->cpu = cpu;
1794#endif
1795}
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001796
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001797static const struct sched_class rt_sched_class;
Ingo Molnardd41f592007-07-09 18:51:59 +02001798
Peter Zijlstra34f971f2010-09-22 13:53:15 +02001799#define sched_class_highest (&stop_sched_class)
Gregory Haskins1f11eb62008-06-04 15:04:05 -04001800#define for_each_class(class) \
1801 for (class = sched_class_highest; class; class = class->next)
Ingo Molnardd41f592007-07-09 18:51:59 +02001802
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001803#include "sched_stats.h"
1804
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001805static void inc_nr_running(struct rq *rq)
Ingo Molnar6363ca52008-05-29 11:28:57 +02001806{
1807 rq->nr_running++;
Ingo Molnar6363ca52008-05-29 11:28:57 +02001808}
1809
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001810static void dec_nr_running(struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001811{
1812 rq->nr_running--;
Ingo Molnar9c217242007-08-02 17:41:40 +02001813}
1814
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001815static void set_load_weight(struct task_struct *p)
1816{
Nikhil Raof05998d2011-05-18 10:09:38 -07001817 int prio = p->static_prio - MAX_RT_PRIO;
1818 struct load_weight *load = &p->se.load;
1819
Ingo Molnardd41f592007-07-09 18:51:59 +02001820 /*
1821 * SCHED_IDLE tasks get minimal weight:
1822 */
1823 if (p->policy == SCHED_IDLE) {
Nikhil Raoc8b28112011-05-18 14:37:48 -07001824 load->weight = scale_load(WEIGHT_IDLEPRIO);
Nikhil Raof05998d2011-05-18 10:09:38 -07001825 load->inv_weight = WMULT_IDLEPRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02001826 return;
1827 }
1828
Nikhil Raoc8b28112011-05-18 14:37:48 -07001829 load->weight = scale_load(prio_to_weight[prio]);
Nikhil Raof05998d2011-05-18 10:09:38 -07001830 load->inv_weight = prio_to_wmult[prio];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001831}
1832
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001833static void enqueue_task(struct rq *rq, struct task_struct *p, int flags)
Gregory Haskins2087a1a2008-06-27 14:30:00 -06001834{
Mike Galbraitha64692a2010-03-11 17:16:20 +01001835 update_rq_clock(rq);
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001836 sched_info_queued(p);
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001837 p->sched_class->enqueue_task(rq, p, flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02001838}
1839
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001840static void dequeue_task(struct rq *rq, struct task_struct *p, int flags)
Ingo Molnardd41f592007-07-09 18:51:59 +02001841{
Mike Galbraitha64692a2010-03-11 17:16:20 +01001842 update_rq_clock(rq);
Ankita Garg46ac22b2008-07-01 14:30:06 +05301843 sched_info_dequeued(p);
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001844 p->sched_class->dequeue_task(rq, p, flags);
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001845}
1846
1847/*
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001848 * activate_task - move a task to the runqueue.
1849 */
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001850static void activate_task(struct rq *rq, struct task_struct *p, int flags)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001851{
1852 if (task_contributes_to_load(p))
1853 rq->nr_uninterruptible--;
1854
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001855 enqueue_task(rq, p, flags);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001856}
1857
1858/*
1859 * deactivate_task - remove a task from the runqueue.
1860 */
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001861static void deactivate_task(struct rq *rq, struct task_struct *p, int flags)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001862{
1863 if (task_contributes_to_load(p))
1864 rq->nr_uninterruptible++;
1865
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001866 dequeue_task(rq, p, flags);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001867}
1868
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07001869#ifdef CONFIG_IRQ_TIME_ACCOUNTING
1870
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -07001871/*
1872 * There are no locks covering percpu hardirq/softirq time.
1873 * They are only modified in account_system_vtime, on corresponding CPU
1874 * with interrupts disabled. So, writes are safe.
1875 * They are read and saved off onto struct rq in update_rq_clock().
1876 * This may result in other CPU reading this CPU's irq time and can
1877 * race with irq/account_system_vtime on this CPU. We would either get old
Peter Zijlstra8e92c202010-12-09 14:15:34 +01001878 * or new value with a side effect of accounting a slice of irq time to wrong
1879 * task when irq is in progress while we read rq->clock. That is a worthy
1880 * compromise in place of having locks on each irq in account_system_time.
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -07001881 */
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07001882static DEFINE_PER_CPU(u64, cpu_hardirq_time);
1883static DEFINE_PER_CPU(u64, cpu_softirq_time);
1884
1885static DEFINE_PER_CPU(u64, irq_start_time);
1886static int sched_clock_irqtime;
1887
1888void enable_sched_clock_irqtime(void)
1889{
1890 sched_clock_irqtime = 1;
1891}
1892
1893void disable_sched_clock_irqtime(void)
1894{
1895 sched_clock_irqtime = 0;
1896}
1897
Peter Zijlstra8e92c202010-12-09 14:15:34 +01001898#ifndef CONFIG_64BIT
1899static DEFINE_PER_CPU(seqcount_t, irq_time_seq);
1900
1901static inline void irq_time_write_begin(void)
1902{
1903 __this_cpu_inc(irq_time_seq.sequence);
1904 smp_wmb();
1905}
1906
1907static inline void irq_time_write_end(void)
1908{
1909 smp_wmb();
1910 __this_cpu_inc(irq_time_seq.sequence);
1911}
1912
1913static inline u64 irq_time_read(int cpu)
1914{
1915 u64 irq_time;
1916 unsigned seq;
1917
1918 do {
1919 seq = read_seqcount_begin(&per_cpu(irq_time_seq, cpu));
1920 irq_time = per_cpu(cpu_softirq_time, cpu) +
1921 per_cpu(cpu_hardirq_time, cpu);
1922 } while (read_seqcount_retry(&per_cpu(irq_time_seq, cpu), seq));
1923
1924 return irq_time;
1925}
1926#else /* CONFIG_64BIT */
1927static inline void irq_time_write_begin(void)
1928{
1929}
1930
1931static inline void irq_time_write_end(void)
1932{
1933}
1934
1935static inline u64 irq_time_read(int cpu)
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -07001936{
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -07001937 return per_cpu(cpu_softirq_time, cpu) + per_cpu(cpu_hardirq_time, cpu);
1938}
Peter Zijlstra8e92c202010-12-09 14:15:34 +01001939#endif /* CONFIG_64BIT */
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -07001940
Peter Zijlstrafe44d622010-12-09 14:15:34 +01001941/*
1942 * Called before incrementing preempt_count on {soft,}irq_enter
1943 * and before decrementing preempt_count on {soft,}irq_exit.
1944 */
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07001945void account_system_vtime(struct task_struct *curr)
1946{
1947 unsigned long flags;
Peter Zijlstrafe44d622010-12-09 14:15:34 +01001948 s64 delta;
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07001949 int cpu;
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07001950
1951 if (!sched_clock_irqtime)
1952 return;
1953
1954 local_irq_save(flags);
1955
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07001956 cpu = smp_processor_id();
Peter Zijlstrafe44d622010-12-09 14:15:34 +01001957 delta = sched_clock_cpu(cpu) - __this_cpu_read(irq_start_time);
1958 __this_cpu_add(irq_start_time, delta);
1959
Peter Zijlstra8e92c202010-12-09 14:15:34 +01001960 irq_time_write_begin();
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07001961 /*
1962 * We do not account for softirq time from ksoftirqd here.
1963 * We want to continue accounting softirq time to ksoftirqd thread
1964 * in that case, so as not to confuse scheduler with a special task
1965 * that do not consume any time, but still wants to run.
1966 */
1967 if (hardirq_count())
Peter Zijlstrafe44d622010-12-09 14:15:34 +01001968 __this_cpu_add(cpu_hardirq_time, delta);
Venkatesh Pallipadi4dd53d82010-12-21 17:09:00 -08001969 else if (in_serving_softirq() && curr != this_cpu_ksoftirqd())
Peter Zijlstrafe44d622010-12-09 14:15:34 +01001970 __this_cpu_add(cpu_softirq_time, delta);
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07001971
Peter Zijlstra8e92c202010-12-09 14:15:34 +01001972 irq_time_write_end();
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07001973 local_irq_restore(flags);
1974}
Ingo Molnarb7dadc32010-10-18 20:00:37 +02001975EXPORT_SYMBOL_GPL(account_system_vtime);
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07001976
Glauber Costae6e66852011-07-11 15:28:17 -04001977#endif /* CONFIG_IRQ_TIME_ACCOUNTING */
1978
1979#ifdef CONFIG_PARAVIRT
1980static inline u64 steal_ticks(u64 steal)
1981{
1982 if (unlikely(steal > NSEC_PER_SEC))
1983 return div_u64(steal, TICK_NSEC);
1984
1985 return __iter_div_u64_rem(steal, TICK_NSEC, &steal);
1986}
1987#endif
1988
Peter Zijlstrafe44d622010-12-09 14:15:34 +01001989static void update_rq_clock_task(struct rq *rq, s64 delta)
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -07001990{
Glauber Costa095c0aa2011-07-11 15:28:18 -04001991/*
1992 * In theory, the compile should just see 0 here, and optimize out the call
1993 * to sched_rt_avg_update. But I don't trust it...
1994 */
1995#if defined(CONFIG_IRQ_TIME_ACCOUNTING) || defined(CONFIG_PARAVIRT_TIME_ACCOUNTING)
1996 s64 steal = 0, irq_delta = 0;
1997#endif
1998#ifdef CONFIG_IRQ_TIME_ACCOUNTING
Peter Zijlstra8e92c202010-12-09 14:15:34 +01001999 irq_delta = irq_time_read(cpu_of(rq)) - rq->prev_irq_time;
Peter Zijlstrafe44d622010-12-09 14:15:34 +01002000
2001 /*
2002 * Since irq_time is only updated on {soft,}irq_exit, we might run into
2003 * this case when a previous update_rq_clock() happened inside a
2004 * {soft,}irq region.
2005 *
2006 * When this happens, we stop ->clock_task and only update the
2007 * prev_irq_time stamp to account for the part that fit, so that a next
2008 * update will consume the rest. This ensures ->clock_task is
2009 * monotonic.
2010 *
2011 * It does however cause some slight miss-attribution of {soft,}irq
2012 * time, a more accurate solution would be to update the irq_time using
2013 * the current rq->clock timestamp, except that would require using
2014 * atomic ops.
2015 */
2016 if (irq_delta > delta)
2017 irq_delta = delta;
2018
2019 rq->prev_irq_time += irq_delta;
2020 delta -= irq_delta;
Glauber Costa095c0aa2011-07-11 15:28:18 -04002021#endif
2022#ifdef CONFIG_PARAVIRT_TIME_ACCOUNTING
2023 if (static_branch((&paravirt_steal_rq_enabled))) {
2024 u64 st;
2025
2026 steal = paravirt_steal_clock(cpu_of(rq));
2027 steal -= rq->prev_steal_time_rq;
2028
2029 if (unlikely(steal > delta))
2030 steal = delta;
2031
2032 st = steal_ticks(steal);
2033 steal = st * TICK_NSEC;
2034
2035 rq->prev_steal_time_rq += steal;
2036
2037 delta -= steal;
2038 }
2039#endif
2040
Peter Zijlstrafe44d622010-12-09 14:15:34 +01002041 rq->clock_task += delta;
2042
Glauber Costa095c0aa2011-07-11 15:28:18 -04002043#if defined(CONFIG_IRQ_TIME_ACCOUNTING) || defined(CONFIG_PARAVIRT_TIME_ACCOUNTING)
2044 if ((irq_delta + steal) && sched_feat(NONTASK_POWER))
2045 sched_rt_avg_update(rq, irq_delta + steal);
2046#endif
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -07002047}
2048
Glauber Costa095c0aa2011-07-11 15:28:18 -04002049#ifdef CONFIG_IRQ_TIME_ACCOUNTING
Venkatesh Pallipadiabb74ce2010-12-21 17:09:03 -08002050static int irqtime_account_hi_update(void)
2051{
2052 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
2053 unsigned long flags;
2054 u64 latest_ns;
2055 int ret = 0;
2056
2057 local_irq_save(flags);
2058 latest_ns = this_cpu_read(cpu_hardirq_time);
2059 if (cputime64_gt(nsecs_to_cputime64(latest_ns), cpustat->irq))
2060 ret = 1;
2061 local_irq_restore(flags);
2062 return ret;
2063}
2064
2065static int irqtime_account_si_update(void)
2066{
2067 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
2068 unsigned long flags;
2069 u64 latest_ns;
2070 int ret = 0;
2071
2072 local_irq_save(flags);
2073 latest_ns = this_cpu_read(cpu_softirq_time);
2074 if (cputime64_gt(nsecs_to_cputime64(latest_ns), cpustat->softirq))
2075 ret = 1;
2076 local_irq_restore(flags);
2077 return ret;
2078}
2079
Peter Zijlstrafe44d622010-12-09 14:15:34 +01002080#else /* CONFIG_IRQ_TIME_ACCOUNTING */
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -07002081
Venkatesh Pallipadiabb74ce2010-12-21 17:09:03 -08002082#define sched_clock_irqtime (0)
2083
Glauber Costa095c0aa2011-07-11 15:28:18 -04002084#endif
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07002085
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01002086#include "sched_idletask.c"
2087#include "sched_fair.c"
2088#include "sched_rt.c"
Mike Galbraith5091faa2010-11-30 14:18:03 +01002089#include "sched_autogroup.c"
Peter Zijlstra34f971f2010-09-22 13:53:15 +02002090#include "sched_stoptask.c"
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01002091#ifdef CONFIG_SCHED_DEBUG
2092# include "sched_debug.c"
2093#endif
2094
Peter Zijlstra34f971f2010-09-22 13:53:15 +02002095void sched_set_stop_task(int cpu, struct task_struct *stop)
2096{
2097 struct sched_param param = { .sched_priority = MAX_RT_PRIO - 1 };
2098 struct task_struct *old_stop = cpu_rq(cpu)->stop;
2099
2100 if (stop) {
2101 /*
2102 * Make it appear like a SCHED_FIFO task, its something
2103 * userspace knows about and won't get confused about.
2104 *
2105 * Also, it will make PI more or less work without too
2106 * much confusion -- but then, stop work should not
2107 * rely on PI working anyway.
2108 */
2109 sched_setscheduler_nocheck(stop, SCHED_FIFO, &param);
2110
2111 stop->sched_class = &stop_sched_class;
2112 }
2113
2114 cpu_rq(cpu)->stop = stop;
2115
2116 if (old_stop) {
2117 /*
2118 * Reset it back to a normal scheduling class so that
2119 * it can die in pieces.
2120 */
2121 old_stop->sched_class = &rt_sched_class;
2122 }
2123}
2124
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01002125/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002126 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02002127 */
Ingo Molnar14531182007-07-09 18:51:59 +02002128static inline int __normal_prio(struct task_struct *p)
2129{
Ingo Molnardd41f592007-07-09 18:51:59 +02002130 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02002131}
2132
2133/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07002134 * Calculate the expected normal priority: i.e. priority
2135 * without taking RT-inheritance into account. Might be
2136 * boosted by interactivity modifiers. Changes upon fork,
2137 * setprio syscalls, and whenever the interactivity
2138 * estimator recalculates.
2139 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002140static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07002141{
2142 int prio;
2143
Ingo Molnare05606d2007-07-09 18:51:59 +02002144 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07002145 prio = MAX_RT_PRIO-1 - p->rt_priority;
2146 else
2147 prio = __normal_prio(p);
2148 return prio;
2149}
2150
2151/*
2152 * Calculate the current priority, i.e. the priority
2153 * taken into account by the scheduler. This value might
2154 * be boosted by RT tasks, or might be boosted by
2155 * interactivity modifiers. Will be RT if the task got
2156 * RT-boosted. If not then it returns p->normal_prio.
2157 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002158static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07002159{
2160 p->normal_prio = normal_prio(p);
2161 /*
2162 * If we are RT tasks or we were boosted to RT priority,
2163 * keep the priority unchanged. Otherwise, update priority
2164 * to the normal priority:
2165 */
2166 if (!rt_prio(p->prio))
2167 return p->normal_prio;
2168 return p->prio;
2169}
2170
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171/**
2172 * task_curr - is this task currently executing on a CPU?
2173 * @p: the task in question.
2174 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002175inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176{
2177 return cpu_curr(task_cpu(p)) == p;
2178}
2179
Steven Rostedtcb469842008-01-25 21:08:22 +01002180static inline void check_class_changed(struct rq *rq, struct task_struct *p,
2181 const struct sched_class *prev_class,
Peter Zijlstrada7a7352011-01-17 17:03:27 +01002182 int oldprio)
Steven Rostedtcb469842008-01-25 21:08:22 +01002183{
2184 if (prev_class != p->sched_class) {
2185 if (prev_class->switched_from)
Peter Zijlstrada7a7352011-01-17 17:03:27 +01002186 prev_class->switched_from(rq, p);
2187 p->sched_class->switched_to(rq, p);
2188 } else if (oldprio != p->prio)
2189 p->sched_class->prio_changed(rq, p, oldprio);
Steven Rostedtcb469842008-01-25 21:08:22 +01002190}
2191
Peter Zijlstra1e5a7402010-10-31 12:37:04 +01002192static void check_preempt_curr(struct rq *rq, struct task_struct *p, int flags)
2193{
2194 const struct sched_class *class;
2195
2196 if (p->sched_class == rq->curr->sched_class) {
2197 rq->curr->sched_class->check_preempt_curr(rq, p, flags);
2198 } else {
2199 for_each_class(class) {
2200 if (class == rq->curr->sched_class)
2201 break;
2202 if (class == p->sched_class) {
2203 resched_task(rq->curr);
2204 break;
2205 }
2206 }
2207 }
2208
2209 /*
2210 * A queue event has occurred, and we're going to schedule. In
2211 * this case, we can save a useless back to back clock update.
2212 */
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02002213 if (rq->curr->on_rq && test_tsk_need_resched(rq->curr))
Peter Zijlstra1e5a7402010-10-31 12:37:04 +01002214 rq->skip_clock_update = 1;
2215}
2216
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217#ifdef CONFIG_SMP
Ingo Molnarcc367732007-10-15 17:00:18 +02002218/*
2219 * Is this task likely cache-hot:
2220 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002221static int
Ingo Molnarcc367732007-10-15 17:00:18 +02002222task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
2223{
2224 s64 delta;
2225
Peter Zijlstrae6c8fba2009-12-16 18:04:33 +01002226 if (p->sched_class != &fair_sched_class)
2227 return 0;
2228
Nikhil Raoef8002f2010-10-13 12:09:35 -07002229 if (unlikely(p->policy == SCHED_IDLE))
2230 return 0;
2231
Ingo Molnarf540a602008-03-15 17:10:34 +01002232 /*
2233 * Buddy candidates are cache hot:
2234 */
Mike Galbraithf685cea2009-10-23 23:09:22 +02002235 if (sched_feat(CACHE_HOT_BUDDY) && this_rq()->nr_running &&
Peter Zijlstra47932412008-11-04 21:25:09 +01002236 (&p->se == cfs_rq_of(&p->se)->next ||
2237 &p->se == cfs_rq_of(&p->se)->last))
Ingo Molnarf540a602008-03-15 17:10:34 +01002238 return 1;
2239
Ingo Molnar6bc16652007-10-15 17:00:18 +02002240 if (sysctl_sched_migration_cost == -1)
2241 return 1;
2242 if (sysctl_sched_migration_cost == 0)
2243 return 0;
2244
Ingo Molnarcc367732007-10-15 17:00:18 +02002245 delta = now - p->se.exec_start;
2246
2247 return delta < (s64)sysctl_sched_migration_cost;
2248}
2249
Ingo Molnardd41f592007-07-09 18:51:59 +02002250void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02002251{
Peter Zijlstrae2912002009-12-16 18:04:36 +01002252#ifdef CONFIG_SCHED_DEBUG
2253 /*
2254 * We should never call set_task_cpu() on a blocked task,
2255 * ttwu() will sort out the placement.
2256 */
Peter Zijlstra077614e2009-12-17 13:16:31 +01002257 WARN_ON_ONCE(p->state != TASK_RUNNING && p->state != TASK_WAKING &&
2258 !(task_thread_info(p)->preempt_count & PREEMPT_ACTIVE));
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002259
2260#ifdef CONFIG_LOCKDEP
Peter Zijlstra6c6c54e2011-06-03 17:37:07 +02002261 /*
2262 * The caller should hold either p->pi_lock or rq->lock, when changing
2263 * a task's CPU. ->pi_lock for waking tasks, rq->lock for runnable tasks.
2264 *
2265 * sched_move_task() holds both and thus holding either pins the cgroup,
2266 * see set_task_rq().
2267 *
2268 * Furthermore, all task_rq users should acquire both locks, see
2269 * task_rq_lock().
2270 */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002271 WARN_ON_ONCE(debug_locks && !(lockdep_is_held(&p->pi_lock) ||
2272 lockdep_is_held(&task_rq(p)->lock)));
2273#endif
Peter Zijlstrae2912002009-12-16 18:04:36 +01002274#endif
2275
Mathieu Desnoyersde1d7282009-05-05 16:49:59 +08002276 trace_sched_migrate_task(p, new_cpu);
Peter Zijlstracbc34ed2008-12-10 08:08:22 +01002277
Peter Zijlstra0c697742009-12-22 15:43:19 +01002278 if (task_cpu(p) != new_cpu) {
2279 p->se.nr_migrations++;
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02002280 perf_sw_event(PERF_COUNT_SW_CPU_MIGRATIONS, 1, NULL, 0);
Peter Zijlstra0c697742009-12-22 15:43:19 +01002281 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002282
2283 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02002284}
2285
Tejun Heo969c7922010-05-06 18:49:21 +02002286struct migration_arg {
Ingo Molnar36c8b582006-07-03 00:25:41 -07002287 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 int dest_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002289};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290
Tejun Heo969c7922010-05-06 18:49:21 +02002291static int migration_cpu_stop(void *data);
2292
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 * wait_task_inactive - wait for a thread to unschedule.
2295 *
Roland McGrath85ba2d82008-07-25 19:45:58 -07002296 * If @match_state is nonzero, it's the @p->state value just checked and
2297 * not expected to change. If it changes, i.e. @p might have woken up,
2298 * then return zero. When we succeed in waiting for @p to be off its CPU,
2299 * we return a positive number (its total switch count). If a second call
2300 * a short while later returns the same number, the caller can be sure that
2301 * @p has remained unscheduled the whole time.
2302 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 * The caller must ensure that the task *will* unschedule sometime soon,
2304 * else this function might spin for a *long* time. This function can't
2305 * be called with interrupts off, or it may introduce deadlock with
2306 * smp_call_function() if an IPI is sent by the same process we are
2307 * waiting to become inactive.
2308 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07002309unsigned long wait_task_inactive(struct task_struct *p, long match_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310{
2311 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002312 int running, on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07002313 unsigned long ncsw;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002314 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315
Andi Kleen3a5c3592007-10-15 17:00:14 +02002316 for (;;) {
2317 /*
2318 * We do the initial early heuristics without holding
2319 * any task-queue locks at all. We'll only try to get
2320 * the runqueue lock when things look like they will
2321 * work out!
2322 */
2323 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002324
Andi Kleen3a5c3592007-10-15 17:00:14 +02002325 /*
2326 * If the task is actively running on another CPU
2327 * still, just relax and busy-wait without holding
2328 * any locks.
2329 *
2330 * NOTE! Since we don't hold any locks, it's not
2331 * even sure that "rq" stays as the right runqueue!
2332 * But we don't care, since "task_running()" will
2333 * return false if the runqueue has changed and p
2334 * is actually now running somewhere else!
2335 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07002336 while (task_running(rq, p)) {
2337 if (match_state && unlikely(p->state != match_state))
2338 return 0;
Andi Kleen3a5c3592007-10-15 17:00:14 +02002339 cpu_relax();
Roland McGrath85ba2d82008-07-25 19:45:58 -07002340 }
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002341
Andi Kleen3a5c3592007-10-15 17:00:14 +02002342 /*
2343 * Ok, time to look more closely! We need the rq
2344 * lock now, to be *sure*. If we're wrong, we'll
2345 * just go back and repeat.
2346 */
2347 rq = task_rq_lock(p, &flags);
Peter Zijlstra27a9da62010-05-04 20:36:56 +02002348 trace_sched_wait_task(p);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002349 running = task_running(rq, p);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02002350 on_rq = p->on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07002351 ncsw = 0;
Oleg Nesterovf31e11d2008-08-20 16:54:44 -07002352 if (!match_state || p->state == match_state)
Oleg Nesterov93dcf552008-08-20 16:54:44 -07002353 ncsw = p->nvcsw | LONG_MIN; /* sets MSB */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002354 task_rq_unlock(rq, p, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002355
Andi Kleen3a5c3592007-10-15 17:00:14 +02002356 /*
Roland McGrath85ba2d82008-07-25 19:45:58 -07002357 * If it changed from the expected state, bail out now.
2358 */
2359 if (unlikely(!ncsw))
2360 break;
2361
2362 /*
Andi Kleen3a5c3592007-10-15 17:00:14 +02002363 * Was it really running after all now that we
2364 * checked with the proper locks actually held?
2365 *
2366 * Oops. Go back and try again..
2367 */
2368 if (unlikely(running)) {
2369 cpu_relax();
2370 continue;
2371 }
2372
2373 /*
2374 * It's not enough that it's not actively running,
2375 * it must be off the runqueue _entirely_, and not
2376 * preempted!
2377 *
Luis Henriques80dd99b2009-03-16 19:58:09 +00002378 * So if it was still runnable (but just not actively
Andi Kleen3a5c3592007-10-15 17:00:14 +02002379 * running right now), it's preempted, and we should
2380 * yield - it could be a while.
2381 */
2382 if (unlikely(on_rq)) {
Thomas Gleixner8eb90c32011-02-23 23:52:21 +00002383 ktime_t to = ktime_set(0, NSEC_PER_SEC/HZ);
2384
2385 set_current_state(TASK_UNINTERRUPTIBLE);
2386 schedule_hrtimeout(&to, HRTIMER_MODE_REL);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002387 continue;
2388 }
2389
2390 /*
2391 * Ahh, all good. It wasn't running, and it wasn't
2392 * runnable, which means that it will never become
2393 * running in the future either. We're all done!
2394 */
2395 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 }
Roland McGrath85ba2d82008-07-25 19:45:58 -07002397
2398 return ncsw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399}
2400
2401/***
2402 * kick_process - kick a running thread to enter/exit the kernel
2403 * @p: the to-be-kicked thread
2404 *
2405 * Cause a process which is running on another CPU to enter
2406 * kernel-mode, without any delay. (to get signals handled.)
2407 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002408 * NOTE: this function doesn't have to take the runqueue lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 * because all it wants to ensure is that the remote task enters
2410 * the kernel. If the IPI races and the task has been migrated
2411 * to another CPU then no harm is done and the purpose has been
2412 * achieved as well.
2413 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002414void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415{
2416 int cpu;
2417
2418 preempt_disable();
2419 cpu = task_cpu(p);
2420 if ((cpu != smp_processor_id()) && task_curr(p))
2421 smp_send_reschedule(cpu);
2422 preempt_enable();
2423}
Rusty Russellb43e3522009-06-12 22:27:00 -06002424EXPORT_SYMBOL_GPL(kick_process);
Nick Piggin476d1392005-06-25 14:57:29 -07002425#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
Peter Zijlstra970b13b2009-11-25 13:31:39 +01002427#ifdef CONFIG_SMP
Oleg Nesterov30da6882010-03-15 10:10:19 +01002428/*
Peter Zijlstra013fdb82011-04-05 17:23:45 +02002429 * ->cpus_allowed is protected by both rq->lock and p->pi_lock
Oleg Nesterov30da6882010-03-15 10:10:19 +01002430 */
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01002431static int select_fallback_rq(int cpu, struct task_struct *p)
2432{
2433 int dest_cpu;
2434 const struct cpumask *nodemask = cpumask_of_node(cpu_to_node(cpu));
2435
2436 /* Look for allowed, online CPU in same node. */
2437 for_each_cpu_and(dest_cpu, nodemask, cpu_active_mask)
2438 if (cpumask_test_cpu(dest_cpu, &p->cpus_allowed))
2439 return dest_cpu;
2440
2441 /* Any allowed, online CPU? */
2442 dest_cpu = cpumask_any_and(&p->cpus_allowed, cpu_active_mask);
2443 if (dest_cpu < nr_cpu_ids)
2444 return dest_cpu;
2445
2446 /* No more Mr. Nice Guy. */
Peter Zijlstra48c5cca2010-11-13 19:32:29 +01002447 dest_cpu = cpuset_cpus_allowed_fallback(p);
2448 /*
2449 * Don't tell them about moving exiting tasks or
2450 * kernel threads (both mm NULL), since they never
2451 * leave kernel.
2452 */
2453 if (p->mm && printk_ratelimit()) {
2454 printk(KERN_INFO "process %d (%s) no longer affine to cpu%d\n",
2455 task_pid_nr(p), p->comm, cpu);
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01002456 }
2457
2458 return dest_cpu;
2459}
2460
Peter Zijlstrae2912002009-12-16 18:04:36 +01002461/*
Peter Zijlstra013fdb82011-04-05 17:23:45 +02002462 * The caller (fork, wakeup) owns p->pi_lock, ->cpus_allowed is stable.
Peter Zijlstrae2912002009-12-16 18:04:36 +01002463 */
Peter Zijlstra970b13b2009-11-25 13:31:39 +01002464static inline
Peter Zijlstra7608dec2011-04-05 17:23:46 +02002465int select_task_rq(struct task_struct *p, int sd_flags, int wake_flags)
Peter Zijlstra970b13b2009-11-25 13:31:39 +01002466{
Peter Zijlstra7608dec2011-04-05 17:23:46 +02002467 int cpu = p->sched_class->select_task_rq(p, sd_flags, wake_flags);
Peter Zijlstrae2912002009-12-16 18:04:36 +01002468
2469 /*
2470 * In order not to call set_task_cpu() on a blocking task we need
2471 * to rely on ttwu() to place the task on a valid ->cpus_allowed
2472 * cpu.
2473 *
2474 * Since this is common to all placement strategies, this lives here.
2475 *
2476 * [ this allows ->select_task() to simply return task_cpu(p) and
2477 * not worry about this generic constraint ]
2478 */
2479 if (unlikely(!cpumask_test_cpu(cpu, &p->cpus_allowed) ||
Peter Zijlstra70f11202009-12-20 17:36:27 +01002480 !cpu_online(cpu)))
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01002481 cpu = select_fallback_rq(task_cpu(p), p);
Peter Zijlstrae2912002009-12-16 18:04:36 +01002482
2483 return cpu;
Peter Zijlstra970b13b2009-11-25 13:31:39 +01002484}
Mike Galbraith09a40af2010-04-15 07:29:59 +02002485
2486static void update_avg(u64 *avg, u64 sample)
2487{
2488 s64 diff = sample - *avg;
2489 *avg += diff >> 3;
2490}
Peter Zijlstra970b13b2009-11-25 13:31:39 +01002491#endif
2492
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02002493static void
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02002494ttwu_stat(struct task_struct *p, int cpu, int wake_flags)
Tejun Heo9ed38112009-12-03 15:08:03 +09002495{
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02002496#ifdef CONFIG_SCHEDSTATS
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02002497 struct rq *rq = this_rq();
Tejun Heo9ed38112009-12-03 15:08:03 +09002498
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02002499#ifdef CONFIG_SMP
2500 int this_cpu = smp_processor_id();
Tejun Heo9ed38112009-12-03 15:08:03 +09002501
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02002502 if (cpu == this_cpu) {
2503 schedstat_inc(rq, ttwu_local);
2504 schedstat_inc(p, se.statistics.nr_wakeups_local);
2505 } else {
2506 struct sched_domain *sd;
2507
2508 schedstat_inc(p, se.statistics.nr_wakeups_remote);
Peter Zijlstra057f3fa2011-04-18 11:24:34 +02002509 rcu_read_lock();
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02002510 for_each_domain(this_cpu, sd) {
2511 if (cpumask_test_cpu(cpu, sched_domain_span(sd))) {
2512 schedstat_inc(sd, ttwu_wake_remote);
2513 break;
2514 }
2515 }
Peter Zijlstra057f3fa2011-04-18 11:24:34 +02002516 rcu_read_unlock();
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02002517 }
Peter Zijlstraf339b9d2011-05-31 10:49:20 +02002518
2519 if (wake_flags & WF_MIGRATED)
2520 schedstat_inc(p, se.statistics.nr_wakeups_migrate);
2521
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02002522#endif /* CONFIG_SMP */
2523
2524 schedstat_inc(rq, ttwu_count);
2525 schedstat_inc(p, se.statistics.nr_wakeups);
2526
2527 if (wake_flags & WF_SYNC)
2528 schedstat_inc(p, se.statistics.nr_wakeups_sync);
2529
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02002530#endif /* CONFIG_SCHEDSTATS */
Tejun Heo9ed38112009-12-03 15:08:03 +09002531}
2532
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02002533static void ttwu_activate(struct rq *rq, struct task_struct *p, int en_flags)
Tejun Heo9ed38112009-12-03 15:08:03 +09002534{
Tejun Heo9ed38112009-12-03 15:08:03 +09002535 activate_task(rq, p, en_flags);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02002536 p->on_rq = 1;
Peter Zijlstrac2f71152011-04-13 13:28:56 +02002537
2538 /* if a worker is waking up, notify workqueue */
2539 if (p->flags & PF_WQ_WORKER)
2540 wq_worker_waking_up(p, cpu_of(rq));
Tejun Heo9ed38112009-12-03 15:08:03 +09002541}
2542
Peter Zijlstra23f41ee2011-04-05 17:23:56 +02002543/*
2544 * Mark the task runnable and perform wakeup-preemption.
2545 */
Peter Zijlstra89363382011-04-05 17:23:42 +02002546static void
Peter Zijlstra23f41ee2011-04-05 17:23:56 +02002547ttwu_do_wakeup(struct rq *rq, struct task_struct *p, int wake_flags)
Tejun Heo9ed38112009-12-03 15:08:03 +09002548{
Peter Zijlstra89363382011-04-05 17:23:42 +02002549 trace_sched_wakeup(p, true);
Tejun Heo9ed38112009-12-03 15:08:03 +09002550 check_preempt_curr(rq, p, wake_flags);
2551
2552 p->state = TASK_RUNNING;
2553#ifdef CONFIG_SMP
2554 if (p->sched_class->task_woken)
2555 p->sched_class->task_woken(rq, p);
2556
Steven Rostedte69c6342010-12-06 17:10:31 -05002557 if (rq->idle_stamp) {
Tejun Heo9ed38112009-12-03 15:08:03 +09002558 u64 delta = rq->clock - rq->idle_stamp;
2559 u64 max = 2*sysctl_sched_migration_cost;
2560
2561 if (delta > max)
2562 rq->avg_idle = max;
2563 else
2564 update_avg(&rq->avg_idle, delta);
2565 rq->idle_stamp = 0;
2566 }
2567#endif
2568}
2569
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02002570static void
2571ttwu_do_activate(struct rq *rq, struct task_struct *p, int wake_flags)
2572{
2573#ifdef CONFIG_SMP
2574 if (p->sched_contributes_to_load)
2575 rq->nr_uninterruptible--;
2576#endif
2577
2578 ttwu_activate(rq, p, ENQUEUE_WAKEUP | ENQUEUE_WAKING);
2579 ttwu_do_wakeup(rq, p, wake_flags);
2580}
2581
2582/*
2583 * Called in case the task @p isn't fully descheduled from its runqueue,
2584 * in this case we must do a remote wakeup. Its a 'light' wakeup though,
2585 * since all we need to do is flip p->state to TASK_RUNNING, since
2586 * the task is still ->on_rq.
2587 */
2588static int ttwu_remote(struct task_struct *p, int wake_flags)
2589{
2590 struct rq *rq;
2591 int ret = 0;
2592
2593 rq = __task_rq_lock(p);
2594 if (p->on_rq) {
2595 ttwu_do_wakeup(rq, p, wake_flags);
2596 ret = 1;
2597 }
2598 __task_rq_unlock(rq);
2599
2600 return ret;
2601}
2602
Peter Zijlstra317f3942011-04-05 17:23:58 +02002603#ifdef CONFIG_SMP
Peter Zijlstrac5d753a2011-07-19 15:07:25 -07002604static void sched_ttwu_do_pending(struct task_struct *list)
Peter Zijlstra317f3942011-04-05 17:23:58 +02002605{
2606 struct rq *rq = this_rq();
Peter Zijlstra317f3942011-04-05 17:23:58 +02002607
2608 raw_spin_lock(&rq->lock);
2609
2610 while (list) {
2611 struct task_struct *p = list;
2612 list = list->wake_entry;
2613 ttwu_do_activate(rq, p, 0);
2614 }
2615
2616 raw_spin_unlock(&rq->lock);
2617}
2618
Peter Zijlstrac5d753a2011-07-19 15:07:25 -07002619#ifdef CONFIG_HOTPLUG_CPU
2620
2621static void sched_ttwu_pending(void)
2622{
2623 struct rq *rq = this_rq();
2624 struct task_struct *list = xchg(&rq->wake_list, NULL);
2625
2626 if (!list)
2627 return;
2628
2629 sched_ttwu_do_pending(list);
2630}
2631
2632#endif /* CONFIG_HOTPLUG_CPU */
2633
Peter Zijlstra317f3942011-04-05 17:23:58 +02002634void scheduler_ipi(void)
2635{
Peter Zijlstrac5d753a2011-07-19 15:07:25 -07002636 struct rq *rq = this_rq();
2637 struct task_struct *list = xchg(&rq->wake_list, NULL);
2638
2639 if (!list)
2640 return;
2641
2642 /*
2643 * Not all reschedule IPI handlers call irq_enter/irq_exit, since
2644 * traditionally all their work was done from the interrupt return
2645 * path. Now that we actually do some work, we need to make sure
2646 * we do call them.
2647 *
2648 * Some archs already do call them, luckily irq_enter/exit nest
2649 * properly.
2650 *
2651 * Arguably we should visit all archs and update all handlers,
2652 * however a fair share of IPIs are still resched only so this would
2653 * somewhat pessimize the simple resched case.
2654 */
2655 irq_enter();
2656 sched_ttwu_do_pending(list);
2657 irq_exit();
Peter Zijlstra317f3942011-04-05 17:23:58 +02002658}
2659
2660static void ttwu_queue_remote(struct task_struct *p, int cpu)
2661{
2662 struct rq *rq = cpu_rq(cpu);
2663 struct task_struct *next = rq->wake_list;
2664
2665 for (;;) {
2666 struct task_struct *old = next;
2667
2668 p->wake_entry = next;
2669 next = cmpxchg(&rq->wake_list, old, p);
2670 if (next == old)
2671 break;
2672 }
2673
2674 if (!next)
2675 smp_send_reschedule(cpu);
2676}
Peter Zijlstrad6aa8f82011-05-26 14:21:33 +02002677
2678#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
2679static int ttwu_activate_remote(struct task_struct *p, int wake_flags)
2680{
2681 struct rq *rq;
2682 int ret = 0;
2683
2684 rq = __task_rq_lock(p);
2685 if (p->on_cpu) {
2686 ttwu_activate(rq, p, ENQUEUE_WAKEUP);
2687 ttwu_do_wakeup(rq, p, wake_flags);
2688 ret = 1;
2689 }
2690 __task_rq_unlock(rq);
2691
2692 return ret;
2693
2694}
2695#endif /* __ARCH_WANT_INTERRUPTS_ON_CTXSW */
2696#endif /* CONFIG_SMP */
Peter Zijlstra317f3942011-04-05 17:23:58 +02002697
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02002698static void ttwu_queue(struct task_struct *p, int cpu)
2699{
2700 struct rq *rq = cpu_rq(cpu);
2701
Daniel Hellstrom17d9f312011-05-20 04:01:10 +00002702#if defined(CONFIG_SMP)
Peter Zijlstra317f3942011-04-05 17:23:58 +02002703 if (sched_feat(TTWU_QUEUE) && cpu != smp_processor_id()) {
Peter Zijlstraf01114c2011-05-31 12:26:55 +02002704 sched_clock_cpu(cpu); /* sync clocks x-cpu */
Peter Zijlstra317f3942011-04-05 17:23:58 +02002705 ttwu_queue_remote(p, cpu);
2706 return;
2707 }
2708#endif
2709
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02002710 raw_spin_lock(&rq->lock);
2711 ttwu_do_activate(rq, p, 0);
2712 raw_spin_unlock(&rq->lock);
Tejun Heo9ed38112009-12-03 15:08:03 +09002713}
2714
2715/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 * try_to_wake_up - wake up a thread
Tejun Heo9ed38112009-12-03 15:08:03 +09002717 * @p: the thread to be awakened
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 * @state: the mask of task states that can be woken
Tejun Heo9ed38112009-12-03 15:08:03 +09002719 * @wake_flags: wake modifier flags (WF_*)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 *
2721 * Put it on the run-queue if it's not already there. The "current"
2722 * thread is always on the run-queue (except when the actual
2723 * re-schedule is in progress), and as such you're allowed to do
2724 * the simpler "current->state = TASK_RUNNING" to mark yourself
2725 * runnable without the overhead of this.
2726 *
Tejun Heo9ed38112009-12-03 15:08:03 +09002727 * Returns %true if @p was woken up, %false if it was already running
2728 * or @state didn't match @p's state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 */
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02002730static int
2731try_to_wake_up(struct task_struct *p, unsigned int state, int wake_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 unsigned long flags;
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02002734 int cpu, success = 0;
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02002735
Linus Torvalds04e2f172008-02-23 18:05:03 -08002736 smp_wmb();
Peter Zijlstra013fdb82011-04-05 17:23:45 +02002737 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstrae9c84312009-09-15 14:43:03 +02002738 if (!(p->state & state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 goto out;
2740
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02002741 success = 1; /* we're going to change ->state */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 cpu = task_cpu(p);
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02002743
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02002744 if (p->on_rq && ttwu_remote(p, wake_flags))
2745 goto stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
2747#ifdef CONFIG_SMP
Peter Zijlstrae9c84312009-09-15 14:43:03 +02002748 /*
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02002749 * If the owning (remote) cpu is still in the middle of schedule() with
2750 * this task as prev, wait until its done referencing the task.
Peter Zijlstrae9c84312009-09-15 14:43:03 +02002751 */
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02002752 while (p->on_cpu) {
2753#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
2754 /*
Peter Zijlstrad6aa8f82011-05-26 14:21:33 +02002755 * In case the architecture enables interrupts in
2756 * context_switch(), we cannot busy wait, since that
2757 * would lead to deadlocks when an interrupt hits and
2758 * tries to wake up @prev. So bail and do a complete
2759 * remote wakeup.
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02002760 */
Peter Zijlstrad6aa8f82011-05-26 14:21:33 +02002761 if (ttwu_activate_remote(p, wake_flags))
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02002762 goto stat;
Peter Zijlstrad6aa8f82011-05-26 14:21:33 +02002763#else
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02002764 cpu_relax();
Peter Zijlstrad6aa8f82011-05-26 14:21:33 +02002765#endif
Peter Zijlstracc87f762010-03-26 12:22:14 +01002766 }
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02002767 /*
2768 * Pairs with the smp_wmb() in finish_lock_switch().
2769 */
2770 smp_rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771
Peter Zijlstraa8e4f2e2011-04-05 17:23:49 +02002772 p->sched_contributes_to_load = !!task_contributes_to_load(p);
Peter Zijlstrae9c84312009-09-15 14:43:03 +02002773 p->state = TASK_WAKING;
Peter Zijlstraefbbd052009-12-16 18:04:40 +01002774
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02002775 if (p->sched_class->task_waking)
Peter Zijlstra74f8e4b2011-04-05 17:23:47 +02002776 p->sched_class->task_waking(p);
Peter Zijlstraab19cb22009-11-27 15:44:43 +01002777
Peter Zijlstra7608dec2011-04-05 17:23:46 +02002778 cpu = select_task_rq(p, SD_BALANCE_WAKE, wake_flags);
Peter Zijlstraf339b9d2011-05-31 10:49:20 +02002779 if (task_cpu(p) != cpu) {
2780 wake_flags |= WF_MIGRATED;
Mike Galbraithf5dc3752009-10-09 08:35:03 +02002781 set_task_cpu(p, cpu);
Peter Zijlstraf339b9d2011-05-31 10:49:20 +02002782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02002785 ttwu_queue(p, cpu);
2786stat:
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02002787 ttwu_stat(p, cpu, wake_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788out:
Peter Zijlstra013fdb82011-04-05 17:23:45 +02002789 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790
2791 return success;
2792}
2793
David Howells50fa6102009-04-28 15:01:38 +01002794/**
Tejun Heo21aa9af2010-06-08 21:40:37 +02002795 * try_to_wake_up_local - try to wake up a local task with rq lock held
2796 * @p: the thread to be awakened
2797 *
Peter Zijlstra2acca552011-04-05 17:23:50 +02002798 * Put @p on the run-queue if it's not already there. The caller must
Tejun Heo21aa9af2010-06-08 21:40:37 +02002799 * ensure that this_rq() is locked, @p is bound to this_rq() and not
Peter Zijlstra2acca552011-04-05 17:23:50 +02002800 * the current task.
Tejun Heo21aa9af2010-06-08 21:40:37 +02002801 */
2802static void try_to_wake_up_local(struct task_struct *p)
2803{
2804 struct rq *rq = task_rq(p);
Tejun Heo21aa9af2010-06-08 21:40:37 +02002805
2806 BUG_ON(rq != this_rq());
2807 BUG_ON(p == current);
2808 lockdep_assert_held(&rq->lock);
2809
Peter Zijlstra2acca552011-04-05 17:23:50 +02002810 if (!raw_spin_trylock(&p->pi_lock)) {
2811 raw_spin_unlock(&rq->lock);
2812 raw_spin_lock(&p->pi_lock);
2813 raw_spin_lock(&rq->lock);
Tejun Heo21aa9af2010-06-08 21:40:37 +02002814 }
Peter Zijlstra2acca552011-04-05 17:23:50 +02002815
Tejun Heo21aa9af2010-06-08 21:40:37 +02002816 if (!(p->state & TASK_NORMAL))
Peter Zijlstra2acca552011-04-05 17:23:50 +02002817 goto out;
Tejun Heo21aa9af2010-06-08 21:40:37 +02002818
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02002819 if (!p->on_rq)
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02002820 ttwu_activate(rq, p, ENQUEUE_WAKEUP);
2821
Peter Zijlstra23f41ee2011-04-05 17:23:56 +02002822 ttwu_do_wakeup(rq, p, 0);
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02002823 ttwu_stat(p, smp_processor_id(), 0);
Peter Zijlstra2acca552011-04-05 17:23:50 +02002824out:
2825 raw_spin_unlock(&p->pi_lock);
Tejun Heo21aa9af2010-06-08 21:40:37 +02002826}
2827
2828/**
David Howells50fa6102009-04-28 15:01:38 +01002829 * wake_up_process - Wake up a specific process
2830 * @p: The process to be woken up.
2831 *
2832 * Attempt to wake up the nominated process and move it to the set of runnable
2833 * processes. Returns 1 if the process was woken up, 0 if it was already
2834 * running.
2835 *
2836 * It may be assumed that this function implies a write memory barrier before
2837 * changing the task state if and only if any tasks are woken up.
2838 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002839int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002841 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843EXPORT_SYMBOL(wake_up_process);
2844
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002845int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846{
2847 return try_to_wake_up(p, state, 0);
2848}
2849
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850/*
2851 * Perform scheduler related setup for a newly forked process p.
2852 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02002853 *
2854 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002856static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857{
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02002858 p->on_rq = 0;
2859
2860 p->se.on_rq = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002861 p->se.exec_start = 0;
2862 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02002863 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar6c594c22008-12-14 12:34:15 +01002864 p->se.nr_migrations = 0;
Peter Zijlstrada7a7352011-01-17 17:03:27 +01002865 p->se.vruntime = 0;
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02002866 INIT_LIST_HEAD(&p->se.group_node);
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002867
2868#ifdef CONFIG_SCHEDSTATS
Lucas De Marchi41acab82010-03-10 23:37:45 -03002869 memset(&p->se.statistics, 0, sizeof(p->se.statistics));
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002870#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002871
Peter Zijlstrafa717062008-01-25 21:08:27 +01002872 INIT_LIST_HEAD(&p->rt.run_list);
Nick Piggin476d1392005-06-25 14:57:29 -07002873
Avi Kivitye107be32007-07-26 13:40:43 +02002874#ifdef CONFIG_PREEMPT_NOTIFIERS
2875 INIT_HLIST_HEAD(&p->preempt_notifiers);
2876#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02002877}
2878
2879/*
2880 * fork()/clone()-time setup:
2881 */
Samir Bellabes3e51e3e2011-05-11 18:18:05 +02002882void sched_fork(struct task_struct *p)
Ingo Molnardd41f592007-07-09 18:51:59 +02002883{
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002884 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002885 int cpu = get_cpu();
2886
2887 __sched_fork(p);
Peter Zijlstra06b83b52009-12-16 18:04:35 +01002888 /*
Peter Zijlstra0017d732010-03-24 18:34:10 +01002889 * We mark the process as running here. This guarantees that
Peter Zijlstra06b83b52009-12-16 18:04:35 +01002890 * nobody will actually run it, and a signal or other external
2891 * event cannot wake it up and insert it on the runqueue either.
2892 */
Peter Zijlstra0017d732010-03-24 18:34:10 +01002893 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02002894
Ingo Molnarb29739f2006-06-27 02:54:51 -07002895 /*
Mike Galbraithc350a042011-07-27 17:14:55 +02002896 * Make sure we do not leak PI boosting priority to the child.
2897 */
2898 p->prio = current->normal_prio;
2899
2900 /*
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02002901 * Revert to default priority/policy on fork if requested.
2902 */
2903 if (unlikely(p->sched_reset_on_fork)) {
Mike Galbraithc350a042011-07-27 17:14:55 +02002904 if (task_has_rt_policy(p)) {
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02002905 p->policy = SCHED_NORMAL;
Mike Galbraith6c697bd2009-06-17 10:48:02 +02002906 p->static_prio = NICE_TO_PRIO(0);
Mike Galbraithc350a042011-07-27 17:14:55 +02002907 p->rt_priority = 0;
2908 } else if (PRIO_TO_NICE(p->static_prio) < 0)
2909 p->static_prio = NICE_TO_PRIO(0);
2910
2911 p->prio = p->normal_prio = __normal_prio(p);
2912 set_load_weight(p);
Mike Galbraith6c697bd2009-06-17 10:48:02 +02002913
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02002914 /*
2915 * We don't need the reset flag anymore after the fork. It has
2916 * fulfilled its duty:
2917 */
2918 p->sched_reset_on_fork = 0;
2919 }
Lennart Poetteringca94c442009-06-15 17:17:47 +02002920
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02002921 if (!rt_prio(p->prio))
2922 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002923
Peter Zijlstracd29fe62009-11-27 17:32:46 +01002924 if (p->sched_class->task_fork)
2925 p->sched_class->task_fork(p);
2926
Peter Zijlstra86951592010-06-22 11:44:53 +02002927 /*
2928 * The child is not yet in the pid-hash so no cgroup attach races,
2929 * and the cgroup is pinned to this child due to cgroup_fork()
2930 * is ran before sched_fork().
2931 *
2932 * Silence PROVE_RCU.
2933 */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002934 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstra5f3edc12009-09-10 13:42:00 +02002935 set_task_cpu(p, cpu);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002936 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Peter Zijlstra5f3edc12009-09-10 13:42:00 +02002937
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002938#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02002939 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07002940 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941#endif
Peter Zijlstra3ca7a442011-04-05 17:23:40 +02002942#if defined(CONFIG_SMP)
2943 p->on_cpu = 0;
Nick Piggin4866cde2005-06-25 14:57:23 -07002944#endif
Frederic Weisbeckerbdd4e852011-06-08 01:13:27 +02002945#ifdef CONFIG_PREEMPT_COUNT
Nick Piggin4866cde2005-06-25 14:57:23 -07002946 /* Want to start with kernel preemption disabled. */
Al Viroa1261f52005-11-13 16:06:55 -08002947 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948#endif
Dario Faggioli806c09a2010-11-30 19:51:33 +01002949#ifdef CONFIG_SMP
Gregory Haskins917b6272008-12-29 09:39:53 -05002950 plist_node_init(&p->pushable_tasks, MAX_PRIO);
Dario Faggioli806c09a2010-11-30 19:51:33 +01002951#endif
Gregory Haskins917b6272008-12-29 09:39:53 -05002952
Nick Piggin476d1392005-06-25 14:57:29 -07002953 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954}
2955
2956/*
2957 * wake_up_new_task - wake up a newly created task for the first time.
2958 *
2959 * This function will do some initial scheduler statistics housekeeping
2960 * that must be done for every newly created context, then puts the task
2961 * on the runqueue and wakes it.
2962 */
Samir Bellabes3e51e3e2011-05-11 18:18:05 +02002963void wake_up_new_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964{
2965 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002966 struct rq *rq;
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002967
Peter Zijlstraab2515c2011-04-05 17:23:52 +02002968 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002969#ifdef CONFIG_SMP
2970 /*
2971 * Fork balancing, do it here and not earlier because:
2972 * - cpus_allowed can change in the fork path
2973 * - any previously selected cpu might disappear through hotplug
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002974 */
Peter Zijlstraab2515c2011-04-05 17:23:52 +02002975 set_task_cpu(p, select_task_rq(p, SD_BALANCE_FORK, 0));
Peter Zijlstrafabf3182010-01-21 21:04:57 +01002976#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977
Peter Zijlstraab2515c2011-04-05 17:23:52 +02002978 rq = __task_rq_lock(p);
Peter Zijlstracd29fe62009-11-27 17:32:46 +01002979 activate_task(rq, p, 0);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02002980 p->on_rq = 1;
Peter Zijlstra89363382011-04-05 17:23:42 +02002981 trace_sched_wakeup_new(p, true);
Peter Zijlstraa7558e02009-09-14 20:02:34 +02002982 check_preempt_curr(rq, p, WF_FORK);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002983#ifdef CONFIG_SMP
Peter Zijlstraefbbd052009-12-16 18:04:40 +01002984 if (p->sched_class->task_woken)
2985 p->sched_class->task_woken(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01002986#endif
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002987 task_rq_unlock(rq, p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988}
2989
Avi Kivitye107be32007-07-26 13:40:43 +02002990#ifdef CONFIG_PREEMPT_NOTIFIERS
2991
2992/**
Luis Henriques80dd99b2009-03-16 19:58:09 +00002993 * preempt_notifier_register - tell me when current is being preempted & rescheduled
Randy Dunlap421cee22007-07-31 00:37:50 -07002994 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02002995 */
2996void preempt_notifier_register(struct preempt_notifier *notifier)
2997{
2998 hlist_add_head(&notifier->link, &current->preempt_notifiers);
2999}
3000EXPORT_SYMBOL_GPL(preempt_notifier_register);
3001
3002/**
3003 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07003004 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02003005 *
3006 * This is safe to call from within a preemption notifier.
3007 */
3008void preempt_notifier_unregister(struct preempt_notifier *notifier)
3009{
3010 hlist_del(&notifier->link);
3011}
3012EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
3013
3014static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
3015{
3016 struct preempt_notifier *notifier;
3017 struct hlist_node *node;
3018
3019 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
3020 notifier->ops->sched_in(notifier, raw_smp_processor_id());
3021}
3022
3023static void
3024fire_sched_out_preempt_notifiers(struct task_struct *curr,
3025 struct task_struct *next)
3026{
3027 struct preempt_notifier *notifier;
3028 struct hlist_node *node;
3029
3030 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
3031 notifier->ops->sched_out(notifier, next);
3032}
3033
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02003034#else /* !CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02003035
3036static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
3037{
3038}
3039
3040static void
3041fire_sched_out_preempt_notifiers(struct task_struct *curr,
3042 struct task_struct *next)
3043{
3044}
3045
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02003046#endif /* CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02003047
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048/**
Nick Piggin4866cde2005-06-25 14:57:23 -07003049 * prepare_task_switch - prepare to switch tasks
3050 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07003051 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07003052 * @next: the task we are going to switch to.
3053 *
3054 * This is called with the rq lock held and interrupts off. It must
3055 * be paired with a subsequent finish_task_switch after the context
3056 * switch.
3057 *
3058 * prepare_task_switch sets up locking and calls architecture specific
3059 * hooks.
3060 */
Avi Kivitye107be32007-07-26 13:40:43 +02003061static inline void
3062prepare_task_switch(struct rq *rq, struct task_struct *prev,
3063 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07003064{
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003065 sched_info_switch(prev, next);
3066 perf_event_task_sched_out(prev, next);
Avi Kivitye107be32007-07-26 13:40:43 +02003067 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07003068 prepare_lock_switch(rq, next);
3069 prepare_arch_switch(next);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003070 trace_sched_switch(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07003071}
3072
3073/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04003075 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 * @prev: the thread we just switched away from.
3077 *
Nick Piggin4866cde2005-06-25 14:57:23 -07003078 * finish_task_switch must be called after the context switch, paired
3079 * with a prepare_task_switch call before the context switch.
3080 * finish_task_switch will reconcile locking set up by prepare_task_switch,
3081 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 *
3083 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003084 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 * with the lock held can cause deadlocks; see schedule() for
3086 * details.)
3087 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02003088static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 __releases(rq->lock)
3090{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07003092 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093
3094 rq->prev_mm = NULL;
3095
3096 /*
3097 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07003098 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07003099 * schedule one last time. The schedule call will never return, and
3100 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07003101 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 * still held, otherwise prev could be scheduled on another cpu, die
3103 * there before we look at prev->state, and then the reference would
3104 * be dropped twice.
3105 * Manfred Spraul <manfred@colorfullife.com>
3106 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07003107 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07003108 finish_arch_switch(prev);
Jamie Iles8381f652010-01-08 15:27:33 +00003109#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
3110 local_irq_disable();
3111#endif /* __ARCH_WANT_INTERRUPTS_ON_CTXSW */
Peter Zijlstra49f47432009-12-27 11:51:52 +01003112 perf_event_task_sched_in(current);
Jamie Iles8381f652010-01-08 15:27:33 +00003113#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
3114 local_irq_enable();
3115#endif /* __ARCH_WANT_INTERRUPTS_ON_CTXSW */
Nick Piggin4866cde2005-06-25 14:57:23 -07003116 finish_lock_switch(rq, prev);
Steven Rostedte8fa1362008-01-25 21:08:05 +01003117
Avi Kivitye107be32007-07-26 13:40:43 +02003118 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 if (mm)
3120 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07003121 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08003122 /*
3123 * Remove function-return probe instances associated with this
3124 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02003125 */
bibo maoc6fd91f2006-03-26 01:38:20 -08003126 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08003128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129}
3130
Gregory Haskins3f029d32009-07-29 11:08:47 -04003131#ifdef CONFIG_SMP
3132
3133/* assumes rq->lock is held */
3134static inline void pre_schedule(struct rq *rq, struct task_struct *prev)
3135{
3136 if (prev->sched_class->pre_schedule)
3137 prev->sched_class->pre_schedule(rq, prev);
3138}
3139
3140/* rq->lock is NOT held, but preemption is disabled */
3141static inline void post_schedule(struct rq *rq)
3142{
3143 if (rq->post_schedule) {
3144 unsigned long flags;
3145
Thomas Gleixner05fa7852009-11-17 14:28:38 +01003146 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins3f029d32009-07-29 11:08:47 -04003147 if (rq->curr->sched_class->post_schedule)
3148 rq->curr->sched_class->post_schedule(rq);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01003149 raw_spin_unlock_irqrestore(&rq->lock, flags);
Gregory Haskins3f029d32009-07-29 11:08:47 -04003150
3151 rq->post_schedule = 0;
3152 }
3153}
3154
3155#else
3156
3157static inline void pre_schedule(struct rq *rq, struct task_struct *p)
3158{
3159}
3160
3161static inline void post_schedule(struct rq *rq)
3162{
3163}
3164
3165#endif
3166
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167/**
3168 * schedule_tail - first thing a freshly forked thread must call.
3169 * @prev: the thread we just switched away from.
3170 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003171asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 __releases(rq->lock)
3173{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003174 struct rq *rq = this_rq();
3175
Nick Piggin4866cde2005-06-25 14:57:23 -07003176 finish_task_switch(rq, prev);
Steven Rostedtda19ab52009-07-29 00:21:22 -04003177
Gregory Haskins3f029d32009-07-29 11:08:47 -04003178 /*
3179 * FIXME: do we need to worry about rq being invalidated by the
3180 * task_switch?
3181 */
3182 post_schedule(rq);
Steven Rostedtda19ab52009-07-29 00:21:22 -04003183
Nick Piggin4866cde2005-06-25 14:57:23 -07003184#ifdef __ARCH_WANT_UNLOCKED_CTXSW
3185 /* In this case, finish_task_switch does not reenable preemption */
3186 preempt_enable();
3187#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003189 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190}
3191
3192/*
3193 * context_switch - switch to the new MM and the new
3194 * thread's register state.
3195 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003196static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07003197context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07003198 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199{
Ingo Molnardd41f592007-07-09 18:51:59 +02003200 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201
Avi Kivitye107be32007-07-26 13:40:43 +02003202 prepare_task_switch(rq, prev, next);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003203
Ingo Molnardd41f592007-07-09 18:51:59 +02003204 mm = next->mm;
3205 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01003206 /*
3207 * For paravirt, this is coupled with an exit in switch_to to
3208 * combine the page table reload and the switch backend into
3209 * one hypercall.
3210 */
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -08003211 arch_start_context_switch(prev);
Zachary Amsden9226d122007-02-13 13:26:21 +01003212
Heiko Carstens31915ab2010-09-16 14:42:25 +02003213 if (!mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 next->active_mm = oldmm;
3215 atomic_inc(&oldmm->mm_count);
3216 enter_lazy_tlb(oldmm, next);
3217 } else
3218 switch_mm(oldmm, mm, next);
3219
Heiko Carstens31915ab2010-09-16 14:42:25 +02003220 if (!prev->mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 rq->prev_mm = oldmm;
3223 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07003224 /*
3225 * Since the runqueue lock will be released by the next
3226 * task (which is an invalid locking op but in the case
3227 * of the scheduler it's an obvious special-case), so we
3228 * do an early lockdep release here:
3229 */
3230#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07003231 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07003232#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233
3234 /* Here we just switch the register state and the stack. */
3235 switch_to(prev, next, prev);
3236
Ingo Molnardd41f592007-07-09 18:51:59 +02003237 barrier();
3238 /*
3239 * this_rq must be evaluated again because prev may have moved
3240 * CPUs since it called schedule(), thus the 'rq' on its stack
3241 * frame will be invalid.
3242 */
3243 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244}
3245
3246/*
3247 * nr_running, nr_uninterruptible and nr_context_switches:
3248 *
3249 * externally visible scheduler statistics: current number of runnable
3250 * threads, current number of uninterruptible-sleeping threads, total
3251 * number of context switches performed since bootup.
3252 */
3253unsigned long nr_running(void)
3254{
3255 unsigned long i, sum = 0;
3256
3257 for_each_online_cpu(i)
3258 sum += cpu_rq(i)->nr_running;
3259
3260 return sum;
3261}
3262
3263unsigned long nr_uninterruptible(void)
3264{
3265 unsigned long i, sum = 0;
3266
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08003267 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 sum += cpu_rq(i)->nr_uninterruptible;
3269
3270 /*
3271 * Since we read the counters lockless, it might be slightly
3272 * inaccurate. Do not allow it to go below zero though:
3273 */
3274 if (unlikely((long)sum < 0))
3275 sum = 0;
3276
3277 return sum;
3278}
3279
3280unsigned long long nr_context_switches(void)
3281{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07003282 int i;
3283 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08003285 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 sum += cpu_rq(i)->nr_switches;
3287
3288 return sum;
3289}
3290
3291unsigned long nr_iowait(void)
3292{
3293 unsigned long i, sum = 0;
3294
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08003295 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296 sum += atomic_read(&cpu_rq(i)->nr_iowait);
3297
3298 return sum;
3299}
3300
Peter Zijlstra8c215bd2010-07-01 09:07:17 +02003301unsigned long nr_iowait_cpu(int cpu)
Arjan van de Ven69d25872009-09-21 17:04:08 -07003302{
Peter Zijlstra8c215bd2010-07-01 09:07:17 +02003303 struct rq *this = cpu_rq(cpu);
Arjan van de Ven69d25872009-09-21 17:04:08 -07003304 return atomic_read(&this->nr_iowait);
3305}
3306
3307unsigned long this_cpu_load(void)
3308{
3309 struct rq *this = this_rq();
3310 return this->cpu_load[0];
3311}
3312
3313
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003314/* Variables and functions for calc_load */
3315static atomic_long_t calc_load_tasks;
3316static unsigned long calc_load_update;
3317unsigned long avenrun[3];
3318EXPORT_SYMBOL(avenrun);
3319
Peter Zijlstra74f51872010-04-22 21:50:19 +02003320static long calc_load_fold_active(struct rq *this_rq)
3321{
3322 long nr_active, delta = 0;
3323
3324 nr_active = this_rq->nr_running;
3325 nr_active += (long) this_rq->nr_uninterruptible;
3326
3327 if (nr_active != this_rq->calc_load_active) {
3328 delta = nr_active - this_rq->calc_load_active;
3329 this_rq->calc_load_active = nr_active;
3330 }
3331
3332 return delta;
3333}
3334
Peter Zijlstra0f004f52010-11-30 19:48:45 +01003335static unsigned long
3336calc_load(unsigned long load, unsigned long exp, unsigned long active)
3337{
3338 load *= exp;
3339 load += active * (FIXED_1 - exp);
3340 load += 1UL << (FSHIFT - 1);
3341 return load >> FSHIFT;
3342}
3343
Peter Zijlstra74f51872010-04-22 21:50:19 +02003344#ifdef CONFIG_NO_HZ
3345/*
3346 * For NO_HZ we delay the active fold to the next LOAD_FREQ update.
3347 *
3348 * When making the ILB scale, we should try to pull this in as well.
3349 */
3350static atomic_long_t calc_load_tasks_idle;
3351
3352static void calc_load_account_idle(struct rq *this_rq)
3353{
3354 long delta;
3355
3356 delta = calc_load_fold_active(this_rq);
3357 if (delta)
3358 atomic_long_add(delta, &calc_load_tasks_idle);
3359}
3360
3361static long calc_load_fold_idle(void)
3362{
3363 long delta = 0;
3364
3365 /*
3366 * Its got a race, we don't care...
3367 */
3368 if (atomic_long_read(&calc_load_tasks_idle))
3369 delta = atomic_long_xchg(&calc_load_tasks_idle, 0);
3370
3371 return delta;
3372}
Peter Zijlstra0f004f52010-11-30 19:48:45 +01003373
3374/**
3375 * fixed_power_int - compute: x^n, in O(log n) time
3376 *
3377 * @x: base of the power
3378 * @frac_bits: fractional bits of @x
3379 * @n: power to raise @x to.
3380 *
3381 * By exploiting the relation between the definition of the natural power
3382 * function: x^n := x*x*...*x (x multiplied by itself for n times), and
3383 * the binary encoding of numbers used by computers: n := \Sum n_i * 2^i,
3384 * (where: n_i \elem {0, 1}, the binary vector representing n),
3385 * we find: x^n := x^(\Sum n_i * 2^i) := \Prod x^(n_i * 2^i), which is
3386 * of course trivially computable in O(log_2 n), the length of our binary
3387 * vector.
3388 */
3389static unsigned long
3390fixed_power_int(unsigned long x, unsigned int frac_bits, unsigned int n)
3391{
3392 unsigned long result = 1UL << frac_bits;
3393
3394 if (n) for (;;) {
3395 if (n & 1) {
3396 result *= x;
3397 result += 1UL << (frac_bits - 1);
3398 result >>= frac_bits;
3399 }
3400 n >>= 1;
3401 if (!n)
3402 break;
3403 x *= x;
3404 x += 1UL << (frac_bits - 1);
3405 x >>= frac_bits;
3406 }
3407
3408 return result;
3409}
3410
3411/*
3412 * a1 = a0 * e + a * (1 - e)
3413 *
3414 * a2 = a1 * e + a * (1 - e)
3415 * = (a0 * e + a * (1 - e)) * e + a * (1 - e)
3416 * = a0 * e^2 + a * (1 - e) * (1 + e)
3417 *
3418 * a3 = a2 * e + a * (1 - e)
3419 * = (a0 * e^2 + a * (1 - e) * (1 + e)) * e + a * (1 - e)
3420 * = a0 * e^3 + a * (1 - e) * (1 + e + e^2)
3421 *
3422 * ...
3423 *
3424 * an = a0 * e^n + a * (1 - e) * (1 + e + ... + e^n-1) [1]
3425 * = a0 * e^n + a * (1 - e) * (1 - e^n)/(1 - e)
3426 * = a0 * e^n + a * (1 - e^n)
3427 *
3428 * [1] application of the geometric series:
3429 *
3430 * n 1 - x^(n+1)
3431 * S_n := \Sum x^i = -------------
3432 * i=0 1 - x
3433 */
3434static unsigned long
3435calc_load_n(unsigned long load, unsigned long exp,
3436 unsigned long active, unsigned int n)
3437{
3438
3439 return calc_load(load, fixed_power_int(exp, FSHIFT, n), active);
3440}
3441
3442/*
3443 * NO_HZ can leave us missing all per-cpu ticks calling
3444 * calc_load_account_active(), but since an idle CPU folds its delta into
3445 * calc_load_tasks_idle per calc_load_account_idle(), all we need to do is fold
3446 * in the pending idle delta if our idle period crossed a load cycle boundary.
3447 *
3448 * Once we've updated the global active value, we need to apply the exponential
3449 * weights adjusted to the number of cycles missed.
3450 */
3451static void calc_global_nohz(unsigned long ticks)
3452{
3453 long delta, active, n;
3454
3455 if (time_before(jiffies, calc_load_update))
3456 return;
3457
3458 /*
3459 * If we crossed a calc_load_update boundary, make sure to fold
3460 * any pending idle changes, the respective CPUs might have
3461 * missed the tick driven calc_load_account_active() update
3462 * due to NO_HZ.
3463 */
3464 delta = calc_load_fold_idle();
3465 if (delta)
3466 atomic_long_add(delta, &calc_load_tasks);
3467
3468 /*
3469 * If we were idle for multiple load cycles, apply them.
3470 */
3471 if (ticks >= LOAD_FREQ) {
3472 n = ticks / LOAD_FREQ;
3473
3474 active = atomic_long_read(&calc_load_tasks);
3475 active = active > 0 ? active * FIXED_1 : 0;
3476
3477 avenrun[0] = calc_load_n(avenrun[0], EXP_1, active, n);
3478 avenrun[1] = calc_load_n(avenrun[1], EXP_5, active, n);
3479 avenrun[2] = calc_load_n(avenrun[2], EXP_15, active, n);
3480
3481 calc_load_update += n * LOAD_FREQ;
3482 }
3483
3484 /*
3485 * Its possible the remainder of the above division also crosses
3486 * a LOAD_FREQ period, the regular check in calc_global_load()
3487 * which comes after this will take care of that.
3488 *
3489 * Consider us being 11 ticks before a cycle completion, and us
3490 * sleeping for 4*LOAD_FREQ + 22 ticks, then the above code will
3491 * age us 4 cycles, and the test in calc_global_load() will
3492 * pick up the final one.
3493 */
3494}
Peter Zijlstra74f51872010-04-22 21:50:19 +02003495#else
3496static void calc_load_account_idle(struct rq *this_rq)
3497{
3498}
3499
3500static inline long calc_load_fold_idle(void)
3501{
3502 return 0;
3503}
Peter Zijlstra0f004f52010-11-30 19:48:45 +01003504
3505static void calc_global_nohz(unsigned long ticks)
3506{
3507}
Peter Zijlstra74f51872010-04-22 21:50:19 +02003508#endif
3509
Thomas Gleixner2d024942009-05-02 20:08:52 +02003510/**
3511 * get_avenrun - get the load average array
3512 * @loads: pointer to dest load array
3513 * @offset: offset to add
3514 * @shift: shift count to shift the result left
3515 *
3516 * These values are estimates at best, so no need for locking.
3517 */
3518void get_avenrun(unsigned long *loads, unsigned long offset, int shift)
3519{
3520 loads[0] = (avenrun[0] + offset) << shift;
3521 loads[1] = (avenrun[1] + offset) << shift;
3522 loads[2] = (avenrun[2] + offset) << shift;
3523}
3524
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003525/*
3526 * calc_load - update the avenrun load estimates 10 ticks after the
3527 * CPUs have updated calc_load_tasks.
3528 */
Peter Zijlstra0f004f52010-11-30 19:48:45 +01003529void calc_global_load(unsigned long ticks)
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003530{
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003531 long active;
3532
Peter Zijlstra0f004f52010-11-30 19:48:45 +01003533 calc_global_nohz(ticks);
3534
3535 if (time_before(jiffies, calc_load_update + 10))
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003536 return;
3537
3538 active = atomic_long_read(&calc_load_tasks);
3539 active = active > 0 ? active * FIXED_1 : 0;
3540
3541 avenrun[0] = calc_load(avenrun[0], EXP_1, active);
3542 avenrun[1] = calc_load(avenrun[1], EXP_5, active);
3543 avenrun[2] = calc_load(avenrun[2], EXP_15, active);
3544
3545 calc_load_update += LOAD_FREQ;
3546}
3547
3548/*
Peter Zijlstra74f51872010-04-22 21:50:19 +02003549 * Called from update_cpu_load() to periodically update this CPU's
3550 * active count.
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003551 */
3552static void calc_load_account_active(struct rq *this_rq)
3553{
Peter Zijlstra74f51872010-04-22 21:50:19 +02003554 long delta;
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003555
Peter Zijlstra74f51872010-04-22 21:50:19 +02003556 if (time_before(jiffies, this_rq->calc_load_update))
3557 return;
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003558
Peter Zijlstra74f51872010-04-22 21:50:19 +02003559 delta = calc_load_fold_active(this_rq);
3560 delta += calc_load_fold_idle();
3561 if (delta)
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003562 atomic_long_add(delta, &calc_load_tasks);
Peter Zijlstra74f51872010-04-22 21:50:19 +02003563
3564 this_rq->calc_load_update += LOAD_FREQ;
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08003565}
3566
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567/*
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07003568 * The exact cpuload at various idx values, calculated at every tick would be
3569 * load = (2^idx - 1) / 2^idx * load + 1 / 2^idx * cur_load
3570 *
3571 * If a cpu misses updates for n-1 ticks (as it was idle) and update gets called
3572 * on nth tick when cpu may be busy, then we have:
3573 * load = ((2^idx - 1) / 2^idx)^(n-1) * load
3574 * load = (2^idx - 1) / 2^idx) * load + 1 / 2^idx * cur_load
3575 *
3576 * decay_load_missed() below does efficient calculation of
3577 * load = ((2^idx - 1) / 2^idx)^(n-1) * load
3578 * avoiding 0..n-1 loop doing load = ((2^idx - 1) / 2^idx) * load
3579 *
3580 * The calculation is approximated on a 128 point scale.
3581 * degrade_zero_ticks is the number of ticks after which load at any
3582 * particular idx is approximated to be zero.
3583 * degrade_factor is a precomputed table, a row for each load idx.
3584 * Each column corresponds to degradation factor for a power of two ticks,
3585 * based on 128 point scale.
3586 * Example:
3587 * row 2, col 3 (=12) says that the degradation at load idx 2 after
3588 * 8 ticks is 12/128 (which is an approximation of exact factor 3^8/4^8).
3589 *
3590 * With this power of 2 load factors, we can degrade the load n times
3591 * by looking at 1 bits in n and doing as many mult/shift instead of
3592 * n mult/shifts needed by the exact degradation.
3593 */
3594#define DEGRADE_SHIFT 7
3595static const unsigned char
3596 degrade_zero_ticks[CPU_LOAD_IDX_MAX] = {0, 8, 32, 64, 128};
3597static const unsigned char
3598 degrade_factor[CPU_LOAD_IDX_MAX][DEGRADE_SHIFT + 1] = {
3599 {0, 0, 0, 0, 0, 0, 0, 0},
3600 {64, 32, 8, 0, 0, 0, 0, 0},
3601 {96, 72, 40, 12, 1, 0, 0},
3602 {112, 98, 75, 43, 15, 1, 0},
3603 {120, 112, 98, 76, 45, 16, 2} };
3604
3605/*
3606 * Update cpu_load for any missed ticks, due to tickless idle. The backlog
3607 * would be when CPU is idle and so we just decay the old load without
3608 * adding any new load.
3609 */
3610static unsigned long
3611decay_load_missed(unsigned long load, unsigned long missed_updates, int idx)
3612{
3613 int j = 0;
3614
3615 if (!missed_updates)
3616 return load;
3617
3618 if (missed_updates >= degrade_zero_ticks[idx])
3619 return 0;
3620
3621 if (idx == 1)
3622 return load >> missed_updates;
3623
3624 while (missed_updates) {
3625 if (missed_updates % 2)
3626 load = (load * degrade_factor[idx][j]) >> DEGRADE_SHIFT;
3627
3628 missed_updates >>= 1;
3629 j++;
3630 }
3631 return load;
3632}
3633
3634/*
Ingo Molnardd41f592007-07-09 18:51:59 +02003635 * Update rq->cpu_load[] statistics. This function is usually called every
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07003636 * scheduler tick (TICK_NSEC). With tickless idle this will not be called
3637 * every tick. We fix it up based on jiffies.
Ingo Molnar48f24c42006-07-03 00:25:40 -07003638 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003639static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003640{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02003641 unsigned long this_load = this_rq->load.weight;
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07003642 unsigned long curr_jiffies = jiffies;
3643 unsigned long pending_updates;
Ingo Molnardd41f592007-07-09 18:51:59 +02003644 int i, scale;
3645
3646 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02003647
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07003648 /* Avoid repeated calls on same jiffy, when moving in and out of idle */
3649 if (curr_jiffies == this_rq->last_load_update_tick)
3650 return;
3651
3652 pending_updates = curr_jiffies - this_rq->last_load_update_tick;
3653 this_rq->last_load_update_tick = curr_jiffies;
3654
Ingo Molnardd41f592007-07-09 18:51:59 +02003655 /* Update our load: */
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07003656 this_rq->cpu_load[0] = this_load; /* Fasttrack for idx 0 */
3657 for (i = 1, scale = 2; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003658 unsigned long old_load, new_load;
3659
3660 /* scale is effectively 1 << i now, and >> i divides by scale */
3661
3662 old_load = this_rq->cpu_load[i];
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07003663 old_load = decay_load_missed(old_load, pending_updates - 1, i);
Ingo Molnardd41f592007-07-09 18:51:59 +02003664 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02003665 /*
3666 * Round up the averaging division if load is increasing. This
3667 * prevents us from getting stuck on 9 if the load is 10, for
3668 * example.
3669 */
3670 if (new_load > old_load)
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07003671 new_load += scale - 1;
3672
3673 this_rq->cpu_load[i] = (old_load * (scale - 1) + new_load) >> i;
Ingo Molnardd41f592007-07-09 18:51:59 +02003674 }
Suresh Siddhada2b71e2010-08-23 13:42:51 -07003675
3676 sched_avg_update(this_rq);
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07003677}
3678
3679static void update_cpu_load_active(struct rq *this_rq)
3680{
3681 update_cpu_load(this_rq);
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003682
Peter Zijlstra74f51872010-04-22 21:50:19 +02003683 calc_load_account_active(this_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003684}
3685
Ingo Molnardd41f592007-07-09 18:51:59 +02003686#ifdef CONFIG_SMP
3687
Ingo Molnar48f24c42006-07-03 00:25:40 -07003688/*
Peter Zijlstra38022902009-12-16 18:04:37 +01003689 * sched_exec - execve() is a valuable balancing opportunity, because at
3690 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 */
Peter Zijlstra38022902009-12-16 18:04:37 +01003692void sched_exec(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693{
Peter Zijlstra38022902009-12-16 18:04:37 +01003694 struct task_struct *p = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695 unsigned long flags;
Peter Zijlstra0017d732010-03-24 18:34:10 +01003696 int dest_cpu;
Peter Zijlstra38022902009-12-16 18:04:37 +01003697
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02003698 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstra7608dec2011-04-05 17:23:46 +02003699 dest_cpu = p->sched_class->select_task_rq(p, SD_BALANCE_EXEC, 0);
Peter Zijlstra0017d732010-03-24 18:34:10 +01003700 if (dest_cpu == smp_processor_id())
3701 goto unlock;
Peter Zijlstra38022902009-12-16 18:04:37 +01003702
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02003703 if (likely(cpu_active(dest_cpu))) {
Tejun Heo969c7922010-05-06 18:49:21 +02003704 struct migration_arg arg = { p, dest_cpu };
Ingo Molnar36c8b582006-07-03 00:25:41 -07003705
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02003706 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
3707 stop_one_cpu(task_cpu(p), migration_cpu_stop, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708 return;
3709 }
Peter Zijlstra0017d732010-03-24 18:34:10 +01003710unlock:
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02003711 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712}
3713
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714#endif
3715
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716DEFINE_PER_CPU(struct kernel_stat, kstat);
3717
3718EXPORT_PER_CPU_SYMBOL(kstat);
3719
3720/*
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09003721 * Return any ns on the sched_clock that have not yet been accounted in
Frank Mayharf06febc2008-09-12 09:54:39 -07003722 * @p in case that task is currently running.
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09003723 *
3724 * Called with task_rq_lock() held on @rq.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725 */
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09003726static u64 do_task_delta_exec(struct task_struct *p, struct rq *rq)
3727{
3728 u64 ns = 0;
3729
3730 if (task_current(rq, p)) {
3731 update_rq_clock(rq);
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -07003732 ns = rq->clock_task - p->se.exec_start;
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09003733 if ((s64)ns < 0)
3734 ns = 0;
3735 }
3736
3737 return ns;
3738}
3739
Frank Mayharbb34d922008-09-12 09:54:39 -07003740unsigned long long task_delta_exec(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003743 struct rq *rq;
Frank Mayharbb34d922008-09-12 09:54:39 -07003744 u64 ns = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003745
Ingo Molnar41b86e92007-07-09 18:51:58 +02003746 rq = task_rq_lock(p, &flags);
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09003747 ns = do_task_delta_exec(p, rq);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003748 task_rq_unlock(rq, p, &flags);
Ingo Molnar15084872008-09-30 08:28:17 +02003749
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09003750 return ns;
3751}
Frank Mayharf06febc2008-09-12 09:54:39 -07003752
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09003753/*
3754 * Return accounted runtime for the task.
3755 * In case the task is currently running, return the runtime plus current's
3756 * pending runtime that have not been accounted yet.
3757 */
3758unsigned long long task_sched_runtime(struct task_struct *p)
3759{
3760 unsigned long flags;
3761 struct rq *rq;
3762 u64 ns = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003763
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09003764 rq = task_rq_lock(p, &flags);
3765 ns = p->se.sum_exec_runtime + do_task_delta_exec(p, rq);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003766 task_rq_unlock(rq, p, &flags);
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09003767
3768 return ns;
3769}
3770
3771/*
3772 * Return sum_exec_runtime for the thread group.
3773 * In case the task is currently running, return the sum plus current's
3774 * pending runtime that have not been accounted yet.
3775 *
3776 * Note that the thread group might have other running tasks as well,
3777 * so the return value not includes other pending runtime that other
3778 * running tasks might have.
3779 */
3780unsigned long long thread_group_sched_runtime(struct task_struct *p)
3781{
3782 struct task_cputime totals;
3783 unsigned long flags;
3784 struct rq *rq;
3785 u64 ns;
3786
3787 rq = task_rq_lock(p, &flags);
3788 thread_group_cputime(p, &totals);
3789 ns = totals.sum_exec_runtime + do_task_delta_exec(p, rq);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003790 task_rq_unlock(rq, p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791
3792 return ns;
3793}
3794
3795/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796 * Account user cpu time to a process.
3797 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798 * @cputime: the cpu time spent in user space since the last update
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003799 * @cputime_scaled: cputime scaled by cpu frequency
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800 */
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003801void account_user_time(struct task_struct *p, cputime_t cputime,
3802 cputime_t cputime_scaled)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803{
3804 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3805 cputime64_t tmp;
3806
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003807 /* Add user time to process. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808 p->utime = cputime_add(p->utime, cputime);
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003809 p->utimescaled = cputime_add(p->utimescaled, cputime_scaled);
Frank Mayharf06febc2008-09-12 09:54:39 -07003810 account_group_user_time(p, cputime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811
3812 /* Add user time to cpustat. */
3813 tmp = cputime_to_cputime64(cputime);
3814 if (TASK_NICE(p) > 0)
3815 cpustat->nice = cputime64_add(cpustat->nice, tmp);
3816 else
3817 cpustat->user = cputime64_add(cpustat->user, tmp);
Bharata B Raoef12fef2009-03-31 10:02:22 +05303818
3819 cpuacct_update_stats(p, CPUACCT_STAT_USER, cputime);
Jonathan Lim49b5cf32008-07-25 01:48:40 -07003820 /* Account for user time used */
3821 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822}
3823
3824/*
Laurent Vivier94886b82007-10-15 17:00:19 +02003825 * Account guest cpu time to a process.
3826 * @p: the process that the cpu time gets accounted to
3827 * @cputime: the cpu time spent in virtual machine since the last update
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003828 * @cputime_scaled: cputime scaled by cpu frequency
Laurent Vivier94886b82007-10-15 17:00:19 +02003829 */
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003830static void account_guest_time(struct task_struct *p, cputime_t cputime,
3831 cputime_t cputime_scaled)
Laurent Vivier94886b82007-10-15 17:00:19 +02003832{
3833 cputime64_t tmp;
3834 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3835
3836 tmp = cputime_to_cputime64(cputime);
3837
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003838 /* Add guest time to process. */
Laurent Vivier94886b82007-10-15 17:00:19 +02003839 p->utime = cputime_add(p->utime, cputime);
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003840 p->utimescaled = cputime_add(p->utimescaled, cputime_scaled);
Frank Mayharf06febc2008-09-12 09:54:39 -07003841 account_group_user_time(p, cputime);
Laurent Vivier94886b82007-10-15 17:00:19 +02003842 p->gtime = cputime_add(p->gtime, cputime);
3843
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003844 /* Add guest time to cpustat. */
Ryota Ozakice0e7b22009-10-24 01:20:10 +09003845 if (TASK_NICE(p) > 0) {
3846 cpustat->nice = cputime64_add(cpustat->nice, tmp);
3847 cpustat->guest_nice = cputime64_add(cpustat->guest_nice, tmp);
3848 } else {
3849 cpustat->user = cputime64_add(cpustat->user, tmp);
3850 cpustat->guest = cputime64_add(cpustat->guest, tmp);
3851 }
Laurent Vivier94886b82007-10-15 17:00:19 +02003852}
3853
3854/*
Venkatesh Pallipadi70a89a62010-12-21 17:09:02 -08003855 * Account system cpu time to a process and desired cpustat field
3856 * @p: the process that the cpu time gets accounted to
3857 * @cputime: the cpu time spent in kernel space since the last update
3858 * @cputime_scaled: cputime scaled by cpu frequency
3859 * @target_cputime64: pointer to cpustat field that has to be updated
3860 */
3861static inline
3862void __account_system_time(struct task_struct *p, cputime_t cputime,
3863 cputime_t cputime_scaled, cputime64_t *target_cputime64)
3864{
3865 cputime64_t tmp = cputime_to_cputime64(cputime);
3866
3867 /* Add system time to process. */
3868 p->stime = cputime_add(p->stime, cputime);
3869 p->stimescaled = cputime_add(p->stimescaled, cputime_scaled);
3870 account_group_system_time(p, cputime);
3871
3872 /* Add system time to cpustat. */
3873 *target_cputime64 = cputime64_add(*target_cputime64, tmp);
3874 cpuacct_update_stats(p, CPUACCT_STAT_SYSTEM, cputime);
3875
3876 /* Account for system time used */
3877 acct_update_integrals(p);
3878}
3879
3880/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881 * Account system cpu time to a process.
3882 * @p: the process that the cpu time gets accounted to
3883 * @hardirq_offset: the offset to subtract from hardirq_count()
3884 * @cputime: the cpu time spent in kernel space since the last update
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003885 * @cputime_scaled: cputime scaled by cpu frequency
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886 */
3887void account_system_time(struct task_struct *p, int hardirq_offset,
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003888 cputime_t cputime, cputime_t cputime_scaled)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889{
3890 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Venkatesh Pallipadi70a89a62010-12-21 17:09:02 -08003891 cputime64_t *target_cputime64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892
Harvey Harrison983ed7a2008-04-24 18:17:55 -07003893 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) {
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003894 account_guest_time(p, cputime, cputime_scaled);
Harvey Harrison983ed7a2008-04-24 18:17:55 -07003895 return;
3896 }
Laurent Vivier94886b82007-10-15 17:00:19 +02003897
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898 if (hardirq_count() - hardirq_offset)
Venkatesh Pallipadi70a89a62010-12-21 17:09:02 -08003899 target_cputime64 = &cpustat->irq;
Venkatesh Pallipadi75e10562010-10-04 17:03:16 -07003900 else if (in_serving_softirq())
Venkatesh Pallipadi70a89a62010-12-21 17:09:02 -08003901 target_cputime64 = &cpustat->softirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902 else
Venkatesh Pallipadi70a89a62010-12-21 17:09:02 -08003903 target_cputime64 = &cpustat->system;
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01003904
Venkatesh Pallipadi70a89a62010-12-21 17:09:02 -08003905 __account_system_time(p, cputime, cputime_scaled, target_cputime64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906}
3907
3908/*
3909 * Account for involuntary wait time.
Venkatesh Pallipadi544b4a12011-02-25 15:13:16 -08003910 * @cputime: the cpu time spent in involuntary wait
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911 */
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01003912void account_steal_time(cputime_t cputime)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01003915 cputime64_t cputime64 = cputime_to_cputime64(cputime);
3916
3917 cpustat->steal = cputime64_add(cpustat->steal, cputime64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918}
3919
Christoph Lameter7835b982006-12-10 02:20:22 -08003920/*
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01003921 * Account for idle time.
3922 * @cputime: the cpu time spent in idle wait
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 */
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01003924void account_idle_time(cputime_t cputime)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925{
3926 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01003927 cputime64_t cputime64 = cputime_to_cputime64(cputime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 struct rq *rq = this_rq();
3929
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01003930 if (atomic_read(&rq->nr_iowait) > 0)
3931 cpustat->iowait = cputime64_add(cpustat->iowait, cputime64);
3932 else
3933 cpustat->idle = cputime64_add(cpustat->idle, cputime64);
Christoph Lameter7835b982006-12-10 02:20:22 -08003934}
3935
Glauber Costae6e66852011-07-11 15:28:17 -04003936static __always_inline bool steal_account_process_tick(void)
3937{
3938#ifdef CONFIG_PARAVIRT
3939 if (static_branch(&paravirt_steal_enabled)) {
3940 u64 steal, st = 0;
3941
3942 steal = paravirt_steal_clock(smp_processor_id());
3943 steal -= this_rq()->prev_steal_time;
3944
3945 st = steal_ticks(steal);
3946 this_rq()->prev_steal_time += st * TICK_NSEC;
3947
3948 account_steal_time(st);
3949 return st;
3950 }
3951#endif
3952 return false;
3953}
3954
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01003955#ifndef CONFIG_VIRT_CPU_ACCOUNTING
3956
Venkatesh Pallipadiabb74ce2010-12-21 17:09:03 -08003957#ifdef CONFIG_IRQ_TIME_ACCOUNTING
3958/*
3959 * Account a tick to a process and cpustat
3960 * @p: the process that the cpu time gets accounted to
3961 * @user_tick: is the tick from userspace
3962 * @rq: the pointer to rq
3963 *
3964 * Tick demultiplexing follows the order
3965 * - pending hardirq update
3966 * - pending softirq update
3967 * - user_time
3968 * - idle_time
3969 * - system time
3970 * - check for guest_time
3971 * - else account as system_time
3972 *
3973 * Check for hardirq is done both for system and user time as there is
3974 * no timer going off while we are on hardirq and hence we may never get an
3975 * opportunity to update it solely in system time.
3976 * p->stime and friends are only updated on system time and not on irq
3977 * softirq as those do not count in task exec_runtime any more.
3978 */
3979static void irqtime_account_process_tick(struct task_struct *p, int user_tick,
3980 struct rq *rq)
3981{
3982 cputime_t one_jiffy_scaled = cputime_to_scaled(cputime_one_jiffy);
3983 cputime64_t tmp = cputime_to_cputime64(cputime_one_jiffy);
3984 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3985
Glauber Costae6e66852011-07-11 15:28:17 -04003986 if (steal_account_process_tick())
3987 return;
3988
Venkatesh Pallipadiabb74ce2010-12-21 17:09:03 -08003989 if (irqtime_account_hi_update()) {
3990 cpustat->irq = cputime64_add(cpustat->irq, tmp);
3991 } else if (irqtime_account_si_update()) {
3992 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Venkatesh Pallipadi414bee92010-12-21 17:09:04 -08003993 } else if (this_cpu_ksoftirqd() == p) {
3994 /*
3995 * ksoftirqd time do not get accounted in cpu_softirq_time.
3996 * So, we have to handle it separately here.
3997 * Also, p->stime needs to be updated for ksoftirqd.
3998 */
3999 __account_system_time(p, cputime_one_jiffy, one_jiffy_scaled,
4000 &cpustat->softirq);
Venkatesh Pallipadiabb74ce2010-12-21 17:09:03 -08004001 } else if (user_tick) {
4002 account_user_time(p, cputime_one_jiffy, one_jiffy_scaled);
4003 } else if (p == rq->idle) {
4004 account_idle_time(cputime_one_jiffy);
4005 } else if (p->flags & PF_VCPU) { /* System time or guest time */
4006 account_guest_time(p, cputime_one_jiffy, one_jiffy_scaled);
4007 } else {
4008 __account_system_time(p, cputime_one_jiffy, one_jiffy_scaled,
4009 &cpustat->system);
4010 }
4011}
4012
4013static void irqtime_account_idle_ticks(int ticks)
4014{
4015 int i;
4016 struct rq *rq = this_rq();
4017
4018 for (i = 0; i < ticks; i++)
4019 irqtime_account_process_tick(current, 0, rq);
4020}
Venkatesh Pallipadi544b4a12011-02-25 15:13:16 -08004021#else /* CONFIG_IRQ_TIME_ACCOUNTING */
Venkatesh Pallipadiabb74ce2010-12-21 17:09:03 -08004022static void irqtime_account_idle_ticks(int ticks) {}
4023static void irqtime_account_process_tick(struct task_struct *p, int user_tick,
4024 struct rq *rq) {}
Venkatesh Pallipadi544b4a12011-02-25 15:13:16 -08004025#endif /* CONFIG_IRQ_TIME_ACCOUNTING */
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004026
4027/*
4028 * Account a single tick of cpu time.
4029 * @p: the process that the cpu time gets accounted to
4030 * @user_tick: indicates if the tick is a user or a system tick
4031 */
4032void account_process_tick(struct task_struct *p, int user_tick)
4033{
Stanislaw Gruszkaa42548a2009-07-29 12:15:29 +02004034 cputime_t one_jiffy_scaled = cputime_to_scaled(cputime_one_jiffy);
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004035 struct rq *rq = this_rq();
4036
Venkatesh Pallipadiabb74ce2010-12-21 17:09:03 -08004037 if (sched_clock_irqtime) {
4038 irqtime_account_process_tick(p, user_tick, rq);
4039 return;
4040 }
4041
Glauber Costae6e66852011-07-11 15:28:17 -04004042 if (steal_account_process_tick())
4043 return;
4044
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004045 if (user_tick)
Stanislaw Gruszkaa42548a2009-07-29 12:15:29 +02004046 account_user_time(p, cputime_one_jiffy, one_jiffy_scaled);
Eric Dumazetf5f293a2009-04-29 14:44:49 +02004047 else if ((p != rq->idle) || (irq_count() != HARDIRQ_OFFSET))
Stanislaw Gruszkaa42548a2009-07-29 12:15:29 +02004048 account_system_time(p, HARDIRQ_OFFSET, cputime_one_jiffy,
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004049 one_jiffy_scaled);
4050 else
Stanislaw Gruszkaa42548a2009-07-29 12:15:29 +02004051 account_idle_time(cputime_one_jiffy);
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004052}
4053
4054/*
4055 * Account multiple ticks of steal time.
4056 * @p: the process from which the cpu time has been stolen
4057 * @ticks: number of stolen ticks
4058 */
4059void account_steal_ticks(unsigned long ticks)
4060{
4061 account_steal_time(jiffies_to_cputime(ticks));
4062}
4063
4064/*
4065 * Account multiple ticks of idle time.
4066 * @ticks: number of stolen ticks
4067 */
4068void account_idle_ticks(unsigned long ticks)
4069{
Venkatesh Pallipadiabb74ce2010-12-21 17:09:03 -08004070
4071 if (sched_clock_irqtime) {
4072 irqtime_account_idle_ticks(ticks);
4073 return;
4074 }
4075
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004076 account_idle_time(jiffies_to_cputime(ticks));
4077}
4078
4079#endif
4080
Christoph Lameter7835b982006-12-10 02:20:22 -08004081/*
Balbir Singh49048622008-09-05 18:12:23 +02004082 * Use precise platform statistics if available:
4083 */
4084#ifdef CONFIG_VIRT_CPU_ACCOUNTING
Hidetoshi Setod180c5b2009-11-26 14:48:30 +09004085void task_times(struct task_struct *p, cputime_t *ut, cputime_t *st)
Balbir Singh49048622008-09-05 18:12:23 +02004086{
Hidetoshi Setod99ca3b2009-12-02 17:26:47 +09004087 *ut = p->utime;
4088 *st = p->stime;
Balbir Singh49048622008-09-05 18:12:23 +02004089}
4090
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +09004091void thread_group_times(struct task_struct *p, cputime_t *ut, cputime_t *st)
Balbir Singh49048622008-09-05 18:12:23 +02004092{
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +09004093 struct task_cputime cputime;
4094
4095 thread_group_cputime(p, &cputime);
4096
4097 *ut = cputime.utime;
4098 *st = cputime.stime;
Balbir Singh49048622008-09-05 18:12:23 +02004099}
4100#else
Hidetoshi Seto761b1d22009-11-12 13:33:45 +09004101
4102#ifndef nsecs_to_cputime
Hidetoshi Setob7b20df92009-11-26 14:49:27 +09004103# define nsecs_to_cputime(__nsecs) nsecs_to_jiffies(__nsecs)
Hidetoshi Seto761b1d22009-11-12 13:33:45 +09004104#endif
4105
Hidetoshi Setod180c5b2009-11-26 14:48:30 +09004106void task_times(struct task_struct *p, cputime_t *ut, cputime_t *st)
Balbir Singh49048622008-09-05 18:12:23 +02004107{
Hidetoshi Setod99ca3b2009-12-02 17:26:47 +09004108 cputime_t rtime, utime = p->utime, total = cputime_add(utime, p->stime);
Balbir Singh49048622008-09-05 18:12:23 +02004109
4110 /*
4111 * Use CFS's precise accounting:
4112 */
Hidetoshi Setod180c5b2009-11-26 14:48:30 +09004113 rtime = nsecs_to_cputime(p->se.sum_exec_runtime);
Balbir Singh49048622008-09-05 18:12:23 +02004114
4115 if (total) {
Stanislaw Gruszkae75e8632010-09-14 16:35:14 +02004116 u64 temp = rtime;
Balbir Singh49048622008-09-05 18:12:23 +02004117
Stanislaw Gruszkae75e8632010-09-14 16:35:14 +02004118 temp *= utime;
Balbir Singh49048622008-09-05 18:12:23 +02004119 do_div(temp, total);
Hidetoshi Setod180c5b2009-11-26 14:48:30 +09004120 utime = (cputime_t)temp;
4121 } else
4122 utime = rtime;
Balbir Singh49048622008-09-05 18:12:23 +02004123
4124 /*
Hidetoshi Setod180c5b2009-11-26 14:48:30 +09004125 * Compare with previous values, to keep monotonicity:
Balbir Singh49048622008-09-05 18:12:23 +02004126 */
Hidetoshi Seto761b1d22009-11-12 13:33:45 +09004127 p->prev_utime = max(p->prev_utime, utime);
Hidetoshi Setod99ca3b2009-12-02 17:26:47 +09004128 p->prev_stime = max(p->prev_stime, cputime_sub(rtime, p->prev_utime));
Balbir Singh49048622008-09-05 18:12:23 +02004129
Hidetoshi Setod99ca3b2009-12-02 17:26:47 +09004130 *ut = p->prev_utime;
4131 *st = p->prev_stime;
Hidetoshi Setod180c5b2009-11-26 14:48:30 +09004132}
Balbir Singh49048622008-09-05 18:12:23 +02004133
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +09004134/*
4135 * Must be called with siglock held.
4136 */
4137void thread_group_times(struct task_struct *p, cputime_t *ut, cputime_t *st)
4138{
4139 struct signal_struct *sig = p->signal;
4140 struct task_cputime cputime;
4141 cputime_t rtime, utime, total;
4142
4143 thread_group_cputime(p, &cputime);
4144
4145 total = cputime_add(cputime.utime, cputime.stime);
4146 rtime = nsecs_to_cputime(cputime.sum_exec_runtime);
4147
4148 if (total) {
Stanislaw Gruszkae75e8632010-09-14 16:35:14 +02004149 u64 temp = rtime;
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +09004150
Stanislaw Gruszkae75e8632010-09-14 16:35:14 +02004151 temp *= cputime.utime;
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +09004152 do_div(temp, total);
4153 utime = (cputime_t)temp;
4154 } else
4155 utime = rtime;
4156
4157 sig->prev_utime = max(sig->prev_utime, utime);
4158 sig->prev_stime = max(sig->prev_stime,
4159 cputime_sub(rtime, sig->prev_utime));
4160
4161 *ut = sig->prev_utime;
4162 *st = sig->prev_stime;
Balbir Singh49048622008-09-05 18:12:23 +02004163}
4164#endif
4165
Balbir Singh49048622008-09-05 18:12:23 +02004166/*
Christoph Lameter7835b982006-12-10 02:20:22 -08004167 * This function gets called by the timer code, with HZ frequency.
4168 * We call it with interrupts disabled.
Christoph Lameter7835b982006-12-10 02:20:22 -08004169 */
4170void scheduler_tick(void)
4171{
Christoph Lameter7835b982006-12-10 02:20:22 -08004172 int cpu = smp_processor_id();
4173 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004174 struct task_struct *curr = rq->curr;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004175
4176 sched_clock_tick();
Christoph Lameter7835b982006-12-10 02:20:22 -08004177
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004178 raw_spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004179 update_rq_clock(rq);
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07004180 update_cpu_load_active(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01004181 curr->sched_class->task_tick(rq, curr, 0);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004182 raw_spin_unlock(&rq->lock);
Ingo Molnardd41f592007-07-09 18:51:59 +02004183
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02004184 perf_event_task_tick();
Peter Zijlstrae220d2d2009-05-23 18:28:55 +02004185
Christoph Lametere418e1c2006-12-10 02:20:23 -08004186#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02004187 rq->idle_at_tick = idle_cpu(cpu);
4188 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08004189#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190}
4191
Lai Jiangshan132380a2009-04-02 14:18:25 +08004192notrace unsigned long get_parent_ip(unsigned long addr)
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004193{
4194 if (in_lock_functions(addr)) {
4195 addr = CALLER_ADDR2;
4196 if (in_lock_functions(addr))
4197 addr = CALLER_ADDR3;
4198 }
4199 return addr;
4200}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201
Steven Rostedt7e49fcc2009-01-22 19:01:40 -05004202#if defined(CONFIG_PREEMPT) && (defined(CONFIG_DEBUG_PREEMPT) || \
4203 defined(CONFIG_PREEMPT_TRACER))
4204
Srinivasa Ds43627582008-02-23 15:24:04 -08004205void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004207#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208 /*
4209 * Underflow?
4210 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004211 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
4212 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004213#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214 preempt_count() += val;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004215#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216 /*
4217 * Spinlock count overflowing soon?
4218 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08004219 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
4220 PREEMPT_MASK - 10);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004221#endif
4222 if (preempt_count() == val)
4223 trace_preempt_off(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224}
4225EXPORT_SYMBOL(add_preempt_count);
4226
Srinivasa Ds43627582008-02-23 15:24:04 -08004227void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004229#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230 /*
4231 * Underflow?
4232 */
Ingo Molnar01e3eb82009-01-12 13:00:50 +01004233 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004234 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235 /*
4236 * Is the spinlock portion underflowing?
4237 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004238 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
4239 !(preempt_count() & PREEMPT_MASK)))
4240 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004241#endif
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004242
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004243 if (preempt_count() == val)
4244 trace_preempt_on(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245 preempt_count() -= val;
4246}
4247EXPORT_SYMBOL(sub_preempt_count);
4248
4249#endif
4250
4251/*
Ingo Molnardd41f592007-07-09 18:51:59 +02004252 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004254static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255{
Satyam Sharma838225b2007-10-24 18:23:50 +02004256 struct pt_regs *regs = get_irq_regs();
4257
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004258 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
4259 prev->comm, prev->pid, preempt_count());
Satyam Sharma838225b2007-10-24 18:23:50 +02004260
Ingo Molnardd41f592007-07-09 18:51:59 +02004261 debug_show_held_locks(prev);
Arjan van de Vene21f5b12008-05-23 09:05:58 -07004262 print_modules();
Ingo Molnardd41f592007-07-09 18:51:59 +02004263 if (irqs_disabled())
4264 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02004265
4266 if (regs)
4267 show_regs(regs);
4268 else
4269 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02004270}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271
Ingo Molnardd41f592007-07-09 18:51:59 +02004272/*
4273 * Various schedule()-time debugging checks and statistics:
4274 */
4275static inline void schedule_debug(struct task_struct *prev)
4276{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004278 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279 * schedule() atomically, we ignore that path for now.
4280 * Otherwise, whine if we are scheduling when we should not be.
4281 */
Roel Kluin3f33a7c2008-05-13 23:44:11 +02004282 if (unlikely(in_atomic_preempt_off() && !prev->exit_state))
Ingo Molnardd41f592007-07-09 18:51:59 +02004283 __schedule_bug(prev);
4284
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
4286
Ingo Molnar2d723762007-10-15 17:00:12 +02004287 schedstat_inc(this_rq(), sched_count);
Ingo Molnardd41f592007-07-09 18:51:59 +02004288}
4289
Peter Zijlstra6cecd082009-11-30 13:00:37 +01004290static void put_prev_task(struct rq *rq, struct task_struct *prev)
Mike Galbraithdf1c99d2009-03-10 19:08:11 +01004291{
Mike Galbraith61eadef2011-04-29 08:36:50 +02004292 if (prev->on_rq || rq->skip_clock_update < 0)
Mike Galbraitha64692a2010-03-11 17:16:20 +01004293 update_rq_clock(rq);
Peter Zijlstra6cecd082009-11-30 13:00:37 +01004294 prev->sched_class->put_prev_task(rq, prev);
Mike Galbraithdf1c99d2009-03-10 19:08:11 +01004295}
4296
Ingo Molnardd41f592007-07-09 18:51:59 +02004297/*
4298 * Pick up the highest-prio task:
4299 */
4300static inline struct task_struct *
Wang Chenb67802e2009-03-02 13:55:26 +08004301pick_next_task(struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02004302{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02004303 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02004304 struct task_struct *p;
4305
4306 /*
4307 * Optimization: we know that if all tasks are in
4308 * the fair class we can call that function directly:
4309 */
Paul Turner953bfcd2011-07-21 09:43:27 -07004310 if (likely(rq->nr_running == rq->cfs.h_nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004311 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004312 if (likely(p))
4313 return p;
4314 }
4315
Peter Zijlstra34f971f2010-09-22 13:53:15 +02004316 for_each_class(class) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004317 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004318 if (p)
4319 return p;
Ingo Molnardd41f592007-07-09 18:51:59 +02004320 }
Peter Zijlstra34f971f2010-09-22 13:53:15 +02004321
4322 BUG(); /* the idle class will always have a runnable task */
Ingo Molnardd41f592007-07-09 18:51:59 +02004323}
4324
4325/*
4326 * schedule() is the main scheduler function.
4327 */
Peter Zijlstraff743342009-03-13 12:21:26 +01004328asmlinkage void __sched schedule(void)
Ingo Molnardd41f592007-07-09 18:51:59 +02004329{
4330 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08004331 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02004332 struct rq *rq;
Peter Zijlstra31656512008-07-18 18:01:23 +02004333 int cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02004334
Peter Zijlstraff743342009-03-13 12:21:26 +01004335need_resched:
4336 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02004337 cpu = smp_processor_id();
4338 rq = cpu_rq(cpu);
Paul E. McKenney25502a62010-04-01 17:37:01 -07004339 rcu_note_context_switch(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004340 prev = rq->curr;
Ingo Molnardd41f592007-07-09 18:51:59 +02004341
Ingo Molnardd41f592007-07-09 18:51:59 +02004342 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343
Peter Zijlstra31656512008-07-18 18:01:23 +02004344 if (sched_feat(HRTICK))
Mike Galbraithf333fdc2008-05-12 21:20:55 +02004345 hrtick_clear(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004346
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004347 raw_spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348
Oleg Nesterov246d86b2010-05-19 14:57:11 +02004349 switch_count = &prev->nivcsw;
Ingo Molnardd41f592007-07-09 18:51:59 +02004350 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
Tejun Heo21aa9af2010-06-08 21:40:37 +02004351 if (unlikely(signal_pending_state(prev->state, prev))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02004352 prev->state = TASK_RUNNING;
Tejun Heo21aa9af2010-06-08 21:40:37 +02004353 } else {
Peter Zijlstra2acca552011-04-05 17:23:50 +02004354 deactivate_task(rq, prev, DEQUEUE_SLEEP);
4355 prev->on_rq = 0;
4356
Tejun Heo21aa9af2010-06-08 21:40:37 +02004357 /*
Peter Zijlstra2acca552011-04-05 17:23:50 +02004358 * If a worker went to sleep, notify and ask workqueue
4359 * whether it wants to wake up a task to maintain
4360 * concurrency.
Tejun Heo21aa9af2010-06-08 21:40:37 +02004361 */
4362 if (prev->flags & PF_WQ_WORKER) {
4363 struct task_struct *to_wakeup;
4364
4365 to_wakeup = wq_worker_sleeping(prev, cpu);
4366 if (to_wakeup)
4367 try_to_wake_up_local(to_wakeup);
4368 }
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02004369
Linus Torvalds6631e632011-04-13 08:08:20 -07004370 /*
Peter Zijlstra2acca552011-04-05 17:23:50 +02004371 * If we are going to sleep and we have plugged IO
4372 * queued, make sure to submit it to avoid deadlocks.
Linus Torvalds6631e632011-04-13 08:08:20 -07004373 */
4374 if (blk_needs_flush_plug(prev)) {
4375 raw_spin_unlock(&rq->lock);
Jens Axboea237c1c2011-04-16 13:27:55 +02004376 blk_schedule_flush_plug(prev);
Linus Torvalds6631e632011-04-13 08:08:20 -07004377 raw_spin_lock(&rq->lock);
4378 }
Tejun Heo21aa9af2010-06-08 21:40:37 +02004379 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004380 switch_count = &prev->nvcsw;
4381 }
4382
Gregory Haskins3f029d32009-07-29 11:08:47 -04004383 pre_schedule(rq, prev);
Steven Rostedtf65eda42008-01-25 21:08:07 +01004384
Ingo Molnardd41f592007-07-09 18:51:59 +02004385 if (unlikely(!rq->nr_running))
4386 idle_balance(cpu, rq);
4387
Mike Galbraithdf1c99d2009-03-10 19:08:11 +01004388 put_prev_task(rq, prev);
Wang Chenb67802e2009-03-02 13:55:26 +08004389 next = pick_next_task(rq);
Mike Galbraithf26f9af2010-12-08 11:05:42 +01004390 clear_tsk_need_resched(prev);
4391 rq->skip_clock_update = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393 if (likely(prev != next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394 rq->nr_switches++;
4395 rq->curr = next;
4396 ++*switch_count;
4397
Ingo Molnardd41f592007-07-09 18:51:59 +02004398 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004399 /*
Oleg Nesterov246d86b2010-05-19 14:57:11 +02004400 * The context switch have flipped the stack from under us
4401 * and restored the local variables which were saved when
4402 * this task called schedule() in the past. prev == current
4403 * is still correct, but it can be moved to another cpu/rq.
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004404 */
4405 cpu = smp_processor_id();
4406 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407 } else
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004408 raw_spin_unlock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409
Gregory Haskins3f029d32009-07-29 11:08:47 -04004410 post_schedule(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412 preempt_enable_no_resched();
Peter Zijlstraff743342009-03-13 12:21:26 +01004413 if (need_resched())
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414 goto need_resched;
4415}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416EXPORT_SYMBOL(schedule);
4417
Frederic Weisbeckerc08f7822009-12-02 20:49:17 +01004418#ifdef CONFIG_MUTEX_SPIN_ON_OWNER
Peter Zijlstrac6eb3dd2011-04-05 17:23:41 +02004419
4420static inline bool owner_running(struct mutex *lock, struct task_struct *owner)
4421{
Peter Zijlstrac6eb3dd2011-04-05 17:23:41 +02004422 if (lock->owner != owner)
Thomas Gleixner307bf982011-06-10 15:08:55 +02004423 return false;
Peter Zijlstrac6eb3dd2011-04-05 17:23:41 +02004424
4425 /*
4426 * Ensure we emit the owner->on_cpu, dereference _after_ checking
4427 * lock->owner still matches owner, if that fails, owner might
4428 * point to free()d memory, if it still matches, the rcu_read_lock()
4429 * ensures the memory stays valid.
4430 */
4431 barrier();
4432
Thomas Gleixner307bf982011-06-10 15:08:55 +02004433 return owner->on_cpu;
Peter Zijlstrac6eb3dd2011-04-05 17:23:41 +02004434}
4435
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01004436/*
4437 * Look out! "owner" is an entirely speculative pointer
4438 * access and not reliable.
4439 */
Peter Zijlstrac6eb3dd2011-04-05 17:23:41 +02004440int mutex_spin_on_owner(struct mutex *lock, struct task_struct *owner)
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01004441{
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01004442 if (!sched_feat(OWNER_SPIN))
4443 return 0;
4444
Thomas Gleixner307bf982011-06-10 15:08:55 +02004445 rcu_read_lock();
Peter Zijlstrac6eb3dd2011-04-05 17:23:41 +02004446 while (owner_running(lock, owner)) {
4447 if (need_resched())
Thomas Gleixner307bf982011-06-10 15:08:55 +02004448 break;
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01004449
Gerald Schaefer335d7af2010-11-22 15:47:36 +01004450 arch_mutex_cpu_relax();
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01004451 }
Thomas Gleixner307bf982011-06-10 15:08:55 +02004452 rcu_read_unlock();
Benjamin Herrenschmidt4b402212010-04-16 23:20:00 +02004453
Peter Zijlstrac6eb3dd2011-04-05 17:23:41 +02004454 /*
Thomas Gleixner307bf982011-06-10 15:08:55 +02004455 * We break out the loop above on need_resched() and when the
4456 * owner changed, which is a sign for heavy contention. Return
4457 * success only when lock->owner is NULL.
Peter Zijlstrac6eb3dd2011-04-05 17:23:41 +02004458 */
Thomas Gleixner307bf982011-06-10 15:08:55 +02004459 return lock->owner == NULL;
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01004460}
4461#endif
4462
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463#ifdef CONFIG_PREEMPT
4464/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004465 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004466 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467 * occur there and call schedule directly.
4468 */
Steven Rostedtd1f74e22010-06-02 21:52:29 -04004469asmlinkage void __sched notrace preempt_schedule(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470{
4471 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004472
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473 /*
4474 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004475 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07004477 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478 return;
4479
Andi Kleen3a5c3592007-10-15 17:00:14 +02004480 do {
Steven Rostedtd1f74e22010-06-02 21:52:29 -04004481 add_preempt_count_notrace(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004482 schedule();
Steven Rostedtd1f74e22010-06-02 21:52:29 -04004483 sub_preempt_count_notrace(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004484
4485 /*
4486 * Check again in case we missed a preemption opportunity
4487 * between schedule and now.
4488 */
4489 barrier();
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08004490 } while (need_resched());
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492EXPORT_SYMBOL(preempt_schedule);
4493
4494/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004495 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496 * off of irq context.
4497 * Note, that this is called and return with irqs disabled. This will
4498 * protect us against recursive calling from irq.
4499 */
4500asmlinkage void __sched preempt_schedule_irq(void)
4501{
4502 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004503
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004504 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505 BUG_ON(ti->preempt_count || !irqs_disabled());
4506
Andi Kleen3a5c3592007-10-15 17:00:14 +02004507 do {
4508 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004509 local_irq_enable();
4510 schedule();
4511 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004512 sub_preempt_count(PREEMPT_ACTIVE);
4513
4514 /*
4515 * Check again in case we missed a preemption opportunity
4516 * between schedule and now.
4517 */
4518 barrier();
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08004519 } while (need_resched());
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520}
4521
4522#endif /* CONFIG_PREEMPT */
4523
Peter Zijlstra63859d42009-09-15 19:14:42 +02004524int default_wake_function(wait_queue_t *curr, unsigned mode, int wake_flags,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004525 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526{
Peter Zijlstra63859d42009-09-15 19:14:42 +02004527 return try_to_wake_up(curr->private, mode, wake_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004529EXPORT_SYMBOL(default_wake_function);
4530
4531/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004532 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4533 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534 * number) then we wake all the non-exclusive tasks and one exclusive task.
4535 *
4536 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004537 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4539 */
Johannes Weiner78ddb082009-04-14 16:53:05 +02004540static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
Peter Zijlstra63859d42009-09-15 19:14:42 +02004541 int nr_exclusive, int wake_flags, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004543 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004545 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004546 unsigned flags = curr->flags;
4547
Peter Zijlstra63859d42009-09-15 19:14:42 +02004548 if (curr->func(curr, mode, wake_flags, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004549 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550 break;
4551 }
4552}
4553
4554/**
4555 * __wake_up - wake up threads blocked on a waitqueue.
4556 * @q: the waitqueue
4557 * @mode: which threads
4558 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004559 * @key: is directly passed to the wakeup function
David Howells50fa6102009-04-28 15:01:38 +01004560 *
4561 * It may be assumed that this function implies a write memory barrier before
4562 * changing the task state if and only if any tasks are woken up.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004564void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004565 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566{
4567 unsigned long flags;
4568
4569 spin_lock_irqsave(&q->lock, flags);
4570 __wake_up_common(q, mode, nr_exclusive, 0, key);
4571 spin_unlock_irqrestore(&q->lock, flags);
4572}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573EXPORT_SYMBOL(__wake_up);
4574
4575/*
4576 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4577 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004578void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579{
4580 __wake_up_common(q, mode, 1, 0, NULL);
4581}
Michal Nazarewicz22c43c82010-05-05 12:53:11 +02004582EXPORT_SYMBOL_GPL(__wake_up_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583
Davide Libenzi4ede8162009-03-31 15:24:20 -07004584void __wake_up_locked_key(wait_queue_head_t *q, unsigned int mode, void *key)
4585{
4586 __wake_up_common(q, mode, 1, 0, key);
4587}
Trond Myklebustbf294b42011-02-21 11:05:41 -08004588EXPORT_SYMBOL_GPL(__wake_up_locked_key);
Davide Libenzi4ede8162009-03-31 15:24:20 -07004589
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590/**
Davide Libenzi4ede8162009-03-31 15:24:20 -07004591 * __wake_up_sync_key - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592 * @q: the waitqueue
4593 * @mode: which threads
4594 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Davide Libenzi4ede8162009-03-31 15:24:20 -07004595 * @key: opaque value to be passed to wakeup targets
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596 *
4597 * The sync wakeup differs that the waker knows that it will schedule
4598 * away soon, so while the target thread will be woken up, it will not
4599 * be migrated to another CPU - ie. the two threads are 'synchronized'
4600 * with each other. This can prevent needless bouncing between CPUs.
4601 *
4602 * On UP it can prevent extra preemption.
David Howells50fa6102009-04-28 15:01:38 +01004603 *
4604 * It may be assumed that this function implies a write memory barrier before
4605 * changing the task state if and only if any tasks are woken up.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606 */
Davide Libenzi4ede8162009-03-31 15:24:20 -07004607void __wake_up_sync_key(wait_queue_head_t *q, unsigned int mode,
4608 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609{
4610 unsigned long flags;
Peter Zijlstra7d478722009-09-14 19:55:44 +02004611 int wake_flags = WF_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612
4613 if (unlikely(!q))
4614 return;
4615
4616 if (unlikely(!nr_exclusive))
Peter Zijlstra7d478722009-09-14 19:55:44 +02004617 wake_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618
4619 spin_lock_irqsave(&q->lock, flags);
Peter Zijlstra7d478722009-09-14 19:55:44 +02004620 __wake_up_common(q, mode, nr_exclusive, wake_flags, key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621 spin_unlock_irqrestore(&q->lock, flags);
4622}
Davide Libenzi4ede8162009-03-31 15:24:20 -07004623EXPORT_SYMBOL_GPL(__wake_up_sync_key);
4624
4625/*
4626 * __wake_up_sync - see __wake_up_sync_key()
4627 */
4628void __wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
4629{
4630 __wake_up_sync_key(q, mode, nr_exclusive, NULL);
4631}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4633
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004634/**
4635 * complete: - signals a single thread waiting on this completion
4636 * @x: holds the state of this particular completion
4637 *
4638 * This will wake up a single thread waiting on this completion. Threads will be
4639 * awakened in the same order in which they were queued.
4640 *
4641 * See also complete_all(), wait_for_completion() and related routines.
David Howells50fa6102009-04-28 15:01:38 +01004642 *
4643 * It may be assumed that this function implies a write memory barrier before
4644 * changing the task state if and only if any tasks are woken up.
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004645 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004646void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647{
4648 unsigned long flags;
4649
4650 spin_lock_irqsave(&x->wait.lock, flags);
4651 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004652 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653 spin_unlock_irqrestore(&x->wait.lock, flags);
4654}
4655EXPORT_SYMBOL(complete);
4656
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004657/**
4658 * complete_all: - signals all threads waiting on this completion
4659 * @x: holds the state of this particular completion
4660 *
4661 * This will wake up all threads waiting on this particular completion event.
David Howells50fa6102009-04-28 15:01:38 +01004662 *
4663 * It may be assumed that this function implies a write memory barrier before
4664 * changing the task state if and only if any tasks are woken up.
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004665 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004666void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667{
4668 unsigned long flags;
4669
4670 spin_lock_irqsave(&x->wait.lock, flags);
4671 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004672 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673 spin_unlock_irqrestore(&x->wait.lock, flags);
4674}
4675EXPORT_SYMBOL(complete_all);
4676
Andi Kleen8cbbe862007-10-15 17:00:14 +02004677static inline long __sched
4678do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680 if (!x->done) {
4681 DECLARE_WAITQUEUE(wait, current);
4682
Changli Gaoa93d2f12010-05-07 14:33:26 +08004683 __add_wait_queue_tail_exclusive(&x->wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684 do {
Oleg Nesterov94d3d822008-08-20 16:54:41 -07004685 if (signal_pending_state(state, current)) {
Oleg Nesterovea71a542008-06-20 18:32:20 +04004686 timeout = -ERESTARTSYS;
4687 break;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004688 }
4689 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004691 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692 spin_lock_irq(&x->wait.lock);
Oleg Nesterovea71a542008-06-20 18:32:20 +04004693 } while (!x->done && timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694 __remove_wait_queue(&x->wait, &wait);
Oleg Nesterovea71a542008-06-20 18:32:20 +04004695 if (!x->done)
4696 return timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697 }
4698 x->done--;
Oleg Nesterovea71a542008-06-20 18:32:20 +04004699 return timeout ?: 1;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004700}
4701
4702static long __sched
4703wait_for_common(struct completion *x, long timeout, int state)
4704{
4705 might_sleep();
4706
4707 spin_lock_irq(&x->wait.lock);
4708 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004710 return timeout;
4711}
4712
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004713/**
4714 * wait_for_completion: - waits for completion of a task
4715 * @x: holds the state of this particular completion
4716 *
4717 * This waits to be signaled for completion of a specific task. It is NOT
4718 * interruptible and there is no timeout.
4719 *
4720 * See also similar routines (i.e. wait_for_completion_timeout()) with timeout
4721 * and interrupt capability. Also see complete().
4722 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004723void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004724{
4725 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726}
4727EXPORT_SYMBOL(wait_for_completion);
4728
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004729/**
4730 * wait_for_completion_timeout: - waits for completion of a task (w/timeout)
4731 * @x: holds the state of this particular completion
4732 * @timeout: timeout value in jiffies
4733 *
4734 * This waits for either a completion of a specific task to be signaled or for a
4735 * specified timeout to expire. The timeout is in jiffies. It is not
4736 * interruptible.
4737 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004738unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4740{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004741 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742}
4743EXPORT_SYMBOL(wait_for_completion_timeout);
4744
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004745/**
4746 * wait_for_completion_interruptible: - waits for completion of a task (w/intr)
4747 * @x: holds the state of this particular completion
4748 *
4749 * This waits for completion of a specific task to be signaled. It is
4750 * interruptible.
4751 */
Andi Kleen8cbbe862007-10-15 17:00:14 +02004752int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753{
Andi Kleen51e97992007-10-18 21:32:55 +02004754 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4755 if (t == -ERESTARTSYS)
4756 return t;
4757 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758}
4759EXPORT_SYMBOL(wait_for_completion_interruptible);
4760
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004761/**
4762 * wait_for_completion_interruptible_timeout: - waits for completion (w/(to,intr))
4763 * @x: holds the state of this particular completion
4764 * @timeout: timeout value in jiffies
4765 *
4766 * This waits for either a completion of a specific task to be signaled or for a
4767 * specified timeout to expire. It is interruptible. The timeout is in jiffies.
4768 */
NeilBrown6bf41232011-01-05 12:50:16 +11004769long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770wait_for_completion_interruptible_timeout(struct completion *x,
4771 unsigned long timeout)
4772{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004773 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774}
4775EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4776
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004777/**
4778 * wait_for_completion_killable: - waits for completion of a task (killable)
4779 * @x: holds the state of this particular completion
4780 *
4781 * This waits to be signaled for completion of a specific task. It can be
4782 * interrupted by a kill signal.
4783 */
Matthew Wilcox009e5772007-12-06 12:29:54 -05004784int __sched wait_for_completion_killable(struct completion *x)
4785{
4786 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
4787 if (t == -ERESTARTSYS)
4788 return t;
4789 return 0;
4790}
4791EXPORT_SYMBOL(wait_for_completion_killable);
4792
Dave Chinnerbe4de352008-08-15 00:40:44 -07004793/**
Sage Weil0aa12fb2010-05-29 09:12:30 -07004794 * wait_for_completion_killable_timeout: - waits for completion of a task (w/(to,killable))
4795 * @x: holds the state of this particular completion
4796 * @timeout: timeout value in jiffies
4797 *
4798 * This waits for either a completion of a specific task to be
4799 * signaled or for a specified timeout to expire. It can be
4800 * interrupted by a kill signal. The timeout is in jiffies.
4801 */
NeilBrown6bf41232011-01-05 12:50:16 +11004802long __sched
Sage Weil0aa12fb2010-05-29 09:12:30 -07004803wait_for_completion_killable_timeout(struct completion *x,
4804 unsigned long timeout)
4805{
4806 return wait_for_common(x, timeout, TASK_KILLABLE);
4807}
4808EXPORT_SYMBOL(wait_for_completion_killable_timeout);
4809
4810/**
Dave Chinnerbe4de352008-08-15 00:40:44 -07004811 * try_wait_for_completion - try to decrement a completion without blocking
4812 * @x: completion structure
4813 *
4814 * Returns: 0 if a decrement cannot be done without blocking
4815 * 1 if a decrement succeeded.
4816 *
4817 * If a completion is being used as a counting completion,
4818 * attempt to decrement the counter without blocking. This
4819 * enables us to avoid waiting if the resource the completion
4820 * is protecting is not available.
4821 */
4822bool try_wait_for_completion(struct completion *x)
4823{
Rafael J. Wysocki7539a3b2009-12-13 00:07:30 +01004824 unsigned long flags;
Dave Chinnerbe4de352008-08-15 00:40:44 -07004825 int ret = 1;
4826
Rafael J. Wysocki7539a3b2009-12-13 00:07:30 +01004827 spin_lock_irqsave(&x->wait.lock, flags);
Dave Chinnerbe4de352008-08-15 00:40:44 -07004828 if (!x->done)
4829 ret = 0;
4830 else
4831 x->done--;
Rafael J. Wysocki7539a3b2009-12-13 00:07:30 +01004832 spin_unlock_irqrestore(&x->wait.lock, flags);
Dave Chinnerbe4de352008-08-15 00:40:44 -07004833 return ret;
4834}
4835EXPORT_SYMBOL(try_wait_for_completion);
4836
4837/**
4838 * completion_done - Test to see if a completion has any waiters
4839 * @x: completion structure
4840 *
4841 * Returns: 0 if there are waiters (wait_for_completion() in progress)
4842 * 1 if there are no waiters.
4843 *
4844 */
4845bool completion_done(struct completion *x)
4846{
Rafael J. Wysocki7539a3b2009-12-13 00:07:30 +01004847 unsigned long flags;
Dave Chinnerbe4de352008-08-15 00:40:44 -07004848 int ret = 1;
4849
Rafael J. Wysocki7539a3b2009-12-13 00:07:30 +01004850 spin_lock_irqsave(&x->wait.lock, flags);
Dave Chinnerbe4de352008-08-15 00:40:44 -07004851 if (!x->done)
4852 ret = 0;
Rafael J. Wysocki7539a3b2009-12-13 00:07:30 +01004853 spin_unlock_irqrestore(&x->wait.lock, flags);
Dave Chinnerbe4de352008-08-15 00:40:44 -07004854 return ret;
4855}
4856EXPORT_SYMBOL(completion_done);
4857
Andi Kleen8cbbe862007-10-15 17:00:14 +02004858static long __sched
4859sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004860{
4861 unsigned long flags;
4862 wait_queue_t wait;
4863
4864 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865
Andi Kleen8cbbe862007-10-15 17:00:14 +02004866 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867
Andi Kleen8cbbe862007-10-15 17:00:14 +02004868 spin_lock_irqsave(&q->lock, flags);
4869 __add_wait_queue(q, &wait);
4870 spin_unlock(&q->lock);
4871 timeout = schedule_timeout(timeout);
4872 spin_lock_irq(&q->lock);
4873 __remove_wait_queue(q, &wait);
4874 spin_unlock_irqrestore(&q->lock, flags);
4875
4876 return timeout;
4877}
4878
4879void __sched interruptible_sleep_on(wait_queue_head_t *q)
4880{
4881 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883EXPORT_SYMBOL(interruptible_sleep_on);
4884
Ingo Molnar0fec1712007-07-09 18:52:01 +02004885long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004886interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004888 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4891
Ingo Molnar0fec1712007-07-09 18:52:01 +02004892void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004894 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896EXPORT_SYMBOL(sleep_on);
4897
Ingo Molnar0fec1712007-07-09 18:52:01 +02004898long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004900 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004902EXPORT_SYMBOL(sleep_on_timeout);
4903
Ingo Molnarb29739f2006-06-27 02:54:51 -07004904#ifdef CONFIG_RT_MUTEXES
4905
4906/*
4907 * rt_mutex_setprio - set the current priority of a task
4908 * @p: task
4909 * @prio: prio value (kernel-internal form)
4910 *
4911 * This function changes the 'effective' priority of a task. It does
4912 * not touch ->normal_prio like __setscheduler().
4913 *
4914 * Used by the rt_mutex code to implement priority inheritance logic.
4915 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004916void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07004917{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004918 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004919 struct rq *rq;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01004920 const struct sched_class *prev_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004921
4922 BUG_ON(prio < 0 || prio > MAX_PRIO);
4923
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004924 rq = __task_rq_lock(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004925
Steven Rostedta8027072010-09-20 15:13:34 -04004926 trace_sched_pi_setprio(p, prio);
Andrew Mortond5f9f942007-05-08 20:27:06 -07004927 oldprio = p->prio;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01004928 prev_class = p->sched_class;
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02004929 on_rq = p->on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004930 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004931 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004932 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004933 if (running)
4934 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02004935
4936 if (rt_prio(prio))
4937 p->sched_class = &rt_sched_class;
4938 else
4939 p->sched_class = &fair_sched_class;
4940
Ingo Molnarb29739f2006-06-27 02:54:51 -07004941 p->prio = prio;
4942
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004943 if (running)
4944 p->sched_class->set_curr_task(rq);
Peter Zijlstrada7a7352011-01-17 17:03:27 +01004945 if (on_rq)
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01004946 enqueue_task(rq, p, oldprio < prio ? ENQUEUE_HEAD : 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01004947
Peter Zijlstrada7a7352011-01-17 17:03:27 +01004948 check_class_changed(rq, p, prev_class, oldprio);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004949 __task_rq_unlock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004950}
4951
4952#endif
4953
Ingo Molnar36c8b582006-07-03 00:25:41 -07004954void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955{
Ingo Molnardd41f592007-07-09 18:51:59 +02004956 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004958 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959
4960 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
4961 return;
4962 /*
4963 * We have to be careful, if called from sys_setpriority(),
4964 * the task might be in the middle of scheduling on another CPU.
4965 */
4966 rq = task_rq_lock(p, &flags);
4967 /*
4968 * The RT priorities are set via sched_setscheduler(), but we still
4969 * allow the 'normal' nice value to be set - but as expected
4970 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02004971 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004972 */
Ingo Molnare05606d2007-07-09 18:51:59 +02004973 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004974 p->static_prio = NICE_TO_PRIO(nice);
4975 goto out_unlock;
4976 }
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02004977 on_rq = p->on_rq;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02004978 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004979 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07004982 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004983 old_prio = p->prio;
4984 p->prio = effective_prio(p);
4985 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986
Ingo Molnardd41f592007-07-09 18:51:59 +02004987 if (on_rq) {
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01004988 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004989 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07004990 * If the task increased its priority or is running and
4991 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07004993 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994 resched_task(rq->curr);
4995 }
4996out_unlock:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004997 task_rq_unlock(rq, p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004999EXPORT_SYMBOL(set_user_nice);
5000
Matt Mackalle43379f2005-05-01 08:59:00 -07005001/*
5002 * can_nice - check if a task can reduce its nice value
5003 * @p: task
5004 * @nice: nice value
5005 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005006int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07005007{
Matt Mackall024f4742005-08-18 11:24:19 -07005008 /* convert nice value [19,-20] to rlimit style value [1,40] */
5009 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005010
Jiri Slaby78d7d402010-03-05 13:42:54 -08005011 return (nice_rlim <= task_rlimit(p, RLIMIT_NICE) ||
Matt Mackalle43379f2005-05-01 08:59:00 -07005012 capable(CAP_SYS_NICE));
5013}
5014
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015#ifdef __ARCH_WANT_SYS_NICE
5016
5017/*
5018 * sys_nice - change the priority of the current process.
5019 * @increment: priority increment
5020 *
5021 * sys_setpriority is a more generic, but much slower function that
5022 * does similar things.
5023 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005024SYSCALL_DEFINE1(nice, int, increment)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005026 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005027
5028 /*
5029 * Setpriority might change our priority at the same moment.
5030 * We don't have to worry. Conceptually one call occurs first
5031 * and we have a single winner.
5032 */
Matt Mackalle43379f2005-05-01 08:59:00 -07005033 if (increment < -40)
5034 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035 if (increment > 40)
5036 increment = 40;
5037
Américo Wang2b8f8362009-02-16 18:54:21 +08005038 nice = TASK_NICE(current) + increment;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039 if (nice < -20)
5040 nice = -20;
5041 if (nice > 19)
5042 nice = 19;
5043
Matt Mackalle43379f2005-05-01 08:59:00 -07005044 if (increment < 0 && !can_nice(current, nice))
5045 return -EPERM;
5046
Linus Torvalds1da177e2005-04-16 15:20:36 -07005047 retval = security_task_setnice(current, nice);
5048 if (retval)
5049 return retval;
5050
5051 set_user_nice(current, nice);
5052 return 0;
5053}
5054
5055#endif
5056
5057/**
5058 * task_prio - return the priority value of a given task.
5059 * @p: the task in question.
5060 *
5061 * This is the priority value as seen by users in /proc.
5062 * RT tasks are offset by -200. Normal tasks are centered
5063 * around 0, value goes from -16 to +15.
5064 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005065int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066{
5067 return p->prio - MAX_RT_PRIO;
5068}
5069
5070/**
5071 * task_nice - return the nice value of a given task.
5072 * @p: the task in question.
5073 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005074int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075{
5076 return TASK_NICE(p);
5077}
Pavel Roskin150d8be2008-03-05 16:56:37 -05005078EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079
5080/**
5081 * idle_cpu - is a given cpu idle currently?
5082 * @cpu: the processor in question.
5083 */
5084int idle_cpu(int cpu)
5085{
5086 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
5087}
5088
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089/**
5090 * idle_task - return the idle task for a given cpu.
5091 * @cpu: the processor in question.
5092 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005093struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005094{
5095 return cpu_rq(cpu)->idle;
5096}
5097
5098/**
5099 * find_process_by_pid - find a process with a matching PID value.
5100 * @pid: the pid in question.
5101 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02005102static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07005104 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105}
5106
5107/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02005108static void
5109__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111 p->policy = policy;
5112 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005113 p->normal_prio = normal_prio(p);
5114 /* we are holding p->pi_lock already */
5115 p->prio = rt_mutex_getprio(p);
Peter Zijlstraffd44db2009-11-10 20:12:01 +01005116 if (rt_prio(p->prio))
5117 p->sched_class = &rt_sched_class;
5118 else
5119 p->sched_class = &fair_sched_class;
Peter Williams2dd73a42006-06-27 02:54:34 -07005120 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121}
5122
David Howellsc69e8d92008-11-14 10:39:19 +11005123/*
5124 * check the target process has a UID that matches the current process's
5125 */
5126static bool check_same_owner(struct task_struct *p)
5127{
5128 const struct cred *cred = current_cred(), *pcred;
5129 bool match;
5130
5131 rcu_read_lock();
5132 pcred = __task_cred(p);
Serge E. Hallynb0e77592011-03-23 16:43:24 -07005133 if (cred->user->user_ns == pcred->user->user_ns)
5134 match = (cred->euid == pcred->euid ||
5135 cred->euid == pcred->uid);
5136 else
5137 match = false;
David Howellsc69e8d92008-11-14 10:39:19 +11005138 rcu_read_unlock();
5139 return match;
5140}
5141
Rusty Russell961ccdd2008-06-23 13:55:38 +10005142static int __sched_setscheduler(struct task_struct *p, int policy,
KOSAKI Motohirofe7de492010-10-20 16:01:12 -07005143 const struct sched_param *param, bool user)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02005145 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005146 unsigned long flags;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01005147 const struct sched_class *prev_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005148 struct rq *rq;
Lennart Poetteringca94c442009-06-15 17:17:47 +02005149 int reset_on_fork;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150
Steven Rostedt66e53932006-06-27 02:54:44 -07005151 /* may grab non-irq protected spin_locks */
5152 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153recheck:
5154 /* double check policy once rq lock held */
Lennart Poetteringca94c442009-06-15 17:17:47 +02005155 if (policy < 0) {
5156 reset_on_fork = p->sched_reset_on_fork;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157 policy = oldpolicy = p->policy;
Lennart Poetteringca94c442009-06-15 17:17:47 +02005158 } else {
5159 reset_on_fork = !!(policy & SCHED_RESET_ON_FORK);
5160 policy &= ~SCHED_RESET_ON_FORK;
5161
5162 if (policy != SCHED_FIFO && policy != SCHED_RR &&
5163 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
5164 policy != SCHED_IDLE)
5165 return -EINVAL;
5166 }
5167
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168 /*
5169 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02005170 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
5171 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172 */
5173 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005174 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04005175 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02005177 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178 return -EINVAL;
5179
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005180 /*
5181 * Allow unprivileged RT tasks to decrease priority:
5182 */
Rusty Russell961ccdd2008-06-23 13:55:38 +10005183 if (user && !capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02005184 if (rt_policy(policy)) {
Oleg Nesterova44702e2010-06-11 01:09:44 +02005185 unsigned long rlim_rtprio =
5186 task_rlimit(p, RLIMIT_RTPRIO);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005187
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005188 /* can't set/change the rt policy */
5189 if (policy != p->policy && !rlim_rtprio)
5190 return -EPERM;
5191
5192 /* can't increase priority */
5193 if (param->sched_priority > p->rt_priority &&
5194 param->sched_priority > rlim_rtprio)
5195 return -EPERM;
5196 }
Darren Hartc02aa732011-02-17 15:37:07 -08005197
Ingo Molnardd41f592007-07-09 18:51:59 +02005198 /*
Darren Hartc02aa732011-02-17 15:37:07 -08005199 * Treat SCHED_IDLE as nice 20. Only allow a switch to
5200 * SCHED_NORMAL if the RLIMIT_NICE would normally permit it.
Ingo Molnardd41f592007-07-09 18:51:59 +02005201 */
Darren Hartc02aa732011-02-17 15:37:07 -08005202 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE) {
5203 if (!can_nice(p, TASK_NICE(p)))
5204 return -EPERM;
5205 }
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005206
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005207 /* can't change other user's priorities */
David Howellsc69e8d92008-11-14 10:39:19 +11005208 if (!check_same_owner(p))
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005209 return -EPERM;
Lennart Poetteringca94c442009-06-15 17:17:47 +02005210
5211 /* Normal users shall not reset the sched_reset_on_fork flag */
5212 if (p->sched_reset_on_fork && !reset_on_fork)
5213 return -EPERM;
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07005216 if (user) {
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09005217 retval = security_task_setscheduler(p);
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07005218 if (retval)
5219 return retval;
5220 }
5221
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07005223 * make sure no PI-waiters arrive (or leave) while we are
5224 * changing the priority of the task:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02005225 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005226 * To be able to change p->policy safely, the appropriate
Linus Torvalds1da177e2005-04-16 15:20:36 -07005227 * runqueue lock must be held.
5228 */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02005229 rq = task_rq_lock(p, &flags);
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02005230
Peter Zijlstra34f971f2010-09-22 13:53:15 +02005231 /*
5232 * Changing the policy of the stop threads its a very bad idea
5233 */
5234 if (p == rq->stop) {
Peter Zijlstra0122ec52011-04-05 17:23:51 +02005235 task_rq_unlock(rq, p, &flags);
Peter Zijlstra34f971f2010-09-22 13:53:15 +02005236 return -EINVAL;
5237 }
5238
Dario Faggiolia51e9192011-03-24 14:00:18 +01005239 /*
5240 * If not changing anything there's no need to proceed further:
5241 */
5242 if (unlikely(policy == p->policy && (!rt_policy(policy) ||
5243 param->sched_priority == p->rt_priority))) {
5244
5245 __task_rq_unlock(rq);
5246 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
5247 return 0;
5248 }
5249
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02005250#ifdef CONFIG_RT_GROUP_SCHED
5251 if (user) {
5252 /*
5253 * Do not allow realtime tasks into groups that have no runtime
5254 * assigned.
5255 */
5256 if (rt_bandwidth_enabled() && rt_policy(policy) &&
Mike Galbraithf4493772011-01-13 04:54:50 +01005257 task_group(p)->rt_bandwidth.rt_runtime == 0 &&
5258 !task_group_is_autogroup(task_group(p))) {
Peter Zijlstra0122ec52011-04-05 17:23:51 +02005259 task_rq_unlock(rq, p, &flags);
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02005260 return -EPERM;
5261 }
5262 }
5263#endif
5264
Linus Torvalds1da177e2005-04-16 15:20:36 -07005265 /* recheck policy now with rq lock held */
5266 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
5267 policy = oldpolicy = -1;
Peter Zijlstra0122ec52011-04-05 17:23:51 +02005268 task_rq_unlock(rq, p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005269 goto recheck;
5270 }
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02005271 on_rq = p->on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01005272 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005273 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005274 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005275 if (running)
5276 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02005277
Lennart Poetteringca94c442009-06-15 17:17:47 +02005278 p->sched_reset_on_fork = reset_on_fork;
5279
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280 oldprio = p->prio;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01005281 prev_class = p->sched_class;
Ingo Molnardd41f592007-07-09 18:51:59 +02005282 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02005283
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005284 if (running)
5285 p->sched_class->set_curr_task(rq);
Peter Zijlstrada7a7352011-01-17 17:03:27 +01005286 if (on_rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02005287 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01005288
Peter Zijlstrada7a7352011-01-17 17:03:27 +01005289 check_class_changed(rq, p, prev_class, oldprio);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02005290 task_rq_unlock(rq, p, &flags);
Ingo Molnarb29739f2006-06-27 02:54:51 -07005291
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07005292 rt_mutex_adjust_pi(p);
5293
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294 return 0;
5295}
Rusty Russell961ccdd2008-06-23 13:55:38 +10005296
5297/**
5298 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
5299 * @p: the task in question.
5300 * @policy: new policy.
5301 * @param: structure containing the new RT priority.
5302 *
5303 * NOTE that the task may be already dead.
5304 */
5305int sched_setscheduler(struct task_struct *p, int policy,
KOSAKI Motohirofe7de492010-10-20 16:01:12 -07005306 const struct sched_param *param)
Rusty Russell961ccdd2008-06-23 13:55:38 +10005307{
5308 return __sched_setscheduler(p, policy, param, true);
5309}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310EXPORT_SYMBOL_GPL(sched_setscheduler);
5311
Rusty Russell961ccdd2008-06-23 13:55:38 +10005312/**
5313 * sched_setscheduler_nocheck - change the scheduling policy and/or RT priority of a thread from kernelspace.
5314 * @p: the task in question.
5315 * @policy: new policy.
5316 * @param: structure containing the new RT priority.
5317 *
5318 * Just like sched_setscheduler, only don't bother checking if the
5319 * current context has permission. For example, this is needed in
5320 * stop_machine(): we create temporary high priority worker threads,
5321 * but our caller might not have that capability.
5322 */
5323int sched_setscheduler_nocheck(struct task_struct *p, int policy,
KOSAKI Motohirofe7de492010-10-20 16:01:12 -07005324 const struct sched_param *param)
Rusty Russell961ccdd2008-06-23 13:55:38 +10005325{
5326 return __sched_setscheduler(p, policy, param, false);
5327}
5328
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005329static int
5330do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005331{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005332 struct sched_param lparam;
5333 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005334 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335
5336 if (!param || pid < 0)
5337 return -EINVAL;
5338 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
5339 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005340
5341 rcu_read_lock();
5342 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005343 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005344 if (p != NULL)
5345 retval = sched_setscheduler(p, policy, &lparam);
5346 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07005347
Linus Torvalds1da177e2005-04-16 15:20:36 -07005348 return retval;
5349}
5350
5351/**
5352 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
5353 * @pid: the pid in question.
5354 * @policy: new policy.
5355 * @param: structure containing the new RT priority.
5356 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005357SYSCALL_DEFINE3(sched_setscheduler, pid_t, pid, int, policy,
5358 struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359{
Jason Baronc21761f2006-01-18 17:43:03 -08005360 /* negative values for policy are not valid */
5361 if (policy < 0)
5362 return -EINVAL;
5363
Linus Torvalds1da177e2005-04-16 15:20:36 -07005364 return do_sched_setscheduler(pid, policy, param);
5365}
5366
5367/**
5368 * sys_sched_setparam - set/change the RT priority of a thread
5369 * @pid: the pid in question.
5370 * @param: structure containing the new RT priority.
5371 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005372SYSCALL_DEFINE2(sched_setparam, pid_t, pid, struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005373{
5374 return do_sched_setscheduler(pid, -1, param);
5375}
5376
5377/**
5378 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
5379 * @pid: the pid in question.
5380 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005381SYSCALL_DEFINE1(sched_getscheduler, pid_t, pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005382{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005383 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005384 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005385
5386 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005387 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388
5389 retval = -ESRCH;
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00005390 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005391 p = find_process_by_pid(pid);
5392 if (p) {
5393 retval = security_task_getscheduler(p);
5394 if (!retval)
Lennart Poetteringca94c442009-06-15 17:17:47 +02005395 retval = p->policy
5396 | (p->sched_reset_on_fork ? SCHED_RESET_ON_FORK : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005397 }
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00005398 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005399 return retval;
5400}
5401
5402/**
Lennart Poetteringca94c442009-06-15 17:17:47 +02005403 * sys_sched_getparam - get the RT priority of a thread
Linus Torvalds1da177e2005-04-16 15:20:36 -07005404 * @pid: the pid in question.
5405 * @param: structure containing the RT priority.
5406 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005407SYSCALL_DEFINE2(sched_getparam, pid_t, pid, struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005408{
5409 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005410 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005411 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412
5413 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005414 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00005416 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417 p = find_process_by_pid(pid);
5418 retval = -ESRCH;
5419 if (!p)
5420 goto out_unlock;
5421
5422 retval = security_task_getscheduler(p);
5423 if (retval)
5424 goto out_unlock;
5425
5426 lp.sched_priority = p->rt_priority;
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00005427 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005428
5429 /*
5430 * This one might sleep, we cannot do it with a spinlock held ...
5431 */
5432 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
5433
Linus Torvalds1da177e2005-04-16 15:20:36 -07005434 return retval;
5435
5436out_unlock:
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00005437 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005438 return retval;
5439}
5440
Rusty Russell96f874e2008-11-25 02:35:14 +10305441long sched_setaffinity(pid_t pid, const struct cpumask *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005442{
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305443 cpumask_var_t cpus_allowed, new_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005444 struct task_struct *p;
5445 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005446
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005447 get_online_cpus();
Thomas Gleixner23f5d142009-12-09 10:15:01 +00005448 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449
5450 p = find_process_by_pid(pid);
5451 if (!p) {
Thomas Gleixner23f5d142009-12-09 10:15:01 +00005452 rcu_read_unlock();
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005453 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005454 return -ESRCH;
5455 }
5456
Thomas Gleixner23f5d142009-12-09 10:15:01 +00005457 /* Prevent p going away */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005458 get_task_struct(p);
Thomas Gleixner23f5d142009-12-09 10:15:01 +00005459 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305461 if (!alloc_cpumask_var(&cpus_allowed, GFP_KERNEL)) {
5462 retval = -ENOMEM;
5463 goto out_put_task;
5464 }
5465 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL)) {
5466 retval = -ENOMEM;
5467 goto out_free_cpus_allowed;
5468 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469 retval = -EPERM;
Serge E. Hallynb0e77592011-03-23 16:43:24 -07005470 if (!check_same_owner(p) && !task_ns_capable(p, CAP_SYS_NICE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005471 goto out_unlock;
5472
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09005473 retval = security_task_setscheduler(p);
David Quigleye7834f82006-06-23 02:03:59 -07005474 if (retval)
5475 goto out_unlock;
5476
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305477 cpuset_cpus_allowed(p, cpus_allowed);
5478 cpumask_and(new_mask, in_mask, cpus_allowed);
Peter Zijlstra49246272010-10-17 21:46:10 +02005479again:
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305480 retval = set_cpus_allowed_ptr(p, new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005481
Paul Menage8707d8b2007-10-18 23:40:22 -07005482 if (!retval) {
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305483 cpuset_cpus_allowed(p, cpus_allowed);
5484 if (!cpumask_subset(new_mask, cpus_allowed)) {
Paul Menage8707d8b2007-10-18 23:40:22 -07005485 /*
5486 * We must have raced with a concurrent cpuset
5487 * update. Just reset the cpus_allowed to the
5488 * cpuset's cpus_allowed
5489 */
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305490 cpumask_copy(new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005491 goto again;
5492 }
5493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005494out_unlock:
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305495 free_cpumask_var(new_mask);
5496out_free_cpus_allowed:
5497 free_cpumask_var(cpus_allowed);
5498out_put_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005499 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005500 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005501 return retval;
5502}
5503
5504static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
Rusty Russell96f874e2008-11-25 02:35:14 +10305505 struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005506{
Rusty Russell96f874e2008-11-25 02:35:14 +10305507 if (len < cpumask_size())
5508 cpumask_clear(new_mask);
5509 else if (len > cpumask_size())
5510 len = cpumask_size();
5511
Linus Torvalds1da177e2005-04-16 15:20:36 -07005512 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
5513}
5514
5515/**
5516 * sys_sched_setaffinity - set the cpu affinity of a process
5517 * @pid: pid of the process
5518 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5519 * @user_mask_ptr: user-space pointer to the new cpu mask
5520 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005521SYSCALL_DEFINE3(sched_setaffinity, pid_t, pid, unsigned int, len,
5522 unsigned long __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005523{
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305524 cpumask_var_t new_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525 int retval;
5526
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305527 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
5528 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305530 retval = get_user_cpu_mask(user_mask_ptr, len, new_mask);
5531 if (retval == 0)
5532 retval = sched_setaffinity(pid, new_mask);
5533 free_cpumask_var(new_mask);
5534 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005535}
5536
Rusty Russell96f874e2008-11-25 02:35:14 +10305537long sched_getaffinity(pid_t pid, struct cpumask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005538{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005539 struct task_struct *p;
Thomas Gleixner31605682009-12-08 20:24:16 +00005540 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005541 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005542
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005543 get_online_cpus();
Thomas Gleixner23f5d142009-12-09 10:15:01 +00005544 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005545
5546 retval = -ESRCH;
5547 p = find_process_by_pid(pid);
5548 if (!p)
5549 goto out_unlock;
5550
David Quigleye7834f82006-06-23 02:03:59 -07005551 retval = security_task_getscheduler(p);
5552 if (retval)
5553 goto out_unlock;
5554
Peter Zijlstra013fdb82011-04-05 17:23:45 +02005555 raw_spin_lock_irqsave(&p->pi_lock, flags);
Rusty Russell96f874e2008-11-25 02:35:14 +10305556 cpumask_and(mask, &p->cpus_allowed, cpu_online_mask);
Peter Zijlstra013fdb82011-04-05 17:23:45 +02005557 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005558
5559out_unlock:
Thomas Gleixner23f5d142009-12-09 10:15:01 +00005560 rcu_read_unlock();
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005561 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005562
Ulrich Drepper9531b622007-08-09 11:16:46 +02005563 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005564}
5565
5566/**
5567 * sys_sched_getaffinity - get the cpu affinity of a process
5568 * @pid: pid of the process
5569 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5570 * @user_mask_ptr: user-space pointer to hold the current cpu mask
5571 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005572SYSCALL_DEFINE3(sched_getaffinity, pid_t, pid, unsigned int, len,
5573 unsigned long __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005574{
5575 int ret;
Rusty Russellf17c8602008-11-25 02:35:11 +10305576 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005577
Anton Blanchard84fba5e2010-04-06 17:02:19 +10005578 if ((len * BITS_PER_BYTE) < nr_cpu_ids)
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09005579 return -EINVAL;
5580 if (len & (sizeof(unsigned long)-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005581 return -EINVAL;
5582
Rusty Russellf17c8602008-11-25 02:35:11 +10305583 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
5584 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005585
Rusty Russellf17c8602008-11-25 02:35:11 +10305586 ret = sched_getaffinity(pid, mask);
5587 if (ret == 0) {
KOSAKI Motohiro8bc037f2010-03-17 09:36:58 +09005588 size_t retlen = min_t(size_t, len, cpumask_size());
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09005589
5590 if (copy_to_user(user_mask_ptr, mask, retlen))
Rusty Russellf17c8602008-11-25 02:35:11 +10305591 ret = -EFAULT;
5592 else
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09005593 ret = retlen;
Rusty Russellf17c8602008-11-25 02:35:11 +10305594 }
5595 free_cpumask_var(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005596
Rusty Russellf17c8602008-11-25 02:35:11 +10305597 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005598}
5599
5600/**
5601 * sys_sched_yield - yield the current processor to other threads.
5602 *
Ingo Molnardd41f592007-07-09 18:51:59 +02005603 * This function yields the current CPU to other tasks. If there are no
5604 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005605 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005606SYSCALL_DEFINE0(sched_yield)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005607{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005608 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005609
Ingo Molnar2d723762007-10-15 17:00:12 +02005610 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02005611 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005612
5613 /*
5614 * Since we are going to call schedule() anyway, there's
5615 * no need to preempt or enable interrupts:
5616 */
5617 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07005618 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Thomas Gleixner9828ea92009-12-03 20:55:53 +01005619 do_raw_spin_unlock(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005620 preempt_enable_no_resched();
5621
5622 schedule();
5623
5624 return 0;
5625}
5626
Peter Zijlstrad86ee482009-07-10 14:57:57 +02005627static inline int should_resched(void)
5628{
5629 return need_resched() && !(preempt_count() & PREEMPT_ACTIVE);
5630}
5631
Andrew Mortone7b38402006-06-30 01:56:00 -07005632static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005633{
Frederic Weisbeckere7aaaa62009-07-16 15:44:29 +02005634 add_preempt_count(PREEMPT_ACTIVE);
5635 schedule();
5636 sub_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005637}
5638
Herbert Xu02b67cc32008-01-25 21:08:28 +01005639int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005640{
Peter Zijlstrad86ee482009-07-10 14:57:57 +02005641 if (should_resched()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005642 __cond_resched();
5643 return 1;
5644 }
5645 return 0;
5646}
Herbert Xu02b67cc32008-01-25 21:08:28 +01005647EXPORT_SYMBOL(_cond_resched);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005648
5649/*
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02005650 * __cond_resched_lock() - if a reschedule is pending, drop the given lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005651 * call schedule, and on return reacquire the lock.
5652 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005653 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07005654 * operations here to prevent schedule() from being called twice (once via
5655 * spin_unlock(), once by hand).
5656 */
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02005657int __cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005658{
Peter Zijlstrad86ee482009-07-10 14:57:57 +02005659 int resched = should_resched();
Jan Kara6df3cec2005-06-13 15:52:32 -07005660 int ret = 0;
5661
Peter Zijlstraf607c662009-07-20 19:16:29 +02005662 lockdep_assert_held(lock);
5663
Nick Piggin95c354f2008-01-30 13:31:20 +01005664 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005665 spin_unlock(lock);
Peter Zijlstrad86ee482009-07-10 14:57:57 +02005666 if (resched)
Nick Piggin95c354f2008-01-30 13:31:20 +01005667 __cond_resched();
5668 else
5669 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07005670 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005671 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005672 }
Jan Kara6df3cec2005-06-13 15:52:32 -07005673 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674}
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02005675EXPORT_SYMBOL(__cond_resched_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02005677int __sched __cond_resched_softirq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005678{
5679 BUG_ON(!in_softirq());
5680
Peter Zijlstrad86ee482009-07-10 14:57:57 +02005681 if (should_resched()) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07005682 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683 __cond_resched();
5684 local_bh_disable();
5685 return 1;
5686 }
5687 return 0;
5688}
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02005689EXPORT_SYMBOL(__cond_resched_softirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005690
Linus Torvalds1da177e2005-04-16 15:20:36 -07005691/**
5692 * yield - yield the current processor to other threads.
5693 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005694 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005695 * thread runnable and calls sys_sched_yield().
5696 */
5697void __sched yield(void)
5698{
5699 set_current_state(TASK_RUNNING);
5700 sys_sched_yield();
5701}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005702EXPORT_SYMBOL(yield);
5703
Mike Galbraithd95f4122011-02-01 09:50:51 -05005704/**
5705 * yield_to - yield the current processor to another thread in
5706 * your thread group, or accelerate that thread toward the
5707 * processor it's on.
Randy Dunlap16addf92011-03-18 09:34:53 -07005708 * @p: target task
5709 * @preempt: whether task preemption is allowed or not
Mike Galbraithd95f4122011-02-01 09:50:51 -05005710 *
5711 * It's the caller's job to ensure that the target task struct
5712 * can't go away on us before we can do any checks.
5713 *
5714 * Returns true if we indeed boosted the target task.
5715 */
5716bool __sched yield_to(struct task_struct *p, bool preempt)
5717{
5718 struct task_struct *curr = current;
5719 struct rq *rq, *p_rq;
5720 unsigned long flags;
5721 bool yielded = 0;
5722
5723 local_irq_save(flags);
5724 rq = this_rq();
5725
5726again:
5727 p_rq = task_rq(p);
5728 double_rq_lock(rq, p_rq);
5729 while (task_rq(p) != p_rq) {
5730 double_rq_unlock(rq, p_rq);
5731 goto again;
5732 }
5733
5734 if (!curr->sched_class->yield_to_task)
5735 goto out;
5736
5737 if (curr->sched_class != p->sched_class)
5738 goto out;
5739
5740 if (task_running(p_rq, p) || p->state)
5741 goto out;
5742
5743 yielded = curr->sched_class->yield_to_task(rq, p, preempt);
Venkatesh Pallipadi6d1cafd2011-03-01 16:28:21 -08005744 if (yielded) {
Mike Galbraithd95f4122011-02-01 09:50:51 -05005745 schedstat_inc(rq, yld_count);
Venkatesh Pallipadi6d1cafd2011-03-01 16:28:21 -08005746 /*
5747 * Make p's CPU reschedule; pick_next_entity takes care of
5748 * fairness.
5749 */
5750 if (preempt && rq != p_rq)
5751 resched_task(p_rq->curr);
5752 }
Mike Galbraithd95f4122011-02-01 09:50:51 -05005753
5754out:
5755 double_rq_unlock(rq, p_rq);
5756 local_irq_restore(flags);
5757
5758 if (yielded)
5759 schedule();
5760
5761 return yielded;
5762}
5763EXPORT_SYMBOL_GPL(yield_to);
5764
Linus Torvalds1da177e2005-04-16 15:20:36 -07005765/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005766 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07005767 * that process accounting knows that this is a task in IO wait state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005768 */
5769void __sched io_schedule(void)
5770{
Hitoshi Mitake54d35f22009-06-29 14:44:57 +09005771 struct rq *rq = raw_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005772
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005773 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005774 atomic_inc(&rq->nr_iowait);
Jens Axboe73c10102011-03-08 13:19:51 +01005775 blk_flush_plug(current);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07005776 current->in_iowait = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005777 schedule();
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07005778 current->in_iowait = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005779 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005780 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005781}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005782EXPORT_SYMBOL(io_schedule);
5783
5784long __sched io_schedule_timeout(long timeout)
5785{
Hitoshi Mitake54d35f22009-06-29 14:44:57 +09005786 struct rq *rq = raw_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005787 long ret;
5788
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005789 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005790 atomic_inc(&rq->nr_iowait);
Jens Axboe73c10102011-03-08 13:19:51 +01005791 blk_flush_plug(current);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07005792 current->in_iowait = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005793 ret = schedule_timeout(timeout);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07005794 current->in_iowait = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005796 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005797 return ret;
5798}
5799
5800/**
5801 * sys_sched_get_priority_max - return maximum RT priority.
5802 * @policy: scheduling class.
5803 *
5804 * this syscall returns the maximum rt_priority that can be used
5805 * by a given scheduling class.
5806 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005807SYSCALL_DEFINE1(sched_get_priority_max, int, policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005808{
5809 int ret = -EINVAL;
5810
5811 switch (policy) {
5812 case SCHED_FIFO:
5813 case SCHED_RR:
5814 ret = MAX_USER_RT_PRIO-1;
5815 break;
5816 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005817 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005818 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819 ret = 0;
5820 break;
5821 }
5822 return ret;
5823}
5824
5825/**
5826 * sys_sched_get_priority_min - return minimum RT priority.
5827 * @policy: scheduling class.
5828 *
5829 * this syscall returns the minimum rt_priority that can be used
5830 * by a given scheduling class.
5831 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005832SYSCALL_DEFINE1(sched_get_priority_min, int, policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005833{
5834 int ret = -EINVAL;
5835
5836 switch (policy) {
5837 case SCHED_FIFO:
5838 case SCHED_RR:
5839 ret = 1;
5840 break;
5841 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005842 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005843 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005844 ret = 0;
5845 }
5846 return ret;
5847}
5848
5849/**
5850 * sys_sched_rr_get_interval - return the default timeslice of a process.
5851 * @pid: pid of the process.
5852 * @interval: userspace pointer to the timeslice value.
5853 *
5854 * this syscall writes the default timeslice value of a given process
5855 * into the user-space timespec buffer. A value of '0' means infinity.
5856 */
Heiko Carstens17da2bd2009-01-14 14:14:10 +01005857SYSCALL_DEFINE2(sched_rr_get_interval, pid_t, pid,
Heiko Carstens754fe8d2009-01-14 14:14:09 +01005858 struct timespec __user *, interval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005859{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005860 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005861 unsigned int time_slice;
Thomas Gleixnerdba091b2009-12-09 09:32:03 +01005862 unsigned long flags;
5863 struct rq *rq;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005864 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005865 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005866
5867 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005868 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005869
5870 retval = -ESRCH;
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00005871 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005872 p = find_process_by_pid(pid);
5873 if (!p)
5874 goto out_unlock;
5875
5876 retval = security_task_getscheduler(p);
5877 if (retval)
5878 goto out_unlock;
5879
Thomas Gleixnerdba091b2009-12-09 09:32:03 +01005880 rq = task_rq_lock(p, &flags);
5881 time_slice = p->sched_class->get_rr_interval(rq, p);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02005882 task_rq_unlock(rq, p, &flags);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005883
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00005884 rcu_read_unlock();
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005885 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005886 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005887 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005888
Linus Torvalds1da177e2005-04-16 15:20:36 -07005889out_unlock:
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00005890 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005891 return retval;
5892}
5893
Steven Rostedt7c731e02008-05-12 21:20:41 +02005894static const char stat_nam[] = TASK_STATE_TO_CHAR_STR;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005895
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005896void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005897{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005898 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005899 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005900
Linus Torvalds1da177e2005-04-16 15:20:36 -07005901 state = p->state ? __ffs(p->state) + 1 : 0;
Erik Gilling28d06862010-11-19 18:08:51 -08005902 printk(KERN_INFO "%-15.15s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005903 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005904#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005905 if (state == TASK_RUNNING)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005906 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005907 else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005908 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005909#else
5910 if (state == TASK_RUNNING)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005911 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005912 else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005913 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005914#endif
5915#ifdef CONFIG_DEBUG_STACK_USAGE
Eric Sandeen7c9f8862008-04-22 16:38:23 -05005916 free = stack_not_used(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005917#endif
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005918 printk(KERN_CONT "%5lu %5d %6d 0x%08lx\n", free,
David Rientjesaa47b7e2009-05-04 01:38:05 -07005919 task_pid_nr(p), task_pid_nr(p->real_parent),
5920 (unsigned long)task_thread_info(p)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005921
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01005922 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005923}
5924
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005925void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005926{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005927 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005928
Ingo Molnar4bd77322007-07-11 21:21:47 +02005929#if BITS_PER_LONG == 32
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005930 printk(KERN_INFO
5931 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005932#else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005933 printk(KERN_INFO
5934 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005935#endif
5936 read_lock(&tasklist_lock);
5937 do_each_thread(g, p) {
5938 /*
5939 * reset the NMI-timeout, listing all files on a slow
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005940 * console might take a lot of time:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005941 */
5942 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07005943 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005944 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005945 } while_each_thread(g, p);
5946
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07005947 touch_all_softlockup_watchdogs();
5948
Ingo Molnardd41f592007-07-09 18:51:59 +02005949#ifdef CONFIG_SCHED_DEBUG
5950 sysrq_sched_debug_show();
5951#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005952 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005953 /*
5954 * Only show locks if all tasks are dumped:
5955 */
Shmulik Ladkani93335a22009-11-25 15:23:41 +02005956 if (!state_filter)
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005957 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005958}
5959
Ingo Molnar1df21052007-07-09 18:51:58 +02005960void __cpuinit init_idle_bootup_task(struct task_struct *idle)
5961{
Ingo Molnardd41f592007-07-09 18:51:59 +02005962 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02005963}
5964
Ingo Molnarf340c0d2005-06-28 16:40:42 +02005965/**
5966 * init_idle - set up an idle thread for a given CPU
5967 * @idle: task in question
5968 * @cpu: cpu the idle task belongs to
5969 *
5970 * NOTE: this function does not set the idle thread's NEED_RESCHED
5971 * flag, to make booting more robust.
5972 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07005973void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005974{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005975 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976 unsigned long flags;
5977
Thomas Gleixner05fa7852009-11-17 14:28:38 +01005978 raw_spin_lock_irqsave(&rq->lock, flags);
Ingo Molnar5cbd54e2008-11-12 20:05:50 +01005979
Ingo Molnardd41f592007-07-09 18:51:59 +02005980 __sched_fork(idle);
Peter Zijlstra06b83b52009-12-16 18:04:35 +01005981 idle->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02005982 idle->se.exec_start = sched_clock();
5983
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09005984 do_set_cpus_allowed(idle, cpumask_of(cpu));
Peter Zijlstra6506cf6c2010-09-16 17:50:31 +02005985 /*
5986 * We're having a chicken and egg problem, even though we are
5987 * holding rq->lock, the cpu isn't yet set to this cpu so the
5988 * lockdep check in task_group() will fail.
5989 *
5990 * Similar case to sched_fork(). / Alternatively we could
5991 * use task_rq_lock() here and obtain the other rq->lock.
5992 *
5993 * Silence PROVE_RCU
5994 */
5995 rcu_read_lock();
Ingo Molnardd41f592007-07-09 18:51:59 +02005996 __set_task_cpu(idle, cpu);
Peter Zijlstra6506cf6c2010-09-16 17:50:31 +02005997 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998
Linus Torvalds1da177e2005-04-16 15:20:36 -07005999 rq->curr = rq->idle = idle;
Peter Zijlstra3ca7a442011-04-05 17:23:40 +02006000#if defined(CONFIG_SMP)
6001 idle->on_cpu = 1;
Nick Piggin4866cde2005-06-25 14:57:23 -07006002#endif
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006003 raw_spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006004
6005 /* Set the preempt count _outside_ the spinlocks! */
Al Viroa1261f52005-11-13 16:06:55 -08006006 task_thread_info(idle)->preempt_count = 0;
Jonathan Corbet625f2a32011-04-22 11:19:10 -06006007
Ingo Molnardd41f592007-07-09 18:51:59 +02006008 /*
6009 * The idle tasks have their own, simple scheduling class:
6010 */
6011 idle->sched_class = &idle_sched_class;
Steven Rostedt868baf02011-02-10 21:26:13 -05006012 ftrace_graph_init_idle_task(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006013}
6014
6015/*
6016 * In a system that switches off the HZ timer nohz_cpu_mask
6017 * indicates which cpus entered this state. This is used
6018 * in the rcu update to wait only for active cpus. For system
6019 * which do not switch off the HZ timer nohz_cpu_mask should
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10306020 * always be CPU_BITS_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006021 */
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10306022cpumask_var_t nohz_cpu_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006023
Ingo Molnar19978ca2007-11-09 22:39:38 +01006024/*
6025 * Increase the granularity value when there are more CPUs,
6026 * because with more CPUs the 'effective latency' as visible
6027 * to users decreases. But the relationship is not linear,
6028 * so pick a second-best guess by going with the log2 of the
6029 * number of CPUs.
6030 *
6031 * This idea comes from the SD scheduler of Con Kolivas:
6032 */
Christian Ehrhardtacb4a842009-11-30 12:16:48 +01006033static int get_update_sysctl_factor(void)
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +01006034{
Mike Galbraith4ca3ef72009-12-10 09:25:53 +01006035 unsigned int cpus = min_t(int, num_online_cpus(), 8);
Christian Ehrhardt1983a922009-11-30 12:16:47 +01006036 unsigned int factor;
6037
6038 switch (sysctl_sched_tunable_scaling) {
6039 case SCHED_TUNABLESCALING_NONE:
6040 factor = 1;
6041 break;
6042 case SCHED_TUNABLESCALING_LINEAR:
6043 factor = cpus;
6044 break;
6045 case SCHED_TUNABLESCALING_LOG:
6046 default:
6047 factor = 1 + ilog2(cpus);
6048 break;
6049 }
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +01006050
Christian Ehrhardtacb4a842009-11-30 12:16:48 +01006051 return factor;
6052}
6053
6054static void update_sysctl(void)
6055{
6056 unsigned int factor = get_update_sysctl_factor();
6057
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +01006058#define SET_SYSCTL(name) \
6059 (sysctl_##name = (factor) * normalized_sysctl_##name)
6060 SET_SYSCTL(sched_min_granularity);
6061 SET_SYSCTL(sched_latency);
6062 SET_SYSCTL(sched_wakeup_granularity);
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +01006063#undef SET_SYSCTL
6064}
6065
Ingo Molnar19978ca2007-11-09 22:39:38 +01006066static inline void sched_init_granularity(void)
6067{
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +01006068 update_sysctl();
Ingo Molnar19978ca2007-11-09 22:39:38 +01006069}
6070
Linus Torvalds1da177e2005-04-16 15:20:36 -07006071#ifdef CONFIG_SMP
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09006072void do_set_cpus_allowed(struct task_struct *p, const struct cpumask *new_mask)
6073{
6074 if (p->sched_class && p->sched_class->set_cpus_allowed)
6075 p->sched_class->set_cpus_allowed(p, new_mask);
6076 else {
6077 cpumask_copy(&p->cpus_allowed, new_mask);
6078 p->rt.nr_cpus_allowed = cpumask_weight(new_mask);
6079 }
6080}
6081
Linus Torvalds1da177e2005-04-16 15:20:36 -07006082/*
6083 * This is how migration works:
6084 *
Tejun Heo969c7922010-05-06 18:49:21 +02006085 * 1) we invoke migration_cpu_stop() on the target CPU using
6086 * stop_one_cpu().
6087 * 2) stopper starts to run (implicitly forcing the migrated thread
6088 * off the CPU)
6089 * 3) it checks whether the migrated task is still in the wrong runqueue.
6090 * 4) if it's in the wrong runqueue then the migration thread removes
Linus Torvalds1da177e2005-04-16 15:20:36 -07006091 * it and puts it into the right queue.
Tejun Heo969c7922010-05-06 18:49:21 +02006092 * 5) stopper completes and stop_one_cpu() returns and the migration
6093 * is done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006094 */
6095
6096/*
6097 * Change a given task's CPU affinity. Migrate the thread to a
6098 * proper CPU and schedule it away if the CPU it's executing on
6099 * is removed from the allowed bitmask.
6100 *
6101 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006102 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07006103 * call is not atomic; no spinlocks may be held.
6104 */
Rusty Russell96f874e2008-11-25 02:35:14 +10306105int set_cpus_allowed_ptr(struct task_struct *p, const struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006106{
6107 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006108 struct rq *rq;
Tejun Heo969c7922010-05-06 18:49:21 +02006109 unsigned int dest_cpu;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006110 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006111
6112 rq = task_rq_lock(p, &flags);
Peter Zijlstrae2912002009-12-16 18:04:36 +01006113
Yong Zhangdb44fc02011-05-09 22:07:05 +08006114 if (cpumask_equal(&p->cpus_allowed, new_mask))
6115 goto out;
6116
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01006117 if (!cpumask_intersects(new_mask, cpu_active_mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006118 ret = -EINVAL;
6119 goto out;
6120 }
6121
Yong Zhangdb44fc02011-05-09 22:07:05 +08006122 if (unlikely((p->flags & PF_THREAD_BOUND) && p != current)) {
David Rientjes9985b0b2008-06-05 12:57:11 -07006123 ret = -EINVAL;
6124 goto out;
6125 }
6126
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09006127 do_set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01006128
Linus Torvalds1da177e2005-04-16 15:20:36 -07006129 /* Can the task run on the task's current CPU? If so, we're done */
Rusty Russell96f874e2008-11-25 02:35:14 +10306130 if (cpumask_test_cpu(task_cpu(p), new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006131 goto out;
6132
Tejun Heo969c7922010-05-06 18:49:21 +02006133 dest_cpu = cpumask_any_and(cpu_active_mask, new_mask);
Peter Zijlstrabd8e7dd2011-04-05 17:23:59 +02006134 if (p->on_rq) {
Tejun Heo969c7922010-05-06 18:49:21 +02006135 struct migration_arg arg = { p, dest_cpu };
Linus Torvalds1da177e2005-04-16 15:20:36 -07006136 /* Need help from migration thread: drop lock and wait. */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02006137 task_rq_unlock(rq, p, &flags);
Tejun Heo969c7922010-05-06 18:49:21 +02006138 stop_one_cpu(cpu_of(rq), migration_cpu_stop, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006139 tlb_migrate_finish(p->mm);
6140 return 0;
6141 }
6142out:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02006143 task_rq_unlock(rq, p, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006144
Linus Torvalds1da177e2005-04-16 15:20:36 -07006145 return ret;
6146}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006147EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006148
6149/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006150 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07006151 * this because either it can't run here any more (set_cpus_allowed()
6152 * away from this CPU, or CPU going down), or because we're
6153 * attempting to rebalance this task on exec (sched_exec).
6154 *
6155 * So we race with normal scheduler movements, but that's OK, as long
6156 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07006157 *
6158 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006159 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07006160static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006161{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006162 struct rq *rq_dest, *rq_src;
Peter Zijlstrae2912002009-12-16 18:04:36 +01006163 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006164
Max Krasnyanskye761b772008-07-15 04:43:49 -07006165 if (unlikely(!cpu_active(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07006166 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006167
6168 rq_src = cpu_rq(src_cpu);
6169 rq_dest = cpu_rq(dest_cpu);
6170
Peter Zijlstra0122ec52011-04-05 17:23:51 +02006171 raw_spin_lock(&p->pi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006172 double_rq_lock(rq_src, rq_dest);
6173 /* Already moved. */
6174 if (task_cpu(p) != src_cpu)
Linus Torvaldsb1e38732008-07-10 11:25:03 -07006175 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006176 /* Affinity changed (again). */
Rusty Russell96f874e2008-11-25 02:35:14 +10306177 if (!cpumask_test_cpu(dest_cpu, &p->cpus_allowed))
Linus Torvaldsb1e38732008-07-10 11:25:03 -07006178 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006179
Peter Zijlstrae2912002009-12-16 18:04:36 +01006180 /*
6181 * If we're not on a rq, the next wake-up will ensure we're
6182 * placed properly.
6183 */
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02006184 if (p->on_rq) {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006185 deactivate_task(rq_src, p, 0);
Peter Zijlstrae2912002009-12-16 18:04:36 +01006186 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02006187 activate_task(rq_dest, p, 0);
Peter Zijlstra15afe092008-09-20 23:38:02 +02006188 check_preempt_curr(rq_dest, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006189 }
Linus Torvaldsb1e38732008-07-10 11:25:03 -07006190done:
Kirill Korotaevefc30812006-06-27 02:54:32 -07006191 ret = 1;
Linus Torvaldsb1e38732008-07-10 11:25:03 -07006192fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006193 double_rq_unlock(rq_src, rq_dest);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02006194 raw_spin_unlock(&p->pi_lock);
Kirill Korotaevefc30812006-06-27 02:54:32 -07006195 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006196}
6197
6198/*
Tejun Heo969c7922010-05-06 18:49:21 +02006199 * migration_cpu_stop - this will be executed by a highprio stopper thread
6200 * and performs thread migration by bumping thread off CPU then
6201 * 'pushing' onto another runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006202 */
Tejun Heo969c7922010-05-06 18:49:21 +02006203static int migration_cpu_stop(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006204{
Tejun Heo969c7922010-05-06 18:49:21 +02006205 struct migration_arg *arg = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006206
Tejun Heo969c7922010-05-06 18:49:21 +02006207 /*
6208 * The original target cpu might have gone down and we might
6209 * be on another cpu but it doesn't matter.
6210 */
6211 local_irq_disable();
6212 __migrate_task(arg->task, raw_smp_processor_id(), arg->dest_cpu);
6213 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006214 return 0;
6215}
6216
6217#ifdef CONFIG_HOTPLUG_CPU
Linus Torvalds1da177e2005-04-16 15:20:36 -07006218
Ingo Molnar48f24c42006-07-03 00:25:40 -07006219/*
6220 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07006221 * offline.
6222 */
6223void idle_task_exit(void)
6224{
6225 struct mm_struct *mm = current->active_mm;
6226
6227 BUG_ON(cpu_online(smp_processor_id()));
6228
6229 if (mm != &init_mm)
6230 switch_mm(mm, &init_mm, current);
6231 mmdrop(mm);
6232}
6233
Peter Zijlstra48c5cca2010-11-13 19:32:29 +01006234/*
6235 * While a dead CPU has no uninterruptible tasks queued at this point,
6236 * it might still have a nonzero ->nr_uninterruptible counter, because
6237 * for performance reasons the counter is not stricly tracking tasks to
6238 * their home CPUs. So we just add the counter to another CPU's counter,
6239 * to keep the global sum constant after CPU-down:
6240 */
6241static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006242{
Peter Zijlstra48c5cca2010-11-13 19:32:29 +01006243 struct rq *rq_dest = cpu_rq(cpumask_any(cpu_active_mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006244
Peter Zijlstra48c5cca2010-11-13 19:32:29 +01006245 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
6246 rq_src->nr_uninterruptible = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006247}
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02006248
6249/*
6250 * remove the tasks which were accounted by rq from calc_load_tasks.
6251 */
6252static void calc_global_load_remove(struct rq *rq)
6253{
6254 atomic_long_sub(rq->calc_load_active, &calc_load_tasks);
Thomas Gleixnera468d382009-07-17 14:15:46 +02006255 rq->calc_load_active = 0;
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02006256}
Peter Zijlstra48c5cca2010-11-13 19:32:29 +01006257
6258/*
6259 * Migrate all tasks from the rq, sleeping tasks will be migrated by
6260 * try_to_wake_up()->select_task_rq().
6261 *
6262 * Called with rq->lock held even though we'er in stop_machine() and
6263 * there's no concurrency possible, we hold the required locks anyway
6264 * because of lock validation efforts.
6265 */
6266static void migrate_tasks(unsigned int dead_cpu)
6267{
6268 struct rq *rq = cpu_rq(dead_cpu);
6269 struct task_struct *next, *stop = rq->stop;
6270 int dest_cpu;
6271
6272 /*
6273 * Fudge the rq selection such that the below task selection loop
6274 * doesn't get stuck on the currently eligible stop task.
6275 *
6276 * We're currently inside stop_machine() and the rq is either stuck
6277 * in the stop_machine_cpu_stop() loop, or we're executing this code,
6278 * either way we should never end up calling schedule() until we're
6279 * done here.
6280 */
6281 rq->stop = NULL;
6282
6283 for ( ; ; ) {
6284 /*
6285 * There's this thread running, bail when that's the only
6286 * remaining thread.
6287 */
6288 if (rq->nr_running == 1)
6289 break;
6290
6291 next = pick_next_task(rq);
6292 BUG_ON(!next);
6293 next->sched_class->put_prev_task(rq, next);
6294
6295 /* Find suitable destination for @next, with force if needed. */
6296 dest_cpu = select_fallback_rq(dead_cpu, next);
6297 raw_spin_unlock(&rq->lock);
6298
6299 __migrate_task(next, dead_cpu, dest_cpu);
6300
6301 raw_spin_lock(&rq->lock);
6302 }
6303
6304 rq->stop = stop;
6305}
6306
Linus Torvalds1da177e2005-04-16 15:20:36 -07006307#endif /* CONFIG_HOTPLUG_CPU */
6308
Nick Piggine692ab52007-07-26 13:40:43 +02006309#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
6310
6311static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006312 {
6313 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006314 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006315 },
Eric W. Biederman56992302009-11-05 15:38:40 -08006316 {}
Nick Piggine692ab52007-07-26 13:40:43 +02006317};
6318
6319static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006320 {
6321 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006322 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006323 .child = sd_ctl_dir,
6324 },
Eric W. Biederman56992302009-11-05 15:38:40 -08006325 {}
Nick Piggine692ab52007-07-26 13:40:43 +02006326};
6327
6328static struct ctl_table *sd_alloc_ctl_entry(int n)
6329{
6330 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02006331 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02006332
Nick Piggine692ab52007-07-26 13:40:43 +02006333 return entry;
6334}
6335
Milton Miller6382bc92007-10-15 17:00:19 +02006336static void sd_free_ctl_entry(struct ctl_table **tablep)
6337{
Milton Millercd7900762007-10-17 16:55:11 +02006338 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02006339
Milton Millercd7900762007-10-17 16:55:11 +02006340 /*
6341 * In the intermediate directories, both the child directory and
6342 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006343 * will always be set. In the lowest directory the names are
Milton Millercd7900762007-10-17 16:55:11 +02006344 * static strings and all have proc handlers.
6345 */
6346 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02006347 if (entry->child)
6348 sd_free_ctl_entry(&entry->child);
Milton Millercd7900762007-10-17 16:55:11 +02006349 if (entry->proc_handler == NULL)
6350 kfree(entry->procname);
6351 }
Milton Miller6382bc92007-10-15 17:00:19 +02006352
6353 kfree(*tablep);
6354 *tablep = NULL;
6355}
6356
Nick Piggine692ab52007-07-26 13:40:43 +02006357static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02006358set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02006359 const char *procname, void *data, int maxlen,
6360 mode_t mode, proc_handler *proc_handler)
6361{
Nick Piggine692ab52007-07-26 13:40:43 +02006362 entry->procname = procname;
6363 entry->data = data;
6364 entry->maxlen = maxlen;
6365 entry->mode = mode;
6366 entry->proc_handler = proc_handler;
6367}
6368
6369static struct ctl_table *
6370sd_alloc_ctl_domain_table(struct sched_domain *sd)
6371{
Ingo Molnara5d8c342008-10-09 11:35:51 +02006372 struct ctl_table *table = sd_alloc_ctl_entry(13);
Nick Piggine692ab52007-07-26 13:40:43 +02006373
Milton Millerad1cdc12007-10-15 17:00:19 +02006374 if (table == NULL)
6375 return NULL;
6376
Alexey Dobriyane0361852007-08-09 11:16:46 +02006377 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006378 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006379 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006380 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006381 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006382 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006383 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006384 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006385 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006386 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006387 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006388 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006389 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006390 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006391 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02006392 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006393 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02006394 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006395 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02006396 &sd->cache_nice_tries,
6397 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006398 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02006399 sizeof(int), 0644, proc_dointvec_minmax);
Ingo Molnara5d8c342008-10-09 11:35:51 +02006400 set_table_entry(&table[11], "name", sd->name,
6401 CORENAME_MAX_SIZE, 0444, proc_dostring);
6402 /* &table[12] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02006403
6404 return table;
6405}
6406
Ingo Molnar9a4e7152007-11-28 15:52:56 +01006407static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02006408{
6409 struct ctl_table *entry, *table;
6410 struct sched_domain *sd;
6411 int domain_num = 0, i;
6412 char buf[32];
6413
6414 for_each_domain(cpu, sd)
6415 domain_num++;
6416 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02006417 if (table == NULL)
6418 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02006419
6420 i = 0;
6421 for_each_domain(cpu, sd) {
6422 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006423 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006424 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006425 entry->child = sd_alloc_ctl_domain_table(sd);
6426 entry++;
6427 i++;
6428 }
6429 return table;
6430}
6431
6432static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02006433static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006434{
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01006435 int i, cpu_num = num_possible_cpus();
Nick Piggine692ab52007-07-26 13:40:43 +02006436 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
6437 char buf[32];
6438
Milton Miller73785472007-10-24 18:23:48 +02006439 WARN_ON(sd_ctl_dir[0].child);
6440 sd_ctl_dir[0].child = entry;
6441
Milton Millerad1cdc12007-10-15 17:00:19 +02006442 if (entry == NULL)
6443 return;
6444
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01006445 for_each_possible_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02006446 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006447 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006448 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006449 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02006450 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02006451 }
Milton Miller73785472007-10-24 18:23:48 +02006452
6453 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02006454 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
6455}
Milton Miller6382bc92007-10-15 17:00:19 +02006456
Milton Miller73785472007-10-24 18:23:48 +02006457/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02006458static void unregister_sched_domain_sysctl(void)
6459{
Milton Miller73785472007-10-24 18:23:48 +02006460 if (sd_sysctl_header)
6461 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02006462 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02006463 if (sd_ctl_dir[0].child)
6464 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02006465}
Nick Piggine692ab52007-07-26 13:40:43 +02006466#else
Milton Miller6382bc92007-10-15 17:00:19 +02006467static void register_sched_domain_sysctl(void)
6468{
6469}
6470static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006471{
6472}
6473#endif
6474
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006475static void set_rq_online(struct rq *rq)
6476{
6477 if (!rq->online) {
6478 const struct sched_class *class;
6479
Rusty Russellc6c49272008-11-25 02:35:05 +10306480 cpumask_set_cpu(rq->cpu, rq->rd->online);
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006481 rq->online = 1;
6482
6483 for_each_class(class) {
6484 if (class->rq_online)
6485 class->rq_online(rq);
6486 }
6487 }
6488}
6489
6490static void set_rq_offline(struct rq *rq)
6491{
6492 if (rq->online) {
6493 const struct sched_class *class;
6494
6495 for_each_class(class) {
6496 if (class->rq_offline)
6497 class->rq_offline(rq);
6498 }
6499
Rusty Russellc6c49272008-11-25 02:35:05 +10306500 cpumask_clear_cpu(rq->cpu, rq->rd->online);
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006501 rq->online = 0;
6502 }
6503}
6504
Linus Torvalds1da177e2005-04-16 15:20:36 -07006505/*
6506 * migration_call - callback that gets triggered when a CPU is added.
6507 * Here we can start up the necessary migration thread for the new CPU.
6508 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006509static int __cpuinit
6510migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006511{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006512 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006513 unsigned long flags;
Tejun Heo969c7922010-05-06 18:49:21 +02006514 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006515
Peter Zijlstra48c5cca2010-11-13 19:32:29 +01006516 switch (action & ~CPU_TASKS_FROZEN) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006517
Linus Torvalds1da177e2005-04-16 15:20:36 -07006518 case CPU_UP_PREPARE:
Thomas Gleixnera468d382009-07-17 14:15:46 +02006519 rq->calc_load_update = calc_load_update;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006520 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006521
Linus Torvalds1da177e2005-04-16 15:20:36 -07006522 case CPU_ONLINE:
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006523 /* Update our root-domain */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006524 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006525 if (rq->rd) {
Rusty Russellc6c49272008-11-25 02:35:05 +10306526 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006527
6528 set_rq_online(rq);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006529 }
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006530 raw_spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006531 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006532
Linus Torvalds1da177e2005-04-16 15:20:36 -07006533#ifdef CONFIG_HOTPLUG_CPU
Gregory Haskins08f503b2008-03-10 17:59:11 -04006534 case CPU_DYING:
Peter Zijlstra317f3942011-04-05 17:23:58 +02006535 sched_ttwu_pending();
Gregory Haskins57d885f2008-01-25 21:08:18 +01006536 /* Update our root-domain */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006537 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006538 if (rq->rd) {
Rusty Russellc6c49272008-11-25 02:35:05 +10306539 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006540 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006541 }
Peter Zijlstra48c5cca2010-11-13 19:32:29 +01006542 migrate_tasks(cpu);
6543 BUG_ON(rq->nr_running != 1); /* the migration thread */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006544 raw_spin_unlock_irqrestore(&rq->lock, flags);
Peter Zijlstra48c5cca2010-11-13 19:32:29 +01006545
6546 migrate_nr_uninterruptible(rq);
6547 calc_global_load_remove(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006548 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006549#endif
6550 }
Peter Zijlstra49c022e2011-04-05 10:14:25 +02006551
6552 update_max_interval();
6553
Linus Torvalds1da177e2005-04-16 15:20:36 -07006554 return NOTIFY_OK;
6555}
6556
Paul Mackerrasf38b0822009-06-02 21:05:16 +10006557/*
6558 * Register at high priority so that task migration (migrate_all_tasks)
6559 * happens before everything else. This has to be lower priority than
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006560 * the notifier in the perf_event subsystem, though.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006561 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07006562static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006563 .notifier_call = migration_call,
Tejun Heo50a323b2010-06-08 21:40:36 +02006564 .priority = CPU_PRI_MIGRATION,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006565};
6566
Tejun Heo3a101d02010-06-08 21:40:36 +02006567static int __cpuinit sched_cpu_active(struct notifier_block *nfb,
6568 unsigned long action, void *hcpu)
6569{
6570 switch (action & ~CPU_TASKS_FROZEN) {
6571 case CPU_ONLINE:
6572 case CPU_DOWN_FAILED:
6573 set_cpu_active((long)hcpu, true);
6574 return NOTIFY_OK;
6575 default:
6576 return NOTIFY_DONE;
6577 }
6578}
6579
6580static int __cpuinit sched_cpu_inactive(struct notifier_block *nfb,
6581 unsigned long action, void *hcpu)
6582{
6583 switch (action & ~CPU_TASKS_FROZEN) {
6584 case CPU_DOWN_PREPARE:
6585 set_cpu_active((long)hcpu, false);
6586 return NOTIFY_OK;
6587 default:
6588 return NOTIFY_DONE;
6589 }
6590}
6591
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07006592static int __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006593{
6594 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07006595 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006596
Tejun Heo3a101d02010-06-08 21:40:36 +02006597 /* Initialize migration for the boot CPU */
Akinobu Mita07dccf32006-09-29 02:00:22 -07006598 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
6599 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006600 migration_call(&migration_notifier, CPU_ONLINE, cpu);
6601 register_cpu_notifier(&migration_notifier);
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07006602
Tejun Heo3a101d02010-06-08 21:40:36 +02006603 /* Register cpu active notifiers */
6604 cpu_notifier(sched_cpu_active, CPU_PRI_SCHED_ACTIVE);
6605 cpu_notifier(sched_cpu_inactive, CPU_PRI_SCHED_INACTIVE);
6606
Thomas Gleixnera004cd42009-07-21 09:54:05 +02006607 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006608}
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07006609early_initcall(migration_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006610#endif
6611
6612#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07006613
Peter Zijlstra4cb98832011-04-07 14:09:58 +02006614static cpumask_var_t sched_domains_tmpmask; /* sched_domains_mutex */
6615
Ingo Molnar3e9830d2007-10-15 17:00:13 +02006616#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006617
Mike Travisf6630112009-11-17 18:22:15 -06006618static __read_mostly int sched_domain_debug_enabled;
6619
6620static int __init sched_domain_debug_setup(char *str)
6621{
6622 sched_domain_debug_enabled = 1;
6623
6624 return 0;
6625}
6626early_param("sched_debug", sched_domain_debug_setup);
6627
Mike Travis7c16ec52008-04-04 18:11:11 -07006628static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
Rusty Russell96f874e2008-11-25 02:35:14 +10306629 struct cpumask *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006630{
6631 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07006632 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006633
Rusty Russell968ea6d2008-12-13 21:55:51 +10306634 cpulist_scnprintf(str, sizeof(str), sched_domain_span(sd));
Rusty Russell96f874e2008-11-25 02:35:14 +10306635 cpumask_clear(groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006636
6637 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
6638
6639 if (!(sd->flags & SD_LOAD_BALANCE)) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006640 printk("does not load-balance\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006641 if (sd->parent)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006642 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
6643 " has parent");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006644 return -1;
6645 }
6646
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006647 printk(KERN_CONT "span %s level %s\n", str, sd->name);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006648
Rusty Russell758b2cd2008-11-25 02:35:04 +10306649 if (!cpumask_test_cpu(cpu, sched_domain_span(sd))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006650 printk(KERN_ERR "ERROR: domain->span does not contain "
6651 "CPU%d\n", cpu);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006652 }
Rusty Russell758b2cd2008-11-25 02:35:04 +10306653 if (!cpumask_test_cpu(cpu, sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006654 printk(KERN_ERR "ERROR: domain->groups does not contain"
6655 " CPU%d\n", cpu);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006656 }
6657
6658 printk(KERN_DEBUG "%*s groups:", level + 1, "");
6659 do {
6660 if (!group) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006661 printk("\n");
6662 printk(KERN_ERR "ERROR: group is NULL\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006663 break;
6664 }
6665
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006666 if (!group->sgp->power) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006667 printk(KERN_CONT "\n");
6668 printk(KERN_ERR "ERROR: domain->cpu_power not "
6669 "set\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006670 break;
6671 }
6672
Rusty Russell758b2cd2008-11-25 02:35:04 +10306673 if (!cpumask_weight(sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006674 printk(KERN_CONT "\n");
6675 printk(KERN_ERR "ERROR: empty group\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006676 break;
6677 }
6678
Rusty Russell758b2cd2008-11-25 02:35:04 +10306679 if (cpumask_intersects(groupmask, sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006680 printk(KERN_CONT "\n");
6681 printk(KERN_ERR "ERROR: repeated CPUs\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006682 break;
6683 }
6684
Rusty Russell758b2cd2008-11-25 02:35:04 +10306685 cpumask_or(groupmask, groupmask, sched_group_cpus(group));
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006686
Rusty Russell968ea6d2008-12-13 21:55:51 +10306687 cpulist_scnprintf(str, sizeof(str), sched_group_cpus(group));
Gautham R Shenoy381512c2009-04-14 09:09:36 +05306688
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006689 printk(KERN_CONT " %s", str);
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006690 if (group->sgp->power != SCHED_POWER_SCALE) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006691 printk(KERN_CONT " (cpu_power = %d)",
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006692 group->sgp->power);
Gautham R Shenoy381512c2009-04-14 09:09:36 +05306693 }
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006694
6695 group = group->next;
6696 } while (group != sd->groups);
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006697 printk(KERN_CONT "\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006698
Rusty Russell758b2cd2008-11-25 02:35:04 +10306699 if (!cpumask_equal(sched_domain_span(sd), groupmask))
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006700 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006701
Rusty Russell758b2cd2008-11-25 02:35:04 +10306702 if (sd->parent &&
6703 !cpumask_subset(groupmask, sched_domain_span(sd->parent)))
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006704 printk(KERN_ERR "ERROR: parent span is not a superset "
6705 "of domain->span\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006706 return 0;
6707}
6708
Linus Torvalds1da177e2005-04-16 15:20:36 -07006709static void sched_domain_debug(struct sched_domain *sd, int cpu)
6710{
6711 int level = 0;
6712
Mike Travisf6630112009-11-17 18:22:15 -06006713 if (!sched_domain_debug_enabled)
6714 return;
6715
Nick Piggin41c7ce92005-06-25 14:57:24 -07006716 if (!sd) {
6717 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6718 return;
6719 }
6720
Linus Torvalds1da177e2005-04-16 15:20:36 -07006721 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6722
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006723 for (;;) {
Peter Zijlstra4cb98832011-04-07 14:09:58 +02006724 if (sched_domain_debug_one(sd, cpu, level, sched_domains_tmpmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006725 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006726 level++;
6727 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006728 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006729 break;
6730 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006731}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006732#else /* !CONFIG_SCHED_DEBUG */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006733# define sched_domain_debug(sd, cpu) do { } while (0)
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006734#endif /* CONFIG_SCHED_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006735
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006736static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006737{
Rusty Russell758b2cd2008-11-25 02:35:04 +10306738 if (cpumask_weight(sched_domain_span(sd)) == 1)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006739 return 1;
6740
6741 /* Following flags need at least 2 groups */
6742 if (sd->flags & (SD_LOAD_BALANCE |
6743 SD_BALANCE_NEWIDLE |
6744 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006745 SD_BALANCE_EXEC |
6746 SD_SHARE_CPUPOWER |
6747 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006748 if (sd->groups != sd->groups->next)
6749 return 0;
6750 }
6751
6752 /* Following flags don't use groups */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02006753 if (sd->flags & (SD_WAKE_AFFINE))
Suresh Siddha245af2c2005-06-25 14:57:25 -07006754 return 0;
6755
6756 return 1;
6757}
6758
Ingo Molnar48f24c42006-07-03 00:25:40 -07006759static int
6760sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006761{
6762 unsigned long cflags = sd->flags, pflags = parent->flags;
6763
6764 if (sd_degenerate(parent))
6765 return 1;
6766
Rusty Russell758b2cd2008-11-25 02:35:04 +10306767 if (!cpumask_equal(sched_domain_span(sd), sched_domain_span(parent)))
Suresh Siddha245af2c2005-06-25 14:57:25 -07006768 return 0;
6769
Suresh Siddha245af2c2005-06-25 14:57:25 -07006770 /* Flags needing groups don't count if only 1 group in parent */
6771 if (parent->groups == parent->groups->next) {
6772 pflags &= ~(SD_LOAD_BALANCE |
6773 SD_BALANCE_NEWIDLE |
6774 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006775 SD_BALANCE_EXEC |
6776 SD_SHARE_CPUPOWER |
6777 SD_SHARE_PKG_RESOURCES);
Ken Chen54364992008-12-07 18:47:37 -08006778 if (nr_node_ids == 1)
6779 pflags &= ~SD_SERIALIZE;
Suresh Siddha245af2c2005-06-25 14:57:25 -07006780 }
6781 if (~cflags & pflags)
6782 return 0;
6783
6784 return 1;
6785}
6786
Peter Zijlstradce840a2011-04-07 14:09:50 +02006787static void free_rootdomain(struct rcu_head *rcu)
Rusty Russellc6c49272008-11-25 02:35:05 +10306788{
Peter Zijlstradce840a2011-04-07 14:09:50 +02006789 struct root_domain *rd = container_of(rcu, struct root_domain, rcu);
Peter Zijlstra047106a2009-11-16 10:28:09 +01006790
Rusty Russell68e74562008-11-25 02:35:13 +10306791 cpupri_cleanup(&rd->cpupri);
Rusty Russellc6c49272008-11-25 02:35:05 +10306792 free_cpumask_var(rd->rto_mask);
6793 free_cpumask_var(rd->online);
6794 free_cpumask_var(rd->span);
6795 kfree(rd);
6796}
6797
Gregory Haskins57d885f2008-01-25 21:08:18 +01006798static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6799{
Ingo Molnara0490fa2009-02-12 11:35:40 +01006800 struct root_domain *old_rd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006801 unsigned long flags;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006802
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006803 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006804
6805 if (rq->rd) {
Ingo Molnara0490fa2009-02-12 11:35:40 +01006806 old_rd = rq->rd;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006807
Rusty Russellc6c49272008-11-25 02:35:05 +10306808 if (cpumask_test_cpu(rq->cpu, old_rd->online))
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006809 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006810
Rusty Russellc6c49272008-11-25 02:35:05 +10306811 cpumask_clear_cpu(rq->cpu, old_rd->span);
Gregory Haskinsdc938522008-01-25 21:08:26 +01006812
Ingo Molnara0490fa2009-02-12 11:35:40 +01006813 /*
6814 * If we dont want to free the old_rt yet then
6815 * set old_rd to NULL to skip the freeing later
6816 * in this function:
6817 */
6818 if (!atomic_dec_and_test(&old_rd->refcount))
6819 old_rd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006820 }
6821
6822 atomic_inc(&rd->refcount);
6823 rq->rd = rd;
6824
Rusty Russellc6c49272008-11-25 02:35:05 +10306825 cpumask_set_cpu(rq->cpu, rd->span);
Gregory Haskins00aec932009-07-30 10:57:23 -04006826 if (cpumask_test_cpu(rq->cpu, cpu_active_mask))
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006827 set_rq_online(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006828
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006829 raw_spin_unlock_irqrestore(&rq->lock, flags);
Ingo Molnara0490fa2009-02-12 11:35:40 +01006830
6831 if (old_rd)
Peter Zijlstradce840a2011-04-07 14:09:50 +02006832 call_rcu_sched(&old_rd->rcu, free_rootdomain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006833}
6834
Pekka Enberg68c38fc2010-07-15 23:18:22 +03006835static int init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006836{
6837 memset(rd, 0, sizeof(*rd));
6838
Pekka Enberg68c38fc2010-07-15 23:18:22 +03006839 if (!alloc_cpumask_var(&rd->span, GFP_KERNEL))
Li Zefan0c910d22009-01-06 17:39:06 +08006840 goto out;
Pekka Enberg68c38fc2010-07-15 23:18:22 +03006841 if (!alloc_cpumask_var(&rd->online, GFP_KERNEL))
Rusty Russellc6c49272008-11-25 02:35:05 +10306842 goto free_span;
Pekka Enberg68c38fc2010-07-15 23:18:22 +03006843 if (!alloc_cpumask_var(&rd->rto_mask, GFP_KERNEL))
Rusty Russellc6c49272008-11-25 02:35:05 +10306844 goto free_online;
Gregory Haskins6e0534f2008-05-12 21:21:01 +02006845
Pekka Enberg68c38fc2010-07-15 23:18:22 +03006846 if (cpupri_init(&rd->cpupri) != 0)
Rusty Russell68e74562008-11-25 02:35:13 +10306847 goto free_rto_mask;
Rusty Russellc6c49272008-11-25 02:35:05 +10306848 return 0;
6849
Rusty Russell68e74562008-11-25 02:35:13 +10306850free_rto_mask:
6851 free_cpumask_var(rd->rto_mask);
Rusty Russellc6c49272008-11-25 02:35:05 +10306852free_online:
6853 free_cpumask_var(rd->online);
6854free_span:
6855 free_cpumask_var(rd->span);
Li Zefan0c910d22009-01-06 17:39:06 +08006856out:
Rusty Russellc6c49272008-11-25 02:35:05 +10306857 return -ENOMEM;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006858}
6859
6860static void init_defrootdomain(void)
6861{
Pekka Enberg68c38fc2010-07-15 23:18:22 +03006862 init_rootdomain(&def_root_domain);
Rusty Russellc6c49272008-11-25 02:35:05 +10306863
Gregory Haskins57d885f2008-01-25 21:08:18 +01006864 atomic_set(&def_root_domain.refcount, 1);
6865}
6866
Gregory Haskinsdc938522008-01-25 21:08:26 +01006867static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006868{
6869 struct root_domain *rd;
6870
6871 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6872 if (!rd)
6873 return NULL;
6874
Pekka Enberg68c38fc2010-07-15 23:18:22 +03006875 if (init_rootdomain(rd) != 0) {
Rusty Russellc6c49272008-11-25 02:35:05 +10306876 kfree(rd);
6877 return NULL;
6878 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006879
6880 return rd;
6881}
6882
Peter Zijlstrae3589f62011-07-15 10:35:52 +02006883static void free_sched_groups(struct sched_group *sg, int free_sgp)
6884{
6885 struct sched_group *tmp, *first;
6886
6887 if (!sg)
6888 return;
6889
6890 first = sg;
6891 do {
6892 tmp = sg->next;
6893
6894 if (free_sgp && atomic_dec_and_test(&sg->sgp->ref))
6895 kfree(sg->sgp);
6896
6897 kfree(sg);
6898 sg = tmp;
6899 } while (sg != first);
6900}
6901
Peter Zijlstradce840a2011-04-07 14:09:50 +02006902static void free_sched_domain(struct rcu_head *rcu)
6903{
6904 struct sched_domain *sd = container_of(rcu, struct sched_domain, rcu);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02006905
6906 /*
6907 * If its an overlapping domain it has private groups, iterate and
6908 * nuke them all.
6909 */
6910 if (sd->flags & SD_OVERLAP) {
6911 free_sched_groups(sd->groups, 1);
6912 } else if (atomic_dec_and_test(&sd->groups->ref)) {
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006913 kfree(sd->groups->sgp);
Peter Zijlstradce840a2011-04-07 14:09:50 +02006914 kfree(sd->groups);
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006915 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02006916 kfree(sd);
6917}
6918
6919static void destroy_sched_domain(struct sched_domain *sd, int cpu)
6920{
6921 call_rcu(&sd->rcu, free_sched_domain);
6922}
6923
6924static void destroy_sched_domains(struct sched_domain *sd, int cpu)
6925{
6926 for (; sd; sd = sd->parent)
6927 destroy_sched_domain(sd, cpu);
6928}
6929
Linus Torvalds1da177e2005-04-16 15:20:36 -07006930/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01006931 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07006932 * hold the hotplug lock.
6933 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01006934static void
6935cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006936{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006937 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07006938 struct sched_domain *tmp;
6939
6940 /* Remove the sched domains which do not contribute to scheduling. */
Li Zefanf29c9b12008-11-06 09:45:16 +08006941 for (tmp = sd; tmp; ) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006942 struct sched_domain *parent = tmp->parent;
6943 if (!parent)
6944 break;
Li Zefanf29c9b12008-11-06 09:45:16 +08006945
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006946 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006947 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006948 if (parent->parent)
6949 parent->parent->child = tmp;
Peter Zijlstradce840a2011-04-07 14:09:50 +02006950 destroy_sched_domain(parent, cpu);
Li Zefanf29c9b12008-11-06 09:45:16 +08006951 } else
6952 tmp = tmp->parent;
Suresh Siddha245af2c2005-06-25 14:57:25 -07006953 }
6954
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006955 if (sd && sd_degenerate(sd)) {
Peter Zijlstradce840a2011-04-07 14:09:50 +02006956 tmp = sd;
Suresh Siddha245af2c2005-06-25 14:57:25 -07006957 sd = sd->parent;
Peter Zijlstradce840a2011-04-07 14:09:50 +02006958 destroy_sched_domain(tmp, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006959 if (sd)
6960 sd->child = NULL;
6961 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006962
Peter Zijlstra4cb98832011-04-07 14:09:58 +02006963 sched_domain_debug(sd, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006964
Gregory Haskins57d885f2008-01-25 21:08:18 +01006965 rq_attach_root(rq, rd);
Peter Zijlstradce840a2011-04-07 14:09:50 +02006966 tmp = rq->sd;
Nick Piggin674311d2005-06-25 14:57:27 -07006967 rcu_assign_pointer(rq->sd, sd);
Peter Zijlstradce840a2011-04-07 14:09:50 +02006968 destroy_sched_domains(tmp, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006969}
6970
6971/* cpus with isolated domains */
Rusty Russelldcc30a32008-11-25 02:35:12 +10306972static cpumask_var_t cpu_isolated_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006973
6974/* Setup the mask of cpus configured for isolated domains */
6975static int __init isolated_cpu_setup(char *str)
6976{
Rusty Russellbdddd292009-12-02 14:09:16 +10306977 alloc_bootmem_cpumask_var(&cpu_isolated_map);
Rusty Russell968ea6d2008-12-13 21:55:51 +10306978 cpulist_parse(str, cpu_isolated_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006979 return 1;
6980}
6981
Ingo Molnar8927f492007-10-15 17:00:13 +02006982__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006983
John Hawkes9c1cfda2005-09-06 15:18:14 -07006984#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07006985
John Hawkes9c1cfda2005-09-06 15:18:14 -07006986#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006987
John Hawkes9c1cfda2005-09-06 15:18:14 -07006988/**
6989 * find_next_best_node - find the next node to include in a sched_domain
6990 * @node: node whose sched_domain we're building
6991 * @used_nodes: nodes already in the sched_domain
6992 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006993 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07006994 * finds the closest node not already in the @used_nodes map.
6995 *
6996 * Should use nodemask_t.
6997 */
Mike Travisc5f59f02008-04-04 18:11:10 -07006998static int find_next_best_node(int node, nodemask_t *used_nodes)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006999{
Hillf Danton7142d172011-05-05 20:53:20 +08007000 int i, n, val, min_val, best_node = -1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007001
7002 min_val = INT_MAX;
7003
Mike Travis076ac2a2008-05-12 21:21:12 +02007004 for (i = 0; i < nr_node_ids; i++) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007005 /* Start at @node */
Mike Travis076ac2a2008-05-12 21:21:12 +02007006 n = (node + i) % nr_node_ids;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007007
7008 if (!nr_cpus_node(n))
7009 continue;
7010
7011 /* Skip already used nodes */
Mike Travisc5f59f02008-04-04 18:11:10 -07007012 if (node_isset(n, *used_nodes))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007013 continue;
7014
7015 /* Simple min distance search */
7016 val = node_distance(node, n);
7017
7018 if (val < min_val) {
7019 min_val = val;
7020 best_node = n;
7021 }
7022 }
7023
Hillf Danton7142d172011-05-05 20:53:20 +08007024 if (best_node != -1)
7025 node_set(best_node, *used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007026 return best_node;
7027}
7028
7029/**
7030 * sched_domain_node_span - get a cpumask for a node's sched_domain
7031 * @node: node whose cpumask we're constructing
Randy Dunlap73486722008-04-22 10:07:22 -07007032 * @span: resulting cpumask
John Hawkes9c1cfda2005-09-06 15:18:14 -07007033 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007034 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07007035 * should be one that prevents unnecessary balancing, but also spreads tasks
7036 * out optimally.
7037 */
Rusty Russell96f874e2008-11-25 02:35:14 +10307038static void sched_domain_node_span(int node, struct cpumask *span)
John Hawkes9c1cfda2005-09-06 15:18:14 -07007039{
Mike Travisc5f59f02008-04-04 18:11:10 -07007040 nodemask_t used_nodes;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007041 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007042
Mike Travis6ca09df2008-12-31 18:08:45 -08007043 cpumask_clear(span);
Mike Travisc5f59f02008-04-04 18:11:10 -07007044 nodes_clear(used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007045
Mike Travis6ca09df2008-12-31 18:08:45 -08007046 cpumask_or(span, span, cpumask_of_node(node));
Mike Travisc5f59f02008-04-04 18:11:10 -07007047 node_set(node, used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007048
7049 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
Mike Travisc5f59f02008-04-04 18:11:10 -07007050 int next_node = find_next_best_node(node, &used_nodes);
Hillf Danton7142d172011-05-05 20:53:20 +08007051 if (next_node < 0)
7052 break;
Mike Travis6ca09df2008-12-31 18:08:45 -08007053 cpumask_or(span, span, cpumask_of_node(next_node));
John Hawkes9c1cfda2005-09-06 15:18:14 -07007054 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007055}
Peter Zijlstrad3081f52011-04-07 14:09:59 +02007056
7057static const struct cpumask *cpu_node_mask(int cpu)
7058{
7059 lockdep_assert_held(&sched_domains_mutex);
7060
7061 sched_domain_node_span(cpu_to_node(cpu), sched_domains_tmpmask);
7062
7063 return sched_domains_tmpmask;
7064}
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02007065
7066static const struct cpumask *cpu_allnodes_mask(int cpu)
7067{
7068 return cpu_possible_mask;
7069}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007070#endif /* CONFIG_NUMA */
John Hawkes9c1cfda2005-09-06 15:18:14 -07007071
Peter Zijlstrad3081f52011-04-07 14:09:59 +02007072static const struct cpumask *cpu_cpu_mask(int cpu)
7073{
7074 return cpumask_of_node(cpu_to_node(cpu));
7075}
7076
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007077int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007078
Peter Zijlstradce840a2011-04-07 14:09:50 +02007079struct sd_data {
7080 struct sched_domain **__percpu sd;
7081 struct sched_group **__percpu sg;
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02007082 struct sched_group_power **__percpu sgp;
Peter Zijlstradce840a2011-04-07 14:09:50 +02007083};
7084
Andreas Herrmann49a02c52009-08-18 12:51:52 +02007085struct s_data {
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02007086 struct sched_domain ** __percpu sd;
Andreas Herrmann49a02c52009-08-18 12:51:52 +02007087 struct root_domain *rd;
7088};
7089
Andreas Herrmann2109b992009-08-18 12:53:00 +02007090enum s_alloc {
Andreas Herrmann2109b992009-08-18 12:53:00 +02007091 sa_rootdomain,
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02007092 sa_sd,
Peter Zijlstradce840a2011-04-07 14:09:50 +02007093 sa_sd_storage,
Andreas Herrmann2109b992009-08-18 12:53:00 +02007094 sa_none,
7095};
7096
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007097struct sched_domain_topology_level;
7098
7099typedef struct sched_domain *(*sched_domain_init_f)(struct sched_domain_topology_level *tl, int cpu);
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02007100typedef const struct cpumask *(*sched_domain_mask_f)(int cpu);
7101
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007102#define SDTL_OVERLAP 0x01
7103
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02007104struct sched_domain_topology_level {
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02007105 sched_domain_init_f init;
7106 sched_domain_mask_f mask;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007107 int flags;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007108 struct sd_data data;
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02007109};
7110
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007111static int
7112build_overlap_sched_groups(struct sched_domain *sd, int cpu)
7113{
7114 struct sched_group *first = NULL, *last = NULL, *groups = NULL, *sg;
7115 const struct cpumask *span = sched_domain_span(sd);
7116 struct cpumask *covered = sched_domains_tmpmask;
7117 struct sd_data *sdd = sd->private;
7118 struct sched_domain *child;
7119 int i;
7120
7121 cpumask_clear(covered);
7122
7123 for_each_cpu(i, span) {
7124 struct cpumask *sg_span;
7125
7126 if (cpumask_test_cpu(i, covered))
7127 continue;
7128
7129 sg = kzalloc_node(sizeof(struct sched_group) + cpumask_size(),
7130 GFP_KERNEL, cpu_to_node(i));
7131
7132 if (!sg)
7133 goto fail;
7134
7135 sg_span = sched_group_cpus(sg);
7136
7137 child = *per_cpu_ptr(sdd->sd, i);
7138 if (child->child) {
7139 child = child->child;
7140 cpumask_copy(sg_span, sched_domain_span(child));
7141 } else
7142 cpumask_set_cpu(i, sg_span);
7143
7144 cpumask_or(covered, covered, sg_span);
7145
7146 sg->sgp = *per_cpu_ptr(sdd->sgp, cpumask_first(sg_span));
7147 atomic_inc(&sg->sgp->ref);
7148
7149 if (cpumask_test_cpu(cpu, sg_span))
7150 groups = sg;
7151
7152 if (!first)
7153 first = sg;
7154 if (last)
7155 last->next = sg;
7156 last = sg;
7157 last->next = first;
7158 }
7159 sd->groups = groups;
7160
7161 return 0;
7162
7163fail:
7164 free_sched_groups(first, 0);
7165
7166 return -ENOMEM;
7167}
7168
Peter Zijlstradce840a2011-04-07 14:09:50 +02007169static int get_group(int cpu, struct sd_data *sdd, struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007170{
Peter Zijlstradce840a2011-04-07 14:09:50 +02007171 struct sched_domain *sd = *per_cpu_ptr(sdd->sd, cpu);
7172 struct sched_domain *child = sd->child;
7173
7174 if (child)
7175 cpu = cpumask_first(sched_domain_span(child));
7176
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02007177 if (sg) {
Peter Zijlstradce840a2011-04-07 14:09:50 +02007178 *sg = *per_cpu_ptr(sdd->sg, cpu);
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02007179 (*sg)->sgp = *per_cpu_ptr(sdd->sgp, cpu);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007180 atomic_set(&(*sg)->sgp->ref, 1); /* for claim_allocations */
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02007181 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02007182
Linus Torvalds1da177e2005-04-16 15:20:36 -07007183 return cpu;
7184}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007185
Ingo Molnar48f24c42006-07-03 00:25:40 -07007186/*
Peter Zijlstradce840a2011-04-07 14:09:50 +02007187 * build_sched_groups will build a circular linked list of the groups
7188 * covered by the given span, and will set each group's ->cpumask correctly,
7189 * and ->cpu_power to 0.
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007190 *
7191 * Assumes the sched_domain tree is fully constructed
Ingo Molnar48f24c42006-07-03 00:25:40 -07007192 */
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007193static int
7194build_sched_groups(struct sched_domain *sd, int cpu)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007195{
Peter Zijlstradce840a2011-04-07 14:09:50 +02007196 struct sched_group *first = NULL, *last = NULL;
7197 struct sd_data *sdd = sd->private;
7198 const struct cpumask *span = sched_domain_span(sd);
Peter Zijlstraf96225f2011-04-07 14:09:57 +02007199 struct cpumask *covered;
Peter Zijlstradce840a2011-04-07 14:09:50 +02007200 int i;
7201
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007202 get_group(cpu, sdd, &sd->groups);
7203 atomic_inc(&sd->groups->ref);
7204
7205 if (cpu != cpumask_first(sched_domain_span(sd)))
7206 return 0;
7207
Peter Zijlstraf96225f2011-04-07 14:09:57 +02007208 lockdep_assert_held(&sched_domains_mutex);
7209 covered = sched_domains_tmpmask;
7210
Peter Zijlstradce840a2011-04-07 14:09:50 +02007211 cpumask_clear(covered);
7212
7213 for_each_cpu(i, span) {
7214 struct sched_group *sg;
7215 int group = get_group(i, sdd, &sg);
7216 int j;
7217
7218 if (cpumask_test_cpu(i, covered))
7219 continue;
7220
7221 cpumask_clear(sched_group_cpus(sg));
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02007222 sg->sgp->power = 0;
Peter Zijlstradce840a2011-04-07 14:09:50 +02007223
7224 for_each_cpu(j, span) {
7225 if (get_group(j, sdd, NULL) != group)
7226 continue;
7227
7228 cpumask_set_cpu(j, covered);
7229 cpumask_set_cpu(j, sched_group_cpus(sg));
7230 }
7231
7232 if (!first)
7233 first = sg;
7234 if (last)
7235 last->next = sg;
7236 last = sg;
7237 }
7238 last->next = first;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007239
7240 return 0;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007241}
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007242
Linus Torvalds1da177e2005-04-16 15:20:36 -07007243/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007244 * Initialize sched groups cpu_power.
7245 *
7246 * cpu_power indicates the capacity of sched group, which is used while
7247 * distributing the load between different sched groups in a sched domain.
7248 * Typically cpu_power for all the groups in a sched domain will be same unless
7249 * there are asymmetries in the topology. If there are asymmetries, group
7250 * having more cpu_power will pickup more load compared to the group having
7251 * less cpu_power.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007252 */
7253static void init_sched_groups_power(int cpu, struct sched_domain *sd)
7254{
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007255 struct sched_group *sg = sd->groups;
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007256
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007257 WARN_ON(!sd || !sg);
7258
7259 do {
7260 sg->group_weight = cpumask_weight(sched_group_cpus(sg));
7261 sg = sg->next;
7262 } while (sg != sd->groups);
7263
7264 if (cpu != group_first_cpu(sg))
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007265 return;
7266
Peter Zijlstrad274cb32011-04-07 14:09:43 +02007267 update_group_power(sd, cpu);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007268}
7269
7270/*
Mike Travis7c16ec52008-04-04 18:11:11 -07007271 * Initializers for schedule domains
7272 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
7273 */
7274
Ingo Molnara5d8c342008-10-09 11:35:51 +02007275#ifdef CONFIG_SCHED_DEBUG
7276# define SD_INIT_NAME(sd, type) sd->name = #type
7277#else
7278# define SD_INIT_NAME(sd, type) do { } while (0)
7279#endif
7280
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007281#define SD_INIT_FUNC(type) \
7282static noinline struct sched_domain * \
7283sd_init_##type(struct sched_domain_topology_level *tl, int cpu) \
7284{ \
7285 struct sched_domain *sd = *per_cpu_ptr(tl->data.sd, cpu); \
7286 *sd = SD_##type##_INIT; \
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007287 SD_INIT_NAME(sd, type); \
7288 sd->private = &tl->data; \
7289 return sd; \
Mike Travis7c16ec52008-04-04 18:11:11 -07007290}
7291
7292SD_INIT_FUNC(CPU)
7293#ifdef CONFIG_NUMA
7294 SD_INIT_FUNC(ALLNODES)
7295 SD_INIT_FUNC(NODE)
7296#endif
7297#ifdef CONFIG_SCHED_SMT
7298 SD_INIT_FUNC(SIBLING)
7299#endif
7300#ifdef CONFIG_SCHED_MC
7301 SD_INIT_FUNC(MC)
7302#endif
Heiko Carstens01a08542010-08-31 10:28:16 +02007303#ifdef CONFIG_SCHED_BOOK
7304 SD_INIT_FUNC(BOOK)
7305#endif
Mike Travis7c16ec52008-04-04 18:11:11 -07007306
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007307static int default_relax_domain_level = -1;
Peter Zijlstra60495e72011-04-07 14:10:04 +02007308int sched_domain_level_max;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007309
7310static int __init setup_relax_domain_level(char *str)
7311{
Li Zefan30e0e172008-05-13 10:27:17 +08007312 unsigned long val;
7313
7314 val = simple_strtoul(str, NULL, 0);
Peter Zijlstra60495e72011-04-07 14:10:04 +02007315 if (val < sched_domain_level_max)
Li Zefan30e0e172008-05-13 10:27:17 +08007316 default_relax_domain_level = val;
7317
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007318 return 1;
7319}
7320__setup("relax_domain_level=", setup_relax_domain_level);
7321
7322static void set_domain_attribute(struct sched_domain *sd,
7323 struct sched_domain_attr *attr)
7324{
7325 int request;
7326
7327 if (!attr || attr->relax_domain_level < 0) {
7328 if (default_relax_domain_level < 0)
7329 return;
7330 else
7331 request = default_relax_domain_level;
7332 } else
7333 request = attr->relax_domain_level;
7334 if (request < sd->level) {
7335 /* turn off idle balance on this domain */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02007336 sd->flags &= ~(SD_BALANCE_WAKE|SD_BALANCE_NEWIDLE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007337 } else {
7338 /* turn on idle balance on this domain */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02007339 sd->flags |= (SD_BALANCE_WAKE|SD_BALANCE_NEWIDLE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007340 }
7341}
7342
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007343static void __sdt_free(const struct cpumask *cpu_map);
7344static int __sdt_alloc(const struct cpumask *cpu_map);
7345
Andreas Herrmann2109b992009-08-18 12:53:00 +02007346static void __free_domain_allocs(struct s_data *d, enum s_alloc what,
7347 const struct cpumask *cpu_map)
7348{
7349 switch (what) {
Andreas Herrmann2109b992009-08-18 12:53:00 +02007350 case sa_rootdomain:
Peter Zijlstra822ff792011-04-07 14:09:51 +02007351 if (!atomic_read(&d->rd->refcount))
7352 free_rootdomain(&d->rd->rcu); /* fall through */
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02007353 case sa_sd:
7354 free_percpu(d->sd); /* fall through */
Peter Zijlstradce840a2011-04-07 14:09:50 +02007355 case sa_sd_storage:
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007356 __sdt_free(cpu_map); /* fall through */
Andreas Herrmann2109b992009-08-18 12:53:00 +02007357 case sa_none:
7358 break;
7359 }
7360}
7361
7362static enum s_alloc __visit_domain_allocation_hell(struct s_data *d,
7363 const struct cpumask *cpu_map)
7364{
Peter Zijlstradce840a2011-04-07 14:09:50 +02007365 memset(d, 0, sizeof(*d));
7366
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007367 if (__sdt_alloc(cpu_map))
7368 return sa_sd_storage;
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02007369 d->sd = alloc_percpu(struct sched_domain *);
Peter Zijlstradce840a2011-04-07 14:09:50 +02007370 if (!d->sd)
7371 return sa_sd_storage;
Andreas Herrmann2109b992009-08-18 12:53:00 +02007372 d->rd = alloc_rootdomain();
Peter Zijlstradce840a2011-04-07 14:09:50 +02007373 if (!d->rd)
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02007374 return sa_sd;
Andreas Herrmann2109b992009-08-18 12:53:00 +02007375 return sa_rootdomain;
7376}
7377
Peter Zijlstradce840a2011-04-07 14:09:50 +02007378/*
7379 * NULL the sd_data elements we've used to build the sched_domain and
7380 * sched_group structure so that the subsequent __free_domain_allocs()
7381 * will not free the data we're using.
7382 */
7383static void claim_allocations(int cpu, struct sched_domain *sd)
7384{
7385 struct sd_data *sdd = sd->private;
Peter Zijlstradce840a2011-04-07 14:09:50 +02007386
7387 WARN_ON_ONCE(*per_cpu_ptr(sdd->sd, cpu) != sd);
7388 *per_cpu_ptr(sdd->sd, cpu) = NULL;
7389
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007390 if (atomic_read(&(*per_cpu_ptr(sdd->sg, cpu))->ref))
Peter Zijlstradce840a2011-04-07 14:09:50 +02007391 *per_cpu_ptr(sdd->sg, cpu) = NULL;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007392
7393 if (atomic_read(&(*per_cpu_ptr(sdd->sgp, cpu))->ref))
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02007394 *per_cpu_ptr(sdd->sgp, cpu) = NULL;
Peter Zijlstradce840a2011-04-07 14:09:50 +02007395}
7396
Andreas Herrmannd8173532009-08-18 12:57:03 +02007397#ifdef CONFIG_SCHED_SMT
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02007398static const struct cpumask *cpu_smt_mask(int cpu)
7399{
7400 return topology_thread_cpumask(cpu);
Andreas Herrmannd8173532009-08-18 12:57:03 +02007401}
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02007402#endif
Andreas Herrmannd8173532009-08-18 12:57:03 +02007403
Peter Zijlstrad069b912011-04-07 14:10:02 +02007404/*
7405 * Topology list, bottom-up.
7406 */
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02007407static struct sched_domain_topology_level default_topology[] = {
Peter Zijlstrad069b912011-04-07 14:10:02 +02007408#ifdef CONFIG_SCHED_SMT
7409 { sd_init_SIBLING, cpu_smt_mask, },
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02007410#endif
7411#ifdef CONFIG_SCHED_MC
7412 { sd_init_MC, cpu_coregroup_mask, },
7413#endif
Peter Zijlstrad069b912011-04-07 14:10:02 +02007414#ifdef CONFIG_SCHED_BOOK
7415 { sd_init_BOOK, cpu_book_mask, },
7416#endif
7417 { sd_init_CPU, cpu_cpu_mask, },
7418#ifdef CONFIG_NUMA
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007419 { sd_init_NODE, cpu_node_mask, SDTL_OVERLAP, },
Peter Zijlstrad069b912011-04-07 14:10:02 +02007420 { sd_init_ALLNODES, cpu_allnodes_mask, },
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02007421#endif
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02007422 { NULL, },
7423};
7424
7425static struct sched_domain_topology_level *sched_domain_topology = default_topology;
7426
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007427static int __sdt_alloc(const struct cpumask *cpu_map)
7428{
7429 struct sched_domain_topology_level *tl;
7430 int j;
7431
7432 for (tl = sched_domain_topology; tl->init; tl++) {
7433 struct sd_data *sdd = &tl->data;
7434
7435 sdd->sd = alloc_percpu(struct sched_domain *);
7436 if (!sdd->sd)
7437 return -ENOMEM;
7438
7439 sdd->sg = alloc_percpu(struct sched_group *);
7440 if (!sdd->sg)
7441 return -ENOMEM;
7442
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02007443 sdd->sgp = alloc_percpu(struct sched_group_power *);
7444 if (!sdd->sgp)
7445 return -ENOMEM;
7446
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007447 for_each_cpu(j, cpu_map) {
7448 struct sched_domain *sd;
7449 struct sched_group *sg;
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02007450 struct sched_group_power *sgp;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007451
7452 sd = kzalloc_node(sizeof(struct sched_domain) + cpumask_size(),
7453 GFP_KERNEL, cpu_to_node(j));
7454 if (!sd)
7455 return -ENOMEM;
7456
7457 *per_cpu_ptr(sdd->sd, j) = sd;
7458
7459 sg = kzalloc_node(sizeof(struct sched_group) + cpumask_size(),
7460 GFP_KERNEL, cpu_to_node(j));
7461 if (!sg)
7462 return -ENOMEM;
7463
7464 *per_cpu_ptr(sdd->sg, j) = sg;
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02007465
7466 sgp = kzalloc_node(sizeof(struct sched_group_power),
7467 GFP_KERNEL, cpu_to_node(j));
7468 if (!sgp)
7469 return -ENOMEM;
7470
7471 *per_cpu_ptr(sdd->sgp, j) = sgp;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007472 }
7473 }
7474
7475 return 0;
7476}
7477
7478static void __sdt_free(const struct cpumask *cpu_map)
7479{
7480 struct sched_domain_topology_level *tl;
7481 int j;
7482
7483 for (tl = sched_domain_topology; tl->init; tl++) {
7484 struct sd_data *sdd = &tl->data;
7485
7486 for_each_cpu(j, cpu_map) {
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007487 struct sched_domain *sd = *per_cpu_ptr(sdd->sd, j);
7488 if (sd && (sd->flags & SD_OVERLAP))
7489 free_sched_groups(sd->groups, 0);
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007490 kfree(*per_cpu_ptr(sdd->sg, j));
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02007491 kfree(*per_cpu_ptr(sdd->sgp, j));
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007492 }
7493 free_percpu(sdd->sd);
7494 free_percpu(sdd->sg);
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02007495 free_percpu(sdd->sgp);
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007496 }
7497}
7498
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02007499struct sched_domain *build_sched_domain(struct sched_domain_topology_level *tl,
7500 struct s_data *d, const struct cpumask *cpu_map,
Peter Zijlstrad069b912011-04-07 14:10:02 +02007501 struct sched_domain_attr *attr, struct sched_domain *child,
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02007502 int cpu)
7503{
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007504 struct sched_domain *sd = tl->init(tl, cpu);
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02007505 if (!sd)
Peter Zijlstrad069b912011-04-07 14:10:02 +02007506 return child;
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02007507
7508 set_domain_attribute(sd, attr);
7509 cpumask_and(sched_domain_span(sd), cpu_map, tl->mask(cpu));
Peter Zijlstra60495e72011-04-07 14:10:04 +02007510 if (child) {
7511 sd->level = child->level + 1;
7512 sched_domain_level_max = max(sched_domain_level_max, sd->level);
Peter Zijlstrad069b912011-04-07 14:10:02 +02007513 child->parent = sd;
Peter Zijlstra60495e72011-04-07 14:10:04 +02007514 }
Peter Zijlstrad069b912011-04-07 14:10:02 +02007515 sd->child = child;
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02007516
7517 return sd;
7518}
7519
Mike Travis7c16ec52008-04-04 18:11:11 -07007520/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007521 * Build sched domains for a given set of cpus and attach the sched domains
7522 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07007523 */
Peter Zijlstradce840a2011-04-07 14:09:50 +02007524static int build_sched_domains(const struct cpumask *cpu_map,
7525 struct sched_domain_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007526{
Andreas Herrmann2109b992009-08-18 12:53:00 +02007527 enum s_alloc alloc_state = sa_none;
Peter Zijlstradce840a2011-04-07 14:09:50 +02007528 struct sched_domain *sd;
Andreas Herrmann49a02c52009-08-18 12:51:52 +02007529 struct s_data d;
Peter Zijlstra822ff792011-04-07 14:09:51 +02007530 int i, ret = -ENOMEM;
Rusty Russell3404c8d2008-11-25 02:35:03 +10307531
Andreas Herrmann2109b992009-08-18 12:53:00 +02007532 alloc_state = __visit_domain_allocation_hell(&d, cpu_map);
7533 if (alloc_state != sa_rootdomain)
7534 goto error;
Mike Travis7c16ec52008-04-04 18:11:11 -07007535
Peter Zijlstradce840a2011-04-07 14:09:50 +02007536 /* Set up domains for cpus specified by the cpu_map. */
Rusty Russellabcd0832008-11-25 02:35:02 +10307537 for_each_cpu(i, cpu_map) {
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02007538 struct sched_domain_topology_level *tl;
7539
Peter Zijlstra3bd65a82011-04-07 14:09:54 +02007540 sd = NULL;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007541 for (tl = sched_domain_topology; tl->init; tl++) {
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02007542 sd = build_sched_domain(tl, &d, cpu_map, attr, sd, i);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007543 if (tl->flags & SDTL_OVERLAP || sched_feat(FORCE_SD_OVERLAP))
7544 sd->flags |= SD_OVERLAP;
Peter Zijlstrad1102352011-07-20 18:42:57 +02007545 if (cpumask_equal(cpu_map, sched_domain_span(sd)))
7546 break;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007547 }
Peter Zijlstrad274cb32011-04-07 14:09:43 +02007548
Peter Zijlstrad069b912011-04-07 14:10:02 +02007549 while (sd->child)
7550 sd = sd->child;
7551
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02007552 *per_cpu_ptr(d.sd, i) = sd;
Peter Zijlstradce840a2011-04-07 14:09:50 +02007553 }
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02007554
Peter Zijlstradce840a2011-04-07 14:09:50 +02007555 /* Build the groups for the domains */
7556 for_each_cpu(i, cpu_map) {
7557 for (sd = *per_cpu_ptr(d.sd, i); sd; sd = sd->parent) {
7558 sd->span_weight = cpumask_weight(sched_domain_span(sd));
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007559 if (sd->flags & SD_OVERLAP) {
7560 if (build_overlap_sched_groups(sd, i))
7561 goto error;
7562 } else {
7563 if (build_sched_groups(sd, i))
7564 goto error;
7565 }
Peter Zijlstra1cf519022011-04-07 14:09:47 +02007566 }
Peter Zijlstraa06dadb2011-04-07 14:09:44 +02007567 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007568
Linus Torvalds1da177e2005-04-16 15:20:36 -07007569 /* Calculate CPU power for physical packages and nodes */
Peter Zijlstraa9c9a9b2011-04-07 14:09:49 +02007570 for (i = nr_cpumask_bits-1; i >= 0; i--) {
7571 if (!cpumask_test_cpu(i, cpu_map))
7572 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007573
Peter Zijlstradce840a2011-04-07 14:09:50 +02007574 for (sd = *per_cpu_ptr(d.sd, i); sd; sd = sd->parent) {
7575 claim_allocations(i, sd);
Peter Zijlstracd4ea6a2011-04-07 14:09:45 +02007576 init_sched_groups_power(i, sd);
Peter Zijlstradce840a2011-04-07 14:09:50 +02007577 }
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07007578 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007579
Linus Torvalds1da177e2005-04-16 15:20:36 -07007580 /* Attach the domains */
Peter Zijlstradce840a2011-04-07 14:09:50 +02007581 rcu_read_lock();
Rusty Russellabcd0832008-11-25 02:35:02 +10307582 for_each_cpu(i, cpu_map) {
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02007583 sd = *per_cpu_ptr(d.sd, i);
Andreas Herrmann49a02c52009-08-18 12:51:52 +02007584 cpu_attach_domain(sd, d.rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007585 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02007586 rcu_read_unlock();
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007587
Peter Zijlstra822ff792011-04-07 14:09:51 +02007588 ret = 0;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007589error:
Andreas Herrmann2109b992009-08-18 12:53:00 +02007590 __free_domain_allocs(&d, alloc_state, cpu_map);
Peter Zijlstra822ff792011-04-07 14:09:51 +02007591 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007592}
Paul Jackson029190c2007-10-18 23:40:20 -07007593
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307594static cpumask_var_t *doms_cur; /* current sched domains */
Paul Jackson029190c2007-10-18 23:40:20 -07007595static int ndoms_cur; /* number of sched domains in 'doms_cur' */
Ingo Molnar4285f5942008-05-16 17:47:14 +02007596static struct sched_domain_attr *dattr_cur;
7597 /* attribues of custom domains in 'doms_cur' */
Paul Jackson029190c2007-10-18 23:40:20 -07007598
7599/*
7600 * Special case: If a kmalloc of a doms_cur partition (array of
Rusty Russell42128232008-11-25 02:35:12 +10307601 * cpumask) fails, then fallback to a single sched domain,
7602 * as determined by the single cpumask fallback_doms.
Paul Jackson029190c2007-10-18 23:40:20 -07007603 */
Rusty Russell42128232008-11-25 02:35:12 +10307604static cpumask_var_t fallback_doms;
Paul Jackson029190c2007-10-18 23:40:20 -07007605
Heiko Carstensee79d1b2008-12-09 18:49:50 +01007606/*
7607 * arch_update_cpu_topology lets virtualized architectures update the
7608 * cpu core maps. It is supposed to return 1 if the topology changed
7609 * or 0 if it stayed the same.
7610 */
7611int __attribute__((weak)) arch_update_cpu_topology(void)
Heiko Carstens22e52b02008-03-12 18:31:59 +01007612{
Heiko Carstensee79d1b2008-12-09 18:49:50 +01007613 return 0;
Heiko Carstens22e52b02008-03-12 18:31:59 +01007614}
7615
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307616cpumask_var_t *alloc_sched_domains(unsigned int ndoms)
7617{
7618 int i;
7619 cpumask_var_t *doms;
7620
7621 doms = kmalloc(sizeof(*doms) * ndoms, GFP_KERNEL);
7622 if (!doms)
7623 return NULL;
7624 for (i = 0; i < ndoms; i++) {
7625 if (!alloc_cpumask_var(&doms[i], GFP_KERNEL)) {
7626 free_sched_domains(doms, i);
7627 return NULL;
7628 }
7629 }
7630 return doms;
7631}
7632
7633void free_sched_domains(cpumask_var_t doms[], unsigned int ndoms)
7634{
7635 unsigned int i;
7636 for (i = 0; i < ndoms; i++)
7637 free_cpumask_var(doms[i]);
7638 kfree(doms);
7639}
7640
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007641/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007642 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07007643 * For now this just excludes isolated cpus, but could be used to
7644 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007645 */
Peter Zijlstrac4a88492011-04-07 14:09:42 +02007646static int init_sched_domains(const struct cpumask *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007647{
Milton Miller73785472007-10-24 18:23:48 +02007648 int err;
7649
Heiko Carstens22e52b02008-03-12 18:31:59 +01007650 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07007651 ndoms_cur = 1;
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307652 doms_cur = alloc_sched_domains(ndoms_cur);
Paul Jackson029190c2007-10-18 23:40:20 -07007653 if (!doms_cur)
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307654 doms_cur = &fallback_doms;
7655 cpumask_andnot(doms_cur[0], cpu_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007656 dattr_cur = NULL;
Peter Zijlstradce840a2011-04-07 14:09:50 +02007657 err = build_sched_domains(doms_cur[0], NULL);
Milton Miller6382bc92007-10-15 17:00:19 +02007658 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02007659
7660 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007661}
7662
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007663/*
7664 * Detach sched domains from a group of cpus specified in cpu_map
7665 * These cpus will now be attached to the NULL domain
7666 */
Rusty Russell96f874e2008-11-25 02:35:14 +10307667static void detach_destroy_domains(const struct cpumask *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007668{
7669 int i;
7670
Peter Zijlstradce840a2011-04-07 14:09:50 +02007671 rcu_read_lock();
Rusty Russellabcd0832008-11-25 02:35:02 +10307672 for_each_cpu(i, cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01007673 cpu_attach_domain(NULL, &def_root_domain, i);
Peter Zijlstradce840a2011-04-07 14:09:50 +02007674 rcu_read_unlock();
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007675}
7676
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007677/* handle null as "default" */
7678static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
7679 struct sched_domain_attr *new, int idx_new)
7680{
7681 struct sched_domain_attr tmp;
7682
7683 /* fast path */
7684 if (!new && !cur)
7685 return 1;
7686
7687 tmp = SD_ATTR_INIT;
7688 return !memcmp(cur ? (cur + idx_cur) : &tmp,
7689 new ? (new + idx_new) : &tmp,
7690 sizeof(struct sched_domain_attr));
7691}
7692
Paul Jackson029190c2007-10-18 23:40:20 -07007693/*
7694 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007695 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07007696 * doms_new[] to the current sched domain partitioning, doms_cur[].
7697 * It destroys each deleted domain and builds each new domain.
7698 *
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307699 * 'doms_new' is an array of cpumask_var_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007700 * The masks don't intersect (don't overlap.) We should setup one
7701 * sched domain for each mask. CPUs not in any of the cpumasks will
7702 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07007703 * current 'doms_cur' domains and in the new 'doms_new', we can leave
7704 * it as it is.
7705 *
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307706 * The passed in 'doms_new' should be allocated using
7707 * alloc_sched_domains. This routine takes ownership of it and will
7708 * free_sched_domains it when done with it. If the caller failed the
7709 * alloc call, then it can pass in doms_new == NULL && ndoms_new == 1,
7710 * and partition_sched_domains() will fallback to the single partition
7711 * 'fallback_doms', it also forces the domains to be rebuilt.
Paul Jackson029190c2007-10-18 23:40:20 -07007712 *
Rusty Russell96f874e2008-11-25 02:35:14 +10307713 * If doms_new == NULL it will be replaced with cpu_online_mask.
Li Zefan700018e2008-11-18 14:02:03 +08007714 * ndoms_new == 0 is a special case for destroying existing domains,
7715 * and it will not create the default domain.
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007716 *
Paul Jackson029190c2007-10-18 23:40:20 -07007717 * Call with hotplug lock held
7718 */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307719void partition_sched_domains(int ndoms_new, cpumask_var_t doms_new[],
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007720 struct sched_domain_attr *dattr_new)
Paul Jackson029190c2007-10-18 23:40:20 -07007721{
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007722 int i, j, n;
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01007723 int new_topology;
Paul Jackson029190c2007-10-18 23:40:20 -07007724
Heiko Carstens712555e2008-04-28 11:33:07 +02007725 mutex_lock(&sched_domains_mutex);
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007726
Milton Miller73785472007-10-24 18:23:48 +02007727 /* always unregister in case we don't destroy any domains */
7728 unregister_sched_domain_sysctl();
7729
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01007730 /* Let architecture update cpu core mappings. */
7731 new_topology = arch_update_cpu_topology();
7732
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007733 n = doms_new ? ndoms_new : 0;
Paul Jackson029190c2007-10-18 23:40:20 -07007734
7735 /* Destroy deleted domains */
7736 for (i = 0; i < ndoms_cur; i++) {
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01007737 for (j = 0; j < n && !new_topology; j++) {
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307738 if (cpumask_equal(doms_cur[i], doms_new[j])
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007739 && dattrs_equal(dattr_cur, i, dattr_new, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007740 goto match1;
7741 }
7742 /* no match - a current sched domain not in new doms_new[] */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307743 detach_destroy_domains(doms_cur[i]);
Paul Jackson029190c2007-10-18 23:40:20 -07007744match1:
7745 ;
7746 }
7747
Max Krasnyanskye761b772008-07-15 04:43:49 -07007748 if (doms_new == NULL) {
7749 ndoms_cur = 0;
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307750 doms_new = &fallback_doms;
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01007751 cpumask_andnot(doms_new[0], cpu_active_mask, cpu_isolated_map);
Li Zefanfaa2f982008-11-04 16:20:23 +08007752 WARN_ON_ONCE(dattr_new);
Max Krasnyanskye761b772008-07-15 04:43:49 -07007753 }
7754
Paul Jackson029190c2007-10-18 23:40:20 -07007755 /* Build new domains */
7756 for (i = 0; i < ndoms_new; i++) {
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01007757 for (j = 0; j < ndoms_cur && !new_topology; j++) {
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307758 if (cpumask_equal(doms_new[i], doms_cur[j])
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007759 && dattrs_equal(dattr_new, i, dattr_cur, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007760 goto match2;
7761 }
7762 /* no match - add a new doms_new */
Peter Zijlstradce840a2011-04-07 14:09:50 +02007763 build_sched_domains(doms_new[i], dattr_new ? dattr_new + i : NULL);
Paul Jackson029190c2007-10-18 23:40:20 -07007764match2:
7765 ;
7766 }
7767
7768 /* Remember the new sched domains */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307769 if (doms_cur != &fallback_doms)
7770 free_sched_domains(doms_cur, ndoms_cur);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007771 kfree(dattr_cur); /* kfree(NULL) is safe */
Paul Jackson029190c2007-10-18 23:40:20 -07007772 doms_cur = doms_new;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007773 dattr_cur = dattr_new;
Paul Jackson029190c2007-10-18 23:40:20 -07007774 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02007775
7776 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007777
Heiko Carstens712555e2008-04-28 11:33:07 +02007778 mutex_unlock(&sched_domains_mutex);
Paul Jackson029190c2007-10-18 23:40:20 -07007779}
7780
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007781#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Peter Zijlstrac4a88492011-04-07 14:09:42 +02007782static void reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007783{
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007784 get_online_cpus();
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007785
7786 /* Destroy domains first to force the rebuild */
7787 partition_sched_domains(0, NULL, NULL);
7788
Max Krasnyanskye761b772008-07-15 04:43:49 -07007789 rebuild_sched_domains();
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007790 put_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007791}
7792
7793static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
7794{
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05307795 unsigned int level = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007796
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05307797 if (sscanf(buf, "%u", &level) != 1)
7798 return -EINVAL;
7799
7800 /*
7801 * level is always be positive so don't check for
7802 * level < POWERSAVINGS_BALANCE_NONE which is 0
7803 * What happens on 0 or 1 byte write,
7804 * need to check for count as well?
7805 */
7806
7807 if (level >= MAX_POWERSAVINGS_BALANCE_LEVELS)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007808 return -EINVAL;
7809
7810 if (smt)
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05307811 sched_smt_power_savings = level;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007812 else
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05307813 sched_mc_power_savings = level;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007814
Peter Zijlstrac4a88492011-04-07 14:09:42 +02007815 reinit_sched_domains();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007816
Li Zefanc70f22d2009-01-05 19:07:50 +08007817 return count;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007818}
7819
Adrian Bunk6707de002007-08-12 18:08:19 +02007820#ifdef CONFIG_SCHED_MC
Andi Kleenf718cd42008-07-29 22:33:52 -07007821static ssize_t sched_mc_power_savings_show(struct sysdev_class *class,
Andi Kleenc9be0a32010-01-05 12:47:58 +01007822 struct sysdev_class_attribute *attr,
Andi Kleenf718cd42008-07-29 22:33:52 -07007823 char *page)
Adrian Bunk6707de002007-08-12 18:08:19 +02007824{
7825 return sprintf(page, "%u\n", sched_mc_power_savings);
7826}
Andi Kleenf718cd42008-07-29 22:33:52 -07007827static ssize_t sched_mc_power_savings_store(struct sysdev_class *class,
Andi Kleenc9be0a32010-01-05 12:47:58 +01007828 struct sysdev_class_attribute *attr,
Adrian Bunk6707de002007-08-12 18:08:19 +02007829 const char *buf, size_t count)
7830{
7831 return sched_power_savings_store(buf, count, 0);
7832}
Andi Kleenf718cd42008-07-29 22:33:52 -07007833static SYSDEV_CLASS_ATTR(sched_mc_power_savings, 0644,
7834 sched_mc_power_savings_show,
7835 sched_mc_power_savings_store);
Adrian Bunk6707de002007-08-12 18:08:19 +02007836#endif
7837
7838#ifdef CONFIG_SCHED_SMT
Andi Kleenf718cd42008-07-29 22:33:52 -07007839static ssize_t sched_smt_power_savings_show(struct sysdev_class *dev,
Andi Kleenc9be0a32010-01-05 12:47:58 +01007840 struct sysdev_class_attribute *attr,
Andi Kleenf718cd42008-07-29 22:33:52 -07007841 char *page)
Adrian Bunk6707de002007-08-12 18:08:19 +02007842{
7843 return sprintf(page, "%u\n", sched_smt_power_savings);
7844}
Andi Kleenf718cd42008-07-29 22:33:52 -07007845static ssize_t sched_smt_power_savings_store(struct sysdev_class *dev,
Andi Kleenc9be0a32010-01-05 12:47:58 +01007846 struct sysdev_class_attribute *attr,
Adrian Bunk6707de002007-08-12 18:08:19 +02007847 const char *buf, size_t count)
7848{
7849 return sched_power_savings_store(buf, count, 1);
7850}
Andi Kleenf718cd42008-07-29 22:33:52 -07007851static SYSDEV_CLASS_ATTR(sched_smt_power_savings, 0644,
7852 sched_smt_power_savings_show,
Adrian Bunk6707de002007-08-12 18:08:19 +02007853 sched_smt_power_savings_store);
7854#endif
7855
Li Zefan39aac642009-01-05 19:18:02 +08007856int __init sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007857{
7858 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007859
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007860#ifdef CONFIG_SCHED_SMT
7861 if (smt_capable())
7862 err = sysfs_create_file(&cls->kset.kobj,
7863 &attr_sched_smt_power_savings.attr);
7864#endif
7865#ifdef CONFIG_SCHED_MC
7866 if (!err && mc_capable())
7867 err = sysfs_create_file(&cls->kset.kobj,
7868 &attr_sched_mc_power_savings.attr);
7869#endif
7870 return err;
7871}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007872#endif /* CONFIG_SCHED_MC || CONFIG_SCHED_SMT */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007873
Linus Torvalds1da177e2005-04-16 15:20:36 -07007874/*
Tejun Heo3a101d02010-06-08 21:40:36 +02007875 * Update cpusets according to cpu_active mask. If cpusets are
7876 * disabled, cpuset_update_active_cpus() becomes a simple wrapper
7877 * around partition_sched_domains().
Linus Torvalds1da177e2005-04-16 15:20:36 -07007878 */
Tejun Heo0b2e9182010-06-21 23:53:31 +02007879static int cpuset_cpu_active(struct notifier_block *nfb, unsigned long action,
7880 void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007881{
Tejun Heo3a101d02010-06-08 21:40:36 +02007882 switch (action & ~CPU_TASKS_FROZEN) {
Max Krasnyanskye761b772008-07-15 04:43:49 -07007883 case CPU_ONLINE:
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01007884 case CPU_DOWN_FAILED:
Tejun Heo3a101d02010-06-08 21:40:36 +02007885 cpuset_update_active_cpus();
Max Krasnyanskye761b772008-07-15 04:43:49 -07007886 return NOTIFY_OK;
Max Krasnyanskye761b772008-07-15 04:43:49 -07007887 default:
7888 return NOTIFY_DONE;
7889 }
7890}
Tejun Heo3a101d02010-06-08 21:40:36 +02007891
Tejun Heo0b2e9182010-06-21 23:53:31 +02007892static int cpuset_cpu_inactive(struct notifier_block *nfb, unsigned long action,
7893 void *hcpu)
Tejun Heo3a101d02010-06-08 21:40:36 +02007894{
7895 switch (action & ~CPU_TASKS_FROZEN) {
7896 case CPU_DOWN_PREPARE:
7897 cpuset_update_active_cpus();
7898 return NOTIFY_OK;
7899 default:
7900 return NOTIFY_DONE;
7901 }
7902}
Max Krasnyanskye761b772008-07-15 04:43:49 -07007903
7904static int update_runtime(struct notifier_block *nfb,
7905 unsigned long action, void *hcpu)
7906{
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007907 int cpu = (int)(long)hcpu;
7908
Linus Torvalds1da177e2005-04-16 15:20:36 -07007909 switch (action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007910 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007911 case CPU_DOWN_PREPARE_FROZEN:
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007912 disable_runtime(cpu_rq(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007913 return NOTIFY_OK;
7914
Linus Torvalds1da177e2005-04-16 15:20:36 -07007915 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007916 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007917 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007918 case CPU_ONLINE_FROZEN:
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007919 enable_runtime(cpu_rq(cpu));
Max Krasnyanskye761b772008-07-15 04:43:49 -07007920 return NOTIFY_OK;
7921
Linus Torvalds1da177e2005-04-16 15:20:36 -07007922 default:
7923 return NOTIFY_DONE;
7924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007925}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007926
7927void __init sched_init_smp(void)
7928{
Rusty Russelldcc30a32008-11-25 02:35:12 +10307929 cpumask_var_t non_isolated_cpus;
7930
7931 alloc_cpumask_var(&non_isolated_cpus, GFP_KERNEL);
Yong Zhangcb5fd132009-09-14 20:20:16 +08007932 alloc_cpumask_var(&fallback_doms, GFP_KERNEL);
Nick Piggin5c1e1762006-10-03 01:14:04 -07007933
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007934 get_online_cpus();
Heiko Carstens712555e2008-04-28 11:33:07 +02007935 mutex_lock(&sched_domains_mutex);
Peter Zijlstrac4a88492011-04-07 14:09:42 +02007936 init_sched_domains(cpu_active_mask);
Rusty Russelldcc30a32008-11-25 02:35:12 +10307937 cpumask_andnot(non_isolated_cpus, cpu_possible_mask, cpu_isolated_map);
7938 if (cpumask_empty(non_isolated_cpus))
7939 cpumask_set_cpu(smp_processor_id(), non_isolated_cpus);
Heiko Carstens712555e2008-04-28 11:33:07 +02007940 mutex_unlock(&sched_domains_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007941 put_online_cpus();
Max Krasnyanskye761b772008-07-15 04:43:49 -07007942
Tejun Heo3a101d02010-06-08 21:40:36 +02007943 hotcpu_notifier(cpuset_cpu_active, CPU_PRI_CPUSET_ACTIVE);
7944 hotcpu_notifier(cpuset_cpu_inactive, CPU_PRI_CPUSET_INACTIVE);
Max Krasnyanskye761b772008-07-15 04:43:49 -07007945
7946 /* RT runtime code needs to handle some hotplug events */
7947 hotcpu_notifier(update_runtime, 0);
7948
Peter Zijlstrab328ca12008-04-29 10:02:46 +02007949 init_hrtick();
Nick Piggin5c1e1762006-10-03 01:14:04 -07007950
7951 /* Move init over to a non-isolated CPU */
Rusty Russelldcc30a32008-11-25 02:35:12 +10307952 if (set_cpus_allowed_ptr(current, non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07007953 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01007954 sched_init_granularity();
Rusty Russelldcc30a32008-11-25 02:35:12 +10307955 free_cpumask_var(non_isolated_cpus);
Rusty Russell42128232008-11-25 02:35:12 +10307956
Rusty Russell0e3900e2008-11-25 02:35:13 +10307957 init_sched_rt_class();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007958}
7959#else
7960void __init sched_init_smp(void)
7961{
Ingo Molnar19978ca2007-11-09 22:39:38 +01007962 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007963}
7964#endif /* CONFIG_SMP */
7965
Arun R Bharadwajcd1bb942009-04-16 12:15:34 +05307966const_debug unsigned int sysctl_timer_migration = 1;
7967
Linus Torvalds1da177e2005-04-16 15:20:36 -07007968int in_sched_functions(unsigned long addr)
7969{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007970 return in_lock_functions(addr) ||
7971 (addr >= (unsigned long)__sched_text_start
7972 && addr < (unsigned long)__sched_text_end);
7973}
7974
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02007975static void init_cfs_rq(struct cfs_rq *cfs_rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02007976{
7977 cfs_rq->tasks_timeline = RB_ROOT;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02007978 INIT_LIST_HEAD(&cfs_rq->tasks);
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02007979 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Peter Zijlstrac64be782011-07-11 16:28:50 +02007980#ifndef CONFIG_64BIT
7981 cfs_rq->min_vruntime_copy = cfs_rq->min_vruntime;
7982#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02007983}
7984
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01007985static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
7986{
7987 struct rt_prio_array *array;
7988 int i;
7989
7990 array = &rt_rq->active;
7991 for (i = 0; i < MAX_RT_PRIO; i++) {
7992 INIT_LIST_HEAD(array->queue + i);
7993 __clear_bit(i, array->bitmap);
7994 }
7995 /* delimiter for bitsearch: */
7996 __set_bit(MAX_RT_PRIO, array->bitmap);
7997
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02007998#if defined CONFIG_SMP
Gregory Haskinse864c492008-12-29 09:39:49 -05007999 rt_rq->highest_prio.curr = MAX_RT_PRIO;
8000 rt_rq->highest_prio.next = MAX_RT_PRIO;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008001 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008002 rt_rq->overloaded = 0;
Dima Zavin732375c2011-07-07 17:27:59 -07008003 plist_head_init(&rt_rq->pushable_tasks);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008004#endif
8005
8006 rt_rq->rt_time = 0;
8007 rt_rq->rt_throttled = 0;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008008 rt_rq->rt_runtime = 0;
Thomas Gleixner0986b112009-11-17 15:32:06 +01008009 raw_spin_lock_init(&rt_rq->rt_runtime_lock);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008010}
8011
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008012#ifdef CONFIG_FAIR_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008013static void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq,
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08008014 struct sched_entity *se, int cpu,
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008015 struct sched_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008016{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008017 struct rq *rq = cpu_rq(cpu);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008018
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02008019 cfs_rq->tg = tg;
8020 cfs_rq->rq = rq;
8021#ifdef CONFIG_SMP
8022 /* allow initial update_cfs_load() to truncate */
8023 cfs_rq->load_stamp = 1;
8024#endif
Paul Turnerab84d312011-07-21 09:43:28 -07008025 init_cfs_rq_runtime(cfs_rq);
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02008026
8027 tg->cfs_rq[cpu] = cfs_rq;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008028 tg->se[cpu] = se;
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02008029
Yong Zhang07e06b02011-01-07 15:17:36 +08008030 /* se could be NULL for root_task_group */
Dhaval Giani354d60c2008-04-19 19:44:59 +02008031 if (!se)
8032 return;
8033
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008034 if (!parent)
8035 se->cfs_rq = &rq->cfs;
8036 else
8037 se->cfs_rq = parent->my_q;
8038
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008039 se->my_q = cfs_rq;
Paul Turner94371782010-11-15 15:47:10 -08008040 update_load_set(&se->load, 0);
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008041 se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008042}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008043#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008044
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008045#ifdef CONFIG_RT_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008046static void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq,
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08008047 struct sched_rt_entity *rt_se, int cpu,
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008048 struct sched_rt_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008049{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008050 struct rq *rq = cpu_rq(cpu);
8051
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02008052 rt_rq->highest_prio.curr = MAX_RT_PRIO;
8053 rt_rq->rt_nr_boosted = 0;
8054 rt_rq->rq = rq;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008055 rt_rq->tg = tg;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008056
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02008057 tg->rt_rq[cpu] = rt_rq;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008058 tg->rt_se[cpu] = rt_se;
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02008059
Dhaval Giani354d60c2008-04-19 19:44:59 +02008060 if (!rt_se)
8061 return;
8062
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008063 if (!parent)
8064 rt_se->rt_rq = &rq->rt;
8065 else
8066 rt_se->rt_rq = parent->my_q;
8067
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008068 rt_se->my_q = rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008069 rt_se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008070 INIT_LIST_HEAD(&rt_se->run_list);
8071}
8072#endif
8073
Linus Torvalds1da177e2005-04-16 15:20:36 -07008074void __init sched_init(void)
8075{
Ingo Molnardd41f592007-07-09 18:51:59 +02008076 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07008077 unsigned long alloc_size = 0, ptr;
8078
8079#ifdef CONFIG_FAIR_GROUP_SCHED
8080 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
8081#endif
8082#ifdef CONFIG_RT_GROUP_SCHED
8083 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
8084#endif
Rusty Russelldf7c8e82009-03-19 15:22:20 +10308085#ifdef CONFIG_CPUMASK_OFFSTACK
Rusty Russell8c083f02009-03-19 15:22:20 +10308086 alloc_size += num_possible_cpus() * cpumask_size();
Rusty Russelldf7c8e82009-03-19 15:22:20 +10308087#endif
Mike Travis434d53b2008-04-04 18:11:04 -07008088 if (alloc_size) {
Pekka Enberg36b7b6d2009-06-10 23:42:36 +03008089 ptr = (unsigned long)kzalloc(alloc_size, GFP_NOWAIT);
Mike Travis434d53b2008-04-04 18:11:04 -07008090
8091#ifdef CONFIG_FAIR_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08008092 root_task_group.se = (struct sched_entity **)ptr;
Mike Travis434d53b2008-04-04 18:11:04 -07008093 ptr += nr_cpu_ids * sizeof(void **);
8094
Yong Zhang07e06b02011-01-07 15:17:36 +08008095 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
Mike Travis434d53b2008-04-04 18:11:04 -07008096 ptr += nr_cpu_ids * sizeof(void **);
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008097
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008098#endif /* CONFIG_FAIR_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07008099#ifdef CONFIG_RT_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08008100 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
Mike Travis434d53b2008-04-04 18:11:04 -07008101 ptr += nr_cpu_ids * sizeof(void **);
8102
Yong Zhang07e06b02011-01-07 15:17:36 +08008103 root_task_group.rt_rq = (struct rt_rq **)ptr;
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008104 ptr += nr_cpu_ids * sizeof(void **);
8105
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008106#endif /* CONFIG_RT_GROUP_SCHED */
Rusty Russelldf7c8e82009-03-19 15:22:20 +10308107#ifdef CONFIG_CPUMASK_OFFSTACK
8108 for_each_possible_cpu(i) {
8109 per_cpu(load_balance_tmpmask, i) = (void *)ptr;
8110 ptr += cpumask_size();
8111 }
8112#endif /* CONFIG_CPUMASK_OFFSTACK */
Mike Travis434d53b2008-04-04 18:11:04 -07008113 }
Ingo Molnardd41f592007-07-09 18:51:59 +02008114
Gregory Haskins57d885f2008-01-25 21:08:18 +01008115#ifdef CONFIG_SMP
8116 init_defrootdomain();
8117#endif
8118
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008119 init_rt_bandwidth(&def_rt_bandwidth,
8120 global_rt_period(), global_rt_runtime());
8121
8122#ifdef CONFIG_RT_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08008123 init_rt_bandwidth(&root_task_group.rt_bandwidth,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008124 global_rt_period(), global_rt_runtime());
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008125#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008126
Dhaval Giani7c941432010-01-20 13:26:18 +01008127#ifdef CONFIG_CGROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08008128 list_add(&root_task_group.list, &task_groups);
8129 INIT_LIST_HEAD(&root_task_group.children);
Mike Galbraith5091faa2010-11-30 14:18:03 +01008130 autogroup_init(&init_task);
Dhaval Giani7c941432010-01-20 13:26:18 +01008131#endif /* CONFIG_CGROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008132
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08008133 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07008134 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008135
8136 rq = cpu_rq(i);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01008137 raw_spin_lock_init(&rq->lock);
Nick Piggin78979862005-06-25 14:57:13 -07008138 rq->nr_running = 0;
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02008139 rq->calc_load_active = 0;
8140 rq->calc_load_update = jiffies + LOAD_FREQ;
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02008141 init_cfs_rq(&rq->cfs);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008142 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008143#ifdef CONFIG_FAIR_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08008144 root_task_group.shares = root_task_group_load;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008145 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008146 /*
Yong Zhang07e06b02011-01-07 15:17:36 +08008147 * How much cpu bandwidth does root_task_group get?
Dhaval Giani354d60c2008-04-19 19:44:59 +02008148 *
8149 * In case of task-groups formed thr' the cgroup filesystem, it
8150 * gets 100% of the cpu resources in the system. This overall
8151 * system cpu resource is divided among the tasks of
Yong Zhang07e06b02011-01-07 15:17:36 +08008152 * root_task_group and its child task-groups in a fair manner,
Dhaval Giani354d60c2008-04-19 19:44:59 +02008153 * based on each entity's (task or task-group's) weight
8154 * (se->load.weight).
8155 *
Yong Zhang07e06b02011-01-07 15:17:36 +08008156 * In other words, if root_task_group has 10 tasks of weight
Dhaval Giani354d60c2008-04-19 19:44:59 +02008157 * 1024) and two child groups A0 and A1 (of weight 1024 each),
8158 * then A0's share of the cpu resource is:
8159 *
Ingo Molnar0d905bc2009-05-04 19:13:30 +02008160 * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
Dhaval Giani354d60c2008-04-19 19:44:59 +02008161 *
Yong Zhang07e06b02011-01-07 15:17:36 +08008162 * We achieve this by letting root_task_group's tasks sit
8163 * directly in rq->cfs (i.e root_task_group->se[] = NULL).
Dhaval Giani354d60c2008-04-19 19:44:59 +02008164 */
Paul Turnerab84d312011-07-21 09:43:28 -07008165 init_cfs_bandwidth(&root_task_group.cfs_bandwidth);
Yong Zhang07e06b02011-01-07 15:17:36 +08008166 init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008167#endif /* CONFIG_FAIR_GROUP_SCHED */
8168
8169 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008170#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008171 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
Yong Zhang07e06b02011-01-07 15:17:36 +08008172 init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, NULL);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008173#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07008174
Ingo Molnardd41f592007-07-09 18:51:59 +02008175 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
8176 rq->cpu_load[j] = 0;
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07008177
8178 rq->last_load_update_tick = jiffies;
8179
Linus Torvalds1da177e2005-04-16 15:20:36 -07008180#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07008181 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01008182 rq->rd = NULL;
Nikhil Rao1399fa72011-05-18 10:09:39 -07008183 rq->cpu_power = SCHED_POWER_SCALE;
Gregory Haskins3f029d32009-07-29 11:08:47 -04008184 rq->post_schedule = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008185 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008186 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008187 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07008188 rq->cpu = i;
Gregory Haskins1f11eb62008-06-04 15:04:05 -04008189 rq->online = 0;
Mike Galbraitheae0c9d2009-11-10 03:50:02 +01008190 rq->idle_stamp = 0;
8191 rq->avg_idle = 2*sysctl_sched_migration_cost;
Gregory Haskinsdc938522008-01-25 21:08:26 +01008192 rq_attach_root(rq, &def_root_domain);
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07008193#ifdef CONFIG_NO_HZ
8194 rq->nohz_balance_kick = 0;
8195 init_sched_softirq_csd(&per_cpu(remote_sched_softirq_cb, i));
8196#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07008197#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01008198 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008199 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008200 }
8201
Peter Williams2dd73a42006-06-27 02:54:34 -07008202 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008203
Avi Kivitye107be32007-07-26 13:40:43 +02008204#ifdef CONFIG_PREEMPT_NOTIFIERS
8205 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
8206#endif
8207
Christoph Lameterc9819f42006-12-10 02:20:25 -08008208#ifdef CONFIG_SMP
Carlos R. Mafra962cf362008-05-15 11:15:37 -03008209 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains);
Christoph Lameterc9819f42006-12-10 02:20:25 -08008210#endif
8211
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008212#ifdef CONFIG_RT_MUTEXES
Dima Zavin732375c2011-07-07 17:27:59 -07008213 plist_head_init(&init_task.pi_waiters);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008214#endif
8215
Linus Torvalds1da177e2005-04-16 15:20:36 -07008216 /*
8217 * The boot idle thread does lazy MMU switching as well:
8218 */
8219 atomic_inc(&init_mm.mm_count);
8220 enter_lazy_tlb(&init_mm, current);
8221
8222 /*
8223 * Make us the idle thread. Technically, schedule() should not be
8224 * called from this thread, however somewhere below it might be,
8225 * but because we are the idle thread, we just pick up running again
8226 * when this runqueue becomes "idle".
8227 */
8228 init_idle(current, smp_processor_id());
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02008229
8230 calc_load_update = jiffies + LOAD_FREQ;
8231
Ingo Molnardd41f592007-07-09 18:51:59 +02008232 /*
8233 * During early bootup we pretend to be a normal task:
8234 */
8235 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01008236
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10308237 /* Allocate the nohz_cpu_mask if CONFIG_CPUMASK_OFFSTACK */
Rusty Russell49557e62009-11-02 20:37:20 +10308238 zalloc_cpumask_var(&nohz_cpu_mask, GFP_NOWAIT);
Rusty Russellbf4d83f2008-11-25 09:57:51 +10308239#ifdef CONFIG_SMP
Peter Zijlstra4cb98832011-04-07 14:09:58 +02008240 zalloc_cpumask_var(&sched_domains_tmpmask, GFP_NOWAIT);
Rusty Russell7d1e6a92008-11-25 02:35:09 +10308241#ifdef CONFIG_NO_HZ
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07008242 zalloc_cpumask_var(&nohz.idle_cpus_mask, GFP_NOWAIT);
8243 alloc_cpumask_var(&nohz.grp_idle_mask, GFP_NOWAIT);
8244 atomic_set(&nohz.load_balancer, nr_cpu_ids);
8245 atomic_set(&nohz.first_pick_cpu, nr_cpu_ids);
8246 atomic_set(&nohz.second_pick_cpu, nr_cpu_ids);
Rusty Russell7d1e6a92008-11-25 02:35:09 +10308247#endif
Rusty Russellbdddd292009-12-02 14:09:16 +10308248 /* May be allocated at isolcpus cmdline parse time */
8249 if (cpu_isolated_map == NULL)
8250 zalloc_cpumask_var(&cpu_isolated_map, GFP_NOWAIT);
Rusty Russellbf4d83f2008-11-25 09:57:51 +10308251#endif /* SMP */
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10308252
Ingo Molnar6892b752008-02-13 14:02:36 +01008253 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008254}
8255
Frederic Weisbeckerd902db12011-06-08 19:31:56 +02008256#ifdef CONFIG_DEBUG_ATOMIC_SLEEP
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02008257static inline int preempt_count_equals(int preempt_offset)
8258{
Frederic Weisbecker234da7b2009-12-16 20:21:05 +01008259 int nested = (preempt_count() & ~PREEMPT_ACTIVE) + rcu_preempt_depth();
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02008260
Arnd Bergmann4ba82162011-01-25 22:52:22 +01008261 return (nested == preempt_offset);
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02008262}
8263
Simon Kagstromd8948372009-12-23 11:08:18 +01008264void __might_sleep(const char *file, int line, int preempt_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008265{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008266 static unsigned long prev_jiffy; /* ratelimiting */
8267
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02008268 if ((preempt_count_equals(preempt_offset) && !irqs_disabled()) ||
8269 system_state != SYSTEM_RUNNING || oops_in_progress)
Ingo Molnaraef745f2008-08-28 11:34:43 +02008270 return;
8271 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
8272 return;
8273 prev_jiffy = jiffies;
8274
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01008275 printk(KERN_ERR
8276 "BUG: sleeping function called from invalid context at %s:%d\n",
8277 file, line);
8278 printk(KERN_ERR
8279 "in_atomic(): %d, irqs_disabled(): %d, pid: %d, name: %s\n",
8280 in_atomic(), irqs_disabled(),
8281 current->pid, current->comm);
Ingo Molnaraef745f2008-08-28 11:34:43 +02008282
8283 debug_show_held_locks(current);
8284 if (irqs_disabled())
8285 print_irqtrace_events(current);
8286 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008287}
8288EXPORT_SYMBOL(__might_sleep);
8289#endif
8290
8291#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008292static void normalize_task(struct rq *rq, struct task_struct *p)
8293{
Peter Zijlstrada7a7352011-01-17 17:03:27 +01008294 const struct sched_class *prev_class = p->sched_class;
8295 int old_prio = p->prio;
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008296 int on_rq;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02008297
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02008298 on_rq = p->on_rq;
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008299 if (on_rq)
8300 deactivate_task(rq, p, 0);
8301 __setscheduler(rq, p, SCHED_NORMAL, 0);
8302 if (on_rq) {
8303 activate_task(rq, p, 0);
8304 resched_task(rq->curr);
8305 }
Peter Zijlstrada7a7352011-01-17 17:03:27 +01008306
8307 check_class_changed(rq, p, prev_class, old_prio);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008308}
8309
Linus Torvalds1da177e2005-04-16 15:20:36 -07008310void normalize_rt_tasks(void)
8311{
Ingo Molnara0f98a12007-06-17 18:37:45 +02008312 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008313 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07008314 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008315
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008316 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008317 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02008318 /*
8319 * Only normalize user tasks:
8320 */
8321 if (!p->mm)
8322 continue;
8323
Ingo Molnardd41f592007-07-09 18:51:59 +02008324 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008325#ifdef CONFIG_SCHEDSTATS
Lucas De Marchi41acab82010-03-10 23:37:45 -03008326 p->se.statistics.wait_start = 0;
8327 p->se.statistics.sleep_start = 0;
8328 p->se.statistics.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008329#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02008330
8331 if (!rt_task(p)) {
8332 /*
8333 * Renice negative nice level userspace
8334 * tasks back to 0:
8335 */
8336 if (TASK_NICE(p) < 0 && p->mm)
8337 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008338 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02008339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008340
Thomas Gleixner1d615482009-11-17 14:54:03 +01008341 raw_spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07008342 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008343
Ingo Molnar178be792007-10-15 17:00:18 +02008344 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008345
Ingo Molnarb29739f2006-06-27 02:54:51 -07008346 __task_rq_unlock(rq);
Thomas Gleixner1d615482009-11-17 14:54:03 +01008347 raw_spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008348 } while_each_thread(g, p);
8349
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008350 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008351}
8352
8353#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07008354
Jason Wessel67fc4e02010-05-20 21:04:21 -05008355#if defined(CONFIG_IA64) || defined(CONFIG_KGDB_KDB)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008356/*
Jason Wessel67fc4e02010-05-20 21:04:21 -05008357 * These functions are only useful for the IA64 MCA handling, or kdb.
Linus Torvalds1df5c102005-09-12 07:59:21 -07008358 *
8359 * They can only be called when the whole system has been
8360 * stopped - every CPU needs to be quiescent, and no scheduling
8361 * activity can take place. Using them for anything else would
8362 * be a serious bug, and as a result, they aren't even visible
8363 * under any other configuration.
8364 */
8365
8366/**
8367 * curr_task - return the current task for a given cpu.
8368 * @cpu: the processor in question.
8369 *
8370 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8371 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008372struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008373{
8374 return cpu_curr(cpu);
8375}
8376
Jason Wessel67fc4e02010-05-20 21:04:21 -05008377#endif /* defined(CONFIG_IA64) || defined(CONFIG_KGDB_KDB) */
8378
8379#ifdef CONFIG_IA64
Linus Torvalds1df5c102005-09-12 07:59:21 -07008380/**
8381 * set_curr_task - set the current task for a given cpu.
8382 * @cpu: the processor in question.
8383 * @p: the task pointer to set.
8384 *
8385 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008386 * are serviced on a separate stack. It allows the architecture to switch the
8387 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07008388 * must be called with all CPU's synchronized, and interrupts disabled, the
8389 * and caller must save the original value of the current task (see
8390 * curr_task() above) and restore that value before reenabling interrupts and
8391 * re-starting the system.
8392 *
8393 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8394 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008395void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008396{
8397 cpu_curr(cpu) = p;
8398}
8399
8400#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008401
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008402#ifdef CONFIG_FAIR_GROUP_SCHED
8403static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008404{
8405 int i;
8406
Paul Turnerab84d312011-07-21 09:43:28 -07008407 destroy_cfs_bandwidth(tg_cfs_bandwidth(tg));
8408
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008409 for_each_possible_cpu(i) {
8410 if (tg->cfs_rq)
8411 kfree(tg->cfs_rq[i]);
8412 if (tg->se)
8413 kfree(tg->se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008414 }
8415
8416 kfree(tg->cfs_rq);
8417 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008418}
8419
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008420static
8421int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008422{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008423 struct cfs_rq *cfs_rq;
Li Zefaneab17222008-10-29 17:03:22 +08008424 struct sched_entity *se;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008425 int i;
8426
Mike Travis434d53b2008-04-04 18:11:04 -07008427 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008428 if (!tg->cfs_rq)
8429 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008430 tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008431 if (!tg->se)
8432 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008433
8434 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008435
Paul Turnerab84d312011-07-21 09:43:28 -07008436 init_cfs_bandwidth(tg_cfs_bandwidth(tg));
8437
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008438 for_each_possible_cpu(i) {
Li Zefaneab17222008-10-29 17:03:22 +08008439 cfs_rq = kzalloc_node(sizeof(struct cfs_rq),
8440 GFP_KERNEL, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008441 if (!cfs_rq)
8442 goto err;
8443
Li Zefaneab17222008-10-29 17:03:22 +08008444 se = kzalloc_node(sizeof(struct sched_entity),
8445 GFP_KERNEL, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008446 if (!se)
Phil Carmodydfc12eb2009-12-10 14:29:37 +02008447 goto err_free_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008448
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02008449 init_cfs_rq(cfs_rq);
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08008450 init_tg_cfs_entry(tg, cfs_rq, se, i, parent->se[i]);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008451 }
8452
8453 return 1;
8454
Peter Zijlstra49246272010-10-17 21:46:10 +02008455err_free_rq:
Phil Carmodydfc12eb2009-12-10 14:29:37 +02008456 kfree(cfs_rq);
Peter Zijlstra49246272010-10-17 21:46:10 +02008457err:
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008458 return 0;
8459}
8460
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008461static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8462{
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08008463 struct rq *rq = cpu_rq(cpu);
8464 unsigned long flags;
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08008465
8466 /*
8467 * Only empty task groups can be destroyed; so we can speculatively
8468 * check on_list without danger of it being re-added.
8469 */
8470 if (!tg->cfs_rq[cpu]->on_list)
8471 return;
8472
8473 raw_spin_lock_irqsave(&rq->lock, flags);
Paul Turner822bc182010-11-29 16:55:40 -08008474 list_del_leaf_cfs_rq(tg->cfs_rq[cpu]);
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08008475 raw_spin_unlock_irqrestore(&rq->lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008476}
Jan Schoenherr5f817d62011-07-13 20:13:31 +02008477#else /* !CONFIG_FAIR_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008478static inline void free_fair_sched_group(struct task_group *tg)
8479{
8480}
8481
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008482static inline
8483int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008484{
8485 return 1;
8486}
8487
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008488static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8489{
8490}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008491#endif /* CONFIG_FAIR_GROUP_SCHED */
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008492
8493#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008494static void free_rt_sched_group(struct task_group *tg)
8495{
8496 int i;
8497
Bianca Lutz99bc5242011-07-13 20:13:36 +02008498 if (tg->rt_se)
8499 destroy_rt_bandwidth(&tg->rt_bandwidth);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008500
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008501 for_each_possible_cpu(i) {
8502 if (tg->rt_rq)
8503 kfree(tg->rt_rq[i]);
8504 if (tg->rt_se)
8505 kfree(tg->rt_se[i]);
8506 }
8507
8508 kfree(tg->rt_rq);
8509 kfree(tg->rt_se);
8510}
8511
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008512static
8513int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008514{
8515 struct rt_rq *rt_rq;
Li Zefaneab17222008-10-29 17:03:22 +08008516 struct sched_rt_entity *rt_se;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008517 int i;
8518
Mike Travis434d53b2008-04-04 18:11:04 -07008519 tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008520 if (!tg->rt_rq)
8521 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008522 tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008523 if (!tg->rt_se)
8524 goto err;
8525
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008526 init_rt_bandwidth(&tg->rt_bandwidth,
8527 ktime_to_ns(def_rt_bandwidth.rt_period), 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008528
8529 for_each_possible_cpu(i) {
Li Zefaneab17222008-10-29 17:03:22 +08008530 rt_rq = kzalloc_node(sizeof(struct rt_rq),
8531 GFP_KERNEL, cpu_to_node(i));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008532 if (!rt_rq)
8533 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008534
Li Zefaneab17222008-10-29 17:03:22 +08008535 rt_se = kzalloc_node(sizeof(struct sched_rt_entity),
8536 GFP_KERNEL, cpu_to_node(i));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008537 if (!rt_se)
Phil Carmodydfc12eb2009-12-10 14:29:37 +02008538 goto err_free_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008539
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02008540 init_rt_rq(rt_rq, cpu_rq(i));
8541 rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08008542 init_tg_rt_entry(tg, rt_rq, rt_se, i, parent->rt_se[i]);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008543 }
8544
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008545 return 1;
8546
Peter Zijlstra49246272010-10-17 21:46:10 +02008547err_free_rq:
Phil Carmodydfc12eb2009-12-10 14:29:37 +02008548 kfree(rt_rq);
Peter Zijlstra49246272010-10-17 21:46:10 +02008549err:
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008550 return 0;
8551}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008552#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008553static inline void free_rt_sched_group(struct task_group *tg)
8554{
8555}
8556
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008557static inline
8558int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008559{
8560 return 1;
8561}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008562#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008563
Dhaval Giani7c941432010-01-20 13:26:18 +01008564#ifdef CONFIG_CGROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008565static void free_sched_group(struct task_group *tg)
8566{
8567 free_fair_sched_group(tg);
8568 free_rt_sched_group(tg);
Mike Galbraithe9aa1dd2011-01-05 11:11:25 +01008569 autogroup_free(tg);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008570 kfree(tg);
8571}
8572
8573/* allocate runqueue etc for a new task group */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008574struct task_group *sched_create_group(struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008575{
8576 struct task_group *tg;
8577 unsigned long flags;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008578
8579 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
8580 if (!tg)
8581 return ERR_PTR(-ENOMEM);
8582
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008583 if (!alloc_fair_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008584 goto err;
8585
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008586 if (!alloc_rt_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008587 goto err;
8588
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008589 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008590 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008591
8592 WARN_ON(!parent); /* root should already exist */
8593
8594 tg->parent = parent;
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008595 INIT_LIST_HEAD(&tg->children);
Zhang, Yanmin09f27242030-08-14 15:56:40 +08008596 list_add_rcu(&tg->siblings, &parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008597 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008598
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008599 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008600
8601err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008602 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008603 return ERR_PTR(-ENOMEM);
8604}
8605
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008606/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008607static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008608{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008609 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008610 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008611}
8612
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008613/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008614void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008615{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008616 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008617 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008618
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08008619 /* end participation in shares distribution */
8620 for_each_possible_cpu(i)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008621 unregister_fair_sched_group(tg, i);
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08008622
8623 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008624 list_del_rcu(&tg->list);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008625 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008626 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008627
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008628 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008629 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008630}
8631
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008632/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02008633 * The caller of this function should have put the task in its new group
8634 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
8635 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008636 */
8637void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008638{
8639 int on_rq, running;
8640 unsigned long flags;
8641 struct rq *rq;
8642
8643 rq = task_rq_lock(tsk, &flags);
8644
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01008645 running = task_current(rq, tsk);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02008646 on_rq = tsk->on_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008647
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008648 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008649 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008650 if (unlikely(running))
8651 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008652
Peter Zijlstra810b3812008-02-29 15:21:01 -05008653#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstrab2b5ce02010-10-15 15:24:15 +02008654 if (tsk->sched_class->task_move_group)
8655 tsk->sched_class->task_move_group(tsk, on_rq);
8656 else
Peter Zijlstra810b3812008-02-29 15:21:01 -05008657#endif
Peter Zijlstrab2b5ce02010-10-15 15:24:15 +02008658 set_task_rq(tsk, task_cpu(tsk));
Peter Zijlstra810b3812008-02-29 15:21:01 -05008659
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008660 if (unlikely(running))
8661 tsk->sched_class->set_curr_task(rq);
8662 if (on_rq)
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01008663 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008664
Peter Zijlstra0122ec52011-04-05 17:23:51 +02008665 task_rq_unlock(rq, tsk, &flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008666}
Dhaval Giani7c941432010-01-20 13:26:18 +01008667#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008668
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008669#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008670static DEFINE_MUTEX(shares_mutex);
8671
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008672int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008673{
8674 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008675 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +01008676
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008677 /*
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008678 * We can't change the weight of the root cgroup.
8679 */
8680 if (!tg->se[0])
8681 return -EINVAL;
8682
Mike Galbraithcd622872011-06-04 15:03:20 +02008683 shares = clamp(shares, scale_load(MIN_SHARES), scale_load(MAX_SHARES));
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008684
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008685 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008686 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008687 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008688
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008689 tg->shares = shares;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008690 for_each_possible_cpu(i) {
Paul Turner94371782010-11-15 15:47:10 -08008691 struct rq *rq = cpu_rq(i);
8692 struct sched_entity *se;
8693
8694 se = tg->se[i];
8695 /* Propagate contribution to hierarchy */
8696 raw_spin_lock_irqsave(&rq->lock, flags);
8697 for_each_sched_entity(se)
Paul Turner6d5ab292011-01-21 20:45:01 -08008698 update_cfs_shares(group_cfs_rq(se));
Paul Turner94371782010-11-15 15:47:10 -08008699 raw_spin_unlock_irqrestore(&rq->lock, flags);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008700 }
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008701
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008702done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008703 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008704 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008705}
8706
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008707unsigned long sched_group_shares(struct task_group *tg)
8708{
8709 return tg->shares;
8710}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008711#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008712
Paul Turnera790de92011-07-21 09:43:29 -07008713#if defined(CONFIG_RT_GROUP_SCHED) || defined(CONFIG_CFS_BANDWIDTH)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008714static unsigned long to_ratio(u64 period, u64 runtime)
8715{
8716 if (runtime == RUNTIME_INF)
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008717 return 1ULL << 20;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008718
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008719 return div64_u64(runtime << 20, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008720}
Paul Turnera790de92011-07-21 09:43:29 -07008721#endif
8722
8723#ifdef CONFIG_RT_GROUP_SCHED
8724/*
8725 * Ensure that the real time constraints are schedulable.
8726 */
8727static DEFINE_MUTEX(rt_constraints_mutex);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008728
Dhaval Giani521f1a242008-02-28 15:21:56 +05308729/* Must be called with tasklist_lock held */
8730static inline int tg_has_rt_tasks(struct task_group *tg)
8731{
8732 struct task_struct *g, *p;
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008733
Dhaval Giani521f1a242008-02-28 15:21:56 +05308734 do_each_thread(g, p) {
8735 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
8736 return 1;
8737 } while_each_thread(g, p);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008738
Dhaval Giani521f1a242008-02-28 15:21:56 +05308739 return 0;
8740}
8741
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008742struct rt_schedulable_data {
8743 struct task_group *tg;
8744 u64 rt_period;
8745 u64 rt_runtime;
8746};
8747
Paul Turnera790de92011-07-21 09:43:29 -07008748static int tg_rt_schedulable(struct task_group *tg, void *data)
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008749{
8750 struct rt_schedulable_data *d = data;
8751 struct task_group *child;
8752 unsigned long total, sum = 0;
8753 u64 period, runtime;
8754
8755 period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8756 runtime = tg->rt_bandwidth.rt_runtime;
8757
8758 if (tg == d->tg) {
8759 period = d->rt_period;
8760 runtime = d->rt_runtime;
8761 }
8762
Peter Zijlstra4653f802008-09-23 15:33:44 +02008763 /*
8764 * Cannot have more runtime than the period.
8765 */
8766 if (runtime > period && runtime != RUNTIME_INF)
8767 return -EINVAL;
8768
8769 /*
8770 * Ensure we don't starve existing RT tasks.
8771 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008772 if (rt_bandwidth_enabled() && !runtime && tg_has_rt_tasks(tg))
8773 return -EBUSY;
8774
8775 total = to_ratio(period, runtime);
8776
Peter Zijlstra4653f802008-09-23 15:33:44 +02008777 /*
8778 * Nobody can have more than the global setting allows.
8779 */
8780 if (total > to_ratio(global_rt_period(), global_rt_runtime()))
8781 return -EINVAL;
8782
8783 /*
8784 * The sum of our children's runtime should not exceed our own.
8785 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008786 list_for_each_entry_rcu(child, &tg->children, siblings) {
8787 period = ktime_to_ns(child->rt_bandwidth.rt_period);
8788 runtime = child->rt_bandwidth.rt_runtime;
8789
8790 if (child == d->tg) {
8791 period = d->rt_period;
8792 runtime = d->rt_runtime;
8793 }
8794
8795 sum += to_ratio(period, runtime);
8796 }
8797
8798 if (sum > total)
8799 return -EINVAL;
8800
8801 return 0;
8802}
8803
8804static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
8805{
8806 struct rt_schedulable_data data = {
8807 .tg = tg,
8808 .rt_period = period,
8809 .rt_runtime = runtime,
8810 };
8811
Paul Turnera790de92011-07-21 09:43:29 -07008812 return walk_tg_tree(tg_rt_schedulable, tg_nop, &data);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008813}
8814
Paul Turnerab84d312011-07-21 09:43:28 -07008815static int tg_set_rt_bandwidth(struct task_group *tg,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008816 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008817{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008818 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008819
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008820 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05308821 read_lock(&tasklist_lock);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008822 err = __rt_schedulable(tg, rt_period, rt_runtime);
8823 if (err)
Dhaval Giani521f1a242008-02-28 15:21:56 +05308824 goto unlock;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008825
Thomas Gleixner0986b112009-11-17 15:32:06 +01008826 raw_spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008827 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
8828 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008829
8830 for_each_possible_cpu(i) {
8831 struct rt_rq *rt_rq = tg->rt_rq[i];
8832
Thomas Gleixner0986b112009-11-17 15:32:06 +01008833 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008834 rt_rq->rt_runtime = rt_runtime;
Thomas Gleixner0986b112009-11-17 15:32:06 +01008835 raw_spin_unlock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008836 }
Thomas Gleixner0986b112009-11-17 15:32:06 +01008837 raw_spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra49246272010-10-17 21:46:10 +02008838unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05308839 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008840 mutex_unlock(&rt_constraints_mutex);
8841
8842 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008843}
8844
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008845int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
8846{
8847 u64 rt_runtime, rt_period;
8848
8849 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8850 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
8851 if (rt_runtime_us < 0)
8852 rt_runtime = RUNTIME_INF;
8853
Paul Turnerab84d312011-07-21 09:43:28 -07008854 return tg_set_rt_bandwidth(tg, rt_period, rt_runtime);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008855}
8856
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008857long sched_group_rt_runtime(struct task_group *tg)
8858{
8859 u64 rt_runtime_us;
8860
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008861 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008862 return -1;
8863
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008864 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008865 do_div(rt_runtime_us, NSEC_PER_USEC);
8866 return rt_runtime_us;
8867}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008868
8869int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
8870{
8871 u64 rt_runtime, rt_period;
8872
8873 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
8874 rt_runtime = tg->rt_bandwidth.rt_runtime;
8875
Raistlin619b0482008-06-26 18:54:09 +02008876 if (rt_period == 0)
8877 return -EINVAL;
8878
Paul Turnerab84d312011-07-21 09:43:28 -07008879 return tg_set_rt_bandwidth(tg, rt_period, rt_runtime);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008880}
8881
8882long sched_group_rt_period(struct task_group *tg)
8883{
8884 u64 rt_period_us;
8885
8886 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
8887 do_div(rt_period_us, NSEC_PER_USEC);
8888 return rt_period_us;
8889}
8890
8891static int sched_rt_global_constraints(void)
8892{
Peter Zijlstra4653f802008-09-23 15:33:44 +02008893 u64 runtime, period;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008894 int ret = 0;
8895
Hiroshi Shimamotoec5d4982008-09-10 17:00:19 -07008896 if (sysctl_sched_rt_period <= 0)
8897 return -EINVAL;
8898
Peter Zijlstra4653f802008-09-23 15:33:44 +02008899 runtime = global_rt_runtime();
8900 period = global_rt_period();
8901
8902 /*
8903 * Sanity check on the sysctl variables.
8904 */
8905 if (runtime > period && runtime != RUNTIME_INF)
8906 return -EINVAL;
Peter Zijlstra10b612f2008-06-19 14:22:27 +02008907
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008908 mutex_lock(&rt_constraints_mutex);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008909 read_lock(&tasklist_lock);
Peter Zijlstra4653f802008-09-23 15:33:44 +02008910 ret = __rt_schedulable(NULL, 0, 0);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008911 read_unlock(&tasklist_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008912 mutex_unlock(&rt_constraints_mutex);
8913
8914 return ret;
8915}
Dhaval Giani54e99122009-02-27 15:13:54 +05308916
8917int sched_rt_can_attach(struct task_group *tg, struct task_struct *tsk)
8918{
8919 /* Don't accept realtime tasks when there is no way for them to run */
8920 if (rt_task(tsk) && tg->rt_bandwidth.rt_runtime == 0)
8921 return 0;
8922
8923 return 1;
8924}
8925
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008926#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008927static int sched_rt_global_constraints(void)
8928{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008929 unsigned long flags;
8930 int i;
8931
Hiroshi Shimamotoec5d4982008-09-10 17:00:19 -07008932 if (sysctl_sched_rt_period <= 0)
8933 return -EINVAL;
8934
Peter Zijlstra60aa6052009-05-05 17:50:21 +02008935 /*
8936 * There's always some RT tasks in the root group
8937 * -- migration, kstopmachine etc..
8938 */
8939 if (sysctl_sched_rt_runtime == 0)
8940 return -EBUSY;
8941
Thomas Gleixner0986b112009-11-17 15:32:06 +01008942 raw_spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008943 for_each_possible_cpu(i) {
8944 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
8945
Thomas Gleixner0986b112009-11-17 15:32:06 +01008946 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008947 rt_rq->rt_runtime = global_rt_runtime();
Thomas Gleixner0986b112009-11-17 15:32:06 +01008948 raw_spin_unlock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008949 }
Thomas Gleixner0986b112009-11-17 15:32:06 +01008950 raw_spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008951
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008952 return 0;
8953}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008954#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008955
8956int sched_rt_handler(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07008957 void __user *buffer, size_t *lenp,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008958 loff_t *ppos)
8959{
8960 int ret;
8961 int old_period, old_runtime;
8962 static DEFINE_MUTEX(mutex);
8963
8964 mutex_lock(&mutex);
8965 old_period = sysctl_sched_rt_period;
8966 old_runtime = sysctl_sched_rt_runtime;
8967
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07008968 ret = proc_dointvec(table, write, buffer, lenp, ppos);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008969
8970 if (!ret && write) {
8971 ret = sched_rt_global_constraints();
8972 if (ret) {
8973 sysctl_sched_rt_period = old_period;
8974 sysctl_sched_rt_runtime = old_runtime;
8975 } else {
8976 def_rt_bandwidth.rt_runtime = global_rt_runtime();
8977 def_rt_bandwidth.rt_period =
8978 ns_to_ktime(global_rt_period());
8979 }
8980 }
8981 mutex_unlock(&mutex);
8982
8983 return ret;
8984}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008985
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008986#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008987
8988/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02008989static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008990{
Paul Menage2b01dfe2007-10-24 18:23:50 +02008991 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
8992 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008993}
8994
8995static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02008996cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008997{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008998 struct task_group *tg, *parent;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07008999
Paul Menage2b01dfe2007-10-24 18:23:50 +02009000 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009001 /* This is early initialization for the top cgroup */
Yong Zhang07e06b02011-01-07 15:17:36 +08009002 return &root_task_group.css;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009003 }
9004
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009005 parent = cgroup_tg(cgrp->parent);
9006 tg = sched_create_group(parent);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009007 if (IS_ERR(tg))
9008 return ERR_PTR(-ENOMEM);
9009
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009010 return &tg->css;
9011}
9012
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009013static void
9014cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009015{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009016 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009017
9018 sched_destroy_group(tg);
9019}
9020
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009021static int
Ben Blumbe367d02009-09-23 15:56:31 -07009022cpu_cgroup_can_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009023{
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009024#ifdef CONFIG_RT_GROUP_SCHED
Dhaval Giani54e99122009-02-27 15:13:54 +05309025 if (!sched_rt_can_attach(cgroup_tg(cgrp), tsk))
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009026 return -EINVAL;
9027#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009028 /* We don't support RT-tasks being in separate groups */
9029 if (tsk->sched_class != &fair_sched_class)
9030 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009031#endif
Ben Blumbe367d02009-09-23 15:56:31 -07009032 return 0;
9033}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009034
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009035static void
Ben Blumf780bdb2011-05-26 16:25:19 -07009036cpu_cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009037{
9038 sched_move_task(tsk);
9039}
9040
Peter Zijlstra068c5cc2011-01-19 12:26:11 +01009041static void
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01009042cpu_cgroup_exit(struct cgroup_subsys *ss, struct cgroup *cgrp,
9043 struct cgroup *old_cgrp, struct task_struct *task)
Peter Zijlstra068c5cc2011-01-19 12:26:11 +01009044{
9045 /*
9046 * cgroup_exit() is called in the copy_process() failure path.
9047 * Ignore this case since the task hasn't ran yet, this avoids
9048 * trying to poke a half freed task state from generic code.
9049 */
9050 if (!(task->flags & PF_EXITING))
9051 return;
9052
9053 sched_move_task(task);
9054}
9055
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009056#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagef4c753b2008-04-29 00:59:56 -07009057static int cpu_shares_write_u64(struct cgroup *cgrp, struct cftype *cftype,
Paul Menage2b01dfe2007-10-24 18:23:50 +02009058 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009059{
Nikhil Raoc8b28112011-05-18 14:37:48 -07009060 return sched_group_set_shares(cgroup_tg(cgrp), scale_load(shareval));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009061}
9062
Paul Menagef4c753b2008-04-29 00:59:56 -07009063static u64 cpu_shares_read_u64(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009064{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009065 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009066
Nikhil Raoc8b28112011-05-18 14:37:48 -07009067 return (u64) scale_load_down(tg->shares);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009068}
Paul Turnerab84d312011-07-21 09:43:28 -07009069
9070#ifdef CONFIG_CFS_BANDWIDTH
Paul Turnera790de92011-07-21 09:43:29 -07009071static DEFINE_MUTEX(cfs_constraints_mutex);
9072
Paul Turnerab84d312011-07-21 09:43:28 -07009073const u64 max_cfs_quota_period = 1 * NSEC_PER_SEC; /* 1s */
9074const u64 min_cfs_quota_period = 1 * NSEC_PER_MSEC; /* 1ms */
9075
Paul Turnera790de92011-07-21 09:43:29 -07009076static int __cfs_schedulable(struct task_group *tg, u64 period, u64 runtime);
9077
Paul Turnerab84d312011-07-21 09:43:28 -07009078static int tg_set_cfs_bandwidth(struct task_group *tg, u64 period, u64 quota)
9079{
Paul Turnera790de92011-07-21 09:43:29 -07009080 int i, ret = 0;
Paul Turnerab84d312011-07-21 09:43:28 -07009081 struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(tg);
Paul Turnerab84d312011-07-21 09:43:28 -07009082
9083 if (tg == &root_task_group)
9084 return -EINVAL;
9085
9086 /*
9087 * Ensure we have at some amount of bandwidth every period. This is
9088 * to prevent reaching a state of large arrears when throttled via
9089 * entity_tick() resulting in prolonged exit starvation.
9090 */
9091 if (quota < min_cfs_quota_period || period < min_cfs_quota_period)
9092 return -EINVAL;
9093
9094 /*
9095 * Likewise, bound things on the otherside by preventing insane quota
9096 * periods. This also allows us to normalize in computing quota
9097 * feasibility.
9098 */
9099 if (period > max_cfs_quota_period)
9100 return -EINVAL;
9101
Paul Turnera790de92011-07-21 09:43:29 -07009102 mutex_lock(&cfs_constraints_mutex);
9103 ret = __cfs_schedulable(tg, period, quota);
9104 if (ret)
9105 goto out_unlock;
9106
Paul Turnerab84d312011-07-21 09:43:28 -07009107 raw_spin_lock_irq(&cfs_b->lock);
9108 cfs_b->period = ns_to_ktime(period);
9109 cfs_b->quota = quota;
9110 raw_spin_unlock_irq(&cfs_b->lock);
9111
9112 for_each_possible_cpu(i) {
9113 struct cfs_rq *cfs_rq = tg->cfs_rq[i];
9114 struct rq *rq = rq_of(cfs_rq);
9115
9116 raw_spin_lock_irq(&rq->lock);
9117 cfs_rq->runtime_enabled = quota != RUNTIME_INF;
9118 cfs_rq->runtime_remaining = 0;
9119 raw_spin_unlock_irq(&rq->lock);
9120 }
Paul Turnera790de92011-07-21 09:43:29 -07009121out_unlock:
9122 mutex_unlock(&cfs_constraints_mutex);
Paul Turnerab84d312011-07-21 09:43:28 -07009123
Paul Turnera790de92011-07-21 09:43:29 -07009124 return ret;
Paul Turnerab84d312011-07-21 09:43:28 -07009125}
9126
9127int tg_set_cfs_quota(struct task_group *tg, long cfs_quota_us)
9128{
9129 u64 quota, period;
9130
9131 period = ktime_to_ns(tg_cfs_bandwidth(tg)->period);
9132 if (cfs_quota_us < 0)
9133 quota = RUNTIME_INF;
9134 else
9135 quota = (u64)cfs_quota_us * NSEC_PER_USEC;
9136
9137 return tg_set_cfs_bandwidth(tg, period, quota);
9138}
9139
9140long tg_get_cfs_quota(struct task_group *tg)
9141{
9142 u64 quota_us;
9143
9144 if (tg_cfs_bandwidth(tg)->quota == RUNTIME_INF)
9145 return -1;
9146
9147 quota_us = tg_cfs_bandwidth(tg)->quota;
9148 do_div(quota_us, NSEC_PER_USEC);
9149
9150 return quota_us;
9151}
9152
9153int tg_set_cfs_period(struct task_group *tg, long cfs_period_us)
9154{
9155 u64 quota, period;
9156
9157 period = (u64)cfs_period_us * NSEC_PER_USEC;
9158 quota = tg_cfs_bandwidth(tg)->quota;
9159
9160 if (period <= 0)
9161 return -EINVAL;
9162
9163 return tg_set_cfs_bandwidth(tg, period, quota);
9164}
9165
9166long tg_get_cfs_period(struct task_group *tg)
9167{
9168 u64 cfs_period_us;
9169
9170 cfs_period_us = ktime_to_ns(tg_cfs_bandwidth(tg)->period);
9171 do_div(cfs_period_us, NSEC_PER_USEC);
9172
9173 return cfs_period_us;
9174}
9175
9176static s64 cpu_cfs_quota_read_s64(struct cgroup *cgrp, struct cftype *cft)
9177{
9178 return tg_get_cfs_quota(cgroup_tg(cgrp));
9179}
9180
9181static int cpu_cfs_quota_write_s64(struct cgroup *cgrp, struct cftype *cftype,
9182 s64 cfs_quota_us)
9183{
9184 return tg_set_cfs_quota(cgroup_tg(cgrp), cfs_quota_us);
9185}
9186
9187static u64 cpu_cfs_period_read_u64(struct cgroup *cgrp, struct cftype *cft)
9188{
9189 return tg_get_cfs_period(cgroup_tg(cgrp));
9190}
9191
9192static int cpu_cfs_period_write_u64(struct cgroup *cgrp, struct cftype *cftype,
9193 u64 cfs_period_us)
9194{
9195 return tg_set_cfs_period(cgroup_tg(cgrp), cfs_period_us);
9196}
9197
Paul Turnera790de92011-07-21 09:43:29 -07009198struct cfs_schedulable_data {
9199 struct task_group *tg;
9200 u64 period, quota;
9201};
9202
9203/*
9204 * normalize group quota/period to be quota/max_period
9205 * note: units are usecs
9206 */
9207static u64 normalize_cfs_quota(struct task_group *tg,
9208 struct cfs_schedulable_data *d)
9209{
9210 u64 quota, period;
9211
9212 if (tg == d->tg) {
9213 period = d->period;
9214 quota = d->quota;
9215 } else {
9216 period = tg_get_cfs_period(tg);
9217 quota = tg_get_cfs_quota(tg);
9218 }
9219
9220 /* note: these should typically be equivalent */
9221 if (quota == RUNTIME_INF || quota == -1)
9222 return RUNTIME_INF;
9223
9224 return to_ratio(period, quota);
9225}
9226
9227static int tg_cfs_schedulable_down(struct task_group *tg, void *data)
9228{
9229 struct cfs_schedulable_data *d = data;
9230 struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(tg);
9231 s64 quota = 0, parent_quota = -1;
9232
9233 if (!tg->parent) {
9234 quota = RUNTIME_INF;
9235 } else {
9236 struct cfs_bandwidth *parent_b = tg_cfs_bandwidth(tg->parent);
9237
9238 quota = normalize_cfs_quota(tg, d);
9239 parent_quota = parent_b->hierarchal_quota;
9240
9241 /*
9242 * ensure max(child_quota) <= parent_quota, inherit when no
9243 * limit is set
9244 */
9245 if (quota == RUNTIME_INF)
9246 quota = parent_quota;
9247 else if (parent_quota != RUNTIME_INF && quota > parent_quota)
9248 return -EINVAL;
9249 }
9250 cfs_b->hierarchal_quota = quota;
9251
9252 return 0;
9253}
9254
9255static int __cfs_schedulable(struct task_group *tg, u64 period, u64 quota)
9256{
9257 struct cfs_schedulable_data data = {
9258 .tg = tg,
9259 .period = period,
9260 .quota = quota,
9261 };
9262
9263 if (quota != RUNTIME_INF) {
9264 do_div(data.period, NSEC_PER_USEC);
9265 do_div(data.quota, NSEC_PER_USEC);
9266 }
9267
9268 return walk_tg_tree(tg_cfs_schedulable_down, tg_nop, &data);
9269}
Paul Turnerab84d312011-07-21 09:43:28 -07009270#endif /* CONFIG_CFS_BANDWIDTH */
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009271#endif /* CONFIG_FAIR_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009272
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009273#ifdef CONFIG_RT_GROUP_SCHED
Mirco Tischler0c708142008-05-14 16:05:46 -07009274static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
Paul Menage06ecb272008-04-29 01:00:06 -07009275 s64 val)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009276{
Paul Menage06ecb272008-04-29 01:00:06 -07009277 return sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009278}
9279
Paul Menage06ecb272008-04-29 01:00:06 -07009280static s64 cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009281{
Paul Menage06ecb272008-04-29 01:00:06 -07009282 return sched_group_rt_runtime(cgroup_tg(cgrp));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009283}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009284
9285static int cpu_rt_period_write_uint(struct cgroup *cgrp, struct cftype *cftype,
9286 u64 rt_period_us)
9287{
9288 return sched_group_set_rt_period(cgroup_tg(cgrp), rt_period_us);
9289}
9290
9291static u64 cpu_rt_period_read_uint(struct cgroup *cgrp, struct cftype *cft)
9292{
9293 return sched_group_rt_period(cgroup_tg(cgrp));
9294}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009295#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009296
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009297static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009298#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009299 {
9300 .name = "shares",
Paul Menagef4c753b2008-04-29 00:59:56 -07009301 .read_u64 = cpu_shares_read_u64,
9302 .write_u64 = cpu_shares_write_u64,
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009303 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009304#endif
Paul Turnerab84d312011-07-21 09:43:28 -07009305#ifdef CONFIG_CFS_BANDWIDTH
9306 {
9307 .name = "cfs_quota_us",
9308 .read_s64 = cpu_cfs_quota_read_s64,
9309 .write_s64 = cpu_cfs_quota_write_s64,
9310 },
9311 {
9312 .name = "cfs_period_us",
9313 .read_u64 = cpu_cfs_period_read_u64,
9314 .write_u64 = cpu_cfs_period_write_u64,
9315 },
9316#endif
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009317#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009318 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009319 .name = "rt_runtime_us",
Paul Menage06ecb272008-04-29 01:00:06 -07009320 .read_s64 = cpu_rt_runtime_read,
9321 .write_s64 = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009322 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009323 {
9324 .name = "rt_period_us",
Paul Menagef4c753b2008-04-29 00:59:56 -07009325 .read_u64 = cpu_rt_period_read_uint,
9326 .write_u64 = cpu_rt_period_write_uint,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009327 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009328#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009329};
9330
9331static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
9332{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009333 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009334}
9335
9336struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01009337 .name = "cpu",
9338 .create = cpu_cgroup_create,
9339 .destroy = cpu_cgroup_destroy,
Ben Blumf780bdb2011-05-26 16:25:19 -07009340 .can_attach_task = cpu_cgroup_can_attach_task,
9341 .attach_task = cpu_cgroup_attach_task,
Peter Zijlstra068c5cc2011-01-19 12:26:11 +01009342 .exit = cpu_cgroup_exit,
Ingo Molnar38605ca2007-10-29 21:18:11 +01009343 .populate = cpu_cgroup_populate,
9344 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009345 .early_init = 1,
9346};
9347
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009348#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009349
9350#ifdef CONFIG_CGROUP_CPUACCT
9351
9352/*
9353 * CPU accounting code for task groups.
9354 *
9355 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
9356 * (balbir@in.ibm.com).
9357 */
9358
Bharata B Rao934352f2008-11-10 20:41:13 +05309359/* track cpu usage of a group of tasks and its child groups */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009360struct cpuacct {
9361 struct cgroup_subsys_state css;
9362 /* cpuusage holds pointer to a u64-type object on every cpu */
Tejun Heo43cf38e2010-02-02 14:38:57 +09009363 u64 __percpu *cpuusage;
Bharata B Raoef12fef2009-03-31 10:02:22 +05309364 struct percpu_counter cpustat[CPUACCT_STAT_NSTATS];
Bharata B Rao934352f2008-11-10 20:41:13 +05309365 struct cpuacct *parent;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009366};
9367
9368struct cgroup_subsys cpuacct_subsys;
9369
9370/* return cpu accounting group corresponding to this container */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309371static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009372{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309373 return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id),
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009374 struct cpuacct, css);
9375}
9376
9377/* return cpu accounting group to which this task belongs */
9378static inline struct cpuacct *task_ca(struct task_struct *tsk)
9379{
9380 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
9381 struct cpuacct, css);
9382}
9383
9384/* create a new cpu accounting group */
9385static struct cgroup_subsys_state *cpuacct_create(
Dhaval Giani32cd7562008-02-29 10:02:43 +05309386 struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009387{
9388 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
Bharata B Raoef12fef2009-03-31 10:02:22 +05309389 int i;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009390
9391 if (!ca)
Bharata B Raoef12fef2009-03-31 10:02:22 +05309392 goto out;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009393
9394 ca->cpuusage = alloc_percpu(u64);
Bharata B Raoef12fef2009-03-31 10:02:22 +05309395 if (!ca->cpuusage)
9396 goto out_free_ca;
9397
9398 for (i = 0; i < CPUACCT_STAT_NSTATS; i++)
9399 if (percpu_counter_init(&ca->cpustat[i], 0))
9400 goto out_free_counters;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009401
Bharata B Rao934352f2008-11-10 20:41:13 +05309402 if (cgrp->parent)
9403 ca->parent = cgroup_ca(cgrp->parent);
9404
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009405 return &ca->css;
Bharata B Raoef12fef2009-03-31 10:02:22 +05309406
9407out_free_counters:
9408 while (--i >= 0)
9409 percpu_counter_destroy(&ca->cpustat[i]);
9410 free_percpu(ca->cpuusage);
9411out_free_ca:
9412 kfree(ca);
9413out:
9414 return ERR_PTR(-ENOMEM);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009415}
9416
9417/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009418static void
Dhaval Giani32cd7562008-02-29 10:02:43 +05309419cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009420{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309421 struct cpuacct *ca = cgroup_ca(cgrp);
Bharata B Raoef12fef2009-03-31 10:02:22 +05309422 int i;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009423
Bharata B Raoef12fef2009-03-31 10:02:22 +05309424 for (i = 0; i < CPUACCT_STAT_NSTATS; i++)
9425 percpu_counter_destroy(&ca->cpustat[i]);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009426 free_percpu(ca->cpuusage);
9427 kfree(ca);
9428}
9429
Ken Chen720f5492008-12-15 22:02:01 -08009430static u64 cpuacct_cpuusage_read(struct cpuacct *ca, int cpu)
9431{
Rusty Russellb36128c2009-02-20 16:29:08 +09009432 u64 *cpuusage = per_cpu_ptr(ca->cpuusage, cpu);
Ken Chen720f5492008-12-15 22:02:01 -08009433 u64 data;
9434
9435#ifndef CONFIG_64BIT
9436 /*
9437 * Take rq->lock to make 64-bit read safe on 32-bit platforms.
9438 */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01009439 raw_spin_lock_irq(&cpu_rq(cpu)->lock);
Ken Chen720f5492008-12-15 22:02:01 -08009440 data = *cpuusage;
Thomas Gleixner05fa7852009-11-17 14:28:38 +01009441 raw_spin_unlock_irq(&cpu_rq(cpu)->lock);
Ken Chen720f5492008-12-15 22:02:01 -08009442#else
9443 data = *cpuusage;
9444#endif
9445
9446 return data;
9447}
9448
9449static void cpuacct_cpuusage_write(struct cpuacct *ca, int cpu, u64 val)
9450{
Rusty Russellb36128c2009-02-20 16:29:08 +09009451 u64 *cpuusage = per_cpu_ptr(ca->cpuusage, cpu);
Ken Chen720f5492008-12-15 22:02:01 -08009452
9453#ifndef CONFIG_64BIT
9454 /*
9455 * Take rq->lock to make 64-bit write safe on 32-bit platforms.
9456 */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01009457 raw_spin_lock_irq(&cpu_rq(cpu)->lock);
Ken Chen720f5492008-12-15 22:02:01 -08009458 *cpuusage = val;
Thomas Gleixner05fa7852009-11-17 14:28:38 +01009459 raw_spin_unlock_irq(&cpu_rq(cpu)->lock);
Ken Chen720f5492008-12-15 22:02:01 -08009460#else
9461 *cpuusage = val;
9462#endif
9463}
9464
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009465/* return total cpu usage (in nanoseconds) of a group */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309466static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009467{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309468 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009469 u64 totalcpuusage = 0;
9470 int i;
9471
Ken Chen720f5492008-12-15 22:02:01 -08009472 for_each_present_cpu(i)
9473 totalcpuusage += cpuacct_cpuusage_read(ca, i);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009474
9475 return totalcpuusage;
9476}
9477
Dhaval Giani0297b802008-02-29 10:02:44 +05309478static int cpuusage_write(struct cgroup *cgrp, struct cftype *cftype,
9479 u64 reset)
9480{
9481 struct cpuacct *ca = cgroup_ca(cgrp);
9482 int err = 0;
9483 int i;
9484
9485 if (reset) {
9486 err = -EINVAL;
9487 goto out;
9488 }
9489
Ken Chen720f5492008-12-15 22:02:01 -08009490 for_each_present_cpu(i)
9491 cpuacct_cpuusage_write(ca, i, 0);
Dhaval Giani0297b802008-02-29 10:02:44 +05309492
Dhaval Giani0297b802008-02-29 10:02:44 +05309493out:
9494 return err;
9495}
9496
Ken Chene9515c32008-12-15 22:04:15 -08009497static int cpuacct_percpu_seq_read(struct cgroup *cgroup, struct cftype *cft,
9498 struct seq_file *m)
9499{
9500 struct cpuacct *ca = cgroup_ca(cgroup);
9501 u64 percpu;
9502 int i;
9503
9504 for_each_present_cpu(i) {
9505 percpu = cpuacct_cpuusage_read(ca, i);
9506 seq_printf(m, "%llu ", (unsigned long long) percpu);
9507 }
9508 seq_printf(m, "\n");
9509 return 0;
9510}
9511
Bharata B Raoef12fef2009-03-31 10:02:22 +05309512static const char *cpuacct_stat_desc[] = {
9513 [CPUACCT_STAT_USER] = "user",
9514 [CPUACCT_STAT_SYSTEM] = "system",
9515};
9516
9517static int cpuacct_stats_show(struct cgroup *cgrp, struct cftype *cft,
9518 struct cgroup_map_cb *cb)
9519{
9520 struct cpuacct *ca = cgroup_ca(cgrp);
9521 int i;
9522
9523 for (i = 0; i < CPUACCT_STAT_NSTATS; i++) {
9524 s64 val = percpu_counter_read(&ca->cpustat[i]);
9525 val = cputime64_to_clock_t(val);
9526 cb->fill(cb, cpuacct_stat_desc[i], val);
9527 }
9528 return 0;
9529}
9530
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009531static struct cftype files[] = {
9532 {
9533 .name = "usage",
Paul Menagef4c753b2008-04-29 00:59:56 -07009534 .read_u64 = cpuusage_read,
9535 .write_u64 = cpuusage_write,
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009536 },
Ken Chene9515c32008-12-15 22:04:15 -08009537 {
9538 .name = "usage_percpu",
9539 .read_seq_string = cpuacct_percpu_seq_read,
9540 },
Bharata B Raoef12fef2009-03-31 10:02:22 +05309541 {
9542 .name = "stat",
9543 .read_map = cpuacct_stats_show,
9544 },
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009545};
9546
Dhaval Giani32cd7562008-02-29 10:02:43 +05309547static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009548{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309549 return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files));
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009550}
9551
9552/*
9553 * charge this task's execution time to its accounting group.
9554 *
9555 * called with rq->lock held.
9556 */
9557static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
9558{
9559 struct cpuacct *ca;
Bharata B Rao934352f2008-11-10 20:41:13 +05309560 int cpu;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009561
Li Zefanc40c6f82009-02-26 15:40:15 +08009562 if (unlikely(!cpuacct_subsys.active))
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009563 return;
9564
Bharata B Rao934352f2008-11-10 20:41:13 +05309565 cpu = task_cpu(tsk);
Bharata B Raoa18b83b2009-03-23 10:02:53 +05309566
9567 rcu_read_lock();
9568
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009569 ca = task_ca(tsk);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009570
Bharata B Rao934352f2008-11-10 20:41:13 +05309571 for (; ca; ca = ca->parent) {
Rusty Russellb36128c2009-02-20 16:29:08 +09009572 u64 *cpuusage = per_cpu_ptr(ca->cpuusage, cpu);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009573 *cpuusage += cputime;
9574 }
Bharata B Raoa18b83b2009-03-23 10:02:53 +05309575
9576 rcu_read_unlock();
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009577}
9578
Bharata B Raoef12fef2009-03-31 10:02:22 +05309579/*
Anton Blanchardfa535a72010-02-02 14:46:13 -08009580 * When CONFIG_VIRT_CPU_ACCOUNTING is enabled one jiffy can be very large
9581 * in cputime_t units. As a result, cpuacct_update_stats calls
9582 * percpu_counter_add with values large enough to always overflow the
9583 * per cpu batch limit causing bad SMP scalability.
9584 *
9585 * To fix this we scale percpu_counter_batch by cputime_one_jiffy so we
9586 * batch the same amount of time with CONFIG_VIRT_CPU_ACCOUNTING disabled
9587 * and enabled. We cap it at INT_MAX which is the largest allowed batch value.
9588 */
9589#ifdef CONFIG_SMP
9590#define CPUACCT_BATCH \
9591 min_t(long, percpu_counter_batch * cputime_one_jiffy, INT_MAX)
9592#else
9593#define CPUACCT_BATCH 0
9594#endif
9595
9596/*
Bharata B Raoef12fef2009-03-31 10:02:22 +05309597 * Charge the system/user time to the task's accounting group.
9598 */
9599static void cpuacct_update_stats(struct task_struct *tsk,
9600 enum cpuacct_stat_index idx, cputime_t val)
9601{
9602 struct cpuacct *ca;
Anton Blanchardfa535a72010-02-02 14:46:13 -08009603 int batch = CPUACCT_BATCH;
Bharata B Raoef12fef2009-03-31 10:02:22 +05309604
9605 if (unlikely(!cpuacct_subsys.active))
9606 return;
9607
9608 rcu_read_lock();
9609 ca = task_ca(tsk);
9610
9611 do {
Anton Blanchardfa535a72010-02-02 14:46:13 -08009612 __percpu_counter_add(&ca->cpustat[idx], val, batch);
Bharata B Raoef12fef2009-03-31 10:02:22 +05309613 ca = ca->parent;
9614 } while (ca);
9615 rcu_read_unlock();
9616}
9617
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009618struct cgroup_subsys cpuacct_subsys = {
9619 .name = "cpuacct",
9620 .create = cpuacct_create,
9621 .destroy = cpuacct_destroy,
9622 .populate = cpuacct_populate,
9623 .subsys_id = cpuacct_subsys_id,
9624};
9625#endif /* CONFIG_CGROUP_CPUACCT */