blob: 044260a9418dcf911d431d0f83e813b13f91392a [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
Paul Turner58088ad2011-07-21 09:43:31 -0700199static void start_bandwidth_timer(struct hrtimer *period_timer, ktime_t period)
200{
201 unsigned long delta;
202 ktime_t soft, hard, now;
203
204 for (;;) {
205 if (hrtimer_active(period_timer))
206 break;
207
208 now = hrtimer_cb_get_time(period_timer);
209 hrtimer_forward(period_timer, now, period);
210
211 soft = hrtimer_get_softexpires(period_timer);
212 hard = hrtimer_get_expires(period_timer);
213 delta = ktime_to_ns(ktime_sub(hard, soft));
214 __hrtimer_start_range_ns(period_timer, soft, delta,
215 HRTIMER_MODE_ABS_PINNED, 0);
216 }
217}
218
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200219static void start_rt_bandwidth(struct rt_bandwidth *rt_b)
220{
Hiroshi Shimamotocac64d02009-02-25 09:59:26 -0800221 if (!rt_bandwidth_enabled() || rt_b->rt_runtime == RUNTIME_INF)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200222 return;
223
224 if (hrtimer_active(&rt_b->rt_period_timer))
225 return;
226
Thomas Gleixner0986b112009-11-17 15:32:06 +0100227 raw_spin_lock(&rt_b->rt_runtime_lock);
Paul Turner58088ad2011-07-21 09:43:31 -0700228 start_bandwidth_timer(&rt_b->rt_period_timer, rt_b->rt_period);
Thomas Gleixner0986b112009-11-17 15:32:06 +0100229 raw_spin_unlock(&rt_b->rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200230}
231
232#ifdef CONFIG_RT_GROUP_SCHED
233static void destroy_rt_bandwidth(struct rt_bandwidth *rt_b)
234{
235 hrtimer_cancel(&rt_b->rt_period_timer);
236}
237#endif
238
Heiko Carstens712555e2008-04-28 11:33:07 +0200239/*
Peter Zijlstrac4a88492011-04-07 14:09:42 +0200240 * sched_domains_mutex serializes calls to init_sched_domains,
Heiko Carstens712555e2008-04-28 11:33:07 +0200241 * detach_destroy_domains and partition_sched_domains.
242 */
243static DEFINE_MUTEX(sched_domains_mutex);
244
Dhaval Giani7c941432010-01-20 13:26:18 +0100245#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200246
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700247#include <linux/cgroup.h>
248
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200249struct cfs_rq;
250
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100251static LIST_HEAD(task_groups);
252
Paul Turnerab84d312011-07-21 09:43:28 -0700253struct cfs_bandwidth {
254#ifdef CONFIG_CFS_BANDWIDTH
255 raw_spinlock_t lock;
256 ktime_t period;
Paul Turnerec12cb72011-07-21 09:43:30 -0700257 u64 quota, runtime;
Paul Turnera790de92011-07-21 09:43:29 -0700258 s64 hierarchal_quota;
Paul Turnera9cf55b2011-07-21 09:43:32 -0700259 u64 runtime_expires;
Paul Turner58088ad2011-07-21 09:43:31 -0700260
261 int idle, timer_active;
262 struct hrtimer period_timer;
Paul Turner85dac902011-07-21 09:43:33 -0700263 struct list_head throttled_cfs_rq;
264
Paul Turnerab84d312011-07-21 09:43:28 -0700265#endif
266};
267
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200268/* task group related information */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200269struct task_group {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -0700270 struct cgroup_subsys_state css;
Arun R Bharadwaj6c415b92008-12-01 20:49:05 +0530271
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100272#ifdef CONFIG_FAIR_GROUP_SCHED
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200273 /* schedulable entities of this group on each cpu */
274 struct sched_entity **se;
275 /* runqueue "owned" by this group on each cpu */
276 struct cfs_rq **cfs_rq;
277 unsigned long shares;
Peter Zijlstra2069dd72010-11-15 15:47:00 -0800278
279 atomic_t load_weight;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100280#endif
281
282#ifdef CONFIG_RT_GROUP_SCHED
283 struct sched_rt_entity **rt_se;
284 struct rt_rq **rt_rq;
285
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200286 struct rt_bandwidth rt_bandwidth;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100287#endif
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +0100288
Srivatsa Vaddagiriae8393e2007-10-29 21:18:11 +0100289 struct rcu_head rcu;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100290 struct list_head list;
Peter Zijlstraf473aa52008-04-19 19:45:00 +0200291
292 struct task_group *parent;
293 struct list_head siblings;
294 struct list_head children;
Mike Galbraith5091faa2010-11-30 14:18:03 +0100295
296#ifdef CONFIG_SCHED_AUTOGROUP
297 struct autogroup *autogroup;
298#endif
Paul Turnerab84d312011-07-21 09:43:28 -0700299
300 struct cfs_bandwidth cfs_bandwidth;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200301};
302
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -0800303/* task_group_lock serializes the addition/removal of task groups */
Peter Zijlstra8ed36992008-02-13 15:45:39 +0100304static DEFINE_SPINLOCK(task_group_lock);
Srivatsa Vaddagiriec2c5072008-01-25 21:07:59 +0100305
Cyrill Gorcunove9036b32009-10-26 22:24:14 +0300306#ifdef CONFIG_FAIR_GROUP_SCHED
307
Yong Zhang07e06b02011-01-07 15:17:36 +0800308# define ROOT_TASK_GROUP_LOAD NICE_0_LOAD
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200309
Miao Xiecb4ad1f2008-04-28 12:54:56 +0800310/*
Lai Jiangshan2e084782008-06-12 16:42:58 +0800311 * A weight of 0 or 1 can cause arithmetics problems.
312 * A weight of a cfs_rq is the sum of weights of which entities
313 * are queued on this cfs_rq, so a weight of a entity should not be
314 * too large, so as the shares value of a task group.
Miao Xiecb4ad1f2008-04-28 12:54:56 +0800315 * (The default weight is 1024 - so there's no practical
316 * limitation from this.)
317 */
Mike Galbraithcd622872011-06-04 15:03:20 +0200318#define MIN_SHARES (1UL << 1)
319#define MAX_SHARES (1UL << 18)
Peter Zijlstra18d95a22008-04-19 19:45:00 +0200320
Yong Zhang07e06b02011-01-07 15:17:36 +0800321static int root_task_group_load = ROOT_TASK_GROUP_LOAD;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100322#endif
323
324/* Default task group.
325 * Every task in system belong to this group at bootup.
326 */
Yong Zhang07e06b02011-01-07 15:17:36 +0800327struct task_group root_task_group;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200328
Dhaval Giani7c941432010-01-20 13:26:18 +0100329#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200330
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200331/* CFS-related fields in a runqueue */
332struct cfs_rq {
333 struct load_weight load;
Paul Turner953bfcd2011-07-21 09:43:27 -0700334 unsigned long nr_running, h_nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200335
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200336 u64 exec_clock;
Ingo Molnare9acbff2007-10-15 17:00:04 +0200337 u64 min_vruntime;
Peter Zijlstra3fe16982011-04-05 17:23:48 +0200338#ifndef CONFIG_64BIT
339 u64 min_vruntime_copy;
340#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200341
342 struct rb_root tasks_timeline;
343 struct rb_node *rb_leftmost;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +0200344
345 struct list_head tasks;
346 struct list_head *balance_iterator;
347
348 /*
349 * 'curr' points to currently running entity on this cfs_rq.
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200350 * It is set to NULL otherwise (i.e when none are currently running).
351 */
Rik van Rielac53db52011-02-01 09:51:03 -0500352 struct sched_entity *curr, *next, *last, *skip;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200353
Rakib Mullick4934a4d2011-05-04 22:53:46 +0600354#ifdef CONFIG_SCHED_DEBUG
Peter Zijlstra5ac5c4d2008-11-10 10:46:32 +0100355 unsigned int nr_spread_over;
Rakib Mullick4934a4d2011-05-04 22:53:46 +0600356#endif
Peter Zijlstraddc97292007-10-15 17:00:10 +0200357
Ingo Molnar62160e32007-10-15 17:00:03 +0200358#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200359 struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */
360
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100361 /*
362 * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200363 * a hierarchy). Non-leaf lrqs hold other higher schedulable entities
364 * (like users, containers etc.)
365 *
366 * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This
367 * list is used during load balance.
368 */
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -0800369 int on_list;
Ingo Molnar41a2d6c2007-12-05 15:46:09 +0100370 struct list_head leaf_cfs_rq_list;
371 struct task_group *tg; /* group that "owns" this runqueue */
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200372
373#ifdef CONFIG_SMP
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200374 /*
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200375 * the part of load.weight contributed by tasks
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200376 */
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200377 unsigned long task_weight;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200378
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200379 /*
380 * h_load = weight * f(tg)
381 *
382 * Where f(tg) is the recursive weight fraction assigned to
383 * this group.
384 */
385 unsigned long h_load;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200386
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200387 /*
Paul Turner3b3d1902010-11-15 15:47:08 -0800388 * Maintaining per-cpu shares distribution for group scheduling
389 *
390 * load_stamp is the last time we updated the load average
391 * load_last is the last time we updated the load average and saw load
392 * load_unacc_exec_time is currently unaccounted execution time
Peter Zijlstrac8cba852008-06-27 13:41:23 +0200393 */
Peter Zijlstra2069dd72010-11-15 15:47:00 -0800394 u64 load_avg;
395 u64 load_period;
Paul Turner3b3d1902010-11-15 15:47:08 -0800396 u64 load_stamp, load_last, load_unacc_exec_time;
Peter Zijlstraf1d239f2008-06-27 13:41:38 +0200397
Peter Zijlstra2069dd72010-11-15 15:47:00 -0800398 unsigned long load_contribution;
Peter Zijlstrac09595f2008-06-27 13:41:14 +0200399#endif
Paul Turnerab84d312011-07-21 09:43:28 -0700400#ifdef CONFIG_CFS_BANDWIDTH
401 int runtime_enabled;
Paul Turnera9cf55b2011-07-21 09:43:32 -0700402 u64 runtime_expires;
Paul Turnerab84d312011-07-21 09:43:28 -0700403 s64 runtime_remaining;
Paul Turner85dac902011-07-21 09:43:33 -0700404
405 int throttled;
406 struct list_head throttled_list;
Paul Turnerab84d312011-07-21 09:43:28 -0700407#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200408#endif
409};
410
Paul Turnerab84d312011-07-21 09:43:28 -0700411#ifdef CONFIG_FAIR_GROUP_SCHED
412#ifdef CONFIG_CFS_BANDWIDTH
413static inline struct cfs_bandwidth *tg_cfs_bandwidth(struct task_group *tg)
414{
415 return &tg->cfs_bandwidth;
416}
417
418static inline u64 default_cfs_period(void);
Paul Turner58088ad2011-07-21 09:43:31 -0700419static int do_sched_cfs_period_timer(struct cfs_bandwidth *cfs_b, int overrun);
420
421static enum hrtimer_restart sched_cfs_period_timer(struct hrtimer *timer)
422{
423 struct cfs_bandwidth *cfs_b =
424 container_of(timer, struct cfs_bandwidth, period_timer);
425 ktime_t now;
426 int overrun;
427 int idle = 0;
428
429 for (;;) {
430 now = hrtimer_cb_get_time(timer);
431 overrun = hrtimer_forward(timer, now, cfs_b->period);
432
433 if (!overrun)
434 break;
435
436 idle = do_sched_cfs_period_timer(cfs_b, overrun);
437 }
438
439 return idle ? HRTIMER_NORESTART : HRTIMER_RESTART;
440}
Paul Turnerab84d312011-07-21 09:43:28 -0700441
442static void init_cfs_bandwidth(struct cfs_bandwidth *cfs_b)
443{
444 raw_spin_lock_init(&cfs_b->lock);
Paul Turnerec12cb72011-07-21 09:43:30 -0700445 cfs_b->runtime = 0;
Paul Turnerab84d312011-07-21 09:43:28 -0700446 cfs_b->quota = RUNTIME_INF;
447 cfs_b->period = ns_to_ktime(default_cfs_period());
Paul Turner58088ad2011-07-21 09:43:31 -0700448
Paul Turner85dac902011-07-21 09:43:33 -0700449 INIT_LIST_HEAD(&cfs_b->throttled_cfs_rq);
Paul Turner58088ad2011-07-21 09:43:31 -0700450 hrtimer_init(&cfs_b->period_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
451 cfs_b->period_timer.function = sched_cfs_period_timer;
Paul Turnerab84d312011-07-21 09:43:28 -0700452}
453
454static void init_cfs_rq_runtime(struct cfs_rq *cfs_rq)
455{
456 cfs_rq->runtime_enabled = 0;
Paul Turner85dac902011-07-21 09:43:33 -0700457 INIT_LIST_HEAD(&cfs_rq->throttled_list);
Paul Turnerab84d312011-07-21 09:43:28 -0700458}
459
Paul Turner58088ad2011-07-21 09:43:31 -0700460/* requires cfs_b->lock, may release to reprogram timer */
461static void __start_cfs_bandwidth(struct cfs_bandwidth *cfs_b)
462{
463 /*
464 * The timer may be active because we're trying to set a new bandwidth
465 * period or because we're racing with the tear-down path
466 * (timer_active==0 becomes visible before the hrtimer call-back
467 * terminates). In either case we ensure that it's re-programmed
468 */
469 while (unlikely(hrtimer_active(&cfs_b->period_timer))) {
470 raw_spin_unlock(&cfs_b->lock);
471 /* ensure cfs_b->lock is available while we wait */
472 hrtimer_cancel(&cfs_b->period_timer);
473
474 raw_spin_lock(&cfs_b->lock);
475 /* if someone else restarted the timer then we're done */
476 if (cfs_b->timer_active)
477 return;
478 }
479
480 cfs_b->timer_active = 1;
481 start_bandwidth_timer(&cfs_b->period_timer, cfs_b->period);
482}
483
Paul Turnerab84d312011-07-21 09:43:28 -0700484static void destroy_cfs_bandwidth(struct cfs_bandwidth *cfs_b)
Paul Turner58088ad2011-07-21 09:43:31 -0700485{
486 hrtimer_cancel(&cfs_b->period_timer);
487}
Paul Turnerab84d312011-07-21 09:43:28 -0700488#else
489static void init_cfs_rq_runtime(struct cfs_rq *cfs_rq) {}
490static void init_cfs_bandwidth(struct cfs_bandwidth *cfs_b) {}
491static void destroy_cfs_bandwidth(struct cfs_bandwidth *cfs_b) {}
492
493static inline struct cfs_bandwidth *tg_cfs_bandwidth(struct task_group *tg)
494{
495 return NULL;
496}
497#endif /* CONFIG_CFS_BANDWIDTH */
498#endif /* CONFIG_FAIR_GROUP_SCHED */
499
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200500/* Real-Time classes' related field in a runqueue: */
501struct rt_rq {
502 struct rt_prio_array active;
Steven Rostedt63489e42008-01-25 21:08:03 +0100503 unsigned long rt_nr_running;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100504#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
Gregory Haskinse864c492008-12-29 09:39:49 -0500505 struct {
506 int curr; /* highest queued rt task prio */
Gregory Haskins398a1532009-01-14 09:10:04 -0500507#ifdef CONFIG_SMP
Gregory Haskinse864c492008-12-29 09:39:49 -0500508 int next; /* next highest */
Gregory Haskins398a1532009-01-14 09:10:04 -0500509#endif
Gregory Haskinse864c492008-12-29 09:39:49 -0500510 } highest_prio;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100511#endif
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100512#ifdef CONFIG_SMP
Gregory Haskins73fe6aa2008-01-25 21:08:07 +0100513 unsigned long rt_nr_migratory;
Peter Zijlstraa1ba4d82009-04-01 18:40:15 +0200514 unsigned long rt_nr_total;
Gregory Haskinsa22d7fc2008-01-25 21:08:12 +0100515 int overloaded;
Gregory Haskins917b6272008-12-29 09:39:53 -0500516 struct plist_head pushable_tasks;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100517#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100518 int rt_throttled;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100519 u64 rt_time;
Peter Zijlstraac086bc2008-04-19 19:44:58 +0200520 u64 rt_runtime;
Ingo Molnarea736ed2008-03-25 13:51:45 +0100521 /* Nests inside the rq lock: */
Thomas Gleixner0986b112009-11-17 15:32:06 +0100522 raw_spinlock_t rt_runtime_lock;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100523
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100524#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra23b0fdf2008-02-13 15:45:39 +0100525 unsigned long rt_nr_boosted;
526
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100527 struct rq *rq;
528 struct list_head leaf_rt_rq_list;
529 struct task_group *tg;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100530#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200531};
532
Gregory Haskins57d885f2008-01-25 21:08:18 +0100533#ifdef CONFIG_SMP
534
535/*
536 * We add the notion of a root-domain which will be used to define per-domain
Ingo Molnar0eab9142008-01-25 21:08:19 +0100537 * variables. Each exclusive cpuset essentially defines an island domain by
538 * fully partitioning the member cpus from any other cpuset. Whenever a new
Gregory Haskins57d885f2008-01-25 21:08:18 +0100539 * exclusive cpuset is created, we also create and attach a new root-domain
540 * object.
541 *
Gregory Haskins57d885f2008-01-25 21:08:18 +0100542 */
543struct root_domain {
544 atomic_t refcount;
Richard Kennedy26a148e2011-07-15 11:41:31 +0100545 atomic_t rto_count;
Peter Zijlstradce840a2011-04-07 14:09:50 +0200546 struct rcu_head rcu;
Rusty Russellc6c49272008-11-25 02:35:05 +1030547 cpumask_var_t span;
548 cpumask_var_t online;
Gregory Haskins637f5082008-01-25 21:08:18 +0100549
Ingo Molnar0eab9142008-01-25 21:08:19 +0100550 /*
Gregory Haskins637f5082008-01-25 21:08:18 +0100551 * The "RT overload" flag: it gets set if a CPU has more than
552 * one runnable RT task.
553 */
Rusty Russellc6c49272008-11-25 02:35:05 +1030554 cpumask_var_t rto_mask;
Gregory Haskins6e0534f2008-05-12 21:21:01 +0200555 struct cpupri cpupri;
Gregory Haskins57d885f2008-01-25 21:08:18 +0100556};
557
Gregory Haskinsdc938522008-01-25 21:08:26 +0100558/*
559 * By default the system creates a single root-domain with all cpus as
560 * members (mimicking the global state we have today).
561 */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100562static struct root_domain def_root_domain;
563
Christian Dietriched2d3722010-09-06 16:37:05 +0200564#endif /* CONFIG_SMP */
Gregory Haskins57d885f2008-01-25 21:08:18 +0100565
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200566/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 * This is the main, per-CPU runqueue data structure.
568 *
569 * Locking rule: those places that want to lock multiple runqueues
570 * (such as the load balancing or the thread migration code), lock
571 * acquire operations must be ordered by ascending &runqueue.
572 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700573struct rq {
Ingo Molnard8016492007-10-18 21:32:55 +0200574 /* runqueue lock: */
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100575 raw_spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577 /*
578 * nr_running and cpu_load should be in the same cacheline because
579 * remote CPUs use both these fields when doing load calculation.
580 */
581 unsigned long nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200582 #define CPU_LOAD_IDX_MAX 5
583 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -0700584 unsigned long last_load_update_tick;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700585#ifdef CONFIG_NO_HZ
Mike Galbraith39c0cbe2010-03-11 17:17:13 +0100586 u64 nohz_stamp;
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -0700587 unsigned char nohz_balance_kick;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700588#endif
Mike Galbraith61eadef2011-04-29 08:36:50 +0200589 int skip_clock_update;
Mike Galbraitha64692a2010-03-11 17:16:20 +0100590
Ingo Molnard8016492007-10-18 21:32:55 +0200591 /* capture load from *all* tasks on this cpu: */
592 struct load_weight load;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200593 unsigned long nr_load_updates;
594 u64 nr_switches;
595
596 struct cfs_rq cfs;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100597 struct rt_rq rt;
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100598
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200599#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnard8016492007-10-18 21:32:55 +0200600 /* list of leaf cfs_rq on this cpu: */
601 struct list_head leaf_cfs_rq_list;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +0100602#endif
603#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100604 struct list_head leaf_rt_rq_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607 /*
608 * This is part of a global counter where only the total sum
609 * over all CPUs matters. A task can increase this counter on
610 * one CPU and if it got migrated afterwards it may decrease
611 * it on another CPU. Always updated under the runqueue lock:
612 */
613 unsigned long nr_uninterruptible;
614
Peter Zijlstra34f971f2010-09-22 13:53:15 +0200615 struct task_struct *curr, *idle, *stop;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800616 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 struct mm_struct *prev_mm;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200618
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200619 u64 clock;
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -0700620 u64 clock_task;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200621
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 atomic_t nr_iowait;
623
624#ifdef CONFIG_SMP
Ingo Molnar0eab9142008-01-25 21:08:19 +0100625 struct root_domain *rd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 struct sched_domain *sd;
627
Peter Zijlstrae51fd5e2010-05-31 12:37:30 +0200628 unsigned long cpu_power;
629
Henrik Austada0a522c2009-02-13 20:35:45 +0100630 unsigned char idle_at_tick;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 /* For active balancing */
Gregory Haskins3f029d32009-07-29 11:08:47 -0400632 int post_schedule;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 int active_balance;
634 int push_cpu;
Tejun Heo969c7922010-05-06 18:49:21 +0200635 struct cpu_stop_work active_balance_work;
Ingo Molnard8016492007-10-18 21:32:55 +0200636 /* cpu of this runqueue: */
637 int cpu;
Gregory Haskins1f11eb62008-06-04 15:04:05 -0400638 int online;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200640 u64 rt_avg;
641 u64 age_stamp;
Mike Galbraith1b9508f2009-11-04 17:53:50 +0100642 u64 idle_stamp;
643 u64 avg_idle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644#endif
645
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -0700646#ifdef CONFIG_IRQ_TIME_ACCOUNTING
647 u64 prev_irq_time;
648#endif
Glauber Costae6e66852011-07-11 15:28:17 -0400649#ifdef CONFIG_PARAVIRT
650 u64 prev_steal_time;
651#endif
Glauber Costa095c0aa2011-07-11 15:28:18 -0400652#ifdef CONFIG_PARAVIRT_TIME_ACCOUNTING
653 u64 prev_steal_time_rq;
654#endif
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -0700655
Thomas Gleixnerdce48a82009-04-11 10:43:41 +0200656 /* calc_load related fields */
657 unsigned long calc_load_update;
658 long calc_load_active;
659
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100660#ifdef CONFIG_SCHED_HRTICK
Peter Zijlstra31656512008-07-18 18:01:23 +0200661#ifdef CONFIG_SMP
662 int hrtick_csd_pending;
663 struct call_single_data hrtick_csd;
664#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +0100665 struct hrtimer hrtick_timer;
666#endif
667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668#ifdef CONFIG_SCHEDSTATS
669 /* latency stats */
670 struct sched_info rq_sched_info;
Ken Chen9c2c4802008-12-16 23:41:22 -0800671 unsigned long long rq_cpu_time;
672 /* could above be rq->cfs_rq.exec_clock + rq->rt_rq.rt_runtime ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 /* sys_sched_yield() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200675 unsigned int yld_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 /* schedule() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200678 unsigned int sched_switch;
679 unsigned int sched_count;
680 unsigned int sched_goidle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
682 /* try_to_wake_up() stats */
Ken Chen480b9432007-10-18 21:32:56 +0200683 unsigned int ttwu_count;
684 unsigned int ttwu_local;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685#endif
Peter Zijlstra317f3942011-04-05 17:23:58 +0200686
687#ifdef CONFIG_SMP
688 struct task_struct *wake_list;
689#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690};
691
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700692static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Mike Galbraitha64692a2010-03-11 17:16:20 +0100694
Peter Zijlstra1e5a7402010-10-31 12:37:04 +0100695static void check_preempt_curr(struct rq *rq, struct task_struct *p, int flags);
Ingo Molnardd41f592007-07-09 18:51:59 +0200696
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700697static inline int cpu_of(struct rq *rq)
698{
699#ifdef CONFIG_SMP
700 return rq->cpu;
701#else
702 return 0;
703#endif
704}
705
Paul E. McKenney497f0ab2010-02-22 17:04:51 -0800706#define rcu_dereference_check_sched_domain(p) \
Paul E. McKenneyd11c5632010-02-22 17:04:50 -0800707 rcu_dereference_check((p), \
Paul E. McKenneyd11c5632010-02-22 17:04:50 -0800708 lockdep_is_held(&sched_domains_mutex))
709
Ingo Molnar20d315d2007-07-09 18:51:58 +0200710/*
Nick Piggin674311d2005-06-25 14:57:27 -0700711 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700712 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700713 *
714 * The domain tree of any CPU may only be accessed from within
715 * preempt-disabled sections.
716 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700717#define for_each_domain(cpu, __sd) \
Paul E. McKenney497f0ab2010-02-22 17:04:51 -0800718 for (__sd = rcu_dereference_check_sched_domain(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
721#define this_rq() (&__get_cpu_var(runqueues))
722#define task_rq(p) cpu_rq(task_cpu(p))
723#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
Hitoshi Mitake54d35f22009-06-29 14:44:57 +0900724#define raw_rq() (&__raw_get_cpu_var(runqueues))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Peter Zijlstradc61b1d2010-06-08 11:40:42 +0200726#ifdef CONFIG_CGROUP_SCHED
727
728/*
729 * Return the group to which this tasks belongs.
730 *
Peter Zijlstra6c6c54e2011-06-03 17:37:07 +0200731 * We use task_subsys_state_check() and extend the RCU verification with
732 * pi->lock and rq->lock because cpu_cgroup_attach() holds those locks for each
733 * task it moves into the cgroup. Therefore by holding either of those locks,
734 * we pin the task to the current cgroup.
Peter Zijlstradc61b1d2010-06-08 11:40:42 +0200735 */
736static inline struct task_group *task_group(struct task_struct *p)
737{
Mike Galbraith5091faa2010-11-30 14:18:03 +0100738 struct task_group *tg;
Peter Zijlstradc61b1d2010-06-08 11:40:42 +0200739 struct cgroup_subsys_state *css;
740
741 css = task_subsys_state_check(p, cpu_cgroup_subsys_id,
Peter Zijlstra6c6c54e2011-06-03 17:37:07 +0200742 lockdep_is_held(&p->pi_lock) ||
743 lockdep_is_held(&task_rq(p)->lock));
Mike Galbraith5091faa2010-11-30 14:18:03 +0100744 tg = container_of(css, struct task_group, css);
745
746 return autogroup_task_group(p, tg);
Peter Zijlstradc61b1d2010-06-08 11:40:42 +0200747}
748
749/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
750static inline void set_task_rq(struct task_struct *p, unsigned int cpu)
751{
752#ifdef CONFIG_FAIR_GROUP_SCHED
753 p->se.cfs_rq = task_group(p)->cfs_rq[cpu];
754 p->se.parent = task_group(p)->se[cpu];
755#endif
756
757#ifdef CONFIG_RT_GROUP_SCHED
758 p->rt.rt_rq = task_group(p)->rt_rq[cpu];
759 p->rt.parent = task_group(p)->rt_se[cpu];
760#endif
761}
762
763#else /* CONFIG_CGROUP_SCHED */
764
765static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { }
766static inline struct task_group *task_group(struct task_struct *p)
767{
768 return NULL;
769}
770
771#endif /* CONFIG_CGROUP_SCHED */
772
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100773static void update_rq_clock_task(struct rq *rq, s64 delta);
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -0700774
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100775static void update_rq_clock(struct rq *rq)
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200776{
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100777 s64 delta;
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -0700778
Mike Galbraith61eadef2011-04-29 08:36:50 +0200779 if (rq->skip_clock_update > 0)
Mike Galbraithf26f9af2010-12-08 11:05:42 +0100780 return;
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -0700781
Peter Zijlstrafe44d622010-12-09 14:15:34 +0100782 delta = sched_clock_cpu(cpu_of(rq)) - rq->clock;
783 rq->clock += delta;
784 update_rq_clock_task(rq, delta);
Peter Zijlstra3e51f332008-05-03 18:29:28 +0200785}
786
Ingo Molnare436d802007-07-19 21:28:35 +0200787/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200788 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
789 */
790#ifdef CONFIG_SCHED_DEBUG
791# define const_debug __read_mostly
792#else
793# define const_debug static const
794#endif
795
Ingo Molnar017730c2008-05-12 21:20:52 +0200796/**
Randy Dunlap1fd06bb2011-03-15 16:12:30 -0700797 * runqueue_is_locked - Returns true if the current cpu runqueue is locked
Randy Dunlape17b38b2009-10-11 19:12:00 -0700798 * @cpu: the processor in question.
Ingo Molnar017730c2008-05-12 21:20:52 +0200799 *
Ingo Molnar017730c2008-05-12 21:20:52 +0200800 * This interface allows printk to be called with the runqueue lock
801 * held and know whether or not it is OK to wake up the klogd.
802 */
Andrew Morton89f19f02009-09-19 11:55:44 -0700803int runqueue_is_locked(int cpu)
Ingo Molnar017730c2008-05-12 21:20:52 +0200804{
Thomas Gleixner05fa7852009-11-17 14:28:38 +0100805 return raw_spin_is_locked(&cpu_rq(cpu)->lock);
Ingo Molnar017730c2008-05-12 21:20:52 +0200806}
807
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200808/*
809 * Debugging: various feature bits
810 */
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200811
812#define SCHED_FEAT(name, enabled) \
813 __SCHED_FEAT_##name ,
814
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200815enum {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200816#include "sched_features.h"
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200817};
818
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200819#undef SCHED_FEAT
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200820
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200821#define SCHED_FEAT(name, enabled) \
822 (1UL << __SCHED_FEAT_##name) * enabled |
823
824const_debug unsigned int sysctl_sched_features =
825#include "sched_features.h"
826 0;
827
828#undef SCHED_FEAT
829
830#ifdef CONFIG_SCHED_DEBUG
831#define SCHED_FEAT(name, enabled) \
832 #name ,
833
Harvey Harrison983ed7a2008-04-24 18:17:55 -0700834static __read_mostly char *sched_feat_names[] = {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200835#include "sched_features.h"
836 NULL
837};
838
839#undef SCHED_FEAT
840
Li Zefan34f3a812008-10-30 15:23:32 +0800841static int sched_feat_show(struct seq_file *m, void *v)
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200842{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200843 int i;
844
845 for (i = 0; sched_feat_names[i]; i++) {
Li Zefan34f3a812008-10-30 15:23:32 +0800846 if (!(sysctl_sched_features & (1UL << i)))
847 seq_puts(m, "NO_");
848 seq_printf(m, "%s ", sched_feat_names[i]);
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200849 }
Li Zefan34f3a812008-10-30 15:23:32 +0800850 seq_puts(m, "\n");
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200851
Li Zefan34f3a812008-10-30 15:23:32 +0800852 return 0;
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200853}
854
855static ssize_t
856sched_feat_write(struct file *filp, const char __user *ubuf,
857 size_t cnt, loff_t *ppos)
858{
859 char buf[64];
Mathieu Desnoyers77401912010-09-13 17:47:00 -0400860 char *cmp;
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200861 int neg = 0;
862 int i;
863
864 if (cnt > 63)
865 cnt = 63;
866
867 if (copy_from_user(&buf, ubuf, cnt))
868 return -EFAULT;
869
870 buf[cnt] = 0;
Mathieu Desnoyers77401912010-09-13 17:47:00 -0400871 cmp = strstrip(buf);
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200872
Hillf Danton524429c2011-01-06 20:58:12 +0800873 if (strncmp(cmp, "NO_", 3) == 0) {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200874 neg = 1;
875 cmp += 3;
876 }
877
878 for (i = 0; sched_feat_names[i]; i++) {
Mathieu Desnoyers77401912010-09-13 17:47:00 -0400879 if (strcmp(cmp, sched_feat_names[i]) == 0) {
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200880 if (neg)
881 sysctl_sched_features &= ~(1UL << i);
882 else
883 sysctl_sched_features |= (1UL << i);
884 break;
885 }
886 }
887
888 if (!sched_feat_names[i])
889 return -EINVAL;
890
Jan Blunck42994722009-11-20 17:40:37 +0100891 *ppos += cnt;
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200892
893 return cnt;
894}
895
Li Zefan34f3a812008-10-30 15:23:32 +0800896static int sched_feat_open(struct inode *inode, struct file *filp)
897{
898 return single_open(filp, sched_feat_show, NULL);
899}
900
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700901static const struct file_operations sched_feat_fops = {
Li Zefan34f3a812008-10-30 15:23:32 +0800902 .open = sched_feat_open,
903 .write = sched_feat_write,
904 .read = seq_read,
905 .llseek = seq_lseek,
906 .release = single_release,
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200907};
908
909static __init int sched_init_debug(void)
910{
Peter Zijlstraf00b45c2008-04-19 19:45:00 +0200911 debugfs_create_file("sched_features", 0644, NULL, NULL,
912 &sched_feat_fops);
913
914 return 0;
915}
916late_initcall(sched_init_debug);
917
918#endif
919
920#define sched_feat(x) (sysctl_sched_features & (1UL << __SCHED_FEAT_##x))
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200921
922/*
Peter Zijlstrab82d9fd2007-11-09 22:39:39 +0100923 * Number of tasks to iterate in a single balance run.
924 * Limited because this is done with IRQs disabled.
925 */
926const_debug unsigned int sysctl_sched_nr_migrate = 32;
927
928/*
Peter Zijlstrae9e92502009-09-01 10:34:37 +0200929 * period over which we average the RT time consumption, measured
930 * in ms.
931 *
932 * default: 1s
933 */
934const_debug unsigned int sysctl_sched_time_avg = MSEC_PER_SEC;
935
936/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100937 * period over which we measure -rt task cpu usage in us.
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100938 * default: 1s
939 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100940unsigned int sysctl_sched_rt_period = 1000000;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100941
Ingo Molnar6892b752008-02-13 14:02:36 +0100942static __read_mostly int scheduler_running;
943
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100944/*
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100945 * part of the period that we allow rt tasks to run in us.
946 * default: 0.95s
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100947 */
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +0100948int sysctl_sched_rt_runtime = 950000;
949
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200950static inline u64 global_rt_period(void)
951{
952 return (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
953}
954
955static inline u64 global_rt_runtime(void)
956{
roel kluine26873b2008-07-22 16:51:15 -0400957 if (sysctl_sched_rt_runtime < 0)
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +0200958 return RUNTIME_INF;
959
960 return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC;
961}
Peter Zijlstrafa85ae22008-01-25 21:08:29 +0100962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700964# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700966#ifndef finish_arch_switch
967# define finish_arch_switch(prev) do { } while (0)
968#endif
969
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100970static inline int task_current(struct rq *rq, struct task_struct *p)
971{
972 return rq->curr == p;
973}
974
Ingo Molnar70b97a72006-07-03 00:25:42 -0700975static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700976{
Peter Zijlstra3ca7a442011-04-05 17:23:40 +0200977#ifdef CONFIG_SMP
978 return p->on_cpu;
979#else
Dmitry Adamushko051a1d12007-12-18 15:21:13 +0100980 return task_current(rq, p);
Peter Zijlstra3ca7a442011-04-05 17:23:40 +0200981#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700982}
983
Peter Zijlstra3ca7a442011-04-05 17:23:40 +0200984#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700985static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700986{
Peter Zijlstra3ca7a442011-04-05 17:23:40 +0200987#ifdef CONFIG_SMP
988 /*
989 * We can optimise this out completely for !SMP, because the
990 * SMP rebalancing from interrupt is the only thing that cares
991 * here.
992 */
993 next->on_cpu = 1;
994#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700995}
996
Ingo Molnar70b97a72006-07-03 00:25:42 -0700997static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700998{
Peter Zijlstra3ca7a442011-04-05 17:23:40 +0200999#ifdef CONFIG_SMP
1000 /*
1001 * After ->on_cpu is cleared, the task can be moved to a different CPU.
1002 * We must ensure this doesn't happen until the switch is completely
1003 * finished.
1004 */
1005 smp_wmb();
1006 prev->on_cpu = 0;
1007#endif
Ingo Molnarda04c032005-09-13 11:17:59 +02001008#ifdef CONFIG_DEBUG_SPINLOCK
1009 /* this is a valid case when another task releases the spinlock */
1010 rq->lock.owner = current;
1011#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07001012 /*
1013 * If we are tracking spinlock dependencies then we have to
1014 * fix up the runqueue lock - which gets 'carried over' from
1015 * prev into current:
1016 */
1017 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
1018
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001019 raw_spin_unlock_irq(&rq->lock);
Nick Piggin4866cde2005-06-25 14:57:23 -07001020}
1021
1022#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001023static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07001024{
1025#ifdef CONFIG_SMP
1026 /*
1027 * We can optimise this out completely for !SMP, because the
1028 * SMP rebalancing from interrupt is the only thing that cares
1029 * here.
1030 */
Peter Zijlstra3ca7a442011-04-05 17:23:40 +02001031 next->on_cpu = 1;
Nick Piggin4866cde2005-06-25 14:57:23 -07001032#endif
1033#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001034 raw_spin_unlock_irq(&rq->lock);
Nick Piggin4866cde2005-06-25 14:57:23 -07001035#else
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001036 raw_spin_unlock(&rq->lock);
Nick Piggin4866cde2005-06-25 14:57:23 -07001037#endif
1038}
1039
Ingo Molnar70b97a72006-07-03 00:25:42 -07001040static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -07001041{
1042#ifdef CONFIG_SMP
1043 /*
Peter Zijlstra3ca7a442011-04-05 17:23:40 +02001044 * After ->on_cpu is cleared, the task can be moved to a different CPU.
Nick Piggin4866cde2005-06-25 14:57:23 -07001045 * We must ensure this doesn't happen until the switch is completely
1046 * finished.
1047 */
1048 smp_wmb();
Peter Zijlstra3ca7a442011-04-05 17:23:40 +02001049 prev->on_cpu = 0;
Nick Piggin4866cde2005-06-25 14:57:23 -07001050#endif
1051#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
1052 local_irq_enable();
1053#endif
1054}
1055#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
1057/*
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001058 * __task_rq_lock - lock the rq @p resides on.
Ingo Molnarb29739f2006-06-27 02:54:51 -07001059 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001060static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001061 __acquires(rq->lock)
1062{
Peter Zijlstra0970d292010-02-15 14:45:54 +01001063 struct rq *rq;
1064
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001065 lockdep_assert_held(&p->pi_lock);
1066
Andi Kleen3a5c3592007-10-15 17:00:14 +02001067 for (;;) {
Peter Zijlstra0970d292010-02-15 14:45:54 +01001068 rq = task_rq(p);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001069 raw_spin_lock(&rq->lock);
Peter Zijlstra65cc8e42010-03-25 21:05:16 +01001070 if (likely(rq == task_rq(p)))
Andi Kleen3a5c3592007-10-15 17:00:14 +02001071 return rq;
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001072 raw_spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07001073 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07001074}
1075
1076/*
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001077 * task_rq_lock - lock p->pi_lock and lock the rq @p resides on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001079static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001080 __acquires(p->pi_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 __acquires(rq->lock)
1082{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001083 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Andi Kleen3a5c3592007-10-15 17:00:14 +02001085 for (;;) {
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001086 raw_spin_lock_irqsave(&p->pi_lock, *flags);
Andi Kleen3a5c3592007-10-15 17:00:14 +02001087 rq = task_rq(p);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001088 raw_spin_lock(&rq->lock);
Peter Zijlstra65cc8e42010-03-25 21:05:16 +01001089 if (likely(rq == task_rq(p)))
Andi Kleen3a5c3592007-10-15 17:00:14 +02001090 return rq;
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001091 raw_spin_unlock(&rq->lock);
1092 raw_spin_unlock_irqrestore(&p->pi_lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094}
1095
Alexey Dobriyana9957442007-10-15 17:00:13 +02001096static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -07001097 __releases(rq->lock)
1098{
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001099 raw_spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07001100}
1101
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001102static inline void
1103task_rq_unlock(struct rq *rq, struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 __releases(rq->lock)
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001105 __releases(p->pi_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
Peter Zijlstra0122ec52011-04-05 17:23:51 +02001107 raw_spin_unlock(&rq->lock);
1108 raw_spin_unlock_irqrestore(&p->pi_lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109}
1110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -08001112 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001114static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 __acquires(rq->lock)
1116{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001117 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
1119 local_irq_disable();
1120 rq = this_rq();
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001121 raw_spin_lock(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123 return rq;
1124}
1125
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001126#ifdef CONFIG_SCHED_HRTICK
1127/*
1128 * Use HR-timers to deliver accurate preemption points.
1129 *
1130 * Its all a bit involved since we cannot program an hrt while holding the
1131 * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a
1132 * reschedule event.
1133 *
1134 * When we get rescheduled we reprogram the hrtick_timer outside of the
1135 * rq->lock.
1136 */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001137
1138/*
1139 * Use hrtick when:
1140 * - enabled by features
1141 * - hrtimer is actually high res
1142 */
1143static inline int hrtick_enabled(struct rq *rq)
1144{
1145 if (!sched_feat(HRTICK))
1146 return 0;
Ingo Molnarba420592008-07-20 11:02:06 +02001147 if (!cpu_active(cpu_of(rq)))
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001148 return 0;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001149 return hrtimer_is_hres_active(&rq->hrtick_timer);
1150}
1151
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001152static void hrtick_clear(struct rq *rq)
1153{
1154 if (hrtimer_active(&rq->hrtick_timer))
1155 hrtimer_cancel(&rq->hrtick_timer);
1156}
1157
1158/*
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001159 * High-resolution timer tick.
1160 * Runs from hardirq context with interrupts disabled.
1161 */
1162static enum hrtimer_restart hrtick(struct hrtimer *timer)
1163{
1164 struct rq *rq = container_of(timer, struct rq, hrtick_timer);
1165
1166 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
1167
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001168 raw_spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02001169 update_rq_clock(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001170 rq->curr->sched_class->task_tick(rq, rq->curr, 1);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001171 raw_spin_unlock(&rq->lock);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001172
1173 return HRTIMER_NORESTART;
1174}
1175
Rabin Vincent95e904c2008-05-11 05:55:33 +05301176#ifdef CONFIG_SMP
Peter Zijlstra31656512008-07-18 18:01:23 +02001177/*
1178 * called from hardirq (IPI) context
1179 */
1180static void __hrtick_start(void *arg)
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001181{
Peter Zijlstra31656512008-07-18 18:01:23 +02001182 struct rq *rq = arg;
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001183
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001184 raw_spin_lock(&rq->lock);
Peter Zijlstra31656512008-07-18 18:01:23 +02001185 hrtimer_restart(&rq->hrtick_timer);
1186 rq->hrtick_csd_pending = 0;
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001187 raw_spin_unlock(&rq->lock);
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001188}
1189
Peter Zijlstra31656512008-07-18 18:01:23 +02001190/*
1191 * Called to set the hrtick timer state.
1192 *
1193 * called with rq->lock held and irqs disabled
1194 */
1195static void hrtick_start(struct rq *rq, u64 delay)
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001196{
Peter Zijlstra31656512008-07-18 18:01:23 +02001197 struct hrtimer *timer = &rq->hrtick_timer;
1198 ktime_t time = ktime_add_ns(timer->base->get_time(), delay);
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001199
Arjan van de Vencc584b22008-09-01 15:02:30 -07001200 hrtimer_set_expires(timer, time);
Peter Zijlstra31656512008-07-18 18:01:23 +02001201
1202 if (rq == this_rq()) {
1203 hrtimer_restart(timer);
1204 } else if (!rq->hrtick_csd_pending) {
Peter Zijlstra6e275632009-02-25 13:59:48 +01001205 __smp_call_function_single(cpu_of(rq), &rq->hrtick_csd, 0);
Peter Zijlstra31656512008-07-18 18:01:23 +02001206 rq->hrtick_csd_pending = 1;
1207 }
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001208}
1209
1210static int
1211hotplug_hrtick(struct notifier_block *nfb, unsigned long action, void *hcpu)
1212{
1213 int cpu = (int)(long)hcpu;
1214
1215 switch (action) {
1216 case CPU_UP_CANCELED:
1217 case CPU_UP_CANCELED_FROZEN:
1218 case CPU_DOWN_PREPARE:
1219 case CPU_DOWN_PREPARE_FROZEN:
1220 case CPU_DEAD:
1221 case CPU_DEAD_FROZEN:
Peter Zijlstra31656512008-07-18 18:01:23 +02001222 hrtick_clear(cpu_rq(cpu));
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001223 return NOTIFY_OK;
1224 }
1225
1226 return NOTIFY_DONE;
1227}
1228
Rakib Mullickfa748202008-09-22 14:55:45 -07001229static __init void init_hrtick(void)
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001230{
1231 hotcpu_notifier(hotplug_hrtick, 0);
1232}
Peter Zijlstra31656512008-07-18 18:01:23 +02001233#else
1234/*
1235 * Called to set the hrtick timer state.
1236 *
1237 * called with rq->lock held and irqs disabled
1238 */
1239static void hrtick_start(struct rq *rq, u64 delay)
1240{
Peter Zijlstra7f1e2ca2009-03-13 12:21:27 +01001241 __hrtimer_start_range_ns(&rq->hrtick_timer, ns_to_ktime(delay), 0,
Arun R Bharadwaj5c333862009-04-16 12:14:37 +05301242 HRTIMER_MODE_REL_PINNED, 0);
Peter Zijlstra31656512008-07-18 18:01:23 +02001243}
1244
Andrew Morton006c75f2008-09-22 14:55:46 -07001245static inline void init_hrtick(void)
Peter Zijlstra31656512008-07-18 18:01:23 +02001246{
1247}
Rabin Vincent95e904c2008-05-11 05:55:33 +05301248#endif /* CONFIG_SMP */
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001249
1250static void init_rq_hrtick(struct rq *rq)
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001251{
Peter Zijlstra31656512008-07-18 18:01:23 +02001252#ifdef CONFIG_SMP
1253 rq->hrtick_csd_pending = 0;
1254
1255 rq->hrtick_csd.flags = 0;
1256 rq->hrtick_csd.func = __hrtick_start;
1257 rq->hrtick_csd.info = rq;
1258#endif
1259
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001260 hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1261 rq->hrtick_timer.function = hrtick;
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001262}
Andrew Morton006c75f2008-09-22 14:55:46 -07001263#else /* CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001264static inline void hrtick_clear(struct rq *rq)
1265{
1266}
1267
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001268static inline void init_rq_hrtick(struct rq *rq)
1269{
1270}
1271
Peter Zijlstrab328ca12008-04-29 10:02:46 +02001272static inline void init_hrtick(void)
1273{
1274}
Andrew Morton006c75f2008-09-22 14:55:46 -07001275#endif /* CONFIG_SCHED_HRTICK */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01001276
Ingo Molnar1b9f19c2007-07-09 18:51:59 +02001277/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001278 * resched_task - mark a task 'to be rescheduled now'.
1279 *
1280 * On UP this means the setting of the need_resched flag, on SMP it
1281 * might also involve a cross-CPU call to trigger the scheduler on
1282 * the target CPU.
1283 */
1284#ifdef CONFIG_SMP
1285
1286#ifndef tsk_is_polling
1287#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1288#endif
1289
Peter Zijlstra31656512008-07-18 18:01:23 +02001290static void resched_task(struct task_struct *p)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001291{
1292 int cpu;
1293
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001294 assert_raw_spin_locked(&task_rq(p)->lock);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001295
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08001296 if (test_tsk_need_resched(p))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001297 return;
1298
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08001299 set_tsk_need_resched(p);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001300
1301 cpu = task_cpu(p);
1302 if (cpu == smp_processor_id())
1303 return;
1304
1305 /* NEED_RESCHED must be visible before we test polling */
1306 smp_mb();
1307 if (!tsk_is_polling(p))
1308 smp_send_reschedule(cpu);
1309}
1310
1311static void resched_cpu(int cpu)
1312{
1313 struct rq *rq = cpu_rq(cpu);
1314 unsigned long flags;
1315
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001316 if (!raw_spin_trylock_irqsave(&rq->lock, flags))
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001317 return;
1318 resched_task(cpu_curr(cpu));
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001319 raw_spin_unlock_irqrestore(&rq->lock, flags);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001320}
Thomas Gleixner06d83082008-03-22 09:20:24 +01001321
1322#ifdef CONFIG_NO_HZ
1323/*
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07001324 * In the semi idle case, use the nearest busy cpu for migrating timers
1325 * from an idle cpu. This is good for power-savings.
1326 *
1327 * We don't do similar optimization for completely idle system, as
1328 * selecting an idle cpu will add more delays to the timers than intended
1329 * (as that cpu's timer base may not be uptodate wrt jiffies etc).
1330 */
1331int get_nohz_timer_target(void)
1332{
1333 int cpu = smp_processor_id();
1334 int i;
1335 struct sched_domain *sd;
1336
Peter Zijlstra057f3fa2011-04-18 11:24:34 +02001337 rcu_read_lock();
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07001338 for_each_domain(cpu, sd) {
Peter Zijlstra057f3fa2011-04-18 11:24:34 +02001339 for_each_cpu(i, sched_domain_span(sd)) {
1340 if (!idle_cpu(i)) {
1341 cpu = i;
1342 goto unlock;
1343 }
1344 }
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07001345 }
Peter Zijlstra057f3fa2011-04-18 11:24:34 +02001346unlock:
1347 rcu_read_unlock();
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07001348 return cpu;
1349}
1350/*
Thomas Gleixner06d83082008-03-22 09:20:24 +01001351 * When add_timer_on() enqueues a timer into the timer wheel of an
1352 * idle CPU then this timer might expire before the next timer event
1353 * which is scheduled to wake up that CPU. In case of a completely
1354 * idle system the next event might even be infinite time into the
1355 * future. wake_up_idle_cpu() ensures that the CPU is woken up and
1356 * leaves the inner idle loop so the newly added timer is taken into
1357 * account when the CPU goes back to idle and evaluates the timer
1358 * wheel for the next timer event.
1359 */
1360void wake_up_idle_cpu(int cpu)
1361{
1362 struct rq *rq = cpu_rq(cpu);
1363
1364 if (cpu == smp_processor_id())
1365 return;
1366
1367 /*
1368 * This is safe, as this function is called with the timer
1369 * wheel base lock of (cpu) held. When the CPU is on the way
1370 * to idle and has not yet set rq->curr to idle then it will
1371 * be serialized on the timer wheel base lock and take the new
1372 * timer into account automatically.
1373 */
1374 if (rq->curr != rq->idle)
1375 return;
1376
1377 /*
1378 * We can set TIF_RESCHED on the idle task of the other CPU
1379 * lockless. The worst case is that the other CPU runs the
1380 * idle task through an additional NOOP schedule()
1381 */
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08001382 set_tsk_need_resched(rq->idle);
Thomas Gleixner06d83082008-03-22 09:20:24 +01001383
1384 /* NEED_RESCHED must be visible before we test polling */
1385 smp_mb();
1386 if (!tsk_is_polling(rq->idle))
1387 smp_send_reschedule(cpu);
1388}
Mike Galbraith39c0cbe2010-03-11 17:17:13 +01001389
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001390#endif /* CONFIG_NO_HZ */
Thomas Gleixner06d83082008-03-22 09:20:24 +01001391
Peter Zijlstrae9e92502009-09-01 10:34:37 +02001392static u64 sched_avg_period(void)
1393{
1394 return (u64)sysctl_sched_time_avg * NSEC_PER_MSEC / 2;
1395}
1396
1397static void sched_avg_update(struct rq *rq)
1398{
1399 s64 period = sched_avg_period();
1400
1401 while ((s64)(rq->clock - rq->age_stamp) > period) {
Will Deacon0d98bb22010-05-24 12:11:43 -07001402 /*
1403 * Inline assembly required to prevent the compiler
1404 * optimising this loop into a divmod call.
1405 * See __iter_div_u64_rem() for another example of this.
1406 */
1407 asm("" : "+rm" (rq->age_stamp));
Peter Zijlstrae9e92502009-09-01 10:34:37 +02001408 rq->age_stamp += period;
1409 rq->rt_avg /= 2;
1410 }
1411}
1412
1413static void sched_rt_avg_update(struct rq *rq, u64 rt_delta)
1414{
1415 rq->rt_avg += rt_delta;
1416 sched_avg_update(rq);
1417}
1418
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001419#else /* !CONFIG_SMP */
Peter Zijlstra31656512008-07-18 18:01:23 +02001420static void resched_task(struct task_struct *p)
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001421{
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001422 assert_raw_spin_locked(&task_rq(p)->lock);
Peter Zijlstra31656512008-07-18 18:01:23 +02001423 set_tsk_need_resched(p);
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001424}
Peter Zijlstrae9e92502009-09-01 10:34:37 +02001425
1426static void sched_rt_avg_update(struct rq *rq, u64 rt_delta)
1427{
1428}
Suresh Siddhada2b71e2010-08-23 13:42:51 -07001429
1430static void sched_avg_update(struct rq *rq)
1431{
1432}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02001433#endif /* CONFIG_SMP */
Ingo Molnarc24d20d2007-07-09 18:51:59 +02001434
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001435#if BITS_PER_LONG == 32
1436# define WMULT_CONST (~0UL)
1437#else
1438# define WMULT_CONST (1UL << 32)
1439#endif
1440
1441#define WMULT_SHIFT 32
1442
Ingo Molnar194081e2007-08-09 11:16:51 +02001443/*
1444 * Shift right and round:
1445 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001446#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +02001447
Peter Zijlstraa7be37a2008-06-27 13:41:11 +02001448/*
1449 * delta *= weight / lw
1450 */
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +02001451static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001452calc_delta_mine(unsigned long delta_exec, unsigned long weight,
1453 struct load_weight *lw)
1454{
1455 u64 tmp;
1456
Nikhil Raoc8b28112011-05-18 14:37:48 -07001457 /*
1458 * weight can be less than 2^SCHED_LOAD_RESOLUTION for task group sched
1459 * entities since MIN_SHARES = 2. Treat weight as 1 if less than
1460 * 2^SCHED_LOAD_RESOLUTION.
1461 */
1462 if (likely(weight > (1UL << SCHED_LOAD_RESOLUTION)))
1463 tmp = (u64)delta_exec * scale_load_down(weight);
1464 else
1465 tmp = (u64)delta_exec;
Stephan Baerwolfdb670da2011-05-11 18:03:29 +02001466
Lai Jiangshan7a232e02008-06-12 16:43:07 +08001467 if (!lw->inv_weight) {
Nikhil Raoc8b28112011-05-18 14:37:48 -07001468 unsigned long w = scale_load_down(lw->weight);
1469
1470 if (BITS_PER_LONG > 32 && unlikely(w >= WMULT_CONST))
Lai Jiangshan7a232e02008-06-12 16:43:07 +08001471 lw->inv_weight = 1;
Nikhil Raoc8b28112011-05-18 14:37:48 -07001472 else if (unlikely(!w))
1473 lw->inv_weight = WMULT_CONST;
Lai Jiangshan7a232e02008-06-12 16:43:07 +08001474 else
Nikhil Raoc8b28112011-05-18 14:37:48 -07001475 lw->inv_weight = WMULT_CONST / w;
Lai Jiangshan7a232e02008-06-12 16:43:07 +08001476 }
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001477
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001478 /*
1479 * Check whether we'd overflow the 64-bit multiplication:
1480 */
Ingo Molnar194081e2007-08-09 11:16:51 +02001481 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001482 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +02001483 WMULT_SHIFT/2);
1484 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +02001485 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001486
Ingo Molnarecf691d2007-08-02 17:41:40 +02001487 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001488}
1489
Ingo Molnar10919852007-10-15 17:00:04 +02001490static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001491{
1492 lw->weight += inc;
Ingo Molnare89996a2008-03-14 23:48:28 +01001493 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001494}
1495
Ingo Molnar10919852007-10-15 17:00:04 +02001496static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001497{
1498 lw->weight -= dec;
Ingo Molnare89996a2008-03-14 23:48:28 +01001499 lw->inv_weight = 0;
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001500}
1501
Peter Zijlstra2069dd72010-11-15 15:47:00 -08001502static inline void update_load_set(struct load_weight *lw, unsigned long w)
1503{
1504 lw->weight = w;
1505 lw->inv_weight = 0;
1506}
1507
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001509 * To aid in avoiding the subversion of "niceness" due to uneven distribution
1510 * of tasks with abnormal "nice" values across CPUs the contribution that
1511 * each task makes to its run queue's load is weighted according to its
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01001512 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
Peter Williams2dd73a42006-06-27 02:54:34 -07001513 * scaled version of the new time slice allocation that they receive on time
1514 * slice expiry etc.
1515 */
1516
Peter Zijlstracce7ade2009-01-15 14:53:37 +01001517#define WEIGHT_IDLEPRIO 3
1518#define WMULT_IDLEPRIO 1431655765
Ingo Molnardd41f592007-07-09 18:51:59 +02001519
1520/*
1521 * Nice levels are multiplicative, with a gentle 10% change for every
1522 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
1523 * nice 1, it will get ~10% less CPU time than another CPU-bound task
1524 * that remained on nice 0.
1525 *
1526 * The "10% effect" is relative and cumulative: from _any_ nice level,
1527 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee2007-07-16 09:46:30 +02001528 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
1529 * If a task goes up by ~10% and another task goes down by ~10% then
1530 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +02001531 */
1532static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001533 /* -20 */ 88761, 71755, 56483, 46273, 36291,
1534 /* -15 */ 29154, 23254, 18705, 14949, 11916,
1535 /* -10 */ 9548, 7620, 6100, 4904, 3906,
1536 /* -5 */ 3121, 2501, 1991, 1586, 1277,
1537 /* 0 */ 1024, 820, 655, 526, 423,
1538 /* 5 */ 335, 272, 215, 172, 137,
1539 /* 10 */ 110, 87, 70, 56, 45,
1540 /* 15 */ 36, 29, 23, 18, 15,
Ingo Molnardd41f592007-07-09 18:51:59 +02001541};
1542
Ingo Molnar5714d2d2007-07-16 09:46:31 +02001543/*
1544 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
1545 *
1546 * In cases where the weight does not change often, we can use the
1547 * precalculated inverse to speed up arithmetics by turning divisions
1548 * into multiplications:
1549 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001550static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +02001551 /* -20 */ 48388, 59856, 76040, 92818, 118348,
1552 /* -15 */ 147320, 184698, 229616, 287308, 360437,
1553 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
1554 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
1555 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
1556 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
1557 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
1558 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +02001559};
Peter Williams2dd73a42006-06-27 02:54:34 -07001560
Bharata B Raoef12fef2009-03-31 10:02:22 +05301561/* Time spent by the tasks of the cpu accounting group executing in ... */
1562enum cpuacct_stat_index {
1563 CPUACCT_STAT_USER, /* ... user mode */
1564 CPUACCT_STAT_SYSTEM, /* ... kernel mode */
1565
1566 CPUACCT_STAT_NSTATS,
1567};
1568
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001569#ifdef CONFIG_CGROUP_CPUACCT
1570static void cpuacct_charge(struct task_struct *tsk, u64 cputime);
Bharata B Raoef12fef2009-03-31 10:02:22 +05301571static void cpuacct_update_stats(struct task_struct *tsk,
1572 enum cpuacct_stat_index idx, cputime_t val);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001573#else
1574static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
Bharata B Raoef12fef2009-03-31 10:02:22 +05301575static inline void cpuacct_update_stats(struct task_struct *tsk,
1576 enum cpuacct_stat_index idx, cputime_t val) {}
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01001577#endif
1578
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001579static inline void inc_cpu_load(struct rq *rq, unsigned long load)
1580{
1581 update_load_add(&rq->load, load);
1582}
1583
1584static inline void dec_cpu_load(struct rq *rq, unsigned long load)
1585{
1586 update_load_sub(&rq->load, load);
1587}
1588
Paul Turnera790de92011-07-21 09:43:29 -07001589#if defined(CONFIG_RT_GROUP_SCHED) || (defined(CONFIG_FAIR_GROUP_SCHED) && \
1590 (defined(CONFIG_SMP) || defined(CONFIG_CFS_BANDWIDTH)))
Peter Zijlstraeb755802008-08-19 12:33:05 +02001591typedef int (*tg_visitor)(struct task_group *, void *);
1592
1593/*
1594 * Iterate the full tree, calling @down when first entering a node and @up when
1595 * leaving it for the final time.
1596 */
1597static int walk_tg_tree(tg_visitor down, tg_visitor up, void *data)
1598{
1599 struct task_group *parent, *child;
1600 int ret;
1601
1602 rcu_read_lock();
1603 parent = &root_task_group;
1604down:
1605 ret = (*down)(parent, data);
1606 if (ret)
1607 goto out_unlock;
1608 list_for_each_entry_rcu(child, &parent->children, siblings) {
1609 parent = child;
1610 goto down;
1611
1612up:
1613 continue;
1614 }
1615 ret = (*up)(parent, data);
1616 if (ret)
1617 goto out_unlock;
1618
1619 child = parent;
1620 parent = parent->parent;
1621 if (parent)
1622 goto up;
1623out_unlock:
1624 rcu_read_unlock();
1625
1626 return ret;
1627}
1628
1629static int tg_nop(struct task_group *tg, void *data)
1630{
1631 return 0;
1632}
1633#endif
1634
Gregory Haskinse7693a32008-01-25 21:08:09 +01001635#ifdef CONFIG_SMP
Peter Zijlstraf5f08f32009-09-10 13:35:28 +02001636/* Used instead of source_load when we know the type == 0 */
1637static unsigned long weighted_cpuload(const int cpu)
1638{
1639 return cpu_rq(cpu)->load.weight;
1640}
1641
1642/*
1643 * Return a low guess at the load of a migration-source cpu weighted
1644 * according to the scheduling class and "nice" value.
1645 *
1646 * We want to under-estimate the load of migration sources, to
1647 * balance conservatively.
1648 */
1649static unsigned long source_load(int cpu, int type)
1650{
1651 struct rq *rq = cpu_rq(cpu);
1652 unsigned long total = weighted_cpuload(cpu);
1653
1654 if (type == 0 || !sched_feat(LB_BIAS))
1655 return total;
1656
1657 return min(rq->cpu_load[type-1], total);
1658}
1659
1660/*
1661 * Return a high guess at the load of a migration-target cpu weighted
1662 * according to the scheduling class and "nice" value.
1663 */
1664static unsigned long target_load(int cpu, int type)
1665{
1666 struct rq *rq = cpu_rq(cpu);
1667 unsigned long total = weighted_cpuload(cpu);
1668
1669 if (type == 0 || !sched_feat(LB_BIAS))
1670 return total;
1671
1672 return max(rq->cpu_load[type-1], total);
1673}
1674
Peter Zijlstraae154be2009-09-10 14:40:57 +02001675static unsigned long power_of(int cpu)
1676{
Peter Zijlstrae51fd5e2010-05-31 12:37:30 +02001677 return cpu_rq(cpu)->cpu_power;
Peter Zijlstraae154be2009-09-10 14:40:57 +02001678}
1679
Gregory Haskinse7693a32008-01-25 21:08:09 +01001680static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001681
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001682static unsigned long cpu_avg_load_per_task(int cpu)
1683{
1684 struct rq *rq = cpu_rq(cpu);
Ingo Molnaraf6d5962008-11-29 20:45:15 +01001685 unsigned long nr_running = ACCESS_ONCE(rq->nr_running);
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001686
Steven Rostedt4cd42622008-11-26 21:04:24 -05001687 if (nr_running)
Jan H. Schönherre2b245f2011-08-01 11:03:28 +02001688 return rq->load.weight / nr_running;
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001689
Jan H. Schönherre2b245f2011-08-01 11:03:28 +02001690 return 0;
Peter Zijlstraa8a51d52008-06-27 13:41:26 +02001691}
1692
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001693#ifdef CONFIG_PREEMPT
1694
Peter Zijlstrab78bb862009-09-15 14:23:18 +02001695static void double_rq_lock(struct rq *rq1, struct rq *rq2);
1696
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001697/*
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001698 * fair double_lock_balance: Safely acquires both rq->locks in a fair
1699 * way at the expense of forcing extra atomic operations in all
1700 * invocations. This assures that the double_lock is acquired using the
1701 * same underlying policy as the spinlock_t on this architecture, which
1702 * reduces latency compared to the unfair variant below. However, it
1703 * also adds more overhead and therefore may reduce throughput.
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001704 */
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001705static inline int _double_lock_balance(struct rq *this_rq, struct rq *busiest)
1706 __releases(this_rq->lock)
1707 __acquires(busiest->lock)
1708 __acquires(this_rq->lock)
1709{
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001710 raw_spin_unlock(&this_rq->lock);
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001711 double_rq_lock(this_rq, busiest);
1712
1713 return 1;
1714}
1715
1716#else
1717/*
1718 * Unfair double_lock_balance: Optimizes throughput at the expense of
1719 * latency by eliminating extra atomic operations when the locks are
1720 * already in proper order on entry. This favors lower cpu-ids and will
1721 * grant the double lock to lower cpus over higher ids under contention,
1722 * regardless of entry order into the function.
1723 */
1724static int _double_lock_balance(struct rq *this_rq, struct rq *busiest)
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001725 __releases(this_rq->lock)
1726 __acquires(busiest->lock)
1727 __acquires(this_rq->lock)
1728{
1729 int ret = 0;
1730
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001731 if (unlikely(!raw_spin_trylock(&busiest->lock))) {
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001732 if (busiest < this_rq) {
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001733 raw_spin_unlock(&this_rq->lock);
1734 raw_spin_lock(&busiest->lock);
1735 raw_spin_lock_nested(&this_rq->lock,
1736 SINGLE_DEPTH_NESTING);
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001737 ret = 1;
1738 } else
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001739 raw_spin_lock_nested(&busiest->lock,
1740 SINGLE_DEPTH_NESTING);
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001741 }
1742 return ret;
1743}
1744
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001745#endif /* CONFIG_PREEMPT */
1746
1747/*
1748 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
1749 */
1750static int double_lock_balance(struct rq *this_rq, struct rq *busiest)
1751{
1752 if (unlikely(!irqs_disabled())) {
1753 /* printk() doesn't work good under rq->lock */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001754 raw_spin_unlock(&this_rq->lock);
Gregory Haskins8f45e2b2008-12-29 09:39:51 -05001755 BUG_ON(1);
1756 }
1757
1758 return _double_lock_balance(this_rq, busiest);
1759}
1760
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001761static inline void double_unlock_balance(struct rq *this_rq, struct rq *busiest)
1762 __releases(busiest->lock)
1763{
Thomas Gleixner05fa7852009-11-17 14:28:38 +01001764 raw_spin_unlock(&busiest->lock);
Alexey Dobriyan70574a92008-11-28 22:08:00 +03001765 lock_set_subclass(&this_rq->lock.dep_map, 0, _RET_IP_);
1766}
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001767
1768/*
1769 * double_rq_lock - safely lock two runqueues
1770 *
1771 * Note this does not disable interrupts like task_rq_lock,
1772 * you need to do so manually before calling.
1773 */
1774static void double_rq_lock(struct rq *rq1, struct rq *rq2)
1775 __acquires(rq1->lock)
1776 __acquires(rq2->lock)
1777{
1778 BUG_ON(!irqs_disabled());
1779 if (rq1 == rq2) {
1780 raw_spin_lock(&rq1->lock);
1781 __acquire(rq2->lock); /* Fake it out ;) */
1782 } else {
1783 if (rq1 < rq2) {
1784 raw_spin_lock(&rq1->lock);
1785 raw_spin_lock_nested(&rq2->lock, SINGLE_DEPTH_NESTING);
1786 } else {
1787 raw_spin_lock(&rq2->lock);
1788 raw_spin_lock_nested(&rq1->lock, SINGLE_DEPTH_NESTING);
1789 }
1790 }
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001791}
1792
1793/*
1794 * double_rq_unlock - safely unlock two runqueues
1795 *
1796 * Note this does not restore interrupts like task_rq_unlock,
1797 * you need to do so manually after calling.
1798 */
1799static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
1800 __releases(rq1->lock)
1801 __releases(rq2->lock)
1802{
1803 raw_spin_unlock(&rq1->lock);
1804 if (rq1 != rq2)
1805 raw_spin_unlock(&rq2->lock);
1806 else
1807 __release(rq2->lock);
1808}
1809
Mike Galbraithd95f4122011-02-01 09:50:51 -05001810#else /* CONFIG_SMP */
1811
1812/*
1813 * double_rq_lock - safely lock two runqueues
1814 *
1815 * Note this does not disable interrupts like task_rq_lock,
1816 * you need to do so manually before calling.
1817 */
1818static void double_rq_lock(struct rq *rq1, struct rq *rq2)
1819 __acquires(rq1->lock)
1820 __acquires(rq2->lock)
1821{
1822 BUG_ON(!irqs_disabled());
1823 BUG_ON(rq1 != rq2);
1824 raw_spin_lock(&rq1->lock);
1825 __acquire(rq2->lock); /* Fake it out ;) */
1826}
1827
1828/*
1829 * double_rq_unlock - safely unlock two runqueues
1830 *
1831 * Note this does not restore interrupts like task_rq_unlock,
1832 * you need to do so manually after calling.
1833 */
1834static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
1835 __releases(rq1->lock)
1836 __releases(rq2->lock)
1837{
1838 BUG_ON(rq1 != rq2);
1839 raw_spin_unlock(&rq1->lock);
1840 __release(rq2->lock);
1841}
1842
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001843#endif
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001844
Peter Zijlstra74f51872010-04-22 21:50:19 +02001845static void calc_load_account_idle(struct rq *this_rq);
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +01001846static void update_sysctl(void);
Christian Ehrhardtacb4a842009-11-30 12:16:48 +01001847static int get_update_sysctl_factor(void);
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07001848static void update_cpu_load(struct rq *this_rq);
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02001849
Peter Zijlstracd29fe62009-11-27 17:32:46 +01001850static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1851{
1852 set_task_rq(p, cpu);
1853#ifdef CONFIG_SMP
1854 /*
1855 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
1856 * successfuly executed on another CPU. We must ensure that updates of
1857 * per-task data have been completed by this moment.
1858 */
1859 smp_wmb();
1860 task_thread_info(p)->cpu = cpu;
1861#endif
1862}
Peter Zijlstra18d95a22008-04-19 19:45:00 +02001863
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001864static const struct sched_class rt_sched_class;
Ingo Molnardd41f592007-07-09 18:51:59 +02001865
Peter Zijlstra34f971f2010-09-22 13:53:15 +02001866#define sched_class_highest (&stop_sched_class)
Gregory Haskins1f11eb62008-06-04 15:04:05 -04001867#define for_each_class(class) \
1868 for (class = sched_class_highest; class; class = class->next)
Ingo Molnardd41f592007-07-09 18:51:59 +02001869
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001870#include "sched_stats.h"
1871
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001872static void inc_nr_running(struct rq *rq)
Ingo Molnar6363ca52008-05-29 11:28:57 +02001873{
1874 rq->nr_running++;
Ingo Molnar6363ca52008-05-29 11:28:57 +02001875}
1876
Peter Zijlstrac09595f2008-06-27 13:41:14 +02001877static void dec_nr_running(struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +02001878{
1879 rq->nr_running--;
Ingo Molnar9c217242007-08-02 17:41:40 +02001880}
1881
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001882static void set_load_weight(struct task_struct *p)
1883{
Nikhil Raof05998d2011-05-18 10:09:38 -07001884 int prio = p->static_prio - MAX_RT_PRIO;
1885 struct load_weight *load = &p->se.load;
1886
Ingo Molnardd41f592007-07-09 18:51:59 +02001887 /*
1888 * SCHED_IDLE tasks get minimal weight:
1889 */
1890 if (p->policy == SCHED_IDLE) {
Nikhil Raoc8b28112011-05-18 14:37:48 -07001891 load->weight = scale_load(WEIGHT_IDLEPRIO);
Nikhil Raof05998d2011-05-18 10:09:38 -07001892 load->inv_weight = WMULT_IDLEPRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02001893 return;
1894 }
1895
Nikhil Raoc8b28112011-05-18 14:37:48 -07001896 load->weight = scale_load(prio_to_weight[prio]);
Nikhil Raof05998d2011-05-18 10:09:38 -07001897 load->inv_weight = prio_to_wmult[prio];
Ingo Molnar45bf76d2007-07-09 18:51:59 +02001898}
1899
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001900static void enqueue_task(struct rq *rq, struct task_struct *p, int flags)
Gregory Haskins2087a1a2008-06-27 14:30:00 -06001901{
Mike Galbraitha64692a2010-03-11 17:16:20 +01001902 update_rq_clock(rq);
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001903 sched_info_queued(p);
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001904 p->sched_class->enqueue_task(rq, p, flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02001905}
1906
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001907static void dequeue_task(struct rq *rq, struct task_struct *p, int flags)
Ingo Molnardd41f592007-07-09 18:51:59 +02001908{
Mike Galbraitha64692a2010-03-11 17:16:20 +01001909 update_rq_clock(rq);
Ankita Garg46ac22b2008-07-01 14:30:06 +05301910 sched_info_dequeued(p);
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001911 p->sched_class->dequeue_task(rq, p, flags);
Ingo Molnar71f8bd42007-07-09 18:51:59 +02001912}
1913
1914/*
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001915 * activate_task - move a task to the runqueue.
1916 */
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001917static void activate_task(struct rq *rq, struct task_struct *p, int flags)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001918{
1919 if (task_contributes_to_load(p))
1920 rq->nr_uninterruptible--;
1921
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001922 enqueue_task(rq, p, flags);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001923}
1924
1925/*
1926 * deactivate_task - remove a task from the runqueue.
1927 */
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001928static void deactivate_task(struct rq *rq, struct task_struct *p, int flags)
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001929{
1930 if (task_contributes_to_load(p))
1931 rq->nr_uninterruptible++;
1932
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01001933 dequeue_task(rq, p, flags);
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01001934}
1935
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07001936#ifdef CONFIG_IRQ_TIME_ACCOUNTING
1937
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -07001938/*
1939 * There are no locks covering percpu hardirq/softirq time.
1940 * They are only modified in account_system_vtime, on corresponding CPU
1941 * with interrupts disabled. So, writes are safe.
1942 * They are read and saved off onto struct rq in update_rq_clock().
1943 * This may result in other CPU reading this CPU's irq time and can
1944 * race with irq/account_system_vtime on this CPU. We would either get old
Peter Zijlstra8e92c202010-12-09 14:15:34 +01001945 * or new value with a side effect of accounting a slice of irq time to wrong
1946 * task when irq is in progress while we read rq->clock. That is a worthy
1947 * compromise in place of having locks on each irq in account_system_time.
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -07001948 */
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07001949static DEFINE_PER_CPU(u64, cpu_hardirq_time);
1950static DEFINE_PER_CPU(u64, cpu_softirq_time);
1951
1952static DEFINE_PER_CPU(u64, irq_start_time);
1953static int sched_clock_irqtime;
1954
1955void enable_sched_clock_irqtime(void)
1956{
1957 sched_clock_irqtime = 1;
1958}
1959
1960void disable_sched_clock_irqtime(void)
1961{
1962 sched_clock_irqtime = 0;
1963}
1964
Peter Zijlstra8e92c202010-12-09 14:15:34 +01001965#ifndef CONFIG_64BIT
1966static DEFINE_PER_CPU(seqcount_t, irq_time_seq);
1967
1968static inline void irq_time_write_begin(void)
1969{
1970 __this_cpu_inc(irq_time_seq.sequence);
1971 smp_wmb();
1972}
1973
1974static inline void irq_time_write_end(void)
1975{
1976 smp_wmb();
1977 __this_cpu_inc(irq_time_seq.sequence);
1978}
1979
1980static inline u64 irq_time_read(int cpu)
1981{
1982 u64 irq_time;
1983 unsigned seq;
1984
1985 do {
1986 seq = read_seqcount_begin(&per_cpu(irq_time_seq, cpu));
1987 irq_time = per_cpu(cpu_softirq_time, cpu) +
1988 per_cpu(cpu_hardirq_time, cpu);
1989 } while (read_seqcount_retry(&per_cpu(irq_time_seq, cpu), seq));
1990
1991 return irq_time;
1992}
1993#else /* CONFIG_64BIT */
1994static inline void irq_time_write_begin(void)
1995{
1996}
1997
1998static inline void irq_time_write_end(void)
1999{
2000}
2001
2002static inline u64 irq_time_read(int cpu)
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -07002003{
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -07002004 return per_cpu(cpu_softirq_time, cpu) + per_cpu(cpu_hardirq_time, cpu);
2005}
Peter Zijlstra8e92c202010-12-09 14:15:34 +01002006#endif /* CONFIG_64BIT */
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -07002007
Peter Zijlstrafe44d622010-12-09 14:15:34 +01002008/*
2009 * Called before incrementing preempt_count on {soft,}irq_enter
2010 * and before decrementing preempt_count on {soft,}irq_exit.
2011 */
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07002012void account_system_vtime(struct task_struct *curr)
2013{
2014 unsigned long flags;
Peter Zijlstrafe44d622010-12-09 14:15:34 +01002015 s64 delta;
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07002016 int cpu;
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07002017
2018 if (!sched_clock_irqtime)
2019 return;
2020
2021 local_irq_save(flags);
2022
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07002023 cpu = smp_processor_id();
Peter Zijlstrafe44d622010-12-09 14:15:34 +01002024 delta = sched_clock_cpu(cpu) - __this_cpu_read(irq_start_time);
2025 __this_cpu_add(irq_start_time, delta);
2026
Peter Zijlstra8e92c202010-12-09 14:15:34 +01002027 irq_time_write_begin();
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07002028 /*
2029 * We do not account for softirq time from ksoftirqd here.
2030 * We want to continue accounting softirq time to ksoftirqd thread
2031 * in that case, so as not to confuse scheduler with a special task
2032 * that do not consume any time, but still wants to run.
2033 */
2034 if (hardirq_count())
Peter Zijlstrafe44d622010-12-09 14:15:34 +01002035 __this_cpu_add(cpu_hardirq_time, delta);
Venkatesh Pallipadi4dd53d82010-12-21 17:09:00 -08002036 else if (in_serving_softirq() && curr != this_cpu_ksoftirqd())
Peter Zijlstrafe44d622010-12-09 14:15:34 +01002037 __this_cpu_add(cpu_softirq_time, delta);
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07002038
Peter Zijlstra8e92c202010-12-09 14:15:34 +01002039 irq_time_write_end();
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07002040 local_irq_restore(flags);
2041}
Ingo Molnarb7dadc32010-10-18 20:00:37 +02002042EXPORT_SYMBOL_GPL(account_system_vtime);
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07002043
Glauber Costae6e66852011-07-11 15:28:17 -04002044#endif /* CONFIG_IRQ_TIME_ACCOUNTING */
2045
2046#ifdef CONFIG_PARAVIRT
2047static inline u64 steal_ticks(u64 steal)
2048{
2049 if (unlikely(steal > NSEC_PER_SEC))
2050 return div_u64(steal, TICK_NSEC);
2051
2052 return __iter_div_u64_rem(steal, TICK_NSEC, &steal);
2053}
2054#endif
2055
Peter Zijlstrafe44d622010-12-09 14:15:34 +01002056static void update_rq_clock_task(struct rq *rq, s64 delta)
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -07002057{
Glauber Costa095c0aa2011-07-11 15:28:18 -04002058/*
2059 * In theory, the compile should just see 0 here, and optimize out the call
2060 * to sched_rt_avg_update. But I don't trust it...
2061 */
2062#if defined(CONFIG_IRQ_TIME_ACCOUNTING) || defined(CONFIG_PARAVIRT_TIME_ACCOUNTING)
2063 s64 steal = 0, irq_delta = 0;
2064#endif
2065#ifdef CONFIG_IRQ_TIME_ACCOUNTING
Peter Zijlstra8e92c202010-12-09 14:15:34 +01002066 irq_delta = irq_time_read(cpu_of(rq)) - rq->prev_irq_time;
Peter Zijlstrafe44d622010-12-09 14:15:34 +01002067
2068 /*
2069 * Since irq_time is only updated on {soft,}irq_exit, we might run into
2070 * this case when a previous update_rq_clock() happened inside a
2071 * {soft,}irq region.
2072 *
2073 * When this happens, we stop ->clock_task and only update the
2074 * prev_irq_time stamp to account for the part that fit, so that a next
2075 * update will consume the rest. This ensures ->clock_task is
2076 * monotonic.
2077 *
2078 * It does however cause some slight miss-attribution of {soft,}irq
2079 * time, a more accurate solution would be to update the irq_time using
2080 * the current rq->clock timestamp, except that would require using
2081 * atomic ops.
2082 */
2083 if (irq_delta > delta)
2084 irq_delta = delta;
2085
2086 rq->prev_irq_time += irq_delta;
2087 delta -= irq_delta;
Glauber Costa095c0aa2011-07-11 15:28:18 -04002088#endif
2089#ifdef CONFIG_PARAVIRT_TIME_ACCOUNTING
2090 if (static_branch((&paravirt_steal_rq_enabled))) {
2091 u64 st;
2092
2093 steal = paravirt_steal_clock(cpu_of(rq));
2094 steal -= rq->prev_steal_time_rq;
2095
2096 if (unlikely(steal > delta))
2097 steal = delta;
2098
2099 st = steal_ticks(steal);
2100 steal = st * TICK_NSEC;
2101
2102 rq->prev_steal_time_rq += steal;
2103
2104 delta -= steal;
2105 }
2106#endif
2107
Peter Zijlstrafe44d622010-12-09 14:15:34 +01002108 rq->clock_task += delta;
2109
Glauber Costa095c0aa2011-07-11 15:28:18 -04002110#if defined(CONFIG_IRQ_TIME_ACCOUNTING) || defined(CONFIG_PARAVIRT_TIME_ACCOUNTING)
2111 if ((irq_delta + steal) && sched_feat(NONTASK_POWER))
2112 sched_rt_avg_update(rq, irq_delta + steal);
2113#endif
Venkatesh Pallipadiaa483802010-10-04 17:03:22 -07002114}
2115
Glauber Costa095c0aa2011-07-11 15:28:18 -04002116#ifdef CONFIG_IRQ_TIME_ACCOUNTING
Venkatesh Pallipadiabb74ce2010-12-21 17:09:03 -08002117static int irqtime_account_hi_update(void)
2118{
2119 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
2120 unsigned long flags;
2121 u64 latest_ns;
2122 int ret = 0;
2123
2124 local_irq_save(flags);
2125 latest_ns = this_cpu_read(cpu_hardirq_time);
2126 if (cputime64_gt(nsecs_to_cputime64(latest_ns), cpustat->irq))
2127 ret = 1;
2128 local_irq_restore(flags);
2129 return ret;
2130}
2131
2132static int irqtime_account_si_update(void)
2133{
2134 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
2135 unsigned long flags;
2136 u64 latest_ns;
2137 int ret = 0;
2138
2139 local_irq_save(flags);
2140 latest_ns = this_cpu_read(cpu_softirq_time);
2141 if (cputime64_gt(nsecs_to_cputime64(latest_ns), cpustat->softirq))
2142 ret = 1;
2143 local_irq_restore(flags);
2144 return ret;
2145}
2146
Peter Zijlstrafe44d622010-12-09 14:15:34 +01002147#else /* CONFIG_IRQ_TIME_ACCOUNTING */
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -07002148
Venkatesh Pallipadiabb74ce2010-12-21 17:09:03 -08002149#define sched_clock_irqtime (0)
2150
Glauber Costa095c0aa2011-07-11 15:28:18 -04002151#endif
Venkatesh Pallipadib52bfee2010-10-04 17:03:19 -07002152
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01002153#include "sched_idletask.c"
2154#include "sched_fair.c"
2155#include "sched_rt.c"
Mike Galbraith5091faa2010-11-30 14:18:03 +01002156#include "sched_autogroup.c"
Peter Zijlstra34f971f2010-09-22 13:53:15 +02002157#include "sched_stoptask.c"
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01002158#ifdef CONFIG_SCHED_DEBUG
2159# include "sched_debug.c"
2160#endif
2161
Peter Zijlstra34f971f2010-09-22 13:53:15 +02002162void sched_set_stop_task(int cpu, struct task_struct *stop)
2163{
2164 struct sched_param param = { .sched_priority = MAX_RT_PRIO - 1 };
2165 struct task_struct *old_stop = cpu_rq(cpu)->stop;
2166
2167 if (stop) {
2168 /*
2169 * Make it appear like a SCHED_FIFO task, its something
2170 * userspace knows about and won't get confused about.
2171 *
2172 * Also, it will make PI more or less work without too
2173 * much confusion -- but then, stop work should not
2174 * rely on PI working anyway.
2175 */
2176 sched_setscheduler_nocheck(stop, SCHED_FIFO, &param);
2177
2178 stop->sched_class = &stop_sched_class;
2179 }
2180
2181 cpu_rq(cpu)->stop = stop;
2182
2183 if (old_stop) {
2184 /*
2185 * Reset it back to a normal scheduling class so that
2186 * it can die in pieces.
2187 */
2188 old_stop->sched_class = &rt_sched_class;
2189 }
2190}
2191
Peter Zijlstra1e3c88b2009-12-17 17:00:43 +01002192/*
Ingo Molnardd41f592007-07-09 18:51:59 +02002193 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +02002194 */
Ingo Molnar14531182007-07-09 18:51:59 +02002195static inline int __normal_prio(struct task_struct *p)
2196{
Ingo Molnardd41f592007-07-09 18:51:59 +02002197 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +02002198}
2199
2200/*
Ingo Molnarb29739f2006-06-27 02:54:51 -07002201 * Calculate the expected normal priority: i.e. priority
2202 * without taking RT-inheritance into account. Might be
2203 * boosted by interactivity modifiers. Changes upon fork,
2204 * setprio syscalls, and whenever the interactivity
2205 * estimator recalculates.
2206 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002207static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07002208{
2209 int prio;
2210
Ingo Molnare05606d2007-07-09 18:51:59 +02002211 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -07002212 prio = MAX_RT_PRIO-1 - p->rt_priority;
2213 else
2214 prio = __normal_prio(p);
2215 return prio;
2216}
2217
2218/*
2219 * Calculate the current priority, i.e. the priority
2220 * taken into account by the scheduler. This value might
2221 * be boosted by RT tasks, or might be boosted by
2222 * interactivity modifiers. Will be RT if the task got
2223 * RT-boosted. If not then it returns p->normal_prio.
2224 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002225static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -07002226{
2227 p->normal_prio = normal_prio(p);
2228 /*
2229 * If we are RT tasks or we were boosted to RT priority,
2230 * keep the priority unchanged. Otherwise, update priority
2231 * to the normal priority:
2232 */
2233 if (!rt_prio(p->prio))
2234 return p->normal_prio;
2235 return p->prio;
2236}
2237
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238/**
2239 * task_curr - is this task currently executing on a CPU?
2240 * @p: the task in question.
2241 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002242inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243{
2244 return cpu_curr(task_cpu(p)) == p;
2245}
2246
Steven Rostedtcb469842008-01-25 21:08:22 +01002247static inline void check_class_changed(struct rq *rq, struct task_struct *p,
2248 const struct sched_class *prev_class,
Peter Zijlstrada7a7352011-01-17 17:03:27 +01002249 int oldprio)
Steven Rostedtcb469842008-01-25 21:08:22 +01002250{
2251 if (prev_class != p->sched_class) {
2252 if (prev_class->switched_from)
Peter Zijlstrada7a7352011-01-17 17:03:27 +01002253 prev_class->switched_from(rq, p);
2254 p->sched_class->switched_to(rq, p);
2255 } else if (oldprio != p->prio)
2256 p->sched_class->prio_changed(rq, p, oldprio);
Steven Rostedtcb469842008-01-25 21:08:22 +01002257}
2258
Peter Zijlstra1e5a7402010-10-31 12:37:04 +01002259static void check_preempt_curr(struct rq *rq, struct task_struct *p, int flags)
2260{
2261 const struct sched_class *class;
2262
2263 if (p->sched_class == rq->curr->sched_class) {
2264 rq->curr->sched_class->check_preempt_curr(rq, p, flags);
2265 } else {
2266 for_each_class(class) {
2267 if (class == rq->curr->sched_class)
2268 break;
2269 if (class == p->sched_class) {
2270 resched_task(rq->curr);
2271 break;
2272 }
2273 }
2274 }
2275
2276 /*
2277 * A queue event has occurred, and we're going to schedule. In
2278 * this case, we can save a useless back to back clock update.
2279 */
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02002280 if (rq->curr->on_rq && test_tsk_need_resched(rq->curr))
Peter Zijlstra1e5a7402010-10-31 12:37:04 +01002281 rq->skip_clock_update = 1;
2282}
2283
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284#ifdef CONFIG_SMP
Ingo Molnarcc367732007-10-15 17:00:18 +02002285/*
2286 * Is this task likely cache-hot:
2287 */
Gregory Haskinse7693a32008-01-25 21:08:09 +01002288static int
Ingo Molnarcc367732007-10-15 17:00:18 +02002289task_hot(struct task_struct *p, u64 now, struct sched_domain *sd)
2290{
2291 s64 delta;
2292
Peter Zijlstrae6c8fba2009-12-16 18:04:33 +01002293 if (p->sched_class != &fair_sched_class)
2294 return 0;
2295
Nikhil Raoef8002f2010-10-13 12:09:35 -07002296 if (unlikely(p->policy == SCHED_IDLE))
2297 return 0;
2298
Ingo Molnarf540a602008-03-15 17:10:34 +01002299 /*
2300 * Buddy candidates are cache hot:
2301 */
Mike Galbraithf685cea2009-10-23 23:09:22 +02002302 if (sched_feat(CACHE_HOT_BUDDY) && this_rq()->nr_running &&
Peter Zijlstra47932412008-11-04 21:25:09 +01002303 (&p->se == cfs_rq_of(&p->se)->next ||
2304 &p->se == cfs_rq_of(&p->se)->last))
Ingo Molnarf540a602008-03-15 17:10:34 +01002305 return 1;
2306
Ingo Molnar6bc16652007-10-15 17:00:18 +02002307 if (sysctl_sched_migration_cost == -1)
2308 return 1;
2309 if (sysctl_sched_migration_cost == 0)
2310 return 0;
2311
Ingo Molnarcc367732007-10-15 17:00:18 +02002312 delta = now - p->se.exec_start;
2313
2314 return delta < (s64)sysctl_sched_migration_cost;
2315}
2316
Ingo Molnardd41f592007-07-09 18:51:59 +02002317void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02002318{
Peter Zijlstrae2912002009-12-16 18:04:36 +01002319#ifdef CONFIG_SCHED_DEBUG
2320 /*
2321 * We should never call set_task_cpu() on a blocked task,
2322 * ttwu() will sort out the placement.
2323 */
Peter Zijlstra077614e2009-12-17 13:16:31 +01002324 WARN_ON_ONCE(p->state != TASK_RUNNING && p->state != TASK_WAKING &&
2325 !(task_thread_info(p)->preempt_count & PREEMPT_ACTIVE));
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002326
2327#ifdef CONFIG_LOCKDEP
Peter Zijlstra6c6c54e2011-06-03 17:37:07 +02002328 /*
2329 * The caller should hold either p->pi_lock or rq->lock, when changing
2330 * a task's CPU. ->pi_lock for waking tasks, rq->lock for runnable tasks.
2331 *
2332 * sched_move_task() holds both and thus holding either pins the cgroup,
2333 * see set_task_rq().
2334 *
2335 * Furthermore, all task_rq users should acquire both locks, see
2336 * task_rq_lock().
2337 */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002338 WARN_ON_ONCE(debug_locks && !(lockdep_is_held(&p->pi_lock) ||
2339 lockdep_is_held(&task_rq(p)->lock)));
2340#endif
Peter Zijlstrae2912002009-12-16 18:04:36 +01002341#endif
2342
Mathieu Desnoyersde1d7282009-05-05 16:49:59 +08002343 trace_sched_migrate_task(p, new_cpu);
Peter Zijlstracbc34ed2008-12-10 08:08:22 +01002344
Peter Zijlstra0c697742009-12-22 15:43:19 +01002345 if (task_cpu(p) != new_cpu) {
2346 p->se.nr_migrations++;
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +02002347 perf_sw_event(PERF_COUNT_SW_CPU_MIGRATIONS, 1, NULL, 0);
Peter Zijlstra0c697742009-12-22 15:43:19 +01002348 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002349
2350 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02002351}
2352
Tejun Heo969c7922010-05-06 18:49:21 +02002353struct migration_arg {
Ingo Molnar36c8b582006-07-03 00:25:41 -07002354 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 int dest_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002356};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
Tejun Heo969c7922010-05-06 18:49:21 +02002358static int migration_cpu_stop(void *data);
2359
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 * wait_task_inactive - wait for a thread to unschedule.
2362 *
Roland McGrath85ba2d82008-07-25 19:45:58 -07002363 * If @match_state is nonzero, it's the @p->state value just checked and
2364 * not expected to change. If it changes, i.e. @p might have woken up,
2365 * then return zero. When we succeed in waiting for @p to be off its CPU,
2366 * we return a positive number (its total switch count). If a second call
2367 * a short while later returns the same number, the caller can be sure that
2368 * @p has remained unscheduled the whole time.
2369 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 * The caller must ensure that the task *will* unschedule sometime soon,
2371 * else this function might spin for a *long* time. This function can't
2372 * be called with interrupts off, or it may introduce deadlock with
2373 * smp_call_function() if an IPI is sent by the same process we are
2374 * waiting to become inactive.
2375 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07002376unsigned long wait_task_inactive(struct task_struct *p, long match_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377{
2378 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002379 int running, on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07002380 unsigned long ncsw;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002381 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382
Andi Kleen3a5c3592007-10-15 17:00:14 +02002383 for (;;) {
2384 /*
2385 * We do the initial early heuristics without holding
2386 * any task-queue locks at all. We'll only try to get
2387 * the runqueue lock when things look like they will
2388 * work out!
2389 */
2390 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002391
Andi Kleen3a5c3592007-10-15 17:00:14 +02002392 /*
2393 * If the task is actively running on another CPU
2394 * still, just relax and busy-wait without holding
2395 * any locks.
2396 *
2397 * NOTE! Since we don't hold any locks, it's not
2398 * even sure that "rq" stays as the right runqueue!
2399 * But we don't care, since "task_running()" will
2400 * return false if the runqueue has changed and p
2401 * is actually now running somewhere else!
2402 */
Roland McGrath85ba2d82008-07-25 19:45:58 -07002403 while (task_running(rq, p)) {
2404 if (match_state && unlikely(p->state != match_state))
2405 return 0;
Andi Kleen3a5c3592007-10-15 17:00:14 +02002406 cpu_relax();
Roland McGrath85ba2d82008-07-25 19:45:58 -07002407 }
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002408
Andi Kleen3a5c3592007-10-15 17:00:14 +02002409 /*
2410 * Ok, time to look more closely! We need the rq
2411 * lock now, to be *sure*. If we're wrong, we'll
2412 * just go back and repeat.
2413 */
2414 rq = task_rq_lock(p, &flags);
Peter Zijlstra27a9da62010-05-04 20:36:56 +02002415 trace_sched_wait_task(p);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002416 running = task_running(rq, p);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02002417 on_rq = p->on_rq;
Roland McGrath85ba2d82008-07-25 19:45:58 -07002418 ncsw = 0;
Oleg Nesterovf31e11d2008-08-20 16:54:44 -07002419 if (!match_state || p->state == match_state)
Oleg Nesterov93dcf552008-08-20 16:54:44 -07002420 ncsw = p->nvcsw | LONG_MIN; /* sets MSB */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002421 task_rq_unlock(rq, p, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07002422
Andi Kleen3a5c3592007-10-15 17:00:14 +02002423 /*
Roland McGrath85ba2d82008-07-25 19:45:58 -07002424 * If it changed from the expected state, bail out now.
2425 */
2426 if (unlikely(!ncsw))
2427 break;
2428
2429 /*
Andi Kleen3a5c3592007-10-15 17:00:14 +02002430 * Was it really running after all now that we
2431 * checked with the proper locks actually held?
2432 *
2433 * Oops. Go back and try again..
2434 */
2435 if (unlikely(running)) {
2436 cpu_relax();
2437 continue;
2438 }
2439
2440 /*
2441 * It's not enough that it's not actively running,
2442 * it must be off the runqueue _entirely_, and not
2443 * preempted!
2444 *
Luis Henriques80dd99b2009-03-16 19:58:09 +00002445 * So if it was still runnable (but just not actively
Andi Kleen3a5c3592007-10-15 17:00:14 +02002446 * running right now), it's preempted, and we should
2447 * yield - it could be a while.
2448 */
2449 if (unlikely(on_rq)) {
Thomas Gleixner8eb90c32011-02-23 23:52:21 +00002450 ktime_t to = ktime_set(0, NSEC_PER_SEC/HZ);
2451
2452 set_current_state(TASK_UNINTERRUPTIBLE);
2453 schedule_hrtimeout(&to, HRTIMER_MODE_REL);
Andi Kleen3a5c3592007-10-15 17:00:14 +02002454 continue;
2455 }
2456
2457 /*
2458 * Ahh, all good. It wasn't running, and it wasn't
2459 * runnable, which means that it will never become
2460 * running in the future either. We're all done!
2461 */
2462 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 }
Roland McGrath85ba2d82008-07-25 19:45:58 -07002464
2465 return ncsw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466}
2467
2468/***
2469 * kick_process - kick a running thread to enter/exit the kernel
2470 * @p: the to-be-kicked thread
2471 *
2472 * Cause a process which is running on another CPU to enter
2473 * kernel-mode, without any delay. (to get signals handled.)
2474 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002475 * NOTE: this function doesn't have to take the runqueue lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 * because all it wants to ensure is that the remote task enters
2477 * the kernel. If the IPI races and the task has been migrated
2478 * to another CPU then no harm is done and the purpose has been
2479 * achieved as well.
2480 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002481void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482{
2483 int cpu;
2484
2485 preempt_disable();
2486 cpu = task_cpu(p);
2487 if ((cpu != smp_processor_id()) && task_curr(p))
2488 smp_send_reschedule(cpu);
2489 preempt_enable();
2490}
Rusty Russellb43e3522009-06-12 22:27:00 -06002491EXPORT_SYMBOL_GPL(kick_process);
Nick Piggin476d1392005-06-25 14:57:29 -07002492#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493
Peter Zijlstra970b13b2009-11-25 13:31:39 +01002494#ifdef CONFIG_SMP
Oleg Nesterov30da6882010-03-15 10:10:19 +01002495/*
Peter Zijlstra013fdb82011-04-05 17:23:45 +02002496 * ->cpus_allowed is protected by both rq->lock and p->pi_lock
Oleg Nesterov30da6882010-03-15 10:10:19 +01002497 */
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01002498static int select_fallback_rq(int cpu, struct task_struct *p)
2499{
2500 int dest_cpu;
2501 const struct cpumask *nodemask = cpumask_of_node(cpu_to_node(cpu));
2502
2503 /* Look for allowed, online CPU in same node. */
2504 for_each_cpu_and(dest_cpu, nodemask, cpu_active_mask)
2505 if (cpumask_test_cpu(dest_cpu, &p->cpus_allowed))
2506 return dest_cpu;
2507
2508 /* Any allowed, online CPU? */
2509 dest_cpu = cpumask_any_and(&p->cpus_allowed, cpu_active_mask);
2510 if (dest_cpu < nr_cpu_ids)
2511 return dest_cpu;
2512
2513 /* No more Mr. Nice Guy. */
Peter Zijlstra48c5cca2010-11-13 19:32:29 +01002514 dest_cpu = cpuset_cpus_allowed_fallback(p);
2515 /*
2516 * Don't tell them about moving exiting tasks or
2517 * kernel threads (both mm NULL), since they never
2518 * leave kernel.
2519 */
2520 if (p->mm && printk_ratelimit()) {
2521 printk(KERN_INFO "process %d (%s) no longer affine to cpu%d\n",
2522 task_pid_nr(p), p->comm, cpu);
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01002523 }
2524
2525 return dest_cpu;
2526}
2527
Peter Zijlstrae2912002009-12-16 18:04:36 +01002528/*
Peter Zijlstra013fdb82011-04-05 17:23:45 +02002529 * The caller (fork, wakeup) owns p->pi_lock, ->cpus_allowed is stable.
Peter Zijlstrae2912002009-12-16 18:04:36 +01002530 */
Peter Zijlstra970b13b2009-11-25 13:31:39 +01002531static inline
Peter Zijlstra7608dec2011-04-05 17:23:46 +02002532int select_task_rq(struct task_struct *p, int sd_flags, int wake_flags)
Peter Zijlstra970b13b2009-11-25 13:31:39 +01002533{
Peter Zijlstra7608dec2011-04-05 17:23:46 +02002534 int cpu = p->sched_class->select_task_rq(p, sd_flags, wake_flags);
Peter Zijlstrae2912002009-12-16 18:04:36 +01002535
2536 /*
2537 * In order not to call set_task_cpu() on a blocking task we need
2538 * to rely on ttwu() to place the task on a valid ->cpus_allowed
2539 * cpu.
2540 *
2541 * Since this is common to all placement strategies, this lives here.
2542 *
2543 * [ this allows ->select_task() to simply return task_cpu(p) and
2544 * not worry about this generic constraint ]
2545 */
2546 if (unlikely(!cpumask_test_cpu(cpu, &p->cpus_allowed) ||
Peter Zijlstra70f11202009-12-20 17:36:27 +01002547 !cpu_online(cpu)))
Peter Zijlstra5da9a0f2009-12-16 18:04:38 +01002548 cpu = select_fallback_rq(task_cpu(p), p);
Peter Zijlstrae2912002009-12-16 18:04:36 +01002549
2550 return cpu;
Peter Zijlstra970b13b2009-11-25 13:31:39 +01002551}
Mike Galbraith09a40af2010-04-15 07:29:59 +02002552
2553static void update_avg(u64 *avg, u64 sample)
2554{
2555 s64 diff = sample - *avg;
2556 *avg += diff >> 3;
2557}
Peter Zijlstra970b13b2009-11-25 13:31:39 +01002558#endif
2559
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02002560static void
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02002561ttwu_stat(struct task_struct *p, int cpu, int wake_flags)
Tejun Heo9ed38112009-12-03 15:08:03 +09002562{
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02002563#ifdef CONFIG_SCHEDSTATS
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02002564 struct rq *rq = this_rq();
Tejun Heo9ed38112009-12-03 15:08:03 +09002565
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02002566#ifdef CONFIG_SMP
2567 int this_cpu = smp_processor_id();
Tejun Heo9ed38112009-12-03 15:08:03 +09002568
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02002569 if (cpu == this_cpu) {
2570 schedstat_inc(rq, ttwu_local);
2571 schedstat_inc(p, se.statistics.nr_wakeups_local);
2572 } else {
2573 struct sched_domain *sd;
2574
2575 schedstat_inc(p, se.statistics.nr_wakeups_remote);
Peter Zijlstra057f3fa2011-04-18 11:24:34 +02002576 rcu_read_lock();
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02002577 for_each_domain(this_cpu, sd) {
2578 if (cpumask_test_cpu(cpu, sched_domain_span(sd))) {
2579 schedstat_inc(sd, ttwu_wake_remote);
2580 break;
2581 }
2582 }
Peter Zijlstra057f3fa2011-04-18 11:24:34 +02002583 rcu_read_unlock();
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02002584 }
Peter Zijlstraf339b9d2011-05-31 10:49:20 +02002585
2586 if (wake_flags & WF_MIGRATED)
2587 schedstat_inc(p, se.statistics.nr_wakeups_migrate);
2588
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02002589#endif /* CONFIG_SMP */
2590
2591 schedstat_inc(rq, ttwu_count);
2592 schedstat_inc(p, se.statistics.nr_wakeups);
2593
2594 if (wake_flags & WF_SYNC)
2595 schedstat_inc(p, se.statistics.nr_wakeups_sync);
2596
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02002597#endif /* CONFIG_SCHEDSTATS */
Tejun Heo9ed38112009-12-03 15:08:03 +09002598}
2599
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02002600static void ttwu_activate(struct rq *rq, struct task_struct *p, int en_flags)
Tejun Heo9ed38112009-12-03 15:08:03 +09002601{
Tejun Heo9ed38112009-12-03 15:08:03 +09002602 activate_task(rq, p, en_flags);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02002603 p->on_rq = 1;
Peter Zijlstrac2f71152011-04-13 13:28:56 +02002604
2605 /* if a worker is waking up, notify workqueue */
2606 if (p->flags & PF_WQ_WORKER)
2607 wq_worker_waking_up(p, cpu_of(rq));
Tejun Heo9ed38112009-12-03 15:08:03 +09002608}
2609
Peter Zijlstra23f41ee2011-04-05 17:23:56 +02002610/*
2611 * Mark the task runnable and perform wakeup-preemption.
2612 */
Peter Zijlstra89363382011-04-05 17:23:42 +02002613static void
Peter Zijlstra23f41ee2011-04-05 17:23:56 +02002614ttwu_do_wakeup(struct rq *rq, struct task_struct *p, int wake_flags)
Tejun Heo9ed38112009-12-03 15:08:03 +09002615{
Peter Zijlstra89363382011-04-05 17:23:42 +02002616 trace_sched_wakeup(p, true);
Tejun Heo9ed38112009-12-03 15:08:03 +09002617 check_preempt_curr(rq, p, wake_flags);
2618
2619 p->state = TASK_RUNNING;
2620#ifdef CONFIG_SMP
2621 if (p->sched_class->task_woken)
2622 p->sched_class->task_woken(rq, p);
2623
Steven Rostedte69c6342010-12-06 17:10:31 -05002624 if (rq->idle_stamp) {
Tejun Heo9ed38112009-12-03 15:08:03 +09002625 u64 delta = rq->clock - rq->idle_stamp;
2626 u64 max = 2*sysctl_sched_migration_cost;
2627
2628 if (delta > max)
2629 rq->avg_idle = max;
2630 else
2631 update_avg(&rq->avg_idle, delta);
2632 rq->idle_stamp = 0;
2633 }
2634#endif
2635}
2636
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02002637static void
2638ttwu_do_activate(struct rq *rq, struct task_struct *p, int wake_flags)
2639{
2640#ifdef CONFIG_SMP
2641 if (p->sched_contributes_to_load)
2642 rq->nr_uninterruptible--;
2643#endif
2644
2645 ttwu_activate(rq, p, ENQUEUE_WAKEUP | ENQUEUE_WAKING);
2646 ttwu_do_wakeup(rq, p, wake_flags);
2647}
2648
2649/*
2650 * Called in case the task @p isn't fully descheduled from its runqueue,
2651 * in this case we must do a remote wakeup. Its a 'light' wakeup though,
2652 * since all we need to do is flip p->state to TASK_RUNNING, since
2653 * the task is still ->on_rq.
2654 */
2655static int ttwu_remote(struct task_struct *p, int wake_flags)
2656{
2657 struct rq *rq;
2658 int ret = 0;
2659
2660 rq = __task_rq_lock(p);
2661 if (p->on_rq) {
2662 ttwu_do_wakeup(rq, p, wake_flags);
2663 ret = 1;
2664 }
2665 __task_rq_unlock(rq);
2666
2667 return ret;
2668}
2669
Peter Zijlstra317f3942011-04-05 17:23:58 +02002670#ifdef CONFIG_SMP
Peter Zijlstrac5d753a2011-07-19 15:07:25 -07002671static void sched_ttwu_do_pending(struct task_struct *list)
Peter Zijlstra317f3942011-04-05 17:23:58 +02002672{
2673 struct rq *rq = this_rq();
Peter Zijlstra317f3942011-04-05 17:23:58 +02002674
2675 raw_spin_lock(&rq->lock);
2676
2677 while (list) {
2678 struct task_struct *p = list;
2679 list = list->wake_entry;
2680 ttwu_do_activate(rq, p, 0);
2681 }
2682
2683 raw_spin_unlock(&rq->lock);
2684}
2685
Peter Zijlstrac5d753a2011-07-19 15:07:25 -07002686#ifdef CONFIG_HOTPLUG_CPU
2687
2688static void sched_ttwu_pending(void)
2689{
2690 struct rq *rq = this_rq();
2691 struct task_struct *list = xchg(&rq->wake_list, NULL);
2692
2693 if (!list)
2694 return;
2695
2696 sched_ttwu_do_pending(list);
2697}
2698
2699#endif /* CONFIG_HOTPLUG_CPU */
2700
Peter Zijlstra317f3942011-04-05 17:23:58 +02002701void scheduler_ipi(void)
2702{
Peter Zijlstrac5d753a2011-07-19 15:07:25 -07002703 struct rq *rq = this_rq();
2704 struct task_struct *list = xchg(&rq->wake_list, NULL);
2705
2706 if (!list)
2707 return;
2708
2709 /*
2710 * Not all reschedule IPI handlers call irq_enter/irq_exit, since
2711 * traditionally all their work was done from the interrupt return
2712 * path. Now that we actually do some work, we need to make sure
2713 * we do call them.
2714 *
2715 * Some archs already do call them, luckily irq_enter/exit nest
2716 * properly.
2717 *
2718 * Arguably we should visit all archs and update all handlers,
2719 * however a fair share of IPIs are still resched only so this would
2720 * somewhat pessimize the simple resched case.
2721 */
2722 irq_enter();
2723 sched_ttwu_do_pending(list);
2724 irq_exit();
Peter Zijlstra317f3942011-04-05 17:23:58 +02002725}
2726
2727static void ttwu_queue_remote(struct task_struct *p, int cpu)
2728{
2729 struct rq *rq = cpu_rq(cpu);
2730 struct task_struct *next = rq->wake_list;
2731
2732 for (;;) {
2733 struct task_struct *old = next;
2734
2735 p->wake_entry = next;
2736 next = cmpxchg(&rq->wake_list, old, p);
2737 if (next == old)
2738 break;
2739 }
2740
2741 if (!next)
2742 smp_send_reschedule(cpu);
2743}
Peter Zijlstrad6aa8f82011-05-26 14:21:33 +02002744
2745#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
2746static int ttwu_activate_remote(struct task_struct *p, int wake_flags)
2747{
2748 struct rq *rq;
2749 int ret = 0;
2750
2751 rq = __task_rq_lock(p);
2752 if (p->on_cpu) {
2753 ttwu_activate(rq, p, ENQUEUE_WAKEUP);
2754 ttwu_do_wakeup(rq, p, wake_flags);
2755 ret = 1;
2756 }
2757 __task_rq_unlock(rq);
2758
2759 return ret;
2760
2761}
2762#endif /* __ARCH_WANT_INTERRUPTS_ON_CTXSW */
2763#endif /* CONFIG_SMP */
Peter Zijlstra317f3942011-04-05 17:23:58 +02002764
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02002765static void ttwu_queue(struct task_struct *p, int cpu)
2766{
2767 struct rq *rq = cpu_rq(cpu);
2768
Daniel Hellstrom17d9f312011-05-20 04:01:10 +00002769#if defined(CONFIG_SMP)
Peter Zijlstra317f3942011-04-05 17:23:58 +02002770 if (sched_feat(TTWU_QUEUE) && cpu != smp_processor_id()) {
Peter Zijlstraf01114c2011-05-31 12:26:55 +02002771 sched_clock_cpu(cpu); /* sync clocks x-cpu */
Peter Zijlstra317f3942011-04-05 17:23:58 +02002772 ttwu_queue_remote(p, cpu);
2773 return;
2774 }
2775#endif
2776
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02002777 raw_spin_lock(&rq->lock);
2778 ttwu_do_activate(rq, p, 0);
2779 raw_spin_unlock(&rq->lock);
Tejun Heo9ed38112009-12-03 15:08:03 +09002780}
2781
2782/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 * try_to_wake_up - wake up a thread
Tejun Heo9ed38112009-12-03 15:08:03 +09002784 * @p: the thread to be awakened
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 * @state: the mask of task states that can be woken
Tejun Heo9ed38112009-12-03 15:08:03 +09002786 * @wake_flags: wake modifier flags (WF_*)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 *
2788 * Put it on the run-queue if it's not already there. The "current"
2789 * thread is always on the run-queue (except when the actual
2790 * re-schedule is in progress), and as such you're allowed to do
2791 * the simpler "current->state = TASK_RUNNING" to mark yourself
2792 * runnable without the overhead of this.
2793 *
Tejun Heo9ed38112009-12-03 15:08:03 +09002794 * Returns %true if @p was woken up, %false if it was already running
2795 * or @state didn't match @p's state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 */
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02002797static int
2798try_to_wake_up(struct task_struct *p, unsigned int state, int wake_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 unsigned long flags;
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02002801 int cpu, success = 0;
Peter Zijlstra2398f2c2008-06-27 13:41:35 +02002802
Linus Torvalds04e2f172008-02-23 18:05:03 -08002803 smp_wmb();
Peter Zijlstra013fdb82011-04-05 17:23:45 +02002804 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstrae9c84312009-09-15 14:43:03 +02002805 if (!(p->state & state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 goto out;
2807
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02002808 success = 1; /* we're going to change ->state */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 cpu = task_cpu(p);
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02002810
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02002811 if (p->on_rq && ttwu_remote(p, wake_flags))
2812 goto stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813
2814#ifdef CONFIG_SMP
Peter Zijlstrae9c84312009-09-15 14:43:03 +02002815 /*
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02002816 * If the owning (remote) cpu is still in the middle of schedule() with
2817 * this task as prev, wait until its done referencing the task.
Peter Zijlstrae9c84312009-09-15 14:43:03 +02002818 */
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02002819 while (p->on_cpu) {
2820#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
2821 /*
Peter Zijlstrad6aa8f82011-05-26 14:21:33 +02002822 * In case the architecture enables interrupts in
2823 * context_switch(), we cannot busy wait, since that
2824 * would lead to deadlocks when an interrupt hits and
2825 * tries to wake up @prev. So bail and do a complete
2826 * remote wakeup.
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02002827 */
Peter Zijlstrad6aa8f82011-05-26 14:21:33 +02002828 if (ttwu_activate_remote(p, wake_flags))
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02002829 goto stat;
Peter Zijlstrad6aa8f82011-05-26 14:21:33 +02002830#else
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02002831 cpu_relax();
Peter Zijlstrad6aa8f82011-05-26 14:21:33 +02002832#endif
Peter Zijlstracc87f762010-03-26 12:22:14 +01002833 }
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02002834 /*
2835 * Pairs with the smp_wmb() in finish_lock_switch().
2836 */
2837 smp_rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838
Peter Zijlstraa8e4f2e2011-04-05 17:23:49 +02002839 p->sched_contributes_to_load = !!task_contributes_to_load(p);
Peter Zijlstrae9c84312009-09-15 14:43:03 +02002840 p->state = TASK_WAKING;
Peter Zijlstraefbbd052009-12-16 18:04:40 +01002841
Peter Zijlstrae4a52bc2011-04-05 17:23:54 +02002842 if (p->sched_class->task_waking)
Peter Zijlstra74f8e4b2011-04-05 17:23:47 +02002843 p->sched_class->task_waking(p);
Peter Zijlstraab19cb22009-11-27 15:44:43 +01002844
Peter Zijlstra7608dec2011-04-05 17:23:46 +02002845 cpu = select_task_rq(p, SD_BALANCE_WAKE, wake_flags);
Peter Zijlstraf339b9d2011-05-31 10:49:20 +02002846 if (task_cpu(p) != cpu) {
2847 wake_flags |= WF_MIGRATED;
Mike Galbraithf5dc3752009-10-09 08:35:03 +02002848 set_task_cpu(p, cpu);
Peter Zijlstraf339b9d2011-05-31 10:49:20 +02002849 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851
Peter Zijlstrac05fbaf2011-04-05 17:23:57 +02002852 ttwu_queue(p, cpu);
2853stat:
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02002854 ttwu_stat(p, cpu, wake_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855out:
Peter Zijlstra013fdb82011-04-05 17:23:45 +02002856 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857
2858 return success;
2859}
2860
David Howells50fa6102009-04-28 15:01:38 +01002861/**
Tejun Heo21aa9af2010-06-08 21:40:37 +02002862 * try_to_wake_up_local - try to wake up a local task with rq lock held
2863 * @p: the thread to be awakened
2864 *
Peter Zijlstra2acca552011-04-05 17:23:50 +02002865 * Put @p on the run-queue if it's not already there. The caller must
Tejun Heo21aa9af2010-06-08 21:40:37 +02002866 * ensure that this_rq() is locked, @p is bound to this_rq() and not
Peter Zijlstra2acca552011-04-05 17:23:50 +02002867 * the current task.
Tejun Heo21aa9af2010-06-08 21:40:37 +02002868 */
2869static void try_to_wake_up_local(struct task_struct *p)
2870{
2871 struct rq *rq = task_rq(p);
Tejun Heo21aa9af2010-06-08 21:40:37 +02002872
2873 BUG_ON(rq != this_rq());
2874 BUG_ON(p == current);
2875 lockdep_assert_held(&rq->lock);
2876
Peter Zijlstra2acca552011-04-05 17:23:50 +02002877 if (!raw_spin_trylock(&p->pi_lock)) {
2878 raw_spin_unlock(&rq->lock);
2879 raw_spin_lock(&p->pi_lock);
2880 raw_spin_lock(&rq->lock);
Tejun Heo21aa9af2010-06-08 21:40:37 +02002881 }
Peter Zijlstra2acca552011-04-05 17:23:50 +02002882
Tejun Heo21aa9af2010-06-08 21:40:37 +02002883 if (!(p->state & TASK_NORMAL))
Peter Zijlstra2acca552011-04-05 17:23:50 +02002884 goto out;
Tejun Heo21aa9af2010-06-08 21:40:37 +02002885
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02002886 if (!p->on_rq)
Peter Zijlstrad7c01d22011-04-05 17:23:43 +02002887 ttwu_activate(rq, p, ENQUEUE_WAKEUP);
2888
Peter Zijlstra23f41ee2011-04-05 17:23:56 +02002889 ttwu_do_wakeup(rq, p, 0);
Peter Zijlstrab84cb5d2011-04-05 17:23:55 +02002890 ttwu_stat(p, smp_processor_id(), 0);
Peter Zijlstra2acca552011-04-05 17:23:50 +02002891out:
2892 raw_spin_unlock(&p->pi_lock);
Tejun Heo21aa9af2010-06-08 21:40:37 +02002893}
2894
2895/**
David Howells50fa6102009-04-28 15:01:38 +01002896 * wake_up_process - Wake up a specific process
2897 * @p: The process to be woken up.
2898 *
2899 * Attempt to wake up the nominated process and move it to the set of runnable
2900 * processes. Returns 1 if the process was woken up, 0 if it was already
2901 * running.
2902 *
2903 * It may be assumed that this function implies a write memory barrier before
2904 * changing the task state if and only if any tasks are woken up.
2905 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002906int wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907{
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05002908 return try_to_wake_up(p, TASK_ALL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910EXPORT_SYMBOL(wake_up_process);
2911
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08002912int wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913{
2914 return try_to_wake_up(p, state, 0);
2915}
2916
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917/*
2918 * Perform scheduler related setup for a newly forked process p.
2919 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02002920 *
2921 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002923static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924{
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02002925 p->on_rq = 0;
2926
2927 p->se.on_rq = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02002928 p->se.exec_start = 0;
2929 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02002930 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar6c594c22008-12-14 12:34:15 +01002931 p->se.nr_migrations = 0;
Peter Zijlstrada7a7352011-01-17 17:03:27 +01002932 p->se.vruntime = 0;
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02002933 INIT_LIST_HEAD(&p->se.group_node);
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002934
2935#ifdef CONFIG_SCHEDSTATS
Lucas De Marchi41acab82010-03-10 23:37:45 -03002936 memset(&p->se.statistics, 0, sizeof(p->se.statistics));
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02002937#endif
Nick Piggin476d1392005-06-25 14:57:29 -07002938
Peter Zijlstrafa717062008-01-25 21:08:27 +01002939 INIT_LIST_HEAD(&p->rt.run_list);
Nick Piggin476d1392005-06-25 14:57:29 -07002940
Avi Kivitye107be32007-07-26 13:40:43 +02002941#ifdef CONFIG_PREEMPT_NOTIFIERS
2942 INIT_HLIST_HEAD(&p->preempt_notifiers);
2943#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02002944}
2945
2946/*
2947 * fork()/clone()-time setup:
2948 */
Samir Bellabes3e51e3e2011-05-11 18:18:05 +02002949void sched_fork(struct task_struct *p)
Ingo Molnardd41f592007-07-09 18:51:59 +02002950{
Peter Zijlstra0122ec52011-04-05 17:23:51 +02002951 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02002952 int cpu = get_cpu();
2953
2954 __sched_fork(p);
Peter Zijlstra06b83b52009-12-16 18:04:35 +01002955 /*
Peter Zijlstra0017d732010-03-24 18:34:10 +01002956 * We mark the process as running here. This guarantees that
Peter Zijlstra06b83b52009-12-16 18:04:35 +01002957 * nobody will actually run it, and a signal or other external
2958 * event cannot wake it up and insert it on the runqueue either.
2959 */
Peter Zijlstra0017d732010-03-24 18:34:10 +01002960 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02002961
Ingo Molnarb29739f2006-06-27 02:54:51 -07002962 /*
Mike Galbraithc350a042011-07-27 17:14:55 +02002963 * Make sure we do not leak PI boosting priority to the child.
2964 */
2965 p->prio = current->normal_prio;
2966
2967 /*
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02002968 * Revert to default priority/policy on fork if requested.
2969 */
2970 if (unlikely(p->sched_reset_on_fork)) {
Mike Galbraithc350a042011-07-27 17:14:55 +02002971 if (task_has_rt_policy(p)) {
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02002972 p->policy = SCHED_NORMAL;
Mike Galbraith6c697bd2009-06-17 10:48:02 +02002973 p->static_prio = NICE_TO_PRIO(0);
Mike Galbraithc350a042011-07-27 17:14:55 +02002974 p->rt_priority = 0;
2975 } else if (PRIO_TO_NICE(p->static_prio) < 0)
2976 p->static_prio = NICE_TO_PRIO(0);
2977
2978 p->prio = p->normal_prio = __normal_prio(p);
2979 set_load_weight(p);
Mike Galbraith6c697bd2009-06-17 10:48:02 +02002980
Mike Galbraithb9dc29e2009-06-17 10:46:01 +02002981 /*
2982 * We don't need the reset flag anymore after the fork. It has
2983 * fulfilled its duty:
2984 */
2985 p->sched_reset_on_fork = 0;
2986 }
Lennart Poetteringca94c442009-06-15 17:17:47 +02002987
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02002988 if (!rt_prio(p->prio))
2989 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07002990
Peter Zijlstracd29fe62009-11-27 17:32:46 +01002991 if (p->sched_class->task_fork)
2992 p->sched_class->task_fork(p);
2993
Peter Zijlstra86951592010-06-22 11:44:53 +02002994 /*
2995 * The child is not yet in the pid-hash so no cgroup attach races,
2996 * and the cgroup is pinned to this child due to cgroup_fork()
2997 * is ran before sched_fork().
2998 *
2999 * Silence PROVE_RCU.
3000 */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003001 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstra5f3edc12009-09-10 13:42:00 +02003002 set_task_cpu(p, cpu);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003003 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Peter Zijlstra5f3edc12009-09-10 13:42:00 +02003004
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07003005#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02003006 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07003007 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008#endif
Peter Zijlstra3ca7a442011-04-05 17:23:40 +02003009#if defined(CONFIG_SMP)
3010 p->on_cpu = 0;
Nick Piggin4866cde2005-06-25 14:57:23 -07003011#endif
Frederic Weisbeckerbdd4e852011-06-08 01:13:27 +02003012#ifdef CONFIG_PREEMPT_COUNT
Nick Piggin4866cde2005-06-25 14:57:23 -07003013 /* Want to start with kernel preemption disabled. */
Al Viroa1261f52005-11-13 16:06:55 -08003014 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015#endif
Dario Faggioli806c09a2010-11-30 19:51:33 +01003016#ifdef CONFIG_SMP
Gregory Haskins917b6272008-12-29 09:39:53 -05003017 plist_node_init(&p->pushable_tasks, MAX_PRIO);
Dario Faggioli806c09a2010-11-30 19:51:33 +01003018#endif
Gregory Haskins917b6272008-12-29 09:39:53 -05003019
Nick Piggin476d1392005-06-25 14:57:29 -07003020 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021}
3022
3023/*
3024 * wake_up_new_task - wake up a newly created task for the first time.
3025 *
3026 * This function will do some initial scheduler statistics housekeeping
3027 * that must be done for every newly created context, then puts the task
3028 * on the runqueue and wakes it.
3029 */
Samir Bellabes3e51e3e2011-05-11 18:18:05 +02003030void wake_up_new_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031{
3032 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02003033 struct rq *rq;
Peter Zijlstrafabf3182010-01-21 21:04:57 +01003034
Peter Zijlstraab2515c2011-04-05 17:23:52 +02003035 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstrafabf3182010-01-21 21:04:57 +01003036#ifdef CONFIG_SMP
3037 /*
3038 * Fork balancing, do it here and not earlier because:
3039 * - cpus_allowed can change in the fork path
3040 * - any previously selected cpu might disappear through hotplug
Peter Zijlstrafabf3182010-01-21 21:04:57 +01003041 */
Peter Zijlstraab2515c2011-04-05 17:23:52 +02003042 set_task_cpu(p, select_task_rq(p, SD_BALANCE_FORK, 0));
Peter Zijlstrafabf3182010-01-21 21:04:57 +01003043#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044
Peter Zijlstraab2515c2011-04-05 17:23:52 +02003045 rq = __task_rq_lock(p);
Peter Zijlstracd29fe62009-11-27 17:32:46 +01003046 activate_task(rq, p, 0);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02003047 p->on_rq = 1;
Peter Zijlstra89363382011-04-05 17:23:42 +02003048 trace_sched_wakeup_new(p, true);
Peter Zijlstraa7558e02009-09-14 20:02:34 +02003049 check_preempt_curr(rq, p, WF_FORK);
Steven Rostedt9a897c52008-01-25 21:08:22 +01003050#ifdef CONFIG_SMP
Peter Zijlstraefbbd052009-12-16 18:04:40 +01003051 if (p->sched_class->task_woken)
3052 p->sched_class->task_woken(rq, p);
Steven Rostedt9a897c52008-01-25 21:08:22 +01003053#endif
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003054 task_rq_unlock(rq, p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055}
3056
Avi Kivitye107be32007-07-26 13:40:43 +02003057#ifdef CONFIG_PREEMPT_NOTIFIERS
3058
3059/**
Luis Henriques80dd99b2009-03-16 19:58:09 +00003060 * preempt_notifier_register - tell me when current is being preempted & rescheduled
Randy Dunlap421cee22007-07-31 00:37:50 -07003061 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02003062 */
3063void preempt_notifier_register(struct preempt_notifier *notifier)
3064{
3065 hlist_add_head(&notifier->link, &current->preempt_notifiers);
3066}
3067EXPORT_SYMBOL_GPL(preempt_notifier_register);
3068
3069/**
3070 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07003071 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02003072 *
3073 * This is safe to call from within a preemption notifier.
3074 */
3075void preempt_notifier_unregister(struct preempt_notifier *notifier)
3076{
3077 hlist_del(&notifier->link);
3078}
3079EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
3080
3081static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
3082{
3083 struct preempt_notifier *notifier;
3084 struct hlist_node *node;
3085
3086 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
3087 notifier->ops->sched_in(notifier, raw_smp_processor_id());
3088}
3089
3090static void
3091fire_sched_out_preempt_notifiers(struct task_struct *curr,
3092 struct task_struct *next)
3093{
3094 struct preempt_notifier *notifier;
3095 struct hlist_node *node;
3096
3097 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
3098 notifier->ops->sched_out(notifier, next);
3099}
3100
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02003101#else /* !CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02003102
3103static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
3104{
3105}
3106
3107static void
3108fire_sched_out_preempt_notifiers(struct task_struct *curr,
3109 struct task_struct *next)
3110{
3111}
3112
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02003113#endif /* CONFIG_PREEMPT_NOTIFIERS */
Avi Kivitye107be32007-07-26 13:40:43 +02003114
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115/**
Nick Piggin4866cde2005-06-25 14:57:23 -07003116 * prepare_task_switch - prepare to switch tasks
3117 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07003118 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07003119 * @next: the task we are going to switch to.
3120 *
3121 * This is called with the rq lock held and interrupts off. It must
3122 * be paired with a subsequent finish_task_switch after the context
3123 * switch.
3124 *
3125 * prepare_task_switch sets up locking and calls architecture specific
3126 * hooks.
3127 */
Avi Kivitye107be32007-07-26 13:40:43 +02003128static inline void
3129prepare_task_switch(struct rq *rq, struct task_struct *prev,
3130 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07003131{
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003132 sched_info_switch(prev, next);
3133 perf_event_task_sched_out(prev, next);
Avi Kivitye107be32007-07-26 13:40:43 +02003134 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07003135 prepare_lock_switch(rq, next);
3136 prepare_arch_switch(next);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003137 trace_sched_switch(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07003138}
3139
3140/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04003142 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 * @prev: the thread we just switched away from.
3144 *
Nick Piggin4866cde2005-06-25 14:57:23 -07003145 * finish_task_switch must be called after the context switch, paired
3146 * with a prepare_task_switch call before the context switch.
3147 * finish_task_switch will reconcile locking set up by prepare_task_switch,
3148 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149 *
3150 * Note that we may have delayed dropping an mm in context_switch(). If
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01003151 * so, we finish that here outside of the runqueue lock. (Doing it
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 * with the lock held can cause deadlocks; see schedule() for
3153 * details.)
3154 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02003155static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 __releases(rq->lock)
3157{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07003159 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160
3161 rq->prev_mm = NULL;
3162
3163 /*
3164 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07003165 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07003166 * schedule one last time. The schedule call will never return, and
3167 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07003168 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 * still held, otherwise prev could be scheduled on another cpu, die
3170 * there before we look at prev->state, and then the reference would
3171 * be dropped twice.
3172 * Manfred Spraul <manfred@colorfullife.com>
3173 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07003174 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07003175 finish_arch_switch(prev);
Jamie Iles8381f652010-01-08 15:27:33 +00003176#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
3177 local_irq_disable();
3178#endif /* __ARCH_WANT_INTERRUPTS_ON_CTXSW */
Peter Zijlstra49f47432009-12-27 11:51:52 +01003179 perf_event_task_sched_in(current);
Jamie Iles8381f652010-01-08 15:27:33 +00003180#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
3181 local_irq_enable();
3182#endif /* __ARCH_WANT_INTERRUPTS_ON_CTXSW */
Nick Piggin4866cde2005-06-25 14:57:23 -07003183 finish_lock_switch(rq, prev);
Steven Rostedte8fa1362008-01-25 21:08:05 +01003184
Avi Kivitye107be32007-07-26 13:40:43 +02003185 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 if (mm)
3187 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07003188 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08003189 /*
3190 * Remove function-return probe instances associated with this
3191 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02003192 */
bibo maoc6fd91f2006-03-26 01:38:20 -08003193 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08003195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196}
3197
Gregory Haskins3f029d32009-07-29 11:08:47 -04003198#ifdef CONFIG_SMP
3199
3200/* assumes rq->lock is held */
3201static inline void pre_schedule(struct rq *rq, struct task_struct *prev)
3202{
3203 if (prev->sched_class->pre_schedule)
3204 prev->sched_class->pre_schedule(rq, prev);
3205}
3206
3207/* rq->lock is NOT held, but preemption is disabled */
3208static inline void post_schedule(struct rq *rq)
3209{
3210 if (rq->post_schedule) {
3211 unsigned long flags;
3212
Thomas Gleixner05fa7852009-11-17 14:28:38 +01003213 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins3f029d32009-07-29 11:08:47 -04003214 if (rq->curr->sched_class->post_schedule)
3215 rq->curr->sched_class->post_schedule(rq);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01003216 raw_spin_unlock_irqrestore(&rq->lock, flags);
Gregory Haskins3f029d32009-07-29 11:08:47 -04003217
3218 rq->post_schedule = 0;
3219 }
3220}
3221
3222#else
3223
3224static inline void pre_schedule(struct rq *rq, struct task_struct *p)
3225{
3226}
3227
3228static inline void post_schedule(struct rq *rq)
3229{
3230}
3231
3232#endif
3233
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234/**
3235 * schedule_tail - first thing a freshly forked thread must call.
3236 * @prev: the thread we just switched away from.
3237 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003238asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 __releases(rq->lock)
3240{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003241 struct rq *rq = this_rq();
3242
Nick Piggin4866cde2005-06-25 14:57:23 -07003243 finish_task_switch(rq, prev);
Steven Rostedtda19ab52009-07-29 00:21:22 -04003244
Gregory Haskins3f029d32009-07-29 11:08:47 -04003245 /*
3246 * FIXME: do we need to worry about rq being invalidated by the
3247 * task_switch?
3248 */
3249 post_schedule(rq);
Steven Rostedtda19ab52009-07-29 00:21:22 -04003250
Nick Piggin4866cde2005-06-25 14:57:23 -07003251#ifdef __ARCH_WANT_UNLOCKED_CTXSW
3252 /* In this case, finish_task_switch does not reenable preemption */
3253 preempt_enable();
3254#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 if (current->set_child_tid)
Pavel Emelyanovb4888932007-10-18 23:40:14 -07003256 put_user(task_pid_vnr(current), current->set_child_tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257}
3258
3259/*
3260 * context_switch - switch to the new MM and the new
3261 * thread's register state.
3262 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003263static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07003264context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07003265 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266{
Ingo Molnardd41f592007-07-09 18:51:59 +02003267 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268
Avi Kivitye107be32007-07-26 13:40:43 +02003269 prepare_task_switch(rq, prev, next);
Peter Zijlstrafe4b04f2011-02-02 13:19:09 +01003270
Ingo Molnardd41f592007-07-09 18:51:59 +02003271 mm = next->mm;
3272 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01003273 /*
3274 * For paravirt, this is coupled with an exit in switch_to to
3275 * combine the page table reload and the switch backend into
3276 * one hypercall.
3277 */
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -08003278 arch_start_context_switch(prev);
Zachary Amsden9226d122007-02-13 13:26:21 +01003279
Heiko Carstens31915ab2010-09-16 14:42:25 +02003280 if (!mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 next->active_mm = oldmm;
3282 atomic_inc(&oldmm->mm_count);
3283 enter_lazy_tlb(oldmm, next);
3284 } else
3285 switch_mm(oldmm, mm, next);
3286
Heiko Carstens31915ab2010-09-16 14:42:25 +02003287 if (!prev->mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 rq->prev_mm = oldmm;
3290 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07003291 /*
3292 * Since the runqueue lock will be released by the next
3293 * task (which is an invalid locking op but in the case
3294 * of the scheduler it's an obvious special-case), so we
3295 * do an early lockdep release here:
3296 */
3297#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07003298 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07003299#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300
3301 /* Here we just switch the register state and the stack. */
3302 switch_to(prev, next, prev);
3303
Ingo Molnardd41f592007-07-09 18:51:59 +02003304 barrier();
3305 /*
3306 * this_rq must be evaluated again because prev may have moved
3307 * CPUs since it called schedule(), thus the 'rq' on its stack
3308 * frame will be invalid.
3309 */
3310 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311}
3312
3313/*
3314 * nr_running, nr_uninterruptible and nr_context_switches:
3315 *
3316 * externally visible scheduler statistics: current number of runnable
3317 * threads, current number of uninterruptible-sleeping threads, total
3318 * number of context switches performed since bootup.
3319 */
3320unsigned long nr_running(void)
3321{
3322 unsigned long i, sum = 0;
3323
3324 for_each_online_cpu(i)
3325 sum += cpu_rq(i)->nr_running;
3326
3327 return sum;
3328}
3329
3330unsigned long nr_uninterruptible(void)
3331{
3332 unsigned long i, sum = 0;
3333
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08003334 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335 sum += cpu_rq(i)->nr_uninterruptible;
3336
3337 /*
3338 * Since we read the counters lockless, it might be slightly
3339 * inaccurate. Do not allow it to go below zero though:
3340 */
3341 if (unlikely((long)sum < 0))
3342 sum = 0;
3343
3344 return sum;
3345}
3346
3347unsigned long long nr_context_switches(void)
3348{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07003349 int i;
3350 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08003352 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 sum += cpu_rq(i)->nr_switches;
3354
3355 return sum;
3356}
3357
3358unsigned long nr_iowait(void)
3359{
3360 unsigned long i, sum = 0;
3361
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08003362 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 sum += atomic_read(&cpu_rq(i)->nr_iowait);
3364
3365 return sum;
3366}
3367
Peter Zijlstra8c215bd2010-07-01 09:07:17 +02003368unsigned long nr_iowait_cpu(int cpu)
Arjan van de Ven69d25872009-09-21 17:04:08 -07003369{
Peter Zijlstra8c215bd2010-07-01 09:07:17 +02003370 struct rq *this = cpu_rq(cpu);
Arjan van de Ven69d25872009-09-21 17:04:08 -07003371 return atomic_read(&this->nr_iowait);
3372}
3373
3374unsigned long this_cpu_load(void)
3375{
3376 struct rq *this = this_rq();
3377 return this->cpu_load[0];
3378}
3379
3380
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003381/* Variables and functions for calc_load */
3382static atomic_long_t calc_load_tasks;
3383static unsigned long calc_load_update;
3384unsigned long avenrun[3];
3385EXPORT_SYMBOL(avenrun);
3386
Peter Zijlstra74f51872010-04-22 21:50:19 +02003387static long calc_load_fold_active(struct rq *this_rq)
3388{
3389 long nr_active, delta = 0;
3390
3391 nr_active = this_rq->nr_running;
3392 nr_active += (long) this_rq->nr_uninterruptible;
3393
3394 if (nr_active != this_rq->calc_load_active) {
3395 delta = nr_active - this_rq->calc_load_active;
3396 this_rq->calc_load_active = nr_active;
3397 }
3398
3399 return delta;
3400}
3401
Peter Zijlstra0f004f52010-11-30 19:48:45 +01003402static unsigned long
3403calc_load(unsigned long load, unsigned long exp, unsigned long active)
3404{
3405 load *= exp;
3406 load += active * (FIXED_1 - exp);
3407 load += 1UL << (FSHIFT - 1);
3408 return load >> FSHIFT;
3409}
3410
Peter Zijlstra74f51872010-04-22 21:50:19 +02003411#ifdef CONFIG_NO_HZ
3412/*
3413 * For NO_HZ we delay the active fold to the next LOAD_FREQ update.
3414 *
3415 * When making the ILB scale, we should try to pull this in as well.
3416 */
3417static atomic_long_t calc_load_tasks_idle;
3418
3419static void calc_load_account_idle(struct rq *this_rq)
3420{
3421 long delta;
3422
3423 delta = calc_load_fold_active(this_rq);
3424 if (delta)
3425 atomic_long_add(delta, &calc_load_tasks_idle);
3426}
3427
3428static long calc_load_fold_idle(void)
3429{
3430 long delta = 0;
3431
3432 /*
3433 * Its got a race, we don't care...
3434 */
3435 if (atomic_long_read(&calc_load_tasks_idle))
3436 delta = atomic_long_xchg(&calc_load_tasks_idle, 0);
3437
3438 return delta;
3439}
Peter Zijlstra0f004f52010-11-30 19:48:45 +01003440
3441/**
3442 * fixed_power_int - compute: x^n, in O(log n) time
3443 *
3444 * @x: base of the power
3445 * @frac_bits: fractional bits of @x
3446 * @n: power to raise @x to.
3447 *
3448 * By exploiting the relation between the definition of the natural power
3449 * function: x^n := x*x*...*x (x multiplied by itself for n times), and
3450 * the binary encoding of numbers used by computers: n := \Sum n_i * 2^i,
3451 * (where: n_i \elem {0, 1}, the binary vector representing n),
3452 * we find: x^n := x^(\Sum n_i * 2^i) := \Prod x^(n_i * 2^i), which is
3453 * of course trivially computable in O(log_2 n), the length of our binary
3454 * vector.
3455 */
3456static unsigned long
3457fixed_power_int(unsigned long x, unsigned int frac_bits, unsigned int n)
3458{
3459 unsigned long result = 1UL << frac_bits;
3460
3461 if (n) for (;;) {
3462 if (n & 1) {
3463 result *= x;
3464 result += 1UL << (frac_bits - 1);
3465 result >>= frac_bits;
3466 }
3467 n >>= 1;
3468 if (!n)
3469 break;
3470 x *= x;
3471 x += 1UL << (frac_bits - 1);
3472 x >>= frac_bits;
3473 }
3474
3475 return result;
3476}
3477
3478/*
3479 * a1 = a0 * e + a * (1 - e)
3480 *
3481 * a2 = a1 * e + a * (1 - e)
3482 * = (a0 * e + a * (1 - e)) * e + a * (1 - e)
3483 * = a0 * e^2 + a * (1 - e) * (1 + e)
3484 *
3485 * a3 = a2 * e + a * (1 - e)
3486 * = (a0 * e^2 + a * (1 - e) * (1 + e)) * e + a * (1 - e)
3487 * = a0 * e^3 + a * (1 - e) * (1 + e + e^2)
3488 *
3489 * ...
3490 *
3491 * an = a0 * e^n + a * (1 - e) * (1 + e + ... + e^n-1) [1]
3492 * = a0 * e^n + a * (1 - e) * (1 - e^n)/(1 - e)
3493 * = a0 * e^n + a * (1 - e^n)
3494 *
3495 * [1] application of the geometric series:
3496 *
3497 * n 1 - x^(n+1)
3498 * S_n := \Sum x^i = -------------
3499 * i=0 1 - x
3500 */
3501static unsigned long
3502calc_load_n(unsigned long load, unsigned long exp,
3503 unsigned long active, unsigned int n)
3504{
3505
3506 return calc_load(load, fixed_power_int(exp, FSHIFT, n), active);
3507}
3508
3509/*
3510 * NO_HZ can leave us missing all per-cpu ticks calling
3511 * calc_load_account_active(), but since an idle CPU folds its delta into
3512 * calc_load_tasks_idle per calc_load_account_idle(), all we need to do is fold
3513 * in the pending idle delta if our idle period crossed a load cycle boundary.
3514 *
3515 * Once we've updated the global active value, we need to apply the exponential
3516 * weights adjusted to the number of cycles missed.
3517 */
3518static void calc_global_nohz(unsigned long ticks)
3519{
3520 long delta, active, n;
3521
3522 if (time_before(jiffies, calc_load_update))
3523 return;
3524
3525 /*
3526 * If we crossed a calc_load_update boundary, make sure to fold
3527 * any pending idle changes, the respective CPUs might have
3528 * missed the tick driven calc_load_account_active() update
3529 * due to NO_HZ.
3530 */
3531 delta = calc_load_fold_idle();
3532 if (delta)
3533 atomic_long_add(delta, &calc_load_tasks);
3534
3535 /*
3536 * If we were idle for multiple load cycles, apply them.
3537 */
3538 if (ticks >= LOAD_FREQ) {
3539 n = ticks / LOAD_FREQ;
3540
3541 active = atomic_long_read(&calc_load_tasks);
3542 active = active > 0 ? active * FIXED_1 : 0;
3543
3544 avenrun[0] = calc_load_n(avenrun[0], EXP_1, active, n);
3545 avenrun[1] = calc_load_n(avenrun[1], EXP_5, active, n);
3546 avenrun[2] = calc_load_n(avenrun[2], EXP_15, active, n);
3547
3548 calc_load_update += n * LOAD_FREQ;
3549 }
3550
3551 /*
3552 * Its possible the remainder of the above division also crosses
3553 * a LOAD_FREQ period, the regular check in calc_global_load()
3554 * which comes after this will take care of that.
3555 *
3556 * Consider us being 11 ticks before a cycle completion, and us
3557 * sleeping for 4*LOAD_FREQ + 22 ticks, then the above code will
3558 * age us 4 cycles, and the test in calc_global_load() will
3559 * pick up the final one.
3560 */
3561}
Peter Zijlstra74f51872010-04-22 21:50:19 +02003562#else
3563static void calc_load_account_idle(struct rq *this_rq)
3564{
3565}
3566
3567static inline long calc_load_fold_idle(void)
3568{
3569 return 0;
3570}
Peter Zijlstra0f004f52010-11-30 19:48:45 +01003571
3572static void calc_global_nohz(unsigned long ticks)
3573{
3574}
Peter Zijlstra74f51872010-04-22 21:50:19 +02003575#endif
3576
Thomas Gleixner2d024942009-05-02 20:08:52 +02003577/**
3578 * get_avenrun - get the load average array
3579 * @loads: pointer to dest load array
3580 * @offset: offset to add
3581 * @shift: shift count to shift the result left
3582 *
3583 * These values are estimates at best, so no need for locking.
3584 */
3585void get_avenrun(unsigned long *loads, unsigned long offset, int shift)
3586{
3587 loads[0] = (avenrun[0] + offset) << shift;
3588 loads[1] = (avenrun[1] + offset) << shift;
3589 loads[2] = (avenrun[2] + offset) << shift;
3590}
3591
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003592/*
3593 * calc_load - update the avenrun load estimates 10 ticks after the
3594 * CPUs have updated calc_load_tasks.
3595 */
Peter Zijlstra0f004f52010-11-30 19:48:45 +01003596void calc_global_load(unsigned long ticks)
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003597{
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003598 long active;
3599
Peter Zijlstra0f004f52010-11-30 19:48:45 +01003600 calc_global_nohz(ticks);
3601
3602 if (time_before(jiffies, calc_load_update + 10))
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003603 return;
3604
3605 active = atomic_long_read(&calc_load_tasks);
3606 active = active > 0 ? active * FIXED_1 : 0;
3607
3608 avenrun[0] = calc_load(avenrun[0], EXP_1, active);
3609 avenrun[1] = calc_load(avenrun[1], EXP_5, active);
3610 avenrun[2] = calc_load(avenrun[2], EXP_15, active);
3611
3612 calc_load_update += LOAD_FREQ;
3613}
3614
3615/*
Peter Zijlstra74f51872010-04-22 21:50:19 +02003616 * Called from update_cpu_load() to periodically update this CPU's
3617 * active count.
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003618 */
3619static void calc_load_account_active(struct rq *this_rq)
3620{
Peter Zijlstra74f51872010-04-22 21:50:19 +02003621 long delta;
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003622
Peter Zijlstra74f51872010-04-22 21:50:19 +02003623 if (time_before(jiffies, this_rq->calc_load_update))
3624 return;
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003625
Peter Zijlstra74f51872010-04-22 21:50:19 +02003626 delta = calc_load_fold_active(this_rq);
3627 delta += calc_load_fold_idle();
3628 if (delta)
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003629 atomic_long_add(delta, &calc_load_tasks);
Peter Zijlstra74f51872010-04-22 21:50:19 +02003630
3631 this_rq->calc_load_update += LOAD_FREQ;
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08003632}
3633
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634/*
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07003635 * The exact cpuload at various idx values, calculated at every tick would be
3636 * load = (2^idx - 1) / 2^idx * load + 1 / 2^idx * cur_load
3637 *
3638 * If a cpu misses updates for n-1 ticks (as it was idle) and update gets called
3639 * on nth tick when cpu may be busy, then we have:
3640 * load = ((2^idx - 1) / 2^idx)^(n-1) * load
3641 * load = (2^idx - 1) / 2^idx) * load + 1 / 2^idx * cur_load
3642 *
3643 * decay_load_missed() below does efficient calculation of
3644 * load = ((2^idx - 1) / 2^idx)^(n-1) * load
3645 * avoiding 0..n-1 loop doing load = ((2^idx - 1) / 2^idx) * load
3646 *
3647 * The calculation is approximated on a 128 point scale.
3648 * degrade_zero_ticks is the number of ticks after which load at any
3649 * particular idx is approximated to be zero.
3650 * degrade_factor is a precomputed table, a row for each load idx.
3651 * Each column corresponds to degradation factor for a power of two ticks,
3652 * based on 128 point scale.
3653 * Example:
3654 * row 2, col 3 (=12) says that the degradation at load idx 2 after
3655 * 8 ticks is 12/128 (which is an approximation of exact factor 3^8/4^8).
3656 *
3657 * With this power of 2 load factors, we can degrade the load n times
3658 * by looking at 1 bits in n and doing as many mult/shift instead of
3659 * n mult/shifts needed by the exact degradation.
3660 */
3661#define DEGRADE_SHIFT 7
3662static const unsigned char
3663 degrade_zero_ticks[CPU_LOAD_IDX_MAX] = {0, 8, 32, 64, 128};
3664static const unsigned char
3665 degrade_factor[CPU_LOAD_IDX_MAX][DEGRADE_SHIFT + 1] = {
3666 {0, 0, 0, 0, 0, 0, 0, 0},
3667 {64, 32, 8, 0, 0, 0, 0, 0},
3668 {96, 72, 40, 12, 1, 0, 0},
3669 {112, 98, 75, 43, 15, 1, 0},
3670 {120, 112, 98, 76, 45, 16, 2} };
3671
3672/*
3673 * Update cpu_load for any missed ticks, due to tickless idle. The backlog
3674 * would be when CPU is idle and so we just decay the old load without
3675 * adding any new load.
3676 */
3677static unsigned long
3678decay_load_missed(unsigned long load, unsigned long missed_updates, int idx)
3679{
3680 int j = 0;
3681
3682 if (!missed_updates)
3683 return load;
3684
3685 if (missed_updates >= degrade_zero_ticks[idx])
3686 return 0;
3687
3688 if (idx == 1)
3689 return load >> missed_updates;
3690
3691 while (missed_updates) {
3692 if (missed_updates % 2)
3693 load = (load * degrade_factor[idx][j]) >> DEGRADE_SHIFT;
3694
3695 missed_updates >>= 1;
3696 j++;
3697 }
3698 return load;
3699}
3700
3701/*
Ingo Molnardd41f592007-07-09 18:51:59 +02003702 * Update rq->cpu_load[] statistics. This function is usually called every
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07003703 * scheduler tick (TICK_NSEC). With tickless idle this will not be called
3704 * every tick. We fix it up based on jiffies.
Ingo Molnar48f24c42006-07-03 00:25:40 -07003705 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003706static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003707{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02003708 unsigned long this_load = this_rq->load.weight;
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07003709 unsigned long curr_jiffies = jiffies;
3710 unsigned long pending_updates;
Ingo Molnardd41f592007-07-09 18:51:59 +02003711 int i, scale;
3712
3713 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02003714
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07003715 /* Avoid repeated calls on same jiffy, when moving in and out of idle */
3716 if (curr_jiffies == this_rq->last_load_update_tick)
3717 return;
3718
3719 pending_updates = curr_jiffies - this_rq->last_load_update_tick;
3720 this_rq->last_load_update_tick = curr_jiffies;
3721
Ingo Molnardd41f592007-07-09 18:51:59 +02003722 /* Update our load: */
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07003723 this_rq->cpu_load[0] = this_load; /* Fasttrack for idx 0 */
3724 for (i = 1, scale = 2; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
Ingo Molnardd41f592007-07-09 18:51:59 +02003725 unsigned long old_load, new_load;
3726
3727 /* scale is effectively 1 << i now, and >> i divides by scale */
3728
3729 old_load = this_rq->cpu_load[i];
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07003730 old_load = decay_load_missed(old_load, pending_updates - 1, i);
Ingo Molnardd41f592007-07-09 18:51:59 +02003731 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02003732 /*
3733 * Round up the averaging division if load is increasing. This
3734 * prevents us from getting stuck on 9 if the load is 10, for
3735 * example.
3736 */
3737 if (new_load > old_load)
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07003738 new_load += scale - 1;
3739
3740 this_rq->cpu_load[i] = (old_load * (scale - 1) + new_load) >> i;
Ingo Molnardd41f592007-07-09 18:51:59 +02003741 }
Suresh Siddhada2b71e2010-08-23 13:42:51 -07003742
3743 sched_avg_update(this_rq);
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07003744}
3745
3746static void update_cpu_load_active(struct rq *this_rq)
3747{
3748 update_cpu_load(this_rq);
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02003749
Peter Zijlstra74f51872010-04-22 21:50:19 +02003750 calc_load_account_active(this_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003751}
3752
Ingo Molnardd41f592007-07-09 18:51:59 +02003753#ifdef CONFIG_SMP
3754
Ingo Molnar48f24c42006-07-03 00:25:40 -07003755/*
Peter Zijlstra38022902009-12-16 18:04:37 +01003756 * sched_exec - execve() is a valuable balancing opportunity, because at
3757 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758 */
Peter Zijlstra38022902009-12-16 18:04:37 +01003759void sched_exec(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760{
Peter Zijlstra38022902009-12-16 18:04:37 +01003761 struct task_struct *p = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762 unsigned long flags;
Peter Zijlstra0017d732010-03-24 18:34:10 +01003763 int dest_cpu;
Peter Zijlstra38022902009-12-16 18:04:37 +01003764
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02003765 raw_spin_lock_irqsave(&p->pi_lock, flags);
Peter Zijlstra7608dec2011-04-05 17:23:46 +02003766 dest_cpu = p->sched_class->select_task_rq(p, SD_BALANCE_EXEC, 0);
Peter Zijlstra0017d732010-03-24 18:34:10 +01003767 if (dest_cpu == smp_processor_id())
3768 goto unlock;
Peter Zijlstra38022902009-12-16 18:04:37 +01003769
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02003770 if (likely(cpu_active(dest_cpu))) {
Tejun Heo969c7922010-05-06 18:49:21 +02003771 struct migration_arg arg = { p, dest_cpu };
Ingo Molnar36c8b582006-07-03 00:25:41 -07003772
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02003773 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
3774 stop_one_cpu(task_cpu(p), migration_cpu_stop, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775 return;
3776 }
Peter Zijlstra0017d732010-03-24 18:34:10 +01003777unlock:
Peter Zijlstra8f42ced2011-04-05 17:23:53 +02003778 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779}
3780
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781#endif
3782
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783DEFINE_PER_CPU(struct kernel_stat, kstat);
3784
3785EXPORT_PER_CPU_SYMBOL(kstat);
3786
3787/*
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09003788 * Return any ns on the sched_clock that have not yet been accounted in
Frank Mayharf06febc2008-09-12 09:54:39 -07003789 * @p in case that task is currently running.
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09003790 *
3791 * Called with task_rq_lock() held on @rq.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792 */
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09003793static u64 do_task_delta_exec(struct task_struct *p, struct rq *rq)
3794{
3795 u64 ns = 0;
3796
3797 if (task_current(rq, p)) {
3798 update_rq_clock(rq);
Venkatesh Pallipadi305e6832010-10-04 17:03:21 -07003799 ns = rq->clock_task - p->se.exec_start;
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09003800 if ((s64)ns < 0)
3801 ns = 0;
3802 }
3803
3804 return ns;
3805}
3806
Frank Mayharbb34d922008-09-12 09:54:39 -07003807unsigned long long task_delta_exec(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003810 struct rq *rq;
Frank Mayharbb34d922008-09-12 09:54:39 -07003811 u64 ns = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003812
Ingo Molnar41b86e92007-07-09 18:51:58 +02003813 rq = task_rq_lock(p, &flags);
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09003814 ns = do_task_delta_exec(p, rq);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003815 task_rq_unlock(rq, p, &flags);
Ingo Molnar15084872008-09-30 08:28:17 +02003816
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09003817 return ns;
3818}
Frank Mayharf06febc2008-09-12 09:54:39 -07003819
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09003820/*
3821 * Return accounted runtime for the task.
3822 * In case the task is currently running, return the runtime plus current's
3823 * pending runtime that have not been accounted yet.
3824 */
3825unsigned long long task_sched_runtime(struct task_struct *p)
3826{
3827 unsigned long flags;
3828 struct rq *rq;
3829 u64 ns = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003830
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09003831 rq = task_rq_lock(p, &flags);
3832 ns = p->se.sum_exec_runtime + do_task_delta_exec(p, rq);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003833 task_rq_unlock(rq, p, &flags);
Hidetoshi Setoc5f8d992009-03-31 16:56:03 +09003834
3835 return ns;
3836}
3837
3838/*
3839 * Return sum_exec_runtime for the thread group.
3840 * In case the task is currently running, return the sum plus current's
3841 * pending runtime that have not been accounted yet.
3842 *
3843 * Note that the thread group might have other running tasks as well,
3844 * so the return value not includes other pending runtime that other
3845 * running tasks might have.
3846 */
3847unsigned long long thread_group_sched_runtime(struct task_struct *p)
3848{
3849 struct task_cputime totals;
3850 unsigned long flags;
3851 struct rq *rq;
3852 u64 ns;
3853
3854 rq = task_rq_lock(p, &flags);
3855 thread_group_cputime(p, &totals);
3856 ns = totals.sum_exec_runtime + do_task_delta_exec(p, rq);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02003857 task_rq_unlock(rq, p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858
3859 return ns;
3860}
3861
3862/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863 * Account user cpu time to a process.
3864 * @p: the process that the cpu time gets accounted to
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865 * @cputime: the cpu time spent in user space since the last update
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003866 * @cputime_scaled: cputime scaled by cpu frequency
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867 */
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003868void account_user_time(struct task_struct *p, cputime_t cputime,
3869 cputime_t cputime_scaled)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870{
3871 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3872 cputime64_t tmp;
3873
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003874 /* Add user time to process. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875 p->utime = cputime_add(p->utime, cputime);
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003876 p->utimescaled = cputime_add(p->utimescaled, cputime_scaled);
Frank Mayharf06febc2008-09-12 09:54:39 -07003877 account_group_user_time(p, cputime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878
3879 /* Add user time to cpustat. */
3880 tmp = cputime_to_cputime64(cputime);
3881 if (TASK_NICE(p) > 0)
3882 cpustat->nice = cputime64_add(cpustat->nice, tmp);
3883 else
3884 cpustat->user = cputime64_add(cpustat->user, tmp);
Bharata B Raoef12fef2009-03-31 10:02:22 +05303885
3886 cpuacct_update_stats(p, CPUACCT_STAT_USER, cputime);
Jonathan Lim49b5cf32008-07-25 01:48:40 -07003887 /* Account for user time used */
3888 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889}
3890
3891/*
Laurent Vivier94886b82007-10-15 17:00:19 +02003892 * Account guest cpu time to a process.
3893 * @p: the process that the cpu time gets accounted to
3894 * @cputime: the cpu time spent in virtual machine since the last update
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003895 * @cputime_scaled: cputime scaled by cpu frequency
Laurent Vivier94886b82007-10-15 17:00:19 +02003896 */
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003897static void account_guest_time(struct task_struct *p, cputime_t cputime,
3898 cputime_t cputime_scaled)
Laurent Vivier94886b82007-10-15 17:00:19 +02003899{
3900 cputime64_t tmp;
3901 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3902
3903 tmp = cputime_to_cputime64(cputime);
3904
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003905 /* Add guest time to process. */
Laurent Vivier94886b82007-10-15 17:00:19 +02003906 p->utime = cputime_add(p->utime, cputime);
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003907 p->utimescaled = cputime_add(p->utimescaled, cputime_scaled);
Frank Mayharf06febc2008-09-12 09:54:39 -07003908 account_group_user_time(p, cputime);
Laurent Vivier94886b82007-10-15 17:00:19 +02003909 p->gtime = cputime_add(p->gtime, cputime);
3910
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003911 /* Add guest time to cpustat. */
Ryota Ozakice0e7b22009-10-24 01:20:10 +09003912 if (TASK_NICE(p) > 0) {
3913 cpustat->nice = cputime64_add(cpustat->nice, tmp);
3914 cpustat->guest_nice = cputime64_add(cpustat->guest_nice, tmp);
3915 } else {
3916 cpustat->user = cputime64_add(cpustat->user, tmp);
3917 cpustat->guest = cputime64_add(cpustat->guest, tmp);
3918 }
Laurent Vivier94886b82007-10-15 17:00:19 +02003919}
3920
3921/*
Venkatesh Pallipadi70a89a62010-12-21 17:09:02 -08003922 * Account system cpu time to a process and desired cpustat field
3923 * @p: the process that the cpu time gets accounted to
3924 * @cputime: the cpu time spent in kernel space since the last update
3925 * @cputime_scaled: cputime scaled by cpu frequency
3926 * @target_cputime64: pointer to cpustat field that has to be updated
3927 */
3928static inline
3929void __account_system_time(struct task_struct *p, cputime_t cputime,
3930 cputime_t cputime_scaled, cputime64_t *target_cputime64)
3931{
3932 cputime64_t tmp = cputime_to_cputime64(cputime);
3933
3934 /* Add system time to process. */
3935 p->stime = cputime_add(p->stime, cputime);
3936 p->stimescaled = cputime_add(p->stimescaled, cputime_scaled);
3937 account_group_system_time(p, cputime);
3938
3939 /* Add system time to cpustat. */
3940 *target_cputime64 = cputime64_add(*target_cputime64, tmp);
3941 cpuacct_update_stats(p, CPUACCT_STAT_SYSTEM, cputime);
3942
3943 /* Account for system time used */
3944 acct_update_integrals(p);
3945}
3946
3947/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 * Account system cpu time to a process.
3949 * @p: the process that the cpu time gets accounted to
3950 * @hardirq_offset: the offset to subtract from hardirq_count()
3951 * @cputime: the cpu time spent in kernel space since the last update
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003952 * @cputime_scaled: cputime scaled by cpu frequency
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953 */
3954void account_system_time(struct task_struct *p, int hardirq_offset,
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003955 cputime_t cputime, cputime_t cputime_scaled)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956{
3957 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Venkatesh Pallipadi70a89a62010-12-21 17:09:02 -08003958 cputime64_t *target_cputime64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959
Harvey Harrison983ed7a2008-04-24 18:17:55 -07003960 if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) {
Martin Schwidefsky457533a2008-12-31 15:11:37 +01003961 account_guest_time(p, cputime, cputime_scaled);
Harvey Harrison983ed7a2008-04-24 18:17:55 -07003962 return;
3963 }
Laurent Vivier94886b82007-10-15 17:00:19 +02003964
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 if (hardirq_count() - hardirq_offset)
Venkatesh Pallipadi70a89a62010-12-21 17:09:02 -08003966 target_cputime64 = &cpustat->irq;
Venkatesh Pallipadi75e10562010-10-04 17:03:16 -07003967 else if (in_serving_softirq())
Venkatesh Pallipadi70a89a62010-12-21 17:09:02 -08003968 target_cputime64 = &cpustat->softirq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969 else
Venkatesh Pallipadi70a89a62010-12-21 17:09:02 -08003970 target_cputime64 = &cpustat->system;
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01003971
Venkatesh Pallipadi70a89a62010-12-21 17:09:02 -08003972 __account_system_time(p, cputime, cputime_scaled, target_cputime64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973}
3974
3975/*
3976 * Account for involuntary wait time.
Venkatesh Pallipadi544b4a12011-02-25 15:13:16 -08003977 * @cputime: the cpu time spent in involuntary wait
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978 */
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01003979void account_steal_time(cputime_t cputime)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01003982 cputime64_t cputime64 = cputime_to_cputime64(cputime);
3983
3984 cpustat->steal = cputime64_add(cpustat->steal, cputime64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985}
3986
Christoph Lameter7835b982006-12-10 02:20:22 -08003987/*
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01003988 * Account for idle time.
3989 * @cputime: the cpu time spent in idle wait
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990 */
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01003991void account_idle_time(cputime_t cputime)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992{
3993 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01003994 cputime64_t cputime64 = cputime_to_cputime64(cputime);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995 struct rq *rq = this_rq();
3996
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01003997 if (atomic_read(&rq->nr_iowait) > 0)
3998 cpustat->iowait = cputime64_add(cpustat->iowait, cputime64);
3999 else
4000 cpustat->idle = cputime64_add(cpustat->idle, cputime64);
Christoph Lameter7835b982006-12-10 02:20:22 -08004001}
4002
Glauber Costae6e66852011-07-11 15:28:17 -04004003static __always_inline bool steal_account_process_tick(void)
4004{
4005#ifdef CONFIG_PARAVIRT
4006 if (static_branch(&paravirt_steal_enabled)) {
4007 u64 steal, st = 0;
4008
4009 steal = paravirt_steal_clock(smp_processor_id());
4010 steal -= this_rq()->prev_steal_time;
4011
4012 st = steal_ticks(steal);
4013 this_rq()->prev_steal_time += st * TICK_NSEC;
4014
4015 account_steal_time(st);
4016 return st;
4017 }
4018#endif
4019 return false;
4020}
4021
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004022#ifndef CONFIG_VIRT_CPU_ACCOUNTING
4023
Venkatesh Pallipadiabb74ce2010-12-21 17:09:03 -08004024#ifdef CONFIG_IRQ_TIME_ACCOUNTING
4025/*
4026 * Account a tick to a process and cpustat
4027 * @p: the process that the cpu time gets accounted to
4028 * @user_tick: is the tick from userspace
4029 * @rq: the pointer to rq
4030 *
4031 * Tick demultiplexing follows the order
4032 * - pending hardirq update
4033 * - pending softirq update
4034 * - user_time
4035 * - idle_time
4036 * - system time
4037 * - check for guest_time
4038 * - else account as system_time
4039 *
4040 * Check for hardirq is done both for system and user time as there is
4041 * no timer going off while we are on hardirq and hence we may never get an
4042 * opportunity to update it solely in system time.
4043 * p->stime and friends are only updated on system time and not on irq
4044 * softirq as those do not count in task exec_runtime any more.
4045 */
4046static void irqtime_account_process_tick(struct task_struct *p, int user_tick,
4047 struct rq *rq)
4048{
4049 cputime_t one_jiffy_scaled = cputime_to_scaled(cputime_one_jiffy);
4050 cputime64_t tmp = cputime_to_cputime64(cputime_one_jiffy);
4051 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
4052
Glauber Costae6e66852011-07-11 15:28:17 -04004053 if (steal_account_process_tick())
4054 return;
4055
Venkatesh Pallipadiabb74ce2010-12-21 17:09:03 -08004056 if (irqtime_account_hi_update()) {
4057 cpustat->irq = cputime64_add(cpustat->irq, tmp);
4058 } else if (irqtime_account_si_update()) {
4059 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
Venkatesh Pallipadi414bee92010-12-21 17:09:04 -08004060 } else if (this_cpu_ksoftirqd() == p) {
4061 /*
4062 * ksoftirqd time do not get accounted in cpu_softirq_time.
4063 * So, we have to handle it separately here.
4064 * Also, p->stime needs to be updated for ksoftirqd.
4065 */
4066 __account_system_time(p, cputime_one_jiffy, one_jiffy_scaled,
4067 &cpustat->softirq);
Venkatesh Pallipadiabb74ce2010-12-21 17:09:03 -08004068 } else if (user_tick) {
4069 account_user_time(p, cputime_one_jiffy, one_jiffy_scaled);
4070 } else if (p == rq->idle) {
4071 account_idle_time(cputime_one_jiffy);
4072 } else if (p->flags & PF_VCPU) { /* System time or guest time */
4073 account_guest_time(p, cputime_one_jiffy, one_jiffy_scaled);
4074 } else {
4075 __account_system_time(p, cputime_one_jiffy, one_jiffy_scaled,
4076 &cpustat->system);
4077 }
4078}
4079
4080static void irqtime_account_idle_ticks(int ticks)
4081{
4082 int i;
4083 struct rq *rq = this_rq();
4084
4085 for (i = 0; i < ticks; i++)
4086 irqtime_account_process_tick(current, 0, rq);
4087}
Venkatesh Pallipadi544b4a12011-02-25 15:13:16 -08004088#else /* CONFIG_IRQ_TIME_ACCOUNTING */
Venkatesh Pallipadiabb74ce2010-12-21 17:09:03 -08004089static void irqtime_account_idle_ticks(int ticks) {}
4090static void irqtime_account_process_tick(struct task_struct *p, int user_tick,
4091 struct rq *rq) {}
Venkatesh Pallipadi544b4a12011-02-25 15:13:16 -08004092#endif /* CONFIG_IRQ_TIME_ACCOUNTING */
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004093
4094/*
4095 * Account a single tick of cpu time.
4096 * @p: the process that the cpu time gets accounted to
4097 * @user_tick: indicates if the tick is a user or a system tick
4098 */
4099void account_process_tick(struct task_struct *p, int user_tick)
4100{
Stanislaw Gruszkaa42548a2009-07-29 12:15:29 +02004101 cputime_t one_jiffy_scaled = cputime_to_scaled(cputime_one_jiffy);
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004102 struct rq *rq = this_rq();
4103
Venkatesh Pallipadiabb74ce2010-12-21 17:09:03 -08004104 if (sched_clock_irqtime) {
4105 irqtime_account_process_tick(p, user_tick, rq);
4106 return;
4107 }
4108
Glauber Costae6e66852011-07-11 15:28:17 -04004109 if (steal_account_process_tick())
4110 return;
4111
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004112 if (user_tick)
Stanislaw Gruszkaa42548a2009-07-29 12:15:29 +02004113 account_user_time(p, cputime_one_jiffy, one_jiffy_scaled);
Eric Dumazetf5f293a2009-04-29 14:44:49 +02004114 else if ((p != rq->idle) || (irq_count() != HARDIRQ_OFFSET))
Stanislaw Gruszkaa42548a2009-07-29 12:15:29 +02004115 account_system_time(p, HARDIRQ_OFFSET, cputime_one_jiffy,
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004116 one_jiffy_scaled);
4117 else
Stanislaw Gruszkaa42548a2009-07-29 12:15:29 +02004118 account_idle_time(cputime_one_jiffy);
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004119}
4120
4121/*
4122 * Account multiple ticks of steal time.
4123 * @p: the process from which the cpu time has been stolen
4124 * @ticks: number of stolen ticks
4125 */
4126void account_steal_ticks(unsigned long ticks)
4127{
4128 account_steal_time(jiffies_to_cputime(ticks));
4129}
4130
4131/*
4132 * Account multiple ticks of idle time.
4133 * @ticks: number of stolen ticks
4134 */
4135void account_idle_ticks(unsigned long ticks)
4136{
Venkatesh Pallipadiabb74ce2010-12-21 17:09:03 -08004137
4138 if (sched_clock_irqtime) {
4139 irqtime_account_idle_ticks(ticks);
4140 return;
4141 }
4142
Martin Schwidefsky79741dd2008-12-31 15:11:38 +01004143 account_idle_time(jiffies_to_cputime(ticks));
4144}
4145
4146#endif
4147
Christoph Lameter7835b982006-12-10 02:20:22 -08004148/*
Balbir Singh49048622008-09-05 18:12:23 +02004149 * Use precise platform statistics if available:
4150 */
4151#ifdef CONFIG_VIRT_CPU_ACCOUNTING
Hidetoshi Setod180c5b2009-11-26 14:48:30 +09004152void task_times(struct task_struct *p, cputime_t *ut, cputime_t *st)
Balbir Singh49048622008-09-05 18:12:23 +02004153{
Hidetoshi Setod99ca3b2009-12-02 17:26:47 +09004154 *ut = p->utime;
4155 *st = p->stime;
Balbir Singh49048622008-09-05 18:12:23 +02004156}
4157
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +09004158void thread_group_times(struct task_struct *p, cputime_t *ut, cputime_t *st)
Balbir Singh49048622008-09-05 18:12:23 +02004159{
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +09004160 struct task_cputime cputime;
4161
4162 thread_group_cputime(p, &cputime);
4163
4164 *ut = cputime.utime;
4165 *st = cputime.stime;
Balbir Singh49048622008-09-05 18:12:23 +02004166}
4167#else
Hidetoshi Seto761b1d22009-11-12 13:33:45 +09004168
4169#ifndef nsecs_to_cputime
Hidetoshi Setob7b20df92009-11-26 14:49:27 +09004170# define nsecs_to_cputime(__nsecs) nsecs_to_jiffies(__nsecs)
Hidetoshi Seto761b1d22009-11-12 13:33:45 +09004171#endif
4172
Hidetoshi Setod180c5b2009-11-26 14:48:30 +09004173void task_times(struct task_struct *p, cputime_t *ut, cputime_t *st)
Balbir Singh49048622008-09-05 18:12:23 +02004174{
Hidetoshi Setod99ca3b2009-12-02 17:26:47 +09004175 cputime_t rtime, utime = p->utime, total = cputime_add(utime, p->stime);
Balbir Singh49048622008-09-05 18:12:23 +02004176
4177 /*
4178 * Use CFS's precise accounting:
4179 */
Hidetoshi Setod180c5b2009-11-26 14:48:30 +09004180 rtime = nsecs_to_cputime(p->se.sum_exec_runtime);
Balbir Singh49048622008-09-05 18:12:23 +02004181
4182 if (total) {
Stanislaw Gruszkae75e8632010-09-14 16:35:14 +02004183 u64 temp = rtime;
Balbir Singh49048622008-09-05 18:12:23 +02004184
Stanislaw Gruszkae75e8632010-09-14 16:35:14 +02004185 temp *= utime;
Balbir Singh49048622008-09-05 18:12:23 +02004186 do_div(temp, total);
Hidetoshi Setod180c5b2009-11-26 14:48:30 +09004187 utime = (cputime_t)temp;
4188 } else
4189 utime = rtime;
Balbir Singh49048622008-09-05 18:12:23 +02004190
4191 /*
Hidetoshi Setod180c5b2009-11-26 14:48:30 +09004192 * Compare with previous values, to keep monotonicity:
Balbir Singh49048622008-09-05 18:12:23 +02004193 */
Hidetoshi Seto761b1d22009-11-12 13:33:45 +09004194 p->prev_utime = max(p->prev_utime, utime);
Hidetoshi Setod99ca3b2009-12-02 17:26:47 +09004195 p->prev_stime = max(p->prev_stime, cputime_sub(rtime, p->prev_utime));
Balbir Singh49048622008-09-05 18:12:23 +02004196
Hidetoshi Setod99ca3b2009-12-02 17:26:47 +09004197 *ut = p->prev_utime;
4198 *st = p->prev_stime;
Hidetoshi Setod180c5b2009-11-26 14:48:30 +09004199}
Balbir Singh49048622008-09-05 18:12:23 +02004200
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +09004201/*
4202 * Must be called with siglock held.
4203 */
4204void thread_group_times(struct task_struct *p, cputime_t *ut, cputime_t *st)
4205{
4206 struct signal_struct *sig = p->signal;
4207 struct task_cputime cputime;
4208 cputime_t rtime, utime, total;
4209
4210 thread_group_cputime(p, &cputime);
4211
4212 total = cputime_add(cputime.utime, cputime.stime);
4213 rtime = nsecs_to_cputime(cputime.sum_exec_runtime);
4214
4215 if (total) {
Stanislaw Gruszkae75e8632010-09-14 16:35:14 +02004216 u64 temp = rtime;
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +09004217
Stanislaw Gruszkae75e8632010-09-14 16:35:14 +02004218 temp *= cputime.utime;
Hidetoshi Seto0cf55e12009-12-02 17:28:07 +09004219 do_div(temp, total);
4220 utime = (cputime_t)temp;
4221 } else
4222 utime = rtime;
4223
4224 sig->prev_utime = max(sig->prev_utime, utime);
4225 sig->prev_stime = max(sig->prev_stime,
4226 cputime_sub(rtime, sig->prev_utime));
4227
4228 *ut = sig->prev_utime;
4229 *st = sig->prev_stime;
Balbir Singh49048622008-09-05 18:12:23 +02004230}
4231#endif
4232
Balbir Singh49048622008-09-05 18:12:23 +02004233/*
Christoph Lameter7835b982006-12-10 02:20:22 -08004234 * This function gets called by the timer code, with HZ frequency.
4235 * We call it with interrupts disabled.
Christoph Lameter7835b982006-12-10 02:20:22 -08004236 */
4237void scheduler_tick(void)
4238{
Christoph Lameter7835b982006-12-10 02:20:22 -08004239 int cpu = smp_processor_id();
4240 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004241 struct task_struct *curr = rq->curr;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004242
4243 sched_clock_tick();
Christoph Lameter7835b982006-12-10 02:20:22 -08004244
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004245 raw_spin_lock(&rq->lock);
Peter Zijlstra3e51f332008-05-03 18:29:28 +02004246 update_rq_clock(rq);
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07004247 update_cpu_load_active(rq);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01004248 curr->sched_class->task_tick(rq, curr, 0);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004249 raw_spin_unlock(&rq->lock);
Ingo Molnardd41f592007-07-09 18:51:59 +02004250
Peter Zijlstrae9d2b062010-09-17 11:28:50 +02004251 perf_event_task_tick();
Peter Zijlstrae220d2d2009-05-23 18:28:55 +02004252
Christoph Lametere418e1c2006-12-10 02:20:23 -08004253#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02004254 rq->idle_at_tick = idle_cpu(cpu);
4255 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08004256#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257}
4258
Lai Jiangshan132380a2009-04-02 14:18:25 +08004259notrace unsigned long get_parent_ip(unsigned long addr)
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004260{
4261 if (in_lock_functions(addr)) {
4262 addr = CALLER_ADDR2;
4263 if (in_lock_functions(addr))
4264 addr = CALLER_ADDR3;
4265 }
4266 return addr;
4267}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268
Steven Rostedt7e49fcc2009-01-22 19:01:40 -05004269#if defined(CONFIG_PREEMPT) && (defined(CONFIG_DEBUG_PREEMPT) || \
4270 defined(CONFIG_PREEMPT_TRACER))
4271
Srinivasa Ds43627582008-02-23 15:24:04 -08004272void __kprobes add_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004274#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275 /*
4276 * Underflow?
4277 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004278 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
4279 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004280#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281 preempt_count() += val;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004282#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283 /*
4284 * Spinlock count overflowing soon?
4285 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08004286 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
4287 PREEMPT_MASK - 10);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004288#endif
4289 if (preempt_count() == val)
4290 trace_preempt_off(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291}
4292EXPORT_SYMBOL(add_preempt_count);
4293
Srinivasa Ds43627582008-02-23 15:24:04 -08004294void __kprobes sub_preempt_count(int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295{
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004296#ifdef CONFIG_DEBUG_PREEMPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297 /*
4298 * Underflow?
4299 */
Ingo Molnar01e3eb82009-01-12 13:00:50 +01004300 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004301 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302 /*
4303 * Is the spinlock portion underflowing?
4304 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004305 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
4306 !(preempt_count() & PREEMPT_MASK)))
4307 return;
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004308#endif
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07004309
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +02004310 if (preempt_count() == val)
4311 trace_preempt_on(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312 preempt_count() -= val;
4313}
4314EXPORT_SYMBOL(sub_preempt_count);
4315
4316#endif
4317
4318/*
Ingo Molnardd41f592007-07-09 18:51:59 +02004319 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320 */
Ingo Molnardd41f592007-07-09 18:51:59 +02004321static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322{
Satyam Sharma838225b2007-10-24 18:23:50 +02004323 struct pt_regs *regs = get_irq_regs();
4324
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01004325 printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
4326 prev->comm, prev->pid, preempt_count());
Satyam Sharma838225b2007-10-24 18:23:50 +02004327
Ingo Molnardd41f592007-07-09 18:51:59 +02004328 debug_show_held_locks(prev);
Arjan van de Vene21f5b12008-05-23 09:05:58 -07004329 print_modules();
Ingo Molnardd41f592007-07-09 18:51:59 +02004330 if (irqs_disabled())
4331 print_irqtrace_events(prev);
Satyam Sharma838225b2007-10-24 18:23:50 +02004332
4333 if (regs)
4334 show_regs(regs);
4335 else
4336 dump_stack();
Ingo Molnardd41f592007-07-09 18:51:59 +02004337}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338
Ingo Molnardd41f592007-07-09 18:51:59 +02004339/*
4340 * Various schedule()-time debugging checks and statistics:
4341 */
4342static inline void schedule_debug(struct task_struct *prev)
4343{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344 /*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004345 * Test if we are atomic. Since do_exit() needs to call into
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346 * schedule() atomically, we ignore that path for now.
4347 * Otherwise, whine if we are scheduling when we should not be.
4348 */
Roel Kluin3f33a7c2008-05-13 23:44:11 +02004349 if (unlikely(in_atomic_preempt_off() && !prev->exit_state))
Ingo Molnardd41f592007-07-09 18:51:59 +02004350 __schedule_bug(prev);
4351
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
4353
Ingo Molnar2d723762007-10-15 17:00:12 +02004354 schedstat_inc(this_rq(), sched_count);
Ingo Molnardd41f592007-07-09 18:51:59 +02004355}
4356
Peter Zijlstra6cecd082009-11-30 13:00:37 +01004357static void put_prev_task(struct rq *rq, struct task_struct *prev)
Mike Galbraithdf1c99d2009-03-10 19:08:11 +01004358{
Mike Galbraith61eadef2011-04-29 08:36:50 +02004359 if (prev->on_rq || rq->skip_clock_update < 0)
Mike Galbraitha64692a2010-03-11 17:16:20 +01004360 update_rq_clock(rq);
Peter Zijlstra6cecd082009-11-30 13:00:37 +01004361 prev->sched_class->put_prev_task(rq, prev);
Mike Galbraithdf1c99d2009-03-10 19:08:11 +01004362}
4363
Ingo Molnardd41f592007-07-09 18:51:59 +02004364/*
4365 * Pick up the highest-prio task:
4366 */
4367static inline struct task_struct *
Wang Chenb67802e2009-03-02 13:55:26 +08004368pick_next_task(struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02004369{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02004370 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02004371 struct task_struct *p;
4372
4373 /*
4374 * Optimization: we know that if all tasks are in
4375 * the fair class we can call that function directly:
4376 */
Paul Turner953bfcd2011-07-21 09:43:27 -07004377 if (likely(rq->nr_running == rq->cfs.h_nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004378 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004379 if (likely(p))
4380 return p;
4381 }
4382
Peter Zijlstra34f971f2010-09-22 13:53:15 +02004383 for_each_class(class) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02004384 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004385 if (p)
4386 return p;
Ingo Molnardd41f592007-07-09 18:51:59 +02004387 }
Peter Zijlstra34f971f2010-09-22 13:53:15 +02004388
4389 BUG(); /* the idle class will always have a runnable task */
Ingo Molnardd41f592007-07-09 18:51:59 +02004390}
4391
4392/*
4393 * schedule() is the main scheduler function.
4394 */
Peter Zijlstraff743342009-03-13 12:21:26 +01004395asmlinkage void __sched schedule(void)
Ingo Molnardd41f592007-07-09 18:51:59 +02004396{
4397 struct task_struct *prev, *next;
Harvey Harrison67ca7bd2008-02-15 09:56:36 -08004398 unsigned long *switch_count;
Ingo Molnardd41f592007-07-09 18:51:59 +02004399 struct rq *rq;
Peter Zijlstra31656512008-07-18 18:01:23 +02004400 int cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02004401
Peter Zijlstraff743342009-03-13 12:21:26 +01004402need_resched:
4403 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02004404 cpu = smp_processor_id();
4405 rq = cpu_rq(cpu);
Paul E. McKenney25502a62010-04-01 17:37:01 -07004406 rcu_note_context_switch(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004407 prev = rq->curr;
Ingo Molnardd41f592007-07-09 18:51:59 +02004408
Ingo Molnardd41f592007-07-09 18:51:59 +02004409 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410
Peter Zijlstra31656512008-07-18 18:01:23 +02004411 if (sched_feat(HRTICK))
Mike Galbraithf333fdc2008-05-12 21:20:55 +02004412 hrtick_clear(rq);
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004413
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004414 raw_spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004415
Oleg Nesterov246d86b2010-05-19 14:57:11 +02004416 switch_count = &prev->nivcsw;
Ingo Molnardd41f592007-07-09 18:51:59 +02004417 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
Tejun Heo21aa9af2010-06-08 21:40:37 +02004418 if (unlikely(signal_pending_state(prev->state, prev))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02004419 prev->state = TASK_RUNNING;
Tejun Heo21aa9af2010-06-08 21:40:37 +02004420 } else {
Peter Zijlstra2acca552011-04-05 17:23:50 +02004421 deactivate_task(rq, prev, DEQUEUE_SLEEP);
4422 prev->on_rq = 0;
4423
Tejun Heo21aa9af2010-06-08 21:40:37 +02004424 /*
Peter Zijlstra2acca552011-04-05 17:23:50 +02004425 * If a worker went to sleep, notify and ask workqueue
4426 * whether it wants to wake up a task to maintain
4427 * concurrency.
Tejun Heo21aa9af2010-06-08 21:40:37 +02004428 */
4429 if (prev->flags & PF_WQ_WORKER) {
4430 struct task_struct *to_wakeup;
4431
4432 to_wakeup = wq_worker_sleeping(prev, cpu);
4433 if (to_wakeup)
4434 try_to_wake_up_local(to_wakeup);
4435 }
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02004436
Linus Torvalds6631e632011-04-13 08:08:20 -07004437 /*
Peter Zijlstra2acca552011-04-05 17:23:50 +02004438 * If we are going to sleep and we have plugged IO
4439 * queued, make sure to submit it to avoid deadlocks.
Linus Torvalds6631e632011-04-13 08:08:20 -07004440 */
4441 if (blk_needs_flush_plug(prev)) {
4442 raw_spin_unlock(&rq->lock);
Jens Axboea237c1c2011-04-16 13:27:55 +02004443 blk_schedule_flush_plug(prev);
Linus Torvalds6631e632011-04-13 08:08:20 -07004444 raw_spin_lock(&rq->lock);
4445 }
Tejun Heo21aa9af2010-06-08 21:40:37 +02004446 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004447 switch_count = &prev->nvcsw;
4448 }
4449
Gregory Haskins3f029d32009-07-29 11:08:47 -04004450 pre_schedule(rq, prev);
Steven Rostedtf65eda42008-01-25 21:08:07 +01004451
Ingo Molnardd41f592007-07-09 18:51:59 +02004452 if (unlikely(!rq->nr_running))
4453 idle_balance(cpu, rq);
4454
Mike Galbraithdf1c99d2009-03-10 19:08:11 +01004455 put_prev_task(rq, prev);
Wang Chenb67802e2009-03-02 13:55:26 +08004456 next = pick_next_task(rq);
Mike Galbraithf26f9af2010-12-08 11:05:42 +01004457 clear_tsk_need_resched(prev);
4458 rq->skip_clock_update = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460 if (likely(prev != next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461 rq->nr_switches++;
4462 rq->curr = next;
4463 ++*switch_count;
4464
Ingo Molnardd41f592007-07-09 18:51:59 +02004465 context_switch(rq, prev, next); /* unlocks the rq */
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004466 /*
Oleg Nesterov246d86b2010-05-19 14:57:11 +02004467 * The context switch have flipped the stack from under us
4468 * and restored the local variables which were saved when
4469 * this task called schedule() in the past. prev == current
4470 * is still correct, but it can be moved to another cpu/rq.
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01004471 */
4472 cpu = smp_processor_id();
4473 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474 } else
Thomas Gleixner05fa7852009-11-17 14:28:38 +01004475 raw_spin_unlock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476
Gregory Haskins3f029d32009-07-29 11:08:47 -04004477 post_schedule(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479 preempt_enable_no_resched();
Peter Zijlstraff743342009-03-13 12:21:26 +01004480 if (need_resched())
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481 goto need_resched;
4482}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483EXPORT_SYMBOL(schedule);
4484
Frederic Weisbeckerc08f7822009-12-02 20:49:17 +01004485#ifdef CONFIG_MUTEX_SPIN_ON_OWNER
Peter Zijlstrac6eb3dd2011-04-05 17:23:41 +02004486
4487static inline bool owner_running(struct mutex *lock, struct task_struct *owner)
4488{
Peter Zijlstrac6eb3dd2011-04-05 17:23:41 +02004489 if (lock->owner != owner)
Thomas Gleixner307bf982011-06-10 15:08:55 +02004490 return false;
Peter Zijlstrac6eb3dd2011-04-05 17:23:41 +02004491
4492 /*
4493 * Ensure we emit the owner->on_cpu, dereference _after_ checking
4494 * lock->owner still matches owner, if that fails, owner might
4495 * point to free()d memory, if it still matches, the rcu_read_lock()
4496 * ensures the memory stays valid.
4497 */
4498 barrier();
4499
Thomas Gleixner307bf982011-06-10 15:08:55 +02004500 return owner->on_cpu;
Peter Zijlstrac6eb3dd2011-04-05 17:23:41 +02004501}
4502
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01004503/*
4504 * Look out! "owner" is an entirely speculative pointer
4505 * access and not reliable.
4506 */
Peter Zijlstrac6eb3dd2011-04-05 17:23:41 +02004507int mutex_spin_on_owner(struct mutex *lock, struct task_struct *owner)
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01004508{
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01004509 if (!sched_feat(OWNER_SPIN))
4510 return 0;
4511
Thomas Gleixner307bf982011-06-10 15:08:55 +02004512 rcu_read_lock();
Peter Zijlstrac6eb3dd2011-04-05 17:23:41 +02004513 while (owner_running(lock, owner)) {
4514 if (need_resched())
Thomas Gleixner307bf982011-06-10 15:08:55 +02004515 break;
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01004516
Gerald Schaefer335d7af2010-11-22 15:47:36 +01004517 arch_mutex_cpu_relax();
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01004518 }
Thomas Gleixner307bf982011-06-10 15:08:55 +02004519 rcu_read_unlock();
Benjamin Herrenschmidt4b402212010-04-16 23:20:00 +02004520
Peter Zijlstrac6eb3dd2011-04-05 17:23:41 +02004521 /*
Thomas Gleixner307bf982011-06-10 15:08:55 +02004522 * We break out the loop above on need_resched() and when the
4523 * owner changed, which is a sign for heavy contention. Return
4524 * success only when lock->owner is NULL.
Peter Zijlstrac6eb3dd2011-04-05 17:23:41 +02004525 */
Thomas Gleixner307bf982011-06-10 15:08:55 +02004526 return lock->owner == NULL;
Peter Zijlstra0d66bf62009-01-12 14:01:47 +01004527}
4528#endif
4529
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530#ifdef CONFIG_PREEMPT
4531/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004532 * this is the entry point to schedule() from in-kernel preemption
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004533 * off of preempt_enable. Kernel preemptions off return from interrupt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534 * occur there and call schedule directly.
4535 */
Steven Rostedtd1f74e22010-06-02 21:52:29 -04004536asmlinkage void __sched notrace preempt_schedule(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537{
4538 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004539
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540 /*
4541 * If there is a non-zero preempt_count or interrupts are disabled,
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004542 * we do not want to preempt the current task. Just return..
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07004544 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545 return;
4546
Andi Kleen3a5c3592007-10-15 17:00:14 +02004547 do {
Steven Rostedtd1f74e22010-06-02 21:52:29 -04004548 add_preempt_count_notrace(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004549 schedule();
Steven Rostedtd1f74e22010-06-02 21:52:29 -04004550 sub_preempt_count_notrace(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004551
4552 /*
4553 * Check again in case we missed a preemption opportunity
4554 * between schedule and now.
4555 */
4556 barrier();
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08004557 } while (need_resched());
Linus Torvalds1da177e2005-04-16 15:20:36 -07004558}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559EXPORT_SYMBOL(preempt_schedule);
4560
4561/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004562 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563 * off of irq context.
4564 * Note, that this is called and return with irqs disabled. This will
4565 * protect us against recursive calling from irq.
4566 */
4567asmlinkage void __sched preempt_schedule_irq(void)
4568{
4569 struct thread_info *ti = current_thread_info();
Ingo Molnar6478d882008-01-25 21:08:33 +01004570
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004571 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572 BUG_ON(ti->preempt_count || !irqs_disabled());
4573
Andi Kleen3a5c3592007-10-15 17:00:14 +02004574 do {
4575 add_preempt_count(PREEMPT_ACTIVE);
Andi Kleen3a5c3592007-10-15 17:00:14 +02004576 local_irq_enable();
4577 schedule();
4578 local_irq_disable();
Andi Kleen3a5c3592007-10-15 17:00:14 +02004579 sub_preempt_count(PREEMPT_ACTIVE);
4580
4581 /*
4582 * Check again in case we missed a preemption opportunity
4583 * between schedule and now.
4584 */
4585 barrier();
Lai Jiangshan5ed0cec2009-03-06 19:40:20 +08004586 } while (need_resched());
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587}
4588
4589#endif /* CONFIG_PREEMPT */
4590
Peter Zijlstra63859d42009-09-15 19:14:42 +02004591int default_wake_function(wait_queue_t *curr, unsigned mode, int wake_flags,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004592 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593{
Peter Zijlstra63859d42009-09-15 19:14:42 +02004594 return try_to_wake_up(curr->private, mode, wake_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596EXPORT_SYMBOL(default_wake_function);
4597
4598/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004599 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
4600 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601 * number) then we wake all the non-exclusive tasks and one exclusive task.
4602 *
4603 * There are circumstances in which we can try to wake a task which has already
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01004604 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605 * zero in this (rare) case, and we handle it by continuing to scan the queue.
4606 */
Johannes Weiner78ddb082009-04-14 16:53:05 +02004607static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
Peter Zijlstra63859d42009-09-15 19:14:42 +02004608 int nr_exclusive, int wake_flags, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004610 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02004612 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07004613 unsigned flags = curr->flags;
4614
Peter Zijlstra63859d42009-09-15 19:14:42 +02004615 if (curr->func(curr, mode, wake_flags, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07004616 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617 break;
4618 }
4619}
4620
4621/**
4622 * __wake_up - wake up threads blocked on a waitqueue.
4623 * @q: the waitqueue
4624 * @mode: which threads
4625 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07004626 * @key: is directly passed to the wakeup function
David Howells50fa6102009-04-28 15:01:38 +01004627 *
4628 * It may be assumed that this function implies a write memory barrier before
4629 * changing the task state if and only if any tasks are woken up.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004631void __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004632 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633{
4634 unsigned long flags;
4635
4636 spin_lock_irqsave(&q->lock, flags);
4637 __wake_up_common(q, mode, nr_exclusive, 0, key);
4638 spin_unlock_irqrestore(&q->lock, flags);
4639}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640EXPORT_SYMBOL(__wake_up);
4641
4642/*
4643 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
4644 */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -08004645void __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646{
4647 __wake_up_common(q, mode, 1, 0, NULL);
4648}
Michal Nazarewicz22c43c82010-05-05 12:53:11 +02004649EXPORT_SYMBOL_GPL(__wake_up_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650
Davide Libenzi4ede8162009-03-31 15:24:20 -07004651void __wake_up_locked_key(wait_queue_head_t *q, unsigned int mode, void *key)
4652{
4653 __wake_up_common(q, mode, 1, 0, key);
4654}
Trond Myklebustbf294b42011-02-21 11:05:41 -08004655EXPORT_SYMBOL_GPL(__wake_up_locked_key);
Davide Libenzi4ede8162009-03-31 15:24:20 -07004656
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657/**
Davide Libenzi4ede8162009-03-31 15:24:20 -07004658 * __wake_up_sync_key - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659 * @q: the waitqueue
4660 * @mode: which threads
4661 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Davide Libenzi4ede8162009-03-31 15:24:20 -07004662 * @key: opaque value to be passed to wakeup targets
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663 *
4664 * The sync wakeup differs that the waker knows that it will schedule
4665 * away soon, so while the target thread will be woken up, it will not
4666 * be migrated to another CPU - ie. the two threads are 'synchronized'
4667 * with each other. This can prevent needless bouncing between CPUs.
4668 *
4669 * On UP it can prevent extra preemption.
David Howells50fa6102009-04-28 15:01:38 +01004670 *
4671 * It may be assumed that this function implies a write memory barrier before
4672 * changing the task state if and only if any tasks are woken up.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673 */
Davide Libenzi4ede8162009-03-31 15:24:20 -07004674void __wake_up_sync_key(wait_queue_head_t *q, unsigned int mode,
4675 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676{
4677 unsigned long flags;
Peter Zijlstra7d478722009-09-14 19:55:44 +02004678 int wake_flags = WF_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679
4680 if (unlikely(!q))
4681 return;
4682
4683 if (unlikely(!nr_exclusive))
Peter Zijlstra7d478722009-09-14 19:55:44 +02004684 wake_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685
4686 spin_lock_irqsave(&q->lock, flags);
Peter Zijlstra7d478722009-09-14 19:55:44 +02004687 __wake_up_common(q, mode, nr_exclusive, wake_flags, key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688 spin_unlock_irqrestore(&q->lock, flags);
4689}
Davide Libenzi4ede8162009-03-31 15:24:20 -07004690EXPORT_SYMBOL_GPL(__wake_up_sync_key);
4691
4692/*
4693 * __wake_up_sync - see __wake_up_sync_key()
4694 */
4695void __wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
4696{
4697 __wake_up_sync_key(q, mode, nr_exclusive, NULL);
4698}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
4700
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004701/**
4702 * complete: - signals a single thread waiting on this completion
4703 * @x: holds the state of this particular completion
4704 *
4705 * This will wake up a single thread waiting on this completion. Threads will be
4706 * awakened in the same order in which they were queued.
4707 *
4708 * See also complete_all(), wait_for_completion() and related routines.
David Howells50fa6102009-04-28 15:01:38 +01004709 *
4710 * It may be assumed that this function implies a write memory barrier before
4711 * changing the task state if and only if any tasks are woken up.
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004712 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004713void complete(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714{
4715 unsigned long flags;
4716
4717 spin_lock_irqsave(&x->wait.lock, flags);
4718 x->done++;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004719 __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720 spin_unlock_irqrestore(&x->wait.lock, flags);
4721}
4722EXPORT_SYMBOL(complete);
4723
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004724/**
4725 * complete_all: - signals all threads waiting on this completion
4726 * @x: holds the state of this particular completion
4727 *
4728 * This will wake up all threads waiting on this particular completion event.
David Howells50fa6102009-04-28 15:01:38 +01004729 *
4730 * It may be assumed that this function implies a write memory barrier before
4731 * changing the task state if and only if any tasks are woken up.
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004732 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004733void complete_all(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734{
4735 unsigned long flags;
4736
4737 spin_lock_irqsave(&x->wait.lock, flags);
4738 x->done += UINT_MAX/2;
Matthew Wilcoxd9514f62007-12-06 11:07:07 -05004739 __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740 spin_unlock_irqrestore(&x->wait.lock, flags);
4741}
4742EXPORT_SYMBOL(complete_all);
4743
Andi Kleen8cbbe862007-10-15 17:00:14 +02004744static inline long __sched
4745do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747 if (!x->done) {
4748 DECLARE_WAITQUEUE(wait, current);
4749
Changli Gaoa93d2f12010-05-07 14:33:26 +08004750 __add_wait_queue_tail_exclusive(&x->wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751 do {
Oleg Nesterov94d3d822008-08-20 16:54:41 -07004752 if (signal_pending_state(state, current)) {
Oleg Nesterovea71a542008-06-20 18:32:20 +04004753 timeout = -ERESTARTSYS;
4754 break;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004755 }
4756 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004758 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759 spin_lock_irq(&x->wait.lock);
Oleg Nesterovea71a542008-06-20 18:32:20 +04004760 } while (!x->done && timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761 __remove_wait_queue(&x->wait, &wait);
Oleg Nesterovea71a542008-06-20 18:32:20 +04004762 if (!x->done)
4763 return timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764 }
4765 x->done--;
Oleg Nesterovea71a542008-06-20 18:32:20 +04004766 return timeout ?: 1;
Andi Kleen8cbbe862007-10-15 17:00:14 +02004767}
4768
4769static long __sched
4770wait_for_common(struct completion *x, long timeout, int state)
4771{
4772 might_sleep();
4773
4774 spin_lock_irq(&x->wait.lock);
4775 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02004777 return timeout;
4778}
4779
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004780/**
4781 * wait_for_completion: - waits for completion of a task
4782 * @x: holds the state of this particular completion
4783 *
4784 * This waits to be signaled for completion of a specific task. It is NOT
4785 * interruptible and there is no timeout.
4786 *
4787 * See also similar routines (i.e. wait_for_completion_timeout()) with timeout
4788 * and interrupt capability. Also see complete().
4789 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004790void __sched wait_for_completion(struct completion *x)
Andi Kleen8cbbe862007-10-15 17:00:14 +02004791{
4792 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793}
4794EXPORT_SYMBOL(wait_for_completion);
4795
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004796/**
4797 * wait_for_completion_timeout: - waits for completion of a task (w/timeout)
4798 * @x: holds the state of this particular completion
4799 * @timeout: timeout value in jiffies
4800 *
4801 * This waits for either a completion of a specific task to be signaled or for a
4802 * specified timeout to expire. The timeout is in jiffies. It is not
4803 * interruptible.
4804 */
Ingo Molnarb15136e2007-10-24 18:23:48 +02004805unsigned long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806wait_for_completion_timeout(struct completion *x, unsigned long timeout)
4807{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004808 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809}
4810EXPORT_SYMBOL(wait_for_completion_timeout);
4811
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004812/**
4813 * wait_for_completion_interruptible: - waits for completion of a task (w/intr)
4814 * @x: holds the state of this particular completion
4815 *
4816 * This waits for completion of a specific task to be signaled. It is
4817 * interruptible.
4818 */
Andi Kleen8cbbe862007-10-15 17:00:14 +02004819int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820{
Andi Kleen51e97992007-10-18 21:32:55 +02004821 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
4822 if (t == -ERESTARTSYS)
4823 return t;
4824 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825}
4826EXPORT_SYMBOL(wait_for_completion_interruptible);
4827
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004828/**
4829 * wait_for_completion_interruptible_timeout: - waits for completion (w/(to,intr))
4830 * @x: holds the state of this particular completion
4831 * @timeout: timeout value in jiffies
4832 *
4833 * This waits for either a completion of a specific task to be signaled or for a
4834 * specified timeout to expire. It is interruptible. The timeout is in jiffies.
4835 */
NeilBrown6bf41232011-01-05 12:50:16 +11004836long __sched
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837wait_for_completion_interruptible_timeout(struct completion *x,
4838 unsigned long timeout)
4839{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004840 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841}
4842EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
4843
Kevin Diggs65eb3dc2008-08-26 10:26:54 +02004844/**
4845 * wait_for_completion_killable: - waits for completion of a task (killable)
4846 * @x: holds the state of this particular completion
4847 *
4848 * This waits to be signaled for completion of a specific task. It can be
4849 * interrupted by a kill signal.
4850 */
Matthew Wilcox009e5772007-12-06 12:29:54 -05004851int __sched wait_for_completion_killable(struct completion *x)
4852{
4853 long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE);
4854 if (t == -ERESTARTSYS)
4855 return t;
4856 return 0;
4857}
4858EXPORT_SYMBOL(wait_for_completion_killable);
4859
Dave Chinnerbe4de352008-08-15 00:40:44 -07004860/**
Sage Weil0aa12fb2010-05-29 09:12:30 -07004861 * wait_for_completion_killable_timeout: - waits for completion of a task (w/(to,killable))
4862 * @x: holds the state of this particular completion
4863 * @timeout: timeout value in jiffies
4864 *
4865 * This waits for either a completion of a specific task to be
4866 * signaled or for a specified timeout to expire. It can be
4867 * interrupted by a kill signal. The timeout is in jiffies.
4868 */
NeilBrown6bf41232011-01-05 12:50:16 +11004869long __sched
Sage Weil0aa12fb2010-05-29 09:12:30 -07004870wait_for_completion_killable_timeout(struct completion *x,
4871 unsigned long timeout)
4872{
4873 return wait_for_common(x, timeout, TASK_KILLABLE);
4874}
4875EXPORT_SYMBOL(wait_for_completion_killable_timeout);
4876
4877/**
Dave Chinnerbe4de352008-08-15 00:40:44 -07004878 * try_wait_for_completion - try to decrement a completion without blocking
4879 * @x: completion structure
4880 *
4881 * Returns: 0 if a decrement cannot be done without blocking
4882 * 1 if a decrement succeeded.
4883 *
4884 * If a completion is being used as a counting completion,
4885 * attempt to decrement the counter without blocking. This
4886 * enables us to avoid waiting if the resource the completion
4887 * is protecting is not available.
4888 */
4889bool try_wait_for_completion(struct completion *x)
4890{
Rafael J. Wysocki7539a3b2009-12-13 00:07:30 +01004891 unsigned long flags;
Dave Chinnerbe4de352008-08-15 00:40:44 -07004892 int ret = 1;
4893
Rafael J. Wysocki7539a3b2009-12-13 00:07:30 +01004894 spin_lock_irqsave(&x->wait.lock, flags);
Dave Chinnerbe4de352008-08-15 00:40:44 -07004895 if (!x->done)
4896 ret = 0;
4897 else
4898 x->done--;
Rafael J. Wysocki7539a3b2009-12-13 00:07:30 +01004899 spin_unlock_irqrestore(&x->wait.lock, flags);
Dave Chinnerbe4de352008-08-15 00:40:44 -07004900 return ret;
4901}
4902EXPORT_SYMBOL(try_wait_for_completion);
4903
4904/**
4905 * completion_done - Test to see if a completion has any waiters
4906 * @x: completion structure
4907 *
4908 * Returns: 0 if there are waiters (wait_for_completion() in progress)
4909 * 1 if there are no waiters.
4910 *
4911 */
4912bool completion_done(struct completion *x)
4913{
Rafael J. Wysocki7539a3b2009-12-13 00:07:30 +01004914 unsigned long flags;
Dave Chinnerbe4de352008-08-15 00:40:44 -07004915 int ret = 1;
4916
Rafael J. Wysocki7539a3b2009-12-13 00:07:30 +01004917 spin_lock_irqsave(&x->wait.lock, flags);
Dave Chinnerbe4de352008-08-15 00:40:44 -07004918 if (!x->done)
4919 ret = 0;
Rafael J. Wysocki7539a3b2009-12-13 00:07:30 +01004920 spin_unlock_irqrestore(&x->wait.lock, flags);
Dave Chinnerbe4de352008-08-15 00:40:44 -07004921 return ret;
4922}
4923EXPORT_SYMBOL(completion_done);
4924
Andi Kleen8cbbe862007-10-15 17:00:14 +02004925static long __sched
4926sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02004927{
4928 unsigned long flags;
4929 wait_queue_t wait;
4930
4931 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932
Andi Kleen8cbbe862007-10-15 17:00:14 +02004933 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934
Andi Kleen8cbbe862007-10-15 17:00:14 +02004935 spin_lock_irqsave(&q->lock, flags);
4936 __add_wait_queue(q, &wait);
4937 spin_unlock(&q->lock);
4938 timeout = schedule_timeout(timeout);
4939 spin_lock_irq(&q->lock);
4940 __remove_wait_queue(q, &wait);
4941 spin_unlock_irqrestore(&q->lock, flags);
4942
4943 return timeout;
4944}
4945
4946void __sched interruptible_sleep_on(wait_queue_head_t *q)
4947{
4948 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004949}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004950EXPORT_SYMBOL(interruptible_sleep_on);
4951
Ingo Molnar0fec1712007-07-09 18:52:01 +02004952long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004953interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004955 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957EXPORT_SYMBOL(interruptible_sleep_on_timeout);
4958
Ingo Molnar0fec1712007-07-09 18:52:01 +02004959void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004961 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963EXPORT_SYMBOL(sleep_on);
4964
Ingo Molnar0fec1712007-07-09 18:52:01 +02004965long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966{
Andi Kleen8cbbe862007-10-15 17:00:14 +02004967 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004969EXPORT_SYMBOL(sleep_on_timeout);
4970
Ingo Molnarb29739f2006-06-27 02:54:51 -07004971#ifdef CONFIG_RT_MUTEXES
4972
4973/*
4974 * rt_mutex_setprio - set the current priority of a task
4975 * @p: task
4976 * @prio: prio value (kernel-internal form)
4977 *
4978 * This function changes the 'effective' priority of a task. It does
4979 * not touch ->normal_prio like __setscheduler().
4980 *
4981 * Used by the rt_mutex code to implement priority inheritance logic.
4982 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004983void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07004984{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004985 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004986 struct rq *rq;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01004987 const struct sched_class *prev_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004988
4989 BUG_ON(prio < 0 || prio > MAX_PRIO);
4990
Peter Zijlstra0122ec52011-04-05 17:23:51 +02004991 rq = __task_rq_lock(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004992
Steven Rostedta8027072010-09-20 15:13:34 -04004993 trace_sched_pi_setprio(p, prio);
Andrew Mortond5f9f942007-05-08 20:27:06 -07004994 oldprio = p->prio;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01004995 prev_class = p->sched_class;
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02004996 on_rq = p->on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01004997 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07004998 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02004999 dequeue_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005000 if (running)
5001 p->sched_class->put_prev_task(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02005002
5003 if (rt_prio(prio))
5004 p->sched_class = &rt_sched_class;
5005 else
5006 p->sched_class = &fair_sched_class;
5007
Ingo Molnarb29739f2006-06-27 02:54:51 -07005008 p->prio = prio;
5009
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005010 if (running)
5011 p->sched_class->set_curr_task(rq);
Peter Zijlstrada7a7352011-01-17 17:03:27 +01005012 if (on_rq)
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01005013 enqueue_task(rq, p, oldprio < prio ? ENQUEUE_HEAD : 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01005014
Peter Zijlstrada7a7352011-01-17 17:03:27 +01005015 check_class_changed(rq, p, prev_class, oldprio);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02005016 __task_rq_unlock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07005017}
5018
5019#endif
5020
Ingo Molnar36c8b582006-07-03 00:25:41 -07005021void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022{
Ingo Molnardd41f592007-07-09 18:51:59 +02005023 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005024 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005025 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026
5027 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
5028 return;
5029 /*
5030 * We have to be careful, if called from sys_setpriority(),
5031 * the task might be in the middle of scheduling on another CPU.
5032 */
5033 rq = task_rq_lock(p, &flags);
5034 /*
5035 * The RT priorities are set via sched_setscheduler(), but we still
5036 * allow the 'normal' nice value to be set - but as expected
5037 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02005038 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039 */
Ingo Molnare05606d2007-07-09 18:51:59 +02005040 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041 p->static_prio = NICE_TO_PRIO(nice);
5042 goto out_unlock;
5043 }
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02005044 on_rq = p->on_rq;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02005045 if (on_rq)
Ingo Molnar69be72c2007-08-09 11:16:49 +02005046 dequeue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005047
Linus Torvalds1da177e2005-04-16 15:20:36 -07005048 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07005049 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07005050 old_prio = p->prio;
5051 p->prio = effective_prio(p);
5052 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053
Ingo Molnardd41f592007-07-09 18:51:59 +02005054 if (on_rq) {
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01005055 enqueue_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005056 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07005057 * If the task increased its priority or is running and
5058 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005059 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07005060 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061 resched_task(rq->curr);
5062 }
5063out_unlock:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02005064 task_rq_unlock(rq, p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005065}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066EXPORT_SYMBOL(set_user_nice);
5067
Matt Mackalle43379f2005-05-01 08:59:00 -07005068/*
5069 * can_nice - check if a task can reduce its nice value
5070 * @p: task
5071 * @nice: nice value
5072 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005073int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07005074{
Matt Mackall024f4742005-08-18 11:24:19 -07005075 /* convert nice value [19,-20] to rlimit style value [1,40] */
5076 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005077
Jiri Slaby78d7d402010-03-05 13:42:54 -08005078 return (nice_rlim <= task_rlimit(p, RLIMIT_NICE) ||
Matt Mackalle43379f2005-05-01 08:59:00 -07005079 capable(CAP_SYS_NICE));
5080}
5081
Linus Torvalds1da177e2005-04-16 15:20:36 -07005082#ifdef __ARCH_WANT_SYS_NICE
5083
5084/*
5085 * sys_nice - change the priority of the current process.
5086 * @increment: priority increment
5087 *
5088 * sys_setpriority is a more generic, but much slower function that
5089 * does similar things.
5090 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005091SYSCALL_DEFINE1(nice, int, increment)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005093 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005094
5095 /*
5096 * Setpriority might change our priority at the same moment.
5097 * We don't have to worry. Conceptually one call occurs first
5098 * and we have a single winner.
5099 */
Matt Mackalle43379f2005-05-01 08:59:00 -07005100 if (increment < -40)
5101 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102 if (increment > 40)
5103 increment = 40;
5104
Américo Wang2b8f8362009-02-16 18:54:21 +08005105 nice = TASK_NICE(current) + increment;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106 if (nice < -20)
5107 nice = -20;
5108 if (nice > 19)
5109 nice = 19;
5110
Matt Mackalle43379f2005-05-01 08:59:00 -07005111 if (increment < 0 && !can_nice(current, nice))
5112 return -EPERM;
5113
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114 retval = security_task_setnice(current, nice);
5115 if (retval)
5116 return retval;
5117
5118 set_user_nice(current, nice);
5119 return 0;
5120}
5121
5122#endif
5123
5124/**
5125 * task_prio - return the priority value of a given task.
5126 * @p: the task in question.
5127 *
5128 * This is the priority value as seen by users in /proc.
5129 * RT tasks are offset by -200. Normal tasks are centered
5130 * around 0, value goes from -16 to +15.
5131 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005132int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133{
5134 return p->prio - MAX_RT_PRIO;
5135}
5136
5137/**
5138 * task_nice - return the nice value of a given task.
5139 * @p: the task in question.
5140 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005141int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142{
5143 return TASK_NICE(p);
5144}
Pavel Roskin150d8be2008-03-05 16:56:37 -05005145EXPORT_SYMBOL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005146
5147/**
5148 * idle_cpu - is a given cpu idle currently?
5149 * @cpu: the processor in question.
5150 */
5151int idle_cpu(int cpu)
5152{
5153 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
5154}
5155
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156/**
5157 * idle_task - return the idle task for a given cpu.
5158 * @cpu: the processor in question.
5159 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005160struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161{
5162 return cpu_rq(cpu)->idle;
5163}
5164
5165/**
5166 * find_process_by_pid - find a process with a matching PID value.
5167 * @pid: the pid in question.
5168 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02005169static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170{
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -07005171 return pid ? find_task_by_vpid(pid) : current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005172}
5173
5174/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02005175static void
5176__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178 p->policy = policy;
5179 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07005180 p->normal_prio = normal_prio(p);
5181 /* we are holding p->pi_lock already */
5182 p->prio = rt_mutex_getprio(p);
Peter Zijlstraffd44db2009-11-10 20:12:01 +01005183 if (rt_prio(p->prio))
5184 p->sched_class = &rt_sched_class;
5185 else
5186 p->sched_class = &fair_sched_class;
Peter Williams2dd73a42006-06-27 02:54:34 -07005187 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005188}
5189
David Howellsc69e8d92008-11-14 10:39:19 +11005190/*
5191 * check the target process has a UID that matches the current process's
5192 */
5193static bool check_same_owner(struct task_struct *p)
5194{
5195 const struct cred *cred = current_cred(), *pcred;
5196 bool match;
5197
5198 rcu_read_lock();
5199 pcred = __task_cred(p);
Serge E. Hallynb0e77592011-03-23 16:43:24 -07005200 if (cred->user->user_ns == pcred->user->user_ns)
5201 match = (cred->euid == pcred->euid ||
5202 cred->euid == pcred->uid);
5203 else
5204 match = false;
David Howellsc69e8d92008-11-14 10:39:19 +11005205 rcu_read_unlock();
5206 return match;
5207}
5208
Rusty Russell961ccdd2008-06-23 13:55:38 +10005209static int __sched_setscheduler(struct task_struct *p, int policy,
KOSAKI Motohirofe7de492010-10-20 16:01:12 -07005210 const struct sched_param *param, bool user)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02005212 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213 unsigned long flags;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01005214 const struct sched_class *prev_class;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005215 struct rq *rq;
Lennart Poetteringca94c442009-06-15 17:17:47 +02005216 int reset_on_fork;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005217
Steven Rostedt66e53932006-06-27 02:54:44 -07005218 /* may grab non-irq protected spin_locks */
5219 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07005220recheck:
5221 /* double check policy once rq lock held */
Lennart Poetteringca94c442009-06-15 17:17:47 +02005222 if (policy < 0) {
5223 reset_on_fork = p->sched_reset_on_fork;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224 policy = oldpolicy = p->policy;
Lennart Poetteringca94c442009-06-15 17:17:47 +02005225 } else {
5226 reset_on_fork = !!(policy & SCHED_RESET_ON_FORK);
5227 policy &= ~SCHED_RESET_ON_FORK;
5228
5229 if (policy != SCHED_FIFO && policy != SCHED_RR &&
5230 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
5231 policy != SCHED_IDLE)
5232 return -EINVAL;
5233 }
5234
Linus Torvalds1da177e2005-04-16 15:20:36 -07005235 /*
5236 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02005237 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
5238 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005239 */
5240 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005241 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04005242 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005243 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02005244 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005245 return -EINVAL;
5246
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005247 /*
5248 * Allow unprivileged RT tasks to decrease priority:
5249 */
Rusty Russell961ccdd2008-06-23 13:55:38 +10005250 if (user && !capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02005251 if (rt_policy(policy)) {
Oleg Nesterova44702e2010-06-11 01:09:44 +02005252 unsigned long rlim_rtprio =
5253 task_rlimit(p, RLIMIT_RTPRIO);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005254
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005255 /* can't set/change the rt policy */
5256 if (policy != p->policy && !rlim_rtprio)
5257 return -EPERM;
5258
5259 /* can't increase priority */
5260 if (param->sched_priority > p->rt_priority &&
5261 param->sched_priority > rlim_rtprio)
5262 return -EPERM;
5263 }
Darren Hartc02aa732011-02-17 15:37:07 -08005264
Ingo Molnardd41f592007-07-09 18:51:59 +02005265 /*
Darren Hartc02aa732011-02-17 15:37:07 -08005266 * Treat SCHED_IDLE as nice 20. Only allow a switch to
5267 * SCHED_NORMAL if the RLIMIT_NICE would normally permit it.
Ingo Molnardd41f592007-07-09 18:51:59 +02005268 */
Darren Hartc02aa732011-02-17 15:37:07 -08005269 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE) {
5270 if (!can_nice(p, TASK_NICE(p)))
5271 return -EPERM;
5272 }
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07005273
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005274 /* can't change other user's priorities */
David Howellsc69e8d92008-11-14 10:39:19 +11005275 if (!check_same_owner(p))
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005276 return -EPERM;
Lennart Poetteringca94c442009-06-15 17:17:47 +02005277
5278 /* Normal users shall not reset the sched_reset_on_fork flag */
5279 if (p->sched_reset_on_fork && !reset_on_fork)
5280 return -EPERM;
Olivier Croquette37e4ab32005-06-25 14:57:32 -07005281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07005283 if (user) {
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09005284 retval = security_task_setscheduler(p);
Jeremy Fitzhardinge725aad22008-08-03 09:33:03 -07005285 if (retval)
5286 return retval;
5287 }
5288
Linus Torvalds1da177e2005-04-16 15:20:36 -07005289 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07005290 * make sure no PI-waiters arrive (or leave) while we are
5291 * changing the priority of the task:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02005292 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005293 * To be able to change p->policy safely, the appropriate
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294 * runqueue lock must be held.
5295 */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02005296 rq = task_rq_lock(p, &flags);
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02005297
Peter Zijlstra34f971f2010-09-22 13:53:15 +02005298 /*
5299 * Changing the policy of the stop threads its a very bad idea
5300 */
5301 if (p == rq->stop) {
Peter Zijlstra0122ec52011-04-05 17:23:51 +02005302 task_rq_unlock(rq, p, &flags);
Peter Zijlstra34f971f2010-09-22 13:53:15 +02005303 return -EINVAL;
5304 }
5305
Dario Faggiolia51e9192011-03-24 14:00:18 +01005306 /*
5307 * If not changing anything there's no need to proceed further:
5308 */
5309 if (unlikely(policy == p->policy && (!rt_policy(policy) ||
5310 param->sched_priority == p->rt_priority))) {
5311
5312 __task_rq_unlock(rq);
5313 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
5314 return 0;
5315 }
5316
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02005317#ifdef CONFIG_RT_GROUP_SCHED
5318 if (user) {
5319 /*
5320 * Do not allow realtime tasks into groups that have no runtime
5321 * assigned.
5322 */
5323 if (rt_bandwidth_enabled() && rt_policy(policy) &&
Mike Galbraithf4493772011-01-13 04:54:50 +01005324 task_group(p)->rt_bandwidth.rt_runtime == 0 &&
5325 !task_group_is_autogroup(task_group(p))) {
Peter Zijlstra0122ec52011-04-05 17:23:51 +02005326 task_rq_unlock(rq, p, &flags);
Peter Zijlstradc61b1d2010-06-08 11:40:42 +02005327 return -EPERM;
5328 }
5329 }
5330#endif
5331
Linus Torvalds1da177e2005-04-16 15:20:36 -07005332 /* recheck policy now with rq lock held */
5333 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
5334 policy = oldpolicy = -1;
Peter Zijlstra0122ec52011-04-05 17:23:51 +02005335 task_rq_unlock(rq, p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005336 goto recheck;
5337 }
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02005338 on_rq = p->on_rq;
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01005339 running = task_current(rq, p);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005340 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005341 deactivate_task(rq, p, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005342 if (running)
5343 p->sched_class->put_prev_task(rq, p);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02005344
Lennart Poetteringca94c442009-06-15 17:17:47 +02005345 p->sched_reset_on_fork = reset_on_fork;
5346
Linus Torvalds1da177e2005-04-16 15:20:36 -07005347 oldprio = p->prio;
Thomas Gleixner83ab0aa2010-02-17 09:05:48 +01005348 prev_class = p->sched_class;
Ingo Molnardd41f592007-07-09 18:51:59 +02005349 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02005350
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07005351 if (running)
5352 p->sched_class->set_curr_task(rq);
Peter Zijlstrada7a7352011-01-17 17:03:27 +01005353 if (on_rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02005354 activate_task(rq, p, 0);
Steven Rostedtcb469842008-01-25 21:08:22 +01005355
Peter Zijlstrada7a7352011-01-17 17:03:27 +01005356 check_class_changed(rq, p, prev_class, oldprio);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02005357 task_rq_unlock(rq, p, &flags);
Ingo Molnarb29739f2006-06-27 02:54:51 -07005358
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07005359 rt_mutex_adjust_pi(p);
5360
Linus Torvalds1da177e2005-04-16 15:20:36 -07005361 return 0;
5362}
Rusty Russell961ccdd2008-06-23 13:55:38 +10005363
5364/**
5365 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
5366 * @p: the task in question.
5367 * @policy: new policy.
5368 * @param: structure containing the new RT priority.
5369 *
5370 * NOTE that the task may be already dead.
5371 */
5372int sched_setscheduler(struct task_struct *p, int policy,
KOSAKI Motohirofe7de492010-10-20 16:01:12 -07005373 const struct sched_param *param)
Rusty Russell961ccdd2008-06-23 13:55:38 +10005374{
5375 return __sched_setscheduler(p, policy, param, true);
5376}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377EXPORT_SYMBOL_GPL(sched_setscheduler);
5378
Rusty Russell961ccdd2008-06-23 13:55:38 +10005379/**
5380 * sched_setscheduler_nocheck - change the scheduling policy and/or RT priority of a thread from kernelspace.
5381 * @p: the task in question.
5382 * @policy: new policy.
5383 * @param: structure containing the new RT priority.
5384 *
5385 * Just like sched_setscheduler, only don't bother checking if the
5386 * current context has permission. For example, this is needed in
5387 * stop_machine(): we create temporary high priority worker threads,
5388 * but our caller might not have that capability.
5389 */
5390int sched_setscheduler_nocheck(struct task_struct *p, int policy,
KOSAKI Motohirofe7de492010-10-20 16:01:12 -07005391 const struct sched_param *param)
Rusty Russell961ccdd2008-06-23 13:55:38 +10005392{
5393 return __sched_setscheduler(p, policy, param, false);
5394}
5395
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005396static int
5397do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005399 struct sched_param lparam;
5400 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005401 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005402
5403 if (!param || pid < 0)
5404 return -EINVAL;
5405 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
5406 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005407
5408 rcu_read_lock();
5409 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005410 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07005411 if (p != NULL)
5412 retval = sched_setscheduler(p, policy, &lparam);
5413 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07005414
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415 return retval;
5416}
5417
5418/**
5419 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
5420 * @pid: the pid in question.
5421 * @policy: new policy.
5422 * @param: structure containing the new RT priority.
5423 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005424SYSCALL_DEFINE3(sched_setscheduler, pid_t, pid, int, policy,
5425 struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426{
Jason Baronc21761f2006-01-18 17:43:03 -08005427 /* negative values for policy are not valid */
5428 if (policy < 0)
5429 return -EINVAL;
5430
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431 return do_sched_setscheduler(pid, policy, param);
5432}
5433
5434/**
5435 * sys_sched_setparam - set/change the RT priority of a thread
5436 * @pid: the pid in question.
5437 * @param: structure containing the new RT priority.
5438 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005439SYSCALL_DEFINE2(sched_setparam, pid_t, pid, struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440{
5441 return do_sched_setscheduler(pid, -1, param);
5442}
5443
5444/**
5445 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
5446 * @pid: the pid in question.
5447 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005448SYSCALL_DEFINE1(sched_getscheduler, pid_t, pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005450 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005451 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005452
5453 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005454 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005455
5456 retval = -ESRCH;
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00005457 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005458 p = find_process_by_pid(pid);
5459 if (p) {
5460 retval = security_task_getscheduler(p);
5461 if (!retval)
Lennart Poetteringca94c442009-06-15 17:17:47 +02005462 retval = p->policy
5463 | (p->sched_reset_on_fork ? SCHED_RESET_ON_FORK : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464 }
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00005465 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005466 return retval;
5467}
5468
5469/**
Lennart Poetteringca94c442009-06-15 17:17:47 +02005470 * sys_sched_getparam - get the RT priority of a thread
Linus Torvalds1da177e2005-04-16 15:20:36 -07005471 * @pid: the pid in question.
5472 * @param: structure containing the RT priority.
5473 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005474SYSCALL_DEFINE2(sched_getparam, pid_t, pid, struct sched_param __user *, param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475{
5476 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005477 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005478 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005479
5480 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005481 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005482
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00005483 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005484 p = find_process_by_pid(pid);
5485 retval = -ESRCH;
5486 if (!p)
5487 goto out_unlock;
5488
5489 retval = security_task_getscheduler(p);
5490 if (retval)
5491 goto out_unlock;
5492
5493 lp.sched_priority = p->rt_priority;
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00005494 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005495
5496 /*
5497 * This one might sleep, we cannot do it with a spinlock held ...
5498 */
5499 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
5500
Linus Torvalds1da177e2005-04-16 15:20:36 -07005501 return retval;
5502
5503out_unlock:
Thomas Gleixner5fe85be2009-12-09 10:14:58 +00005504 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005505 return retval;
5506}
5507
Rusty Russell96f874e2008-11-25 02:35:14 +10305508long sched_setaffinity(pid_t pid, const struct cpumask *in_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005509{
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305510 cpumask_var_t cpus_allowed, new_mask;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005511 struct task_struct *p;
5512 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005514 get_online_cpus();
Thomas Gleixner23f5d142009-12-09 10:15:01 +00005515 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005516
5517 p = find_process_by_pid(pid);
5518 if (!p) {
Thomas Gleixner23f5d142009-12-09 10:15:01 +00005519 rcu_read_unlock();
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005520 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005521 return -ESRCH;
5522 }
5523
Thomas Gleixner23f5d142009-12-09 10:15:01 +00005524 /* Prevent p going away */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525 get_task_struct(p);
Thomas Gleixner23f5d142009-12-09 10:15:01 +00005526 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005527
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305528 if (!alloc_cpumask_var(&cpus_allowed, GFP_KERNEL)) {
5529 retval = -ENOMEM;
5530 goto out_put_task;
5531 }
5532 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL)) {
5533 retval = -ENOMEM;
5534 goto out_free_cpus_allowed;
5535 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005536 retval = -EPERM;
Serge E. Hallynb0e77592011-03-23 16:43:24 -07005537 if (!check_same_owner(p) && !task_ns_capable(p, CAP_SYS_NICE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005538 goto out_unlock;
5539
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09005540 retval = security_task_setscheduler(p);
David Quigleye7834f82006-06-23 02:03:59 -07005541 if (retval)
5542 goto out_unlock;
5543
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305544 cpuset_cpus_allowed(p, cpus_allowed);
5545 cpumask_and(new_mask, in_mask, cpus_allowed);
Peter Zijlstra49246272010-10-17 21:46:10 +02005546again:
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305547 retval = set_cpus_allowed_ptr(p, new_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005548
Paul Menage8707d8b2007-10-18 23:40:22 -07005549 if (!retval) {
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305550 cpuset_cpus_allowed(p, cpus_allowed);
5551 if (!cpumask_subset(new_mask, cpus_allowed)) {
Paul Menage8707d8b2007-10-18 23:40:22 -07005552 /*
5553 * We must have raced with a concurrent cpuset
5554 * update. Just reset the cpus_allowed to the
5555 * cpuset's cpus_allowed
5556 */
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305557 cpumask_copy(new_mask, cpus_allowed);
Paul Menage8707d8b2007-10-18 23:40:22 -07005558 goto again;
5559 }
5560 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005561out_unlock:
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305562 free_cpumask_var(new_mask);
5563out_free_cpus_allowed:
5564 free_cpumask_var(cpus_allowed);
5565out_put_task:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005566 put_task_struct(p);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005567 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005568 return retval;
5569}
5570
5571static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
Rusty Russell96f874e2008-11-25 02:35:14 +10305572 struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005573{
Rusty Russell96f874e2008-11-25 02:35:14 +10305574 if (len < cpumask_size())
5575 cpumask_clear(new_mask);
5576 else if (len > cpumask_size())
5577 len = cpumask_size();
5578
Linus Torvalds1da177e2005-04-16 15:20:36 -07005579 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
5580}
5581
5582/**
5583 * sys_sched_setaffinity - set the cpu affinity of a process
5584 * @pid: pid of the process
5585 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5586 * @user_mask_ptr: user-space pointer to the new cpu mask
5587 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005588SYSCALL_DEFINE3(sched_setaffinity, pid_t, pid, unsigned int, len,
5589 unsigned long __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005590{
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305591 cpumask_var_t new_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005592 int retval;
5593
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305594 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
5595 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005596
Rusty Russell5a16f3d2008-11-25 02:35:11 +10305597 retval = get_user_cpu_mask(user_mask_ptr, len, new_mask);
5598 if (retval == 0)
5599 retval = sched_setaffinity(pid, new_mask);
5600 free_cpumask_var(new_mask);
5601 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005602}
5603
Rusty Russell96f874e2008-11-25 02:35:14 +10305604long sched_getaffinity(pid_t pid, struct cpumask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005605{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005606 struct task_struct *p;
Thomas Gleixner31605682009-12-08 20:24:16 +00005607 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005608 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005609
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005610 get_online_cpus();
Thomas Gleixner23f5d142009-12-09 10:15:01 +00005611 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005612
5613 retval = -ESRCH;
5614 p = find_process_by_pid(pid);
5615 if (!p)
5616 goto out_unlock;
5617
David Quigleye7834f82006-06-23 02:03:59 -07005618 retval = security_task_getscheduler(p);
5619 if (retval)
5620 goto out_unlock;
5621
Peter Zijlstra013fdb82011-04-05 17:23:45 +02005622 raw_spin_lock_irqsave(&p->pi_lock, flags);
Rusty Russell96f874e2008-11-25 02:35:14 +10305623 cpumask_and(mask, &p->cpus_allowed, cpu_online_mask);
Peter Zijlstra013fdb82011-04-05 17:23:45 +02005624 raw_spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005625
5626out_unlock:
Thomas Gleixner23f5d142009-12-09 10:15:01 +00005627 rcu_read_unlock();
Gautham R Shenoy95402b32008-01-25 21:08:02 +01005628 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005629
Ulrich Drepper9531b622007-08-09 11:16:46 +02005630 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005631}
5632
5633/**
5634 * sys_sched_getaffinity - get the cpu affinity of a process
5635 * @pid: pid of the process
5636 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
5637 * @user_mask_ptr: user-space pointer to hold the current cpu mask
5638 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005639SYSCALL_DEFINE3(sched_getaffinity, pid_t, pid, unsigned int, len,
5640 unsigned long __user *, user_mask_ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005641{
5642 int ret;
Rusty Russellf17c8602008-11-25 02:35:11 +10305643 cpumask_var_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005644
Anton Blanchard84fba5e2010-04-06 17:02:19 +10005645 if ((len * BITS_PER_BYTE) < nr_cpu_ids)
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09005646 return -EINVAL;
5647 if (len & (sizeof(unsigned long)-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005648 return -EINVAL;
5649
Rusty Russellf17c8602008-11-25 02:35:11 +10305650 if (!alloc_cpumask_var(&mask, GFP_KERNEL))
5651 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005652
Rusty Russellf17c8602008-11-25 02:35:11 +10305653 ret = sched_getaffinity(pid, mask);
5654 if (ret == 0) {
KOSAKI Motohiro8bc037f2010-03-17 09:36:58 +09005655 size_t retlen = min_t(size_t, len, cpumask_size());
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09005656
5657 if (copy_to_user(user_mask_ptr, mask, retlen))
Rusty Russellf17c8602008-11-25 02:35:11 +10305658 ret = -EFAULT;
5659 else
KOSAKI Motohirocd3d8032010-03-12 16:15:36 +09005660 ret = retlen;
Rusty Russellf17c8602008-11-25 02:35:11 +10305661 }
5662 free_cpumask_var(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005663
Rusty Russellf17c8602008-11-25 02:35:11 +10305664 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005665}
5666
5667/**
5668 * sys_sched_yield - yield the current processor to other threads.
5669 *
Ingo Molnardd41f592007-07-09 18:51:59 +02005670 * This function yields the current CPU to other tasks. If there are no
5671 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005672 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005673SYSCALL_DEFINE0(sched_yield)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005675 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676
Ingo Molnar2d723762007-10-15 17:00:12 +02005677 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02005678 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005679
5680 /*
5681 * Since we are going to call schedule() anyway, there's
5682 * no need to preempt or enable interrupts:
5683 */
5684 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07005685 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Thomas Gleixner9828ea92009-12-03 20:55:53 +01005686 do_raw_spin_unlock(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687 preempt_enable_no_resched();
5688
5689 schedule();
5690
5691 return 0;
5692}
5693
Peter Zijlstrad86ee482009-07-10 14:57:57 +02005694static inline int should_resched(void)
5695{
5696 return need_resched() && !(preempt_count() & PREEMPT_ACTIVE);
5697}
5698
Andrew Mortone7b38402006-06-30 01:56:00 -07005699static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700{
Frederic Weisbeckere7aaaa62009-07-16 15:44:29 +02005701 add_preempt_count(PREEMPT_ACTIVE);
5702 schedule();
5703 sub_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005704}
5705
Herbert Xu02b67cc32008-01-25 21:08:28 +01005706int __sched _cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005707{
Peter Zijlstrad86ee482009-07-10 14:57:57 +02005708 if (should_resched()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005709 __cond_resched();
5710 return 1;
5711 }
5712 return 0;
5713}
Herbert Xu02b67cc32008-01-25 21:08:28 +01005714EXPORT_SYMBOL(_cond_resched);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005715
5716/*
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02005717 * __cond_resched_lock() - if a reschedule is pending, drop the given lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005718 * call schedule, and on return reacquire the lock.
5719 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005720 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
Linus Torvalds1da177e2005-04-16 15:20:36 -07005721 * operations here to prevent schedule() from being called twice (once via
5722 * spin_unlock(), once by hand).
5723 */
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02005724int __cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005725{
Peter Zijlstrad86ee482009-07-10 14:57:57 +02005726 int resched = should_resched();
Jan Kara6df3cec2005-06-13 15:52:32 -07005727 int ret = 0;
5728
Peter Zijlstraf607c662009-07-20 19:16:29 +02005729 lockdep_assert_held(lock);
5730
Nick Piggin95c354f2008-01-30 13:31:20 +01005731 if (spin_needbreak(lock) || resched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005732 spin_unlock(lock);
Peter Zijlstrad86ee482009-07-10 14:57:57 +02005733 if (resched)
Nick Piggin95c354f2008-01-30 13:31:20 +01005734 __cond_resched();
5735 else
5736 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07005737 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005738 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005739 }
Jan Kara6df3cec2005-06-13 15:52:32 -07005740 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005741}
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02005742EXPORT_SYMBOL(__cond_resched_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005743
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02005744int __sched __cond_resched_softirq(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005745{
5746 BUG_ON(!in_softirq());
5747
Peter Zijlstrad86ee482009-07-10 14:57:57 +02005748 if (should_resched()) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07005749 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005750 __cond_resched();
5751 local_bh_disable();
5752 return 1;
5753 }
5754 return 0;
5755}
Frederic Weisbecker613afbf2009-07-16 15:44:29 +02005756EXPORT_SYMBOL(__cond_resched_softirq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005757
Linus Torvalds1da177e2005-04-16 15:20:36 -07005758/**
5759 * yield - yield the current processor to other threads.
5760 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08005761 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07005762 * thread runnable and calls sys_sched_yield().
5763 */
5764void __sched yield(void)
5765{
5766 set_current_state(TASK_RUNNING);
5767 sys_sched_yield();
5768}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005769EXPORT_SYMBOL(yield);
5770
Mike Galbraithd95f4122011-02-01 09:50:51 -05005771/**
5772 * yield_to - yield the current processor to another thread in
5773 * your thread group, or accelerate that thread toward the
5774 * processor it's on.
Randy Dunlap16addf92011-03-18 09:34:53 -07005775 * @p: target task
5776 * @preempt: whether task preemption is allowed or not
Mike Galbraithd95f4122011-02-01 09:50:51 -05005777 *
5778 * It's the caller's job to ensure that the target task struct
5779 * can't go away on us before we can do any checks.
5780 *
5781 * Returns true if we indeed boosted the target task.
5782 */
5783bool __sched yield_to(struct task_struct *p, bool preempt)
5784{
5785 struct task_struct *curr = current;
5786 struct rq *rq, *p_rq;
5787 unsigned long flags;
5788 bool yielded = 0;
5789
5790 local_irq_save(flags);
5791 rq = this_rq();
5792
5793again:
5794 p_rq = task_rq(p);
5795 double_rq_lock(rq, p_rq);
5796 while (task_rq(p) != p_rq) {
5797 double_rq_unlock(rq, p_rq);
5798 goto again;
5799 }
5800
5801 if (!curr->sched_class->yield_to_task)
5802 goto out;
5803
5804 if (curr->sched_class != p->sched_class)
5805 goto out;
5806
5807 if (task_running(p_rq, p) || p->state)
5808 goto out;
5809
5810 yielded = curr->sched_class->yield_to_task(rq, p, preempt);
Venkatesh Pallipadi6d1cafd2011-03-01 16:28:21 -08005811 if (yielded) {
Mike Galbraithd95f4122011-02-01 09:50:51 -05005812 schedstat_inc(rq, yld_count);
Venkatesh Pallipadi6d1cafd2011-03-01 16:28:21 -08005813 /*
5814 * Make p's CPU reschedule; pick_next_entity takes care of
5815 * fairness.
5816 */
5817 if (preempt && rq != p_rq)
5818 resched_task(p_rq->curr);
5819 }
Mike Galbraithd95f4122011-02-01 09:50:51 -05005820
5821out:
5822 double_rq_unlock(rq, p_rq);
5823 local_irq_restore(flags);
5824
5825 if (yielded)
5826 schedule();
5827
5828 return yielded;
5829}
5830EXPORT_SYMBOL_GPL(yield_to);
5831
Linus Torvalds1da177e2005-04-16 15:20:36 -07005832/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01005833 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
Linus Torvalds1da177e2005-04-16 15:20:36 -07005834 * that process accounting knows that this is a task in IO wait state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005835 */
5836void __sched io_schedule(void)
5837{
Hitoshi Mitake54d35f22009-06-29 14:44:57 +09005838 struct rq *rq = raw_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005839
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005840 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005841 atomic_inc(&rq->nr_iowait);
Jens Axboe73c10102011-03-08 13:19:51 +01005842 blk_flush_plug(current);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07005843 current->in_iowait = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005844 schedule();
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07005845 current->in_iowait = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005846 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005847 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005849EXPORT_SYMBOL(io_schedule);
5850
5851long __sched io_schedule_timeout(long timeout)
5852{
Hitoshi Mitake54d35f22009-06-29 14:44:57 +09005853 struct rq *rq = raw_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005854 long ret;
5855
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005856 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005857 atomic_inc(&rq->nr_iowait);
Jens Axboe73c10102011-03-08 13:19:51 +01005858 blk_flush_plug(current);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07005859 current->in_iowait = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860 ret = schedule_timeout(timeout);
Arjan van de Ven8f0dfc32009-07-20 11:26:58 -07005861 current->in_iowait = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005862 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07005863 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005864 return ret;
5865}
5866
5867/**
5868 * sys_sched_get_priority_max - return maximum RT priority.
5869 * @policy: scheduling class.
5870 *
5871 * this syscall returns the maximum rt_priority that can be used
5872 * by a given scheduling class.
5873 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005874SYSCALL_DEFINE1(sched_get_priority_max, int, policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875{
5876 int ret = -EINVAL;
5877
5878 switch (policy) {
5879 case SCHED_FIFO:
5880 case SCHED_RR:
5881 ret = MAX_USER_RT_PRIO-1;
5882 break;
5883 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005884 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005885 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005886 ret = 0;
5887 break;
5888 }
5889 return ret;
5890}
5891
5892/**
5893 * sys_sched_get_priority_min - return minimum RT priority.
5894 * @policy: scheduling class.
5895 *
5896 * this syscall returns the minimum rt_priority that can be used
5897 * by a given scheduling class.
5898 */
Heiko Carstens5add95d2009-01-14 14:14:08 +01005899SYSCALL_DEFINE1(sched_get_priority_min, int, policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005900{
5901 int ret = -EINVAL;
5902
5903 switch (policy) {
5904 case SCHED_FIFO:
5905 case SCHED_RR:
5906 ret = 1;
5907 break;
5908 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08005909 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02005910 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005911 ret = 0;
5912 }
5913 return ret;
5914}
5915
5916/**
5917 * sys_sched_rr_get_interval - return the default timeslice of a process.
5918 * @pid: pid of the process.
5919 * @interval: userspace pointer to the timeslice value.
5920 *
5921 * this syscall writes the default timeslice value of a given process
5922 * into the user-space timespec buffer. A value of '0' means infinity.
5923 */
Heiko Carstens17da2bd2009-01-14 14:14:10 +01005924SYSCALL_DEFINE2(sched_rr_get_interval, pid_t, pid,
Heiko Carstens754fe8d2009-01-14 14:14:09 +01005925 struct timespec __user *, interval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005926{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005927 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005928 unsigned int time_slice;
Thomas Gleixnerdba091b2009-12-09 09:32:03 +01005929 unsigned long flags;
5930 struct rq *rq;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005931 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005932 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005933
5934 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02005935 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005936
5937 retval = -ESRCH;
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00005938 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005939 p = find_process_by_pid(pid);
5940 if (!p)
5941 goto out_unlock;
5942
5943 retval = security_task_getscheduler(p);
5944 if (retval)
5945 goto out_unlock;
5946
Thomas Gleixnerdba091b2009-12-09 09:32:03 +01005947 rq = task_rq_lock(p, &flags);
5948 time_slice = p->sched_class->get_rr_interval(rq, p);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02005949 task_rq_unlock(rq, p, &flags);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005950
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00005951 rcu_read_unlock();
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02005952 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005953 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005954 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005955
Linus Torvalds1da177e2005-04-16 15:20:36 -07005956out_unlock:
Thomas Gleixner1a551ae2009-12-09 10:15:11 +00005957 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005958 return retval;
5959}
5960
Steven Rostedt7c731e02008-05-12 21:20:41 +02005961static const char stat_nam[] = TASK_STATE_TO_CHAR_STR;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005962
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01005963void sched_show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005964{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07005966 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967
Linus Torvalds1da177e2005-04-16 15:20:36 -07005968 state = p->state ? __ffs(p->state) + 1 : 0;
Erik Gilling28d06862010-11-19 18:08:51 -08005969 printk(KERN_INFO "%-15.15s %c", p->comm,
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005970 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02005971#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07005972 if (state == TASK_RUNNING)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005973 printk(KERN_CONT " running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005974 else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005975 printk(KERN_CONT " %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976#else
5977 if (state == TASK_RUNNING)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005978 printk(KERN_CONT " running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005979 else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005980 printk(KERN_CONT " %016lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981#endif
5982#ifdef CONFIG_DEBUG_STACK_USAGE
Eric Sandeen7c9f8862008-04-22 16:38:23 -05005983 free = stack_not_used(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005984#endif
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005985 printk(KERN_CONT "%5lu %5d %6d 0x%08lx\n", free,
David Rientjesaa47b7e2009-05-04 01:38:05 -07005986 task_pid_nr(p), task_pid_nr(p->real_parent),
5987 (unsigned long)task_thread_info(p)->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005988
Nick Piggin5fb5e6d2008-01-25 21:08:34 +01005989 show_stack(p, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005990}
5991
Ingo Molnare59e2ae2006-12-06 20:35:59 -08005992void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993{
Ingo Molnar36c8b582006-07-03 00:25:41 -07005994 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005995
Ingo Molnar4bd77322007-07-11 21:21:47 +02005996#if BITS_PER_LONG == 32
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01005997 printk(KERN_INFO
5998 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005999#else
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006000 printk(KERN_INFO
6001 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006002#endif
6003 read_lock(&tasklist_lock);
6004 do_each_thread(g, p) {
6005 /*
6006 * reset the NMI-timeout, listing all files on a slow
Lucas De Marchi25985ed2011-03-30 22:57:33 -03006007 * console might take a lot of time:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006008 */
6009 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07006010 if (!state_filter || (p->state & state_filter))
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01006011 sched_show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006012 } while_each_thread(g, p);
6013
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07006014 touch_all_softlockup_watchdogs();
6015
Ingo Molnardd41f592007-07-09 18:51:59 +02006016#ifdef CONFIG_SCHED_DEBUG
6017 sysrq_sched_debug_show();
6018#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006019 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08006020 /*
6021 * Only show locks if all tasks are dumped:
6022 */
Shmulik Ladkani93335a22009-11-25 15:23:41 +02006023 if (!state_filter)
Ingo Molnare59e2ae2006-12-06 20:35:59 -08006024 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006025}
6026
Ingo Molnar1df21052007-07-09 18:51:58 +02006027void __cpuinit init_idle_bootup_task(struct task_struct *idle)
6028{
Ingo Molnardd41f592007-07-09 18:51:59 +02006029 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02006030}
6031
Ingo Molnarf340c0d2005-06-28 16:40:42 +02006032/**
6033 * init_idle - set up an idle thread for a given CPU
6034 * @idle: task in question
6035 * @cpu: cpu the idle task belongs to
6036 *
6037 * NOTE: this function does not set the idle thread's NEED_RESCHED
6038 * flag, to make booting more robust.
6039 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07006040void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006041{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006042 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006043 unsigned long flags;
6044
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006045 raw_spin_lock_irqsave(&rq->lock, flags);
Ingo Molnar5cbd54e2008-11-12 20:05:50 +01006046
Ingo Molnardd41f592007-07-09 18:51:59 +02006047 __sched_fork(idle);
Peter Zijlstra06b83b52009-12-16 18:04:35 +01006048 idle->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02006049 idle->se.exec_start = sched_clock();
6050
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09006051 do_set_cpus_allowed(idle, cpumask_of(cpu));
Peter Zijlstra6506cf6c2010-09-16 17:50:31 +02006052 /*
6053 * We're having a chicken and egg problem, even though we are
6054 * holding rq->lock, the cpu isn't yet set to this cpu so the
6055 * lockdep check in task_group() will fail.
6056 *
6057 * Similar case to sched_fork(). / Alternatively we could
6058 * use task_rq_lock() here and obtain the other rq->lock.
6059 *
6060 * Silence PROVE_RCU
6061 */
6062 rcu_read_lock();
Ingo Molnardd41f592007-07-09 18:51:59 +02006063 __set_task_cpu(idle, cpu);
Peter Zijlstra6506cf6c2010-09-16 17:50:31 +02006064 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006065
Linus Torvalds1da177e2005-04-16 15:20:36 -07006066 rq->curr = rq->idle = idle;
Peter Zijlstra3ca7a442011-04-05 17:23:40 +02006067#if defined(CONFIG_SMP)
6068 idle->on_cpu = 1;
Nick Piggin4866cde2005-06-25 14:57:23 -07006069#endif
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006070 raw_spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006071
6072 /* Set the preempt count _outside_ the spinlocks! */
Al Viroa1261f52005-11-13 16:06:55 -08006073 task_thread_info(idle)->preempt_count = 0;
Jonathan Corbet625f2a32011-04-22 11:19:10 -06006074
Ingo Molnardd41f592007-07-09 18:51:59 +02006075 /*
6076 * The idle tasks have their own, simple scheduling class:
6077 */
6078 idle->sched_class = &idle_sched_class;
Steven Rostedt868baf02011-02-10 21:26:13 -05006079 ftrace_graph_init_idle_task(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006080}
6081
6082/*
6083 * In a system that switches off the HZ timer nohz_cpu_mask
6084 * indicates which cpus entered this state. This is used
6085 * in the rcu update to wait only for active cpus. For system
6086 * which do not switch off the HZ timer nohz_cpu_mask should
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10306087 * always be CPU_BITS_NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006088 */
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10306089cpumask_var_t nohz_cpu_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006090
Ingo Molnar19978ca2007-11-09 22:39:38 +01006091/*
6092 * Increase the granularity value when there are more CPUs,
6093 * because with more CPUs the 'effective latency' as visible
6094 * to users decreases. But the relationship is not linear,
6095 * so pick a second-best guess by going with the log2 of the
6096 * number of CPUs.
6097 *
6098 * This idea comes from the SD scheduler of Con Kolivas:
6099 */
Christian Ehrhardtacb4a842009-11-30 12:16:48 +01006100static int get_update_sysctl_factor(void)
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +01006101{
Mike Galbraith4ca3ef72009-12-10 09:25:53 +01006102 unsigned int cpus = min_t(int, num_online_cpus(), 8);
Christian Ehrhardt1983a922009-11-30 12:16:47 +01006103 unsigned int factor;
6104
6105 switch (sysctl_sched_tunable_scaling) {
6106 case SCHED_TUNABLESCALING_NONE:
6107 factor = 1;
6108 break;
6109 case SCHED_TUNABLESCALING_LINEAR:
6110 factor = cpus;
6111 break;
6112 case SCHED_TUNABLESCALING_LOG:
6113 default:
6114 factor = 1 + ilog2(cpus);
6115 break;
6116 }
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +01006117
Christian Ehrhardtacb4a842009-11-30 12:16:48 +01006118 return factor;
6119}
6120
6121static void update_sysctl(void)
6122{
6123 unsigned int factor = get_update_sysctl_factor();
6124
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +01006125#define SET_SYSCTL(name) \
6126 (sysctl_##name = (factor) * normalized_sysctl_##name)
6127 SET_SYSCTL(sched_min_granularity);
6128 SET_SYSCTL(sched_latency);
6129 SET_SYSCTL(sched_wakeup_granularity);
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +01006130#undef SET_SYSCTL
6131}
6132
Ingo Molnar19978ca2007-11-09 22:39:38 +01006133static inline void sched_init_granularity(void)
6134{
Christian Ehrhardt0bcdcf22009-11-30 12:16:46 +01006135 update_sysctl();
Ingo Molnar19978ca2007-11-09 22:39:38 +01006136}
6137
Linus Torvalds1da177e2005-04-16 15:20:36 -07006138#ifdef CONFIG_SMP
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09006139void do_set_cpus_allowed(struct task_struct *p, const struct cpumask *new_mask)
6140{
6141 if (p->sched_class && p->sched_class->set_cpus_allowed)
6142 p->sched_class->set_cpus_allowed(p, new_mask);
6143 else {
6144 cpumask_copy(&p->cpus_allowed, new_mask);
6145 p->rt.nr_cpus_allowed = cpumask_weight(new_mask);
6146 }
6147}
6148
Linus Torvalds1da177e2005-04-16 15:20:36 -07006149/*
6150 * This is how migration works:
6151 *
Tejun Heo969c7922010-05-06 18:49:21 +02006152 * 1) we invoke migration_cpu_stop() on the target CPU using
6153 * stop_one_cpu().
6154 * 2) stopper starts to run (implicitly forcing the migrated thread
6155 * off the CPU)
6156 * 3) it checks whether the migrated task is still in the wrong runqueue.
6157 * 4) if it's in the wrong runqueue then the migration thread removes
Linus Torvalds1da177e2005-04-16 15:20:36 -07006158 * it and puts it into the right queue.
Tejun Heo969c7922010-05-06 18:49:21 +02006159 * 5) stopper completes and stop_one_cpu() returns and the migration
6160 * is done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006161 */
6162
6163/*
6164 * Change a given task's CPU affinity. Migrate the thread to a
6165 * proper CPU and schedule it away if the CPU it's executing on
6166 * is removed from the allowed bitmask.
6167 *
6168 * NOTE: the caller must have a valid reference to the task, the
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006169 * task must not exit() & deallocate itself prematurely. The
Linus Torvalds1da177e2005-04-16 15:20:36 -07006170 * call is not atomic; no spinlocks may be held.
6171 */
Rusty Russell96f874e2008-11-25 02:35:14 +10306172int set_cpus_allowed_ptr(struct task_struct *p, const struct cpumask *new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006173{
6174 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006175 struct rq *rq;
Tejun Heo969c7922010-05-06 18:49:21 +02006176 unsigned int dest_cpu;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006177 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006178
6179 rq = task_rq_lock(p, &flags);
Peter Zijlstrae2912002009-12-16 18:04:36 +01006180
Yong Zhangdb44fc02011-05-09 22:07:05 +08006181 if (cpumask_equal(&p->cpus_allowed, new_mask))
6182 goto out;
6183
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01006184 if (!cpumask_intersects(new_mask, cpu_active_mask)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006185 ret = -EINVAL;
6186 goto out;
6187 }
6188
Yong Zhangdb44fc02011-05-09 22:07:05 +08006189 if (unlikely((p->flags & PF_THREAD_BOUND) && p != current)) {
David Rientjes9985b0b2008-06-05 12:57:11 -07006190 ret = -EINVAL;
6191 goto out;
6192 }
6193
KOSAKI Motohiro1e1b6c52011-05-19 15:08:58 +09006194 do_set_cpus_allowed(p, new_mask);
Gregory Haskins73fe6aa2008-01-25 21:08:07 +01006195
Linus Torvalds1da177e2005-04-16 15:20:36 -07006196 /* Can the task run on the task's current CPU? If so, we're done */
Rusty Russell96f874e2008-11-25 02:35:14 +10306197 if (cpumask_test_cpu(task_cpu(p), new_mask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006198 goto out;
6199
Tejun Heo969c7922010-05-06 18:49:21 +02006200 dest_cpu = cpumask_any_and(cpu_active_mask, new_mask);
Peter Zijlstrabd8e7dd2011-04-05 17:23:59 +02006201 if (p->on_rq) {
Tejun Heo969c7922010-05-06 18:49:21 +02006202 struct migration_arg arg = { p, dest_cpu };
Linus Torvalds1da177e2005-04-16 15:20:36 -07006203 /* Need help from migration thread: drop lock and wait. */
Peter Zijlstra0122ec52011-04-05 17:23:51 +02006204 task_rq_unlock(rq, p, &flags);
Tejun Heo969c7922010-05-06 18:49:21 +02006205 stop_one_cpu(cpu_of(rq), migration_cpu_stop, &arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006206 tlb_migrate_finish(p->mm);
6207 return 0;
6208 }
6209out:
Peter Zijlstra0122ec52011-04-05 17:23:51 +02006210 task_rq_unlock(rq, p, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006211
Linus Torvalds1da177e2005-04-16 15:20:36 -07006212 return ret;
6213}
Mike Traviscd8ba7c2008-03-26 14:23:49 -07006214EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006215
6216/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006217 * Move (not current) task off this cpu, onto dest cpu. We're doing
Linus Torvalds1da177e2005-04-16 15:20:36 -07006218 * this because either it can't run here any more (set_cpus_allowed()
6219 * away from this CPU, or CPU going down), or because we're
6220 * attempting to rebalance this task on exec (sched_exec).
6221 *
6222 * So we race with normal scheduler movements, but that's OK, as long
6223 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07006224 *
6225 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006226 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07006227static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006228{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006229 struct rq *rq_dest, *rq_src;
Peter Zijlstrae2912002009-12-16 18:04:36 +01006230 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006231
Max Krasnyanskye761b772008-07-15 04:43:49 -07006232 if (unlikely(!cpu_active(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07006233 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006234
6235 rq_src = cpu_rq(src_cpu);
6236 rq_dest = cpu_rq(dest_cpu);
6237
Peter Zijlstra0122ec52011-04-05 17:23:51 +02006238 raw_spin_lock(&p->pi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006239 double_rq_lock(rq_src, rq_dest);
6240 /* Already moved. */
6241 if (task_cpu(p) != src_cpu)
Linus Torvaldsb1e38732008-07-10 11:25:03 -07006242 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006243 /* Affinity changed (again). */
Rusty Russell96f874e2008-11-25 02:35:14 +10306244 if (!cpumask_test_cpu(dest_cpu, &p->cpus_allowed))
Linus Torvaldsb1e38732008-07-10 11:25:03 -07006245 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006246
Peter Zijlstrae2912002009-12-16 18:04:36 +01006247 /*
6248 * If we're not on a rq, the next wake-up will ensure we're
6249 * placed properly.
6250 */
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02006251 if (p->on_rq) {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02006252 deactivate_task(rq_src, p, 0);
Peter Zijlstrae2912002009-12-16 18:04:36 +01006253 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02006254 activate_task(rq_dest, p, 0);
Peter Zijlstra15afe092008-09-20 23:38:02 +02006255 check_preempt_curr(rq_dest, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006256 }
Linus Torvaldsb1e38732008-07-10 11:25:03 -07006257done:
Kirill Korotaevefc30812006-06-27 02:54:32 -07006258 ret = 1;
Linus Torvaldsb1e38732008-07-10 11:25:03 -07006259fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006260 double_rq_unlock(rq_src, rq_dest);
Peter Zijlstra0122ec52011-04-05 17:23:51 +02006261 raw_spin_unlock(&p->pi_lock);
Kirill Korotaevefc30812006-06-27 02:54:32 -07006262 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006263}
6264
6265/*
Tejun Heo969c7922010-05-06 18:49:21 +02006266 * migration_cpu_stop - this will be executed by a highprio stopper thread
6267 * and performs thread migration by bumping thread off CPU then
6268 * 'pushing' onto another runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006269 */
Tejun Heo969c7922010-05-06 18:49:21 +02006270static int migration_cpu_stop(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006271{
Tejun Heo969c7922010-05-06 18:49:21 +02006272 struct migration_arg *arg = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006273
Tejun Heo969c7922010-05-06 18:49:21 +02006274 /*
6275 * The original target cpu might have gone down and we might
6276 * be on another cpu but it doesn't matter.
6277 */
6278 local_irq_disable();
6279 __migrate_task(arg->task, raw_smp_processor_id(), arg->dest_cpu);
6280 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006281 return 0;
6282}
6283
6284#ifdef CONFIG_HOTPLUG_CPU
Linus Torvalds1da177e2005-04-16 15:20:36 -07006285
Ingo Molnar48f24c42006-07-03 00:25:40 -07006286/*
6287 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07006288 * offline.
6289 */
6290void idle_task_exit(void)
6291{
6292 struct mm_struct *mm = current->active_mm;
6293
6294 BUG_ON(cpu_online(smp_processor_id()));
6295
6296 if (mm != &init_mm)
6297 switch_mm(mm, &init_mm, current);
6298 mmdrop(mm);
6299}
6300
Peter Zijlstra48c5cca2010-11-13 19:32:29 +01006301/*
6302 * While a dead CPU has no uninterruptible tasks queued at this point,
6303 * it might still have a nonzero ->nr_uninterruptible counter, because
6304 * for performance reasons the counter is not stricly tracking tasks to
6305 * their home CPUs. So we just add the counter to another CPU's counter,
6306 * to keep the global sum constant after CPU-down:
6307 */
6308static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006309{
Peter Zijlstra48c5cca2010-11-13 19:32:29 +01006310 struct rq *rq_dest = cpu_rq(cpumask_any(cpu_active_mask));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006311
Peter Zijlstra48c5cca2010-11-13 19:32:29 +01006312 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
6313 rq_src->nr_uninterruptible = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006314}
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02006315
6316/*
6317 * remove the tasks which were accounted by rq from calc_load_tasks.
6318 */
6319static void calc_global_load_remove(struct rq *rq)
6320{
6321 atomic_long_sub(rq->calc_load_active, &calc_load_tasks);
Thomas Gleixnera468d382009-07-17 14:15:46 +02006322 rq->calc_load_active = 0;
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02006323}
Peter Zijlstra48c5cca2010-11-13 19:32:29 +01006324
6325/*
6326 * Migrate all tasks from the rq, sleeping tasks will be migrated by
6327 * try_to_wake_up()->select_task_rq().
6328 *
6329 * Called with rq->lock held even though we'er in stop_machine() and
6330 * there's no concurrency possible, we hold the required locks anyway
6331 * because of lock validation efforts.
6332 */
6333static void migrate_tasks(unsigned int dead_cpu)
6334{
6335 struct rq *rq = cpu_rq(dead_cpu);
6336 struct task_struct *next, *stop = rq->stop;
6337 int dest_cpu;
6338
6339 /*
6340 * Fudge the rq selection such that the below task selection loop
6341 * doesn't get stuck on the currently eligible stop task.
6342 *
6343 * We're currently inside stop_machine() and the rq is either stuck
6344 * in the stop_machine_cpu_stop() loop, or we're executing this code,
6345 * either way we should never end up calling schedule() until we're
6346 * done here.
6347 */
6348 rq->stop = NULL;
6349
6350 for ( ; ; ) {
6351 /*
6352 * There's this thread running, bail when that's the only
6353 * remaining thread.
6354 */
6355 if (rq->nr_running == 1)
6356 break;
6357
6358 next = pick_next_task(rq);
6359 BUG_ON(!next);
6360 next->sched_class->put_prev_task(rq, next);
6361
6362 /* Find suitable destination for @next, with force if needed. */
6363 dest_cpu = select_fallback_rq(dead_cpu, next);
6364 raw_spin_unlock(&rq->lock);
6365
6366 __migrate_task(next, dead_cpu, dest_cpu);
6367
6368 raw_spin_lock(&rq->lock);
6369 }
6370
6371 rq->stop = stop;
6372}
6373
Linus Torvalds1da177e2005-04-16 15:20:36 -07006374#endif /* CONFIG_HOTPLUG_CPU */
6375
Nick Piggine692ab52007-07-26 13:40:43 +02006376#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
6377
6378static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006379 {
6380 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006381 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006382 },
Eric W. Biederman56992302009-11-05 15:38:40 -08006383 {}
Nick Piggine692ab52007-07-26 13:40:43 +02006384};
6385
6386static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02006387 {
6388 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006389 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02006390 .child = sd_ctl_dir,
6391 },
Eric W. Biederman56992302009-11-05 15:38:40 -08006392 {}
Nick Piggine692ab52007-07-26 13:40:43 +02006393};
6394
6395static struct ctl_table *sd_alloc_ctl_entry(int n)
6396{
6397 struct ctl_table *entry =
Milton Miller5cf9f062007-10-15 17:00:19 +02006398 kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL);
Nick Piggine692ab52007-07-26 13:40:43 +02006399
Nick Piggine692ab52007-07-26 13:40:43 +02006400 return entry;
6401}
6402
Milton Miller6382bc92007-10-15 17:00:19 +02006403static void sd_free_ctl_entry(struct ctl_table **tablep)
6404{
Milton Millercd7900762007-10-17 16:55:11 +02006405 struct ctl_table *entry;
Milton Miller6382bc92007-10-15 17:00:19 +02006406
Milton Millercd7900762007-10-17 16:55:11 +02006407 /*
6408 * In the intermediate directories, both the child directory and
6409 * procname are dynamically allocated and could fail but the mode
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01006410 * will always be set. In the lowest directory the names are
Milton Millercd7900762007-10-17 16:55:11 +02006411 * static strings and all have proc handlers.
6412 */
6413 for (entry = *tablep; entry->mode; entry++) {
Milton Miller6382bc92007-10-15 17:00:19 +02006414 if (entry->child)
6415 sd_free_ctl_entry(&entry->child);
Milton Millercd7900762007-10-17 16:55:11 +02006416 if (entry->proc_handler == NULL)
6417 kfree(entry->procname);
6418 }
Milton Miller6382bc92007-10-15 17:00:19 +02006419
6420 kfree(*tablep);
6421 *tablep = NULL;
6422}
6423
Nick Piggine692ab52007-07-26 13:40:43 +02006424static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02006425set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02006426 const char *procname, void *data, int maxlen,
6427 mode_t mode, proc_handler *proc_handler)
6428{
Nick Piggine692ab52007-07-26 13:40:43 +02006429 entry->procname = procname;
6430 entry->data = data;
6431 entry->maxlen = maxlen;
6432 entry->mode = mode;
6433 entry->proc_handler = proc_handler;
6434}
6435
6436static struct ctl_table *
6437sd_alloc_ctl_domain_table(struct sched_domain *sd)
6438{
Ingo Molnara5d8c342008-10-09 11:35:51 +02006439 struct ctl_table *table = sd_alloc_ctl_entry(13);
Nick Piggine692ab52007-07-26 13:40:43 +02006440
Milton Millerad1cdc12007-10-15 17:00:19 +02006441 if (table == NULL)
6442 return NULL;
6443
Alexey Dobriyane0361852007-08-09 11:16:46 +02006444 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006445 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006446 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02006447 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006448 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006449 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006450 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006451 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006452 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006453 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006454 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006455 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006456 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02006457 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006458 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02006459 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02006460 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02006461 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006462 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02006463 &sd->cache_nice_tries,
6464 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02006465 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02006466 sizeof(int), 0644, proc_dointvec_minmax);
Ingo Molnara5d8c342008-10-09 11:35:51 +02006467 set_table_entry(&table[11], "name", sd->name,
6468 CORENAME_MAX_SIZE, 0444, proc_dostring);
6469 /* &table[12] is terminator */
Nick Piggine692ab52007-07-26 13:40:43 +02006470
6471 return table;
6472}
6473
Ingo Molnar9a4e7152007-11-28 15:52:56 +01006474static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
Nick Piggine692ab52007-07-26 13:40:43 +02006475{
6476 struct ctl_table *entry, *table;
6477 struct sched_domain *sd;
6478 int domain_num = 0, i;
6479 char buf[32];
6480
6481 for_each_domain(cpu, sd)
6482 domain_num++;
6483 entry = table = sd_alloc_ctl_entry(domain_num + 1);
Milton Millerad1cdc12007-10-15 17:00:19 +02006484 if (table == NULL)
6485 return NULL;
Nick Piggine692ab52007-07-26 13:40:43 +02006486
6487 i = 0;
6488 for_each_domain(cpu, sd) {
6489 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006490 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006491 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006492 entry->child = sd_alloc_ctl_domain_table(sd);
6493 entry++;
6494 i++;
6495 }
6496 return table;
6497}
6498
6499static struct ctl_table_header *sd_sysctl_header;
Milton Miller6382bc92007-10-15 17:00:19 +02006500static void register_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006501{
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01006502 int i, cpu_num = num_possible_cpus();
Nick Piggine692ab52007-07-26 13:40:43 +02006503 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
6504 char buf[32];
6505
Milton Miller73785472007-10-24 18:23:48 +02006506 WARN_ON(sd_ctl_dir[0].child);
6507 sd_ctl_dir[0].child = entry;
6508
Milton Millerad1cdc12007-10-15 17:00:19 +02006509 if (entry == NULL)
6510 return;
6511
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01006512 for_each_possible_cpu(i) {
Nick Piggine692ab52007-07-26 13:40:43 +02006513 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02006514 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02006515 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02006516 entry->child = sd_alloc_ctl_cpu_table(i);
Milton Miller97b6ea72007-10-15 17:00:19 +02006517 entry++;
Nick Piggine692ab52007-07-26 13:40:43 +02006518 }
Milton Miller73785472007-10-24 18:23:48 +02006519
6520 WARN_ON(sd_sysctl_header);
Nick Piggine692ab52007-07-26 13:40:43 +02006521 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
6522}
Milton Miller6382bc92007-10-15 17:00:19 +02006523
Milton Miller73785472007-10-24 18:23:48 +02006524/* may be called multiple times per register */
Milton Miller6382bc92007-10-15 17:00:19 +02006525static void unregister_sched_domain_sysctl(void)
6526{
Milton Miller73785472007-10-24 18:23:48 +02006527 if (sd_sysctl_header)
6528 unregister_sysctl_table(sd_sysctl_header);
Milton Miller6382bc92007-10-15 17:00:19 +02006529 sd_sysctl_header = NULL;
Milton Miller73785472007-10-24 18:23:48 +02006530 if (sd_ctl_dir[0].child)
6531 sd_free_ctl_entry(&sd_ctl_dir[0].child);
Milton Miller6382bc92007-10-15 17:00:19 +02006532}
Nick Piggine692ab52007-07-26 13:40:43 +02006533#else
Milton Miller6382bc92007-10-15 17:00:19 +02006534static void register_sched_domain_sysctl(void)
6535{
6536}
6537static void unregister_sched_domain_sysctl(void)
Nick Piggine692ab52007-07-26 13:40:43 +02006538{
6539}
6540#endif
6541
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006542static void set_rq_online(struct rq *rq)
6543{
6544 if (!rq->online) {
6545 const struct sched_class *class;
6546
Rusty Russellc6c49272008-11-25 02:35:05 +10306547 cpumask_set_cpu(rq->cpu, rq->rd->online);
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006548 rq->online = 1;
6549
6550 for_each_class(class) {
6551 if (class->rq_online)
6552 class->rq_online(rq);
6553 }
6554 }
6555}
6556
6557static void set_rq_offline(struct rq *rq)
6558{
6559 if (rq->online) {
6560 const struct sched_class *class;
6561
6562 for_each_class(class) {
6563 if (class->rq_offline)
6564 class->rq_offline(rq);
6565 }
6566
Rusty Russellc6c49272008-11-25 02:35:05 +10306567 cpumask_clear_cpu(rq->cpu, rq->rd->online);
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006568 rq->online = 0;
6569 }
6570}
6571
Linus Torvalds1da177e2005-04-16 15:20:36 -07006572/*
6573 * migration_call - callback that gets triggered when a CPU is added.
6574 * Here we can start up the necessary migration thread for the new CPU.
6575 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006576static int __cpuinit
6577migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006578{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006579 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006580 unsigned long flags;
Tejun Heo969c7922010-05-06 18:49:21 +02006581 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006582
Peter Zijlstra48c5cca2010-11-13 19:32:29 +01006583 switch (action & ~CPU_TASKS_FROZEN) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006584
Linus Torvalds1da177e2005-04-16 15:20:36 -07006585 case CPU_UP_PREPARE:
Thomas Gleixnera468d382009-07-17 14:15:46 +02006586 rq->calc_load_update = calc_load_update;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006587 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006588
Linus Torvalds1da177e2005-04-16 15:20:36 -07006589 case CPU_ONLINE:
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006590 /* Update our root-domain */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006591 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006592 if (rq->rd) {
Rusty Russellc6c49272008-11-25 02:35:05 +10306593 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006594
6595 set_rq_online(rq);
Gregory Haskins1f94ef52008-03-10 16:52:41 -04006596 }
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006597 raw_spin_unlock_irqrestore(&rq->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006598 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006599
Linus Torvalds1da177e2005-04-16 15:20:36 -07006600#ifdef CONFIG_HOTPLUG_CPU
Gregory Haskins08f503b2008-03-10 17:59:11 -04006601 case CPU_DYING:
Peter Zijlstra317f3942011-04-05 17:23:58 +02006602 sched_ttwu_pending();
Gregory Haskins57d885f2008-01-25 21:08:18 +01006603 /* Update our root-domain */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006604 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006605 if (rq->rd) {
Rusty Russellc6c49272008-11-25 02:35:05 +10306606 BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span));
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006607 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006608 }
Peter Zijlstra48c5cca2010-11-13 19:32:29 +01006609 migrate_tasks(cpu);
6610 BUG_ON(rq->nr_running != 1); /* the migration thread */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006611 raw_spin_unlock_irqrestore(&rq->lock, flags);
Peter Zijlstra48c5cca2010-11-13 19:32:29 +01006612
6613 migrate_nr_uninterruptible(rq);
6614 calc_global_load_remove(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006615 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006616#endif
6617 }
Peter Zijlstra49c022e2011-04-05 10:14:25 +02006618
6619 update_max_interval();
6620
Linus Torvalds1da177e2005-04-16 15:20:36 -07006621 return NOTIFY_OK;
6622}
6623
Paul Mackerrasf38b0822009-06-02 21:05:16 +10006624/*
6625 * Register at high priority so that task migration (migrate_all_tasks)
6626 * happens before everything else. This has to be lower priority than
Ingo Molnarcdd6c482009-09-21 12:02:48 +02006627 * the notifier in the perf_event subsystem, though.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006628 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07006629static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006630 .notifier_call = migration_call,
Tejun Heo50a323b2010-06-08 21:40:36 +02006631 .priority = CPU_PRI_MIGRATION,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006632};
6633
Tejun Heo3a101d02010-06-08 21:40:36 +02006634static int __cpuinit sched_cpu_active(struct notifier_block *nfb,
6635 unsigned long action, void *hcpu)
6636{
6637 switch (action & ~CPU_TASKS_FROZEN) {
6638 case CPU_ONLINE:
6639 case CPU_DOWN_FAILED:
6640 set_cpu_active((long)hcpu, true);
6641 return NOTIFY_OK;
6642 default:
6643 return NOTIFY_DONE;
6644 }
6645}
6646
6647static int __cpuinit sched_cpu_inactive(struct notifier_block *nfb,
6648 unsigned long action, void *hcpu)
6649{
6650 switch (action & ~CPU_TASKS_FROZEN) {
6651 case CPU_DOWN_PREPARE:
6652 set_cpu_active((long)hcpu, false);
6653 return NOTIFY_OK;
6654 default:
6655 return NOTIFY_DONE;
6656 }
6657}
6658
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07006659static int __init migration_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006660{
6661 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07006662 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006663
Tejun Heo3a101d02010-06-08 21:40:36 +02006664 /* Initialize migration for the boot CPU */
Akinobu Mita07dccf32006-09-29 02:00:22 -07006665 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
6666 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006667 migration_call(&migration_notifier, CPU_ONLINE, cpu);
6668 register_cpu_notifier(&migration_notifier);
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07006669
Tejun Heo3a101d02010-06-08 21:40:36 +02006670 /* Register cpu active notifiers */
6671 cpu_notifier(sched_cpu_active, CPU_PRI_SCHED_ACTIVE);
6672 cpu_notifier(sched_cpu_inactive, CPU_PRI_SCHED_INACTIVE);
6673
Thomas Gleixnera004cd42009-07-21 09:54:05 +02006674 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006675}
Eduard - Gabriel Munteanu7babe8d2008-07-25 19:45:11 -07006676early_initcall(migration_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006677#endif
6678
6679#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07006680
Peter Zijlstra4cb98832011-04-07 14:09:58 +02006681static cpumask_var_t sched_domains_tmpmask; /* sched_domains_mutex */
6682
Ingo Molnar3e9830d2007-10-15 17:00:13 +02006683#ifdef CONFIG_SCHED_DEBUG
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006684
Mike Travisf6630112009-11-17 18:22:15 -06006685static __read_mostly int sched_domain_debug_enabled;
6686
6687static int __init sched_domain_debug_setup(char *str)
6688{
6689 sched_domain_debug_enabled = 1;
6690
6691 return 0;
6692}
6693early_param("sched_debug", sched_domain_debug_setup);
6694
Mike Travis7c16ec52008-04-04 18:11:11 -07006695static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level,
Rusty Russell96f874e2008-11-25 02:35:14 +10306696 struct cpumask *groupmask)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006697{
6698 struct sched_group *group = sd->groups;
Mike Travis434d53b2008-04-04 18:11:04 -07006699 char str[256];
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006700
Rusty Russell968ea6d2008-12-13 21:55:51 +10306701 cpulist_scnprintf(str, sizeof(str), sched_domain_span(sd));
Rusty Russell96f874e2008-11-25 02:35:14 +10306702 cpumask_clear(groupmask);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006703
6704 printk(KERN_DEBUG "%*s domain %d: ", level, "", level);
6705
6706 if (!(sd->flags & SD_LOAD_BALANCE)) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006707 printk("does not load-balance\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006708 if (sd->parent)
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006709 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
6710 " has parent");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006711 return -1;
6712 }
6713
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006714 printk(KERN_CONT "span %s level %s\n", str, sd->name);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006715
Rusty Russell758b2cd2008-11-25 02:35:04 +10306716 if (!cpumask_test_cpu(cpu, sched_domain_span(sd))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006717 printk(KERN_ERR "ERROR: domain->span does not contain "
6718 "CPU%d\n", cpu);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006719 }
Rusty Russell758b2cd2008-11-25 02:35:04 +10306720 if (!cpumask_test_cpu(cpu, sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006721 printk(KERN_ERR "ERROR: domain->groups does not contain"
6722 " CPU%d\n", cpu);
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006723 }
6724
6725 printk(KERN_DEBUG "%*s groups:", level + 1, "");
6726 do {
6727 if (!group) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006728 printk("\n");
6729 printk(KERN_ERR "ERROR: group is NULL\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006730 break;
6731 }
6732
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006733 if (!group->sgp->power) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006734 printk(KERN_CONT "\n");
6735 printk(KERN_ERR "ERROR: domain->cpu_power not "
6736 "set\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006737 break;
6738 }
6739
Rusty Russell758b2cd2008-11-25 02:35:04 +10306740 if (!cpumask_weight(sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006741 printk(KERN_CONT "\n");
6742 printk(KERN_ERR "ERROR: empty group\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006743 break;
6744 }
6745
Rusty Russell758b2cd2008-11-25 02:35:04 +10306746 if (cpumask_intersects(groupmask, sched_group_cpus(group))) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006747 printk(KERN_CONT "\n");
6748 printk(KERN_ERR "ERROR: repeated CPUs\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006749 break;
6750 }
6751
Rusty Russell758b2cd2008-11-25 02:35:04 +10306752 cpumask_or(groupmask, groupmask, sched_group_cpus(group));
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006753
Rusty Russell968ea6d2008-12-13 21:55:51 +10306754 cpulist_scnprintf(str, sizeof(str), sched_group_cpus(group));
Gautham R Shenoy381512c2009-04-14 09:09:36 +05306755
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006756 printk(KERN_CONT " %s", str);
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006757 if (group->sgp->power != SCHED_POWER_SCALE) {
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006758 printk(KERN_CONT " (cpu_power = %d)",
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006759 group->sgp->power);
Gautham R Shenoy381512c2009-04-14 09:09:36 +05306760 }
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006761
6762 group = group->next;
6763 } while (group != sd->groups);
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006764 printk(KERN_CONT "\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006765
Rusty Russell758b2cd2008-11-25 02:35:04 +10306766 if (!cpumask_equal(sched_domain_span(sd), groupmask))
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006767 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006768
Rusty Russell758b2cd2008-11-25 02:35:04 +10306769 if (sd->parent &&
6770 !cpumask_subset(groupmask, sched_domain_span(sd->parent)))
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01006771 printk(KERN_ERR "ERROR: parent span is not a superset "
6772 "of domain->span\n");
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006773 return 0;
6774}
6775
Linus Torvalds1da177e2005-04-16 15:20:36 -07006776static void sched_domain_debug(struct sched_domain *sd, int cpu)
6777{
6778 int level = 0;
6779
Mike Travisf6630112009-11-17 18:22:15 -06006780 if (!sched_domain_debug_enabled)
6781 return;
6782
Nick Piggin41c7ce92005-06-25 14:57:24 -07006783 if (!sd) {
6784 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
6785 return;
6786 }
6787
Linus Torvalds1da177e2005-04-16 15:20:36 -07006788 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
6789
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006790 for (;;) {
Peter Zijlstra4cb98832011-04-07 14:09:58 +02006791 if (sched_domain_debug_one(sd, cpu, level, sched_domains_tmpmask))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006792 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006793 level++;
6794 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006795 if (!sd)
Ingo Molnar4dcf6af2007-10-24 18:23:48 +02006796 break;
6797 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006798}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006799#else /* !CONFIG_SCHED_DEBUG */
Ingo Molnar48f24c42006-07-03 00:25:40 -07006800# define sched_domain_debug(sd, cpu) do { } while (0)
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02006801#endif /* CONFIG_SCHED_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006802
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006803static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006804{
Rusty Russell758b2cd2008-11-25 02:35:04 +10306805 if (cpumask_weight(sched_domain_span(sd)) == 1)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006806 return 1;
6807
6808 /* Following flags need at least 2 groups */
6809 if (sd->flags & (SD_LOAD_BALANCE |
6810 SD_BALANCE_NEWIDLE |
6811 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006812 SD_BALANCE_EXEC |
6813 SD_SHARE_CPUPOWER |
6814 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07006815 if (sd->groups != sd->groups->next)
6816 return 0;
6817 }
6818
6819 /* Following flags don't use groups */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02006820 if (sd->flags & (SD_WAKE_AFFINE))
Suresh Siddha245af2c2005-06-25 14:57:25 -07006821 return 0;
6822
6823 return 1;
6824}
6825
Ingo Molnar48f24c42006-07-03 00:25:40 -07006826static int
6827sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07006828{
6829 unsigned long cflags = sd->flags, pflags = parent->flags;
6830
6831 if (sd_degenerate(parent))
6832 return 1;
6833
Rusty Russell758b2cd2008-11-25 02:35:04 +10306834 if (!cpumask_equal(sched_domain_span(sd), sched_domain_span(parent)))
Suresh Siddha245af2c2005-06-25 14:57:25 -07006835 return 0;
6836
Suresh Siddha245af2c2005-06-25 14:57:25 -07006837 /* Flags needing groups don't count if only 1 group in parent */
6838 if (parent->groups == parent->groups->next) {
6839 pflags &= ~(SD_LOAD_BALANCE |
6840 SD_BALANCE_NEWIDLE |
6841 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006842 SD_BALANCE_EXEC |
6843 SD_SHARE_CPUPOWER |
6844 SD_SHARE_PKG_RESOURCES);
Ken Chen54364992008-12-07 18:47:37 -08006845 if (nr_node_ids == 1)
6846 pflags &= ~SD_SERIALIZE;
Suresh Siddha245af2c2005-06-25 14:57:25 -07006847 }
6848 if (~cflags & pflags)
6849 return 0;
6850
6851 return 1;
6852}
6853
Peter Zijlstradce840a2011-04-07 14:09:50 +02006854static void free_rootdomain(struct rcu_head *rcu)
Rusty Russellc6c49272008-11-25 02:35:05 +10306855{
Peter Zijlstradce840a2011-04-07 14:09:50 +02006856 struct root_domain *rd = container_of(rcu, struct root_domain, rcu);
Peter Zijlstra047106a2009-11-16 10:28:09 +01006857
Rusty Russell68e74562008-11-25 02:35:13 +10306858 cpupri_cleanup(&rd->cpupri);
Rusty Russellc6c49272008-11-25 02:35:05 +10306859 free_cpumask_var(rd->rto_mask);
6860 free_cpumask_var(rd->online);
6861 free_cpumask_var(rd->span);
6862 kfree(rd);
6863}
6864
Gregory Haskins57d885f2008-01-25 21:08:18 +01006865static void rq_attach_root(struct rq *rq, struct root_domain *rd)
6866{
Ingo Molnara0490fa2009-02-12 11:35:40 +01006867 struct root_domain *old_rd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006868 unsigned long flags;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006869
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006870 raw_spin_lock_irqsave(&rq->lock, flags);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006871
6872 if (rq->rd) {
Ingo Molnara0490fa2009-02-12 11:35:40 +01006873 old_rd = rq->rd;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006874
Rusty Russellc6c49272008-11-25 02:35:05 +10306875 if (cpumask_test_cpu(rq->cpu, old_rd->online))
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006876 set_rq_offline(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006877
Rusty Russellc6c49272008-11-25 02:35:05 +10306878 cpumask_clear_cpu(rq->cpu, old_rd->span);
Gregory Haskinsdc938522008-01-25 21:08:26 +01006879
Ingo Molnara0490fa2009-02-12 11:35:40 +01006880 /*
6881 * If we dont want to free the old_rt yet then
6882 * set old_rd to NULL to skip the freeing later
6883 * in this function:
6884 */
6885 if (!atomic_dec_and_test(&old_rd->refcount))
6886 old_rd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006887 }
6888
6889 atomic_inc(&rd->refcount);
6890 rq->rd = rd;
6891
Rusty Russellc6c49272008-11-25 02:35:05 +10306892 cpumask_set_cpu(rq->cpu, rd->span);
Gregory Haskins00aec932009-07-30 10:57:23 -04006893 if (cpumask_test_cpu(rq->cpu, cpu_active_mask))
Gregory Haskins1f11eb62008-06-04 15:04:05 -04006894 set_rq_online(rq);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006895
Thomas Gleixner05fa7852009-11-17 14:28:38 +01006896 raw_spin_unlock_irqrestore(&rq->lock, flags);
Ingo Molnara0490fa2009-02-12 11:35:40 +01006897
6898 if (old_rd)
Peter Zijlstradce840a2011-04-07 14:09:50 +02006899 call_rcu_sched(&old_rd->rcu, free_rootdomain);
Gregory Haskins57d885f2008-01-25 21:08:18 +01006900}
6901
Pekka Enberg68c38fc2010-07-15 23:18:22 +03006902static int init_rootdomain(struct root_domain *rd)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006903{
6904 memset(rd, 0, sizeof(*rd));
6905
Pekka Enberg68c38fc2010-07-15 23:18:22 +03006906 if (!alloc_cpumask_var(&rd->span, GFP_KERNEL))
Li Zefan0c910d22009-01-06 17:39:06 +08006907 goto out;
Pekka Enberg68c38fc2010-07-15 23:18:22 +03006908 if (!alloc_cpumask_var(&rd->online, GFP_KERNEL))
Rusty Russellc6c49272008-11-25 02:35:05 +10306909 goto free_span;
Pekka Enberg68c38fc2010-07-15 23:18:22 +03006910 if (!alloc_cpumask_var(&rd->rto_mask, GFP_KERNEL))
Rusty Russellc6c49272008-11-25 02:35:05 +10306911 goto free_online;
Gregory Haskins6e0534f2008-05-12 21:21:01 +02006912
Pekka Enberg68c38fc2010-07-15 23:18:22 +03006913 if (cpupri_init(&rd->cpupri) != 0)
Rusty Russell68e74562008-11-25 02:35:13 +10306914 goto free_rto_mask;
Rusty Russellc6c49272008-11-25 02:35:05 +10306915 return 0;
6916
Rusty Russell68e74562008-11-25 02:35:13 +10306917free_rto_mask:
6918 free_cpumask_var(rd->rto_mask);
Rusty Russellc6c49272008-11-25 02:35:05 +10306919free_online:
6920 free_cpumask_var(rd->online);
6921free_span:
6922 free_cpumask_var(rd->span);
Li Zefan0c910d22009-01-06 17:39:06 +08006923out:
Rusty Russellc6c49272008-11-25 02:35:05 +10306924 return -ENOMEM;
Gregory Haskins57d885f2008-01-25 21:08:18 +01006925}
6926
6927static void init_defrootdomain(void)
6928{
Pekka Enberg68c38fc2010-07-15 23:18:22 +03006929 init_rootdomain(&def_root_domain);
Rusty Russellc6c49272008-11-25 02:35:05 +10306930
Gregory Haskins57d885f2008-01-25 21:08:18 +01006931 atomic_set(&def_root_domain.refcount, 1);
6932}
6933
Gregory Haskinsdc938522008-01-25 21:08:26 +01006934static struct root_domain *alloc_rootdomain(void)
Gregory Haskins57d885f2008-01-25 21:08:18 +01006935{
6936 struct root_domain *rd;
6937
6938 rd = kmalloc(sizeof(*rd), GFP_KERNEL);
6939 if (!rd)
6940 return NULL;
6941
Pekka Enberg68c38fc2010-07-15 23:18:22 +03006942 if (init_rootdomain(rd) != 0) {
Rusty Russellc6c49272008-11-25 02:35:05 +10306943 kfree(rd);
6944 return NULL;
6945 }
Gregory Haskins57d885f2008-01-25 21:08:18 +01006946
6947 return rd;
6948}
6949
Peter Zijlstrae3589f62011-07-15 10:35:52 +02006950static void free_sched_groups(struct sched_group *sg, int free_sgp)
6951{
6952 struct sched_group *tmp, *first;
6953
6954 if (!sg)
6955 return;
6956
6957 first = sg;
6958 do {
6959 tmp = sg->next;
6960
6961 if (free_sgp && atomic_dec_and_test(&sg->sgp->ref))
6962 kfree(sg->sgp);
6963
6964 kfree(sg);
6965 sg = tmp;
6966 } while (sg != first);
6967}
6968
Peter Zijlstradce840a2011-04-07 14:09:50 +02006969static void free_sched_domain(struct rcu_head *rcu)
6970{
6971 struct sched_domain *sd = container_of(rcu, struct sched_domain, rcu);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02006972
6973 /*
6974 * If its an overlapping domain it has private groups, iterate and
6975 * nuke them all.
6976 */
6977 if (sd->flags & SD_OVERLAP) {
6978 free_sched_groups(sd->groups, 1);
6979 } else if (atomic_dec_and_test(&sd->groups->ref)) {
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006980 kfree(sd->groups->sgp);
Peter Zijlstradce840a2011-04-07 14:09:50 +02006981 kfree(sd->groups);
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02006982 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02006983 kfree(sd);
6984}
6985
6986static void destroy_sched_domain(struct sched_domain *sd, int cpu)
6987{
6988 call_rcu(&sd->rcu, free_sched_domain);
6989}
6990
6991static void destroy_sched_domains(struct sched_domain *sd, int cpu)
6992{
6993 for (; sd; sd = sd->parent)
6994 destroy_sched_domain(sd, cpu);
6995}
6996
Linus Torvalds1da177e2005-04-16 15:20:36 -07006997/*
Ingo Molnar0eab9142008-01-25 21:08:19 +01006998 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
Linus Torvalds1da177e2005-04-16 15:20:36 -07006999 * hold the hotplug lock.
7000 */
Ingo Molnar0eab9142008-01-25 21:08:19 +01007001static void
7002cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007003{
Ingo Molnar70b97a72006-07-03 00:25:42 -07007004 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07007005 struct sched_domain *tmp;
7006
7007 /* Remove the sched domains which do not contribute to scheduling. */
Li Zefanf29c9b12008-11-06 09:45:16 +08007008 for (tmp = sd; tmp; ) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07007009 struct sched_domain *parent = tmp->parent;
7010 if (!parent)
7011 break;
Li Zefanf29c9b12008-11-06 09:45:16 +08007012
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007013 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07007014 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007015 if (parent->parent)
7016 parent->parent->child = tmp;
Peter Zijlstradce840a2011-04-07 14:09:50 +02007017 destroy_sched_domain(parent, cpu);
Li Zefanf29c9b12008-11-06 09:45:16 +08007018 } else
7019 tmp = tmp->parent;
Suresh Siddha245af2c2005-06-25 14:57:25 -07007020 }
7021
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007022 if (sd && sd_degenerate(sd)) {
Peter Zijlstradce840a2011-04-07 14:09:50 +02007023 tmp = sd;
Suresh Siddha245af2c2005-06-25 14:57:25 -07007024 sd = sd->parent;
Peter Zijlstradce840a2011-04-07 14:09:50 +02007025 destroy_sched_domain(tmp, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07007026 if (sd)
7027 sd->child = NULL;
7028 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007029
Peter Zijlstra4cb98832011-04-07 14:09:58 +02007030 sched_domain_debug(sd, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007031
Gregory Haskins57d885f2008-01-25 21:08:18 +01007032 rq_attach_root(rq, rd);
Peter Zijlstradce840a2011-04-07 14:09:50 +02007033 tmp = rq->sd;
Nick Piggin674311d2005-06-25 14:57:27 -07007034 rcu_assign_pointer(rq->sd, sd);
Peter Zijlstradce840a2011-04-07 14:09:50 +02007035 destroy_sched_domains(tmp, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007036}
7037
7038/* cpus with isolated domains */
Rusty Russelldcc30a32008-11-25 02:35:12 +10307039static cpumask_var_t cpu_isolated_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007040
7041/* Setup the mask of cpus configured for isolated domains */
7042static int __init isolated_cpu_setup(char *str)
7043{
Rusty Russellbdddd292009-12-02 14:09:16 +10307044 alloc_bootmem_cpumask_var(&cpu_isolated_map);
Rusty Russell968ea6d2008-12-13 21:55:51 +10307045 cpulist_parse(str, cpu_isolated_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007046 return 1;
7047}
7048
Ingo Molnar8927f492007-10-15 17:00:13 +02007049__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007050
John Hawkes9c1cfda2005-09-06 15:18:14 -07007051#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07007052
John Hawkes9c1cfda2005-09-06 15:18:14 -07007053#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08007054
John Hawkes9c1cfda2005-09-06 15:18:14 -07007055/**
7056 * find_next_best_node - find the next node to include in a sched_domain
7057 * @node: node whose sched_domain we're building
7058 * @used_nodes: nodes already in the sched_domain
7059 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007060 * Find the next node to include in a given scheduling domain. Simply
John Hawkes9c1cfda2005-09-06 15:18:14 -07007061 * finds the closest node not already in the @used_nodes map.
7062 *
7063 * Should use nodemask_t.
7064 */
Mike Travisc5f59f02008-04-04 18:11:10 -07007065static int find_next_best_node(int node, nodemask_t *used_nodes)
John Hawkes9c1cfda2005-09-06 15:18:14 -07007066{
Hillf Danton7142d172011-05-05 20:53:20 +08007067 int i, n, val, min_val, best_node = -1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007068
7069 min_val = INT_MAX;
7070
Mike Travis076ac2a2008-05-12 21:21:12 +02007071 for (i = 0; i < nr_node_ids; i++) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07007072 /* Start at @node */
Mike Travis076ac2a2008-05-12 21:21:12 +02007073 n = (node + i) % nr_node_ids;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007074
7075 if (!nr_cpus_node(n))
7076 continue;
7077
7078 /* Skip already used nodes */
Mike Travisc5f59f02008-04-04 18:11:10 -07007079 if (node_isset(n, *used_nodes))
John Hawkes9c1cfda2005-09-06 15:18:14 -07007080 continue;
7081
7082 /* Simple min distance search */
7083 val = node_distance(node, n);
7084
7085 if (val < min_val) {
7086 min_val = val;
7087 best_node = n;
7088 }
7089 }
7090
Hillf Danton7142d172011-05-05 20:53:20 +08007091 if (best_node != -1)
7092 node_set(best_node, *used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007093 return best_node;
7094}
7095
7096/**
7097 * sched_domain_node_span - get a cpumask for a node's sched_domain
7098 * @node: node whose cpumask we're constructing
Randy Dunlap73486722008-04-22 10:07:22 -07007099 * @span: resulting cpumask
John Hawkes9c1cfda2005-09-06 15:18:14 -07007100 *
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007101 * Given a node, construct a good cpumask for its sched_domain to span. It
John Hawkes9c1cfda2005-09-06 15:18:14 -07007102 * should be one that prevents unnecessary balancing, but also spreads tasks
7103 * out optimally.
7104 */
Rusty Russell96f874e2008-11-25 02:35:14 +10307105static void sched_domain_node_span(int node, struct cpumask *span)
John Hawkes9c1cfda2005-09-06 15:18:14 -07007106{
Mike Travisc5f59f02008-04-04 18:11:10 -07007107 nodemask_t used_nodes;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007108 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07007109
Mike Travis6ca09df2008-12-31 18:08:45 -08007110 cpumask_clear(span);
Mike Travisc5f59f02008-04-04 18:11:10 -07007111 nodes_clear(used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007112
Mike Travis6ca09df2008-12-31 18:08:45 -08007113 cpumask_or(span, span, cpumask_of_node(node));
Mike Travisc5f59f02008-04-04 18:11:10 -07007114 node_set(node, used_nodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07007115
7116 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
Mike Travisc5f59f02008-04-04 18:11:10 -07007117 int next_node = find_next_best_node(node, &used_nodes);
Hillf Danton7142d172011-05-05 20:53:20 +08007118 if (next_node < 0)
7119 break;
Mike Travis6ca09df2008-12-31 18:08:45 -08007120 cpumask_or(span, span, cpumask_of_node(next_node));
John Hawkes9c1cfda2005-09-06 15:18:14 -07007121 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007122}
Peter Zijlstrad3081f52011-04-07 14:09:59 +02007123
7124static const struct cpumask *cpu_node_mask(int cpu)
7125{
7126 lockdep_assert_held(&sched_domains_mutex);
7127
7128 sched_domain_node_span(cpu_to_node(cpu), sched_domains_tmpmask);
7129
7130 return sched_domains_tmpmask;
7131}
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02007132
7133static const struct cpumask *cpu_allnodes_mask(int cpu)
7134{
7135 return cpu_possible_mask;
7136}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007137#endif /* CONFIG_NUMA */
John Hawkes9c1cfda2005-09-06 15:18:14 -07007138
Peter Zijlstrad3081f52011-04-07 14:09:59 +02007139static const struct cpumask *cpu_cpu_mask(int cpu)
7140{
7141 return cpumask_of_node(cpu_to_node(cpu));
7142}
7143
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007144int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007145
Peter Zijlstradce840a2011-04-07 14:09:50 +02007146struct sd_data {
7147 struct sched_domain **__percpu sd;
7148 struct sched_group **__percpu sg;
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02007149 struct sched_group_power **__percpu sgp;
Peter Zijlstradce840a2011-04-07 14:09:50 +02007150};
7151
Andreas Herrmann49a02c52009-08-18 12:51:52 +02007152struct s_data {
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02007153 struct sched_domain ** __percpu sd;
Andreas Herrmann49a02c52009-08-18 12:51:52 +02007154 struct root_domain *rd;
7155};
7156
Andreas Herrmann2109b992009-08-18 12:53:00 +02007157enum s_alloc {
Andreas Herrmann2109b992009-08-18 12:53:00 +02007158 sa_rootdomain,
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02007159 sa_sd,
Peter Zijlstradce840a2011-04-07 14:09:50 +02007160 sa_sd_storage,
Andreas Herrmann2109b992009-08-18 12:53:00 +02007161 sa_none,
7162};
7163
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007164struct sched_domain_topology_level;
7165
7166typedef struct sched_domain *(*sched_domain_init_f)(struct sched_domain_topology_level *tl, int cpu);
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02007167typedef const struct cpumask *(*sched_domain_mask_f)(int cpu);
7168
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007169#define SDTL_OVERLAP 0x01
7170
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02007171struct sched_domain_topology_level {
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02007172 sched_domain_init_f init;
7173 sched_domain_mask_f mask;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007174 int flags;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007175 struct sd_data data;
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02007176};
7177
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007178static int
7179build_overlap_sched_groups(struct sched_domain *sd, int cpu)
7180{
7181 struct sched_group *first = NULL, *last = NULL, *groups = NULL, *sg;
7182 const struct cpumask *span = sched_domain_span(sd);
7183 struct cpumask *covered = sched_domains_tmpmask;
7184 struct sd_data *sdd = sd->private;
7185 struct sched_domain *child;
7186 int i;
7187
7188 cpumask_clear(covered);
7189
7190 for_each_cpu(i, span) {
7191 struct cpumask *sg_span;
7192
7193 if (cpumask_test_cpu(i, covered))
7194 continue;
7195
7196 sg = kzalloc_node(sizeof(struct sched_group) + cpumask_size(),
7197 GFP_KERNEL, cpu_to_node(i));
7198
7199 if (!sg)
7200 goto fail;
7201
7202 sg_span = sched_group_cpus(sg);
7203
7204 child = *per_cpu_ptr(sdd->sd, i);
7205 if (child->child) {
7206 child = child->child;
7207 cpumask_copy(sg_span, sched_domain_span(child));
7208 } else
7209 cpumask_set_cpu(i, sg_span);
7210
7211 cpumask_or(covered, covered, sg_span);
7212
7213 sg->sgp = *per_cpu_ptr(sdd->sgp, cpumask_first(sg_span));
7214 atomic_inc(&sg->sgp->ref);
7215
7216 if (cpumask_test_cpu(cpu, sg_span))
7217 groups = sg;
7218
7219 if (!first)
7220 first = sg;
7221 if (last)
7222 last->next = sg;
7223 last = sg;
7224 last->next = first;
7225 }
7226 sd->groups = groups;
7227
7228 return 0;
7229
7230fail:
7231 free_sched_groups(first, 0);
7232
7233 return -ENOMEM;
7234}
7235
Peter Zijlstradce840a2011-04-07 14:09:50 +02007236static int get_group(int cpu, struct sd_data *sdd, struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007237{
Peter Zijlstradce840a2011-04-07 14:09:50 +02007238 struct sched_domain *sd = *per_cpu_ptr(sdd->sd, cpu);
7239 struct sched_domain *child = sd->child;
7240
7241 if (child)
7242 cpu = cpumask_first(sched_domain_span(child));
7243
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02007244 if (sg) {
Peter Zijlstradce840a2011-04-07 14:09:50 +02007245 *sg = *per_cpu_ptr(sdd->sg, cpu);
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02007246 (*sg)->sgp = *per_cpu_ptr(sdd->sgp, cpu);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007247 atomic_set(&(*sg)->sgp->ref, 1); /* for claim_allocations */
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02007248 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02007249
Linus Torvalds1da177e2005-04-16 15:20:36 -07007250 return cpu;
7251}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007252
Ingo Molnar48f24c42006-07-03 00:25:40 -07007253/*
Peter Zijlstradce840a2011-04-07 14:09:50 +02007254 * build_sched_groups will build a circular linked list of the groups
7255 * covered by the given span, and will set each group's ->cpumask correctly,
7256 * and ->cpu_power to 0.
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007257 *
7258 * Assumes the sched_domain tree is fully constructed
Ingo Molnar48f24c42006-07-03 00:25:40 -07007259 */
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007260static int
7261build_sched_groups(struct sched_domain *sd, int cpu)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007262{
Peter Zijlstradce840a2011-04-07 14:09:50 +02007263 struct sched_group *first = NULL, *last = NULL;
7264 struct sd_data *sdd = sd->private;
7265 const struct cpumask *span = sched_domain_span(sd);
Peter Zijlstraf96225f2011-04-07 14:09:57 +02007266 struct cpumask *covered;
Peter Zijlstradce840a2011-04-07 14:09:50 +02007267 int i;
7268
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007269 get_group(cpu, sdd, &sd->groups);
7270 atomic_inc(&sd->groups->ref);
7271
7272 if (cpu != cpumask_first(sched_domain_span(sd)))
7273 return 0;
7274
Peter Zijlstraf96225f2011-04-07 14:09:57 +02007275 lockdep_assert_held(&sched_domains_mutex);
7276 covered = sched_domains_tmpmask;
7277
Peter Zijlstradce840a2011-04-07 14:09:50 +02007278 cpumask_clear(covered);
7279
7280 for_each_cpu(i, span) {
7281 struct sched_group *sg;
7282 int group = get_group(i, sdd, &sg);
7283 int j;
7284
7285 if (cpumask_test_cpu(i, covered))
7286 continue;
7287
7288 cpumask_clear(sched_group_cpus(sg));
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02007289 sg->sgp->power = 0;
Peter Zijlstradce840a2011-04-07 14:09:50 +02007290
7291 for_each_cpu(j, span) {
7292 if (get_group(j, sdd, NULL) != group)
7293 continue;
7294
7295 cpumask_set_cpu(j, covered);
7296 cpumask_set_cpu(j, sched_group_cpus(sg));
7297 }
7298
7299 if (!first)
7300 first = sg;
7301 if (last)
7302 last->next = sg;
7303 last = sg;
7304 }
7305 last->next = first;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007306
7307 return 0;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08007308}
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007309
Linus Torvalds1da177e2005-04-16 15:20:36 -07007310/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007311 * Initialize sched groups cpu_power.
7312 *
7313 * cpu_power indicates the capacity of sched group, which is used while
7314 * distributing the load between different sched groups in a sched domain.
7315 * Typically cpu_power for all the groups in a sched domain will be same unless
7316 * there are asymmetries in the topology. If there are asymmetries, group
7317 * having more cpu_power will pickup more load compared to the group having
7318 * less cpu_power.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007319 */
7320static void init_sched_groups_power(int cpu, struct sched_domain *sd)
7321{
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007322 struct sched_group *sg = sd->groups;
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007323
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007324 WARN_ON(!sd || !sg);
7325
7326 do {
7327 sg->group_weight = cpumask_weight(sched_group_cpus(sg));
7328 sg = sg->next;
7329 } while (sg != sd->groups);
7330
7331 if (cpu != group_first_cpu(sg))
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007332 return;
7333
Peter Zijlstrad274cb32011-04-07 14:09:43 +02007334 update_group_power(sd, cpu);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07007335}
7336
7337/*
Mike Travis7c16ec52008-04-04 18:11:11 -07007338 * Initializers for schedule domains
7339 * Non-inlined to reduce accumulated stack pressure in build_sched_domains()
7340 */
7341
Ingo Molnara5d8c342008-10-09 11:35:51 +02007342#ifdef CONFIG_SCHED_DEBUG
7343# define SD_INIT_NAME(sd, type) sd->name = #type
7344#else
7345# define SD_INIT_NAME(sd, type) do { } while (0)
7346#endif
7347
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007348#define SD_INIT_FUNC(type) \
7349static noinline struct sched_domain * \
7350sd_init_##type(struct sched_domain_topology_level *tl, int cpu) \
7351{ \
7352 struct sched_domain *sd = *per_cpu_ptr(tl->data.sd, cpu); \
7353 *sd = SD_##type##_INIT; \
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007354 SD_INIT_NAME(sd, type); \
7355 sd->private = &tl->data; \
7356 return sd; \
Mike Travis7c16ec52008-04-04 18:11:11 -07007357}
7358
7359SD_INIT_FUNC(CPU)
7360#ifdef CONFIG_NUMA
7361 SD_INIT_FUNC(ALLNODES)
7362 SD_INIT_FUNC(NODE)
7363#endif
7364#ifdef CONFIG_SCHED_SMT
7365 SD_INIT_FUNC(SIBLING)
7366#endif
7367#ifdef CONFIG_SCHED_MC
7368 SD_INIT_FUNC(MC)
7369#endif
Heiko Carstens01a08542010-08-31 10:28:16 +02007370#ifdef CONFIG_SCHED_BOOK
7371 SD_INIT_FUNC(BOOK)
7372#endif
Mike Travis7c16ec52008-04-04 18:11:11 -07007373
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007374static int default_relax_domain_level = -1;
Peter Zijlstra60495e72011-04-07 14:10:04 +02007375int sched_domain_level_max;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007376
7377static int __init setup_relax_domain_level(char *str)
7378{
Li Zefan30e0e172008-05-13 10:27:17 +08007379 unsigned long val;
7380
7381 val = simple_strtoul(str, NULL, 0);
Peter Zijlstra60495e72011-04-07 14:10:04 +02007382 if (val < sched_domain_level_max)
Li Zefan30e0e172008-05-13 10:27:17 +08007383 default_relax_domain_level = val;
7384
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007385 return 1;
7386}
7387__setup("relax_domain_level=", setup_relax_domain_level);
7388
7389static void set_domain_attribute(struct sched_domain *sd,
7390 struct sched_domain_attr *attr)
7391{
7392 int request;
7393
7394 if (!attr || attr->relax_domain_level < 0) {
7395 if (default_relax_domain_level < 0)
7396 return;
7397 else
7398 request = default_relax_domain_level;
7399 } else
7400 request = attr->relax_domain_level;
7401 if (request < sd->level) {
7402 /* turn off idle balance on this domain */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02007403 sd->flags &= ~(SD_BALANCE_WAKE|SD_BALANCE_NEWIDLE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007404 } else {
7405 /* turn on idle balance on this domain */
Peter Zijlstrac88d5912009-09-10 13:50:02 +02007406 sd->flags |= (SD_BALANCE_WAKE|SD_BALANCE_NEWIDLE);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007407 }
7408}
7409
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007410static void __sdt_free(const struct cpumask *cpu_map);
7411static int __sdt_alloc(const struct cpumask *cpu_map);
7412
Andreas Herrmann2109b992009-08-18 12:53:00 +02007413static void __free_domain_allocs(struct s_data *d, enum s_alloc what,
7414 const struct cpumask *cpu_map)
7415{
7416 switch (what) {
Andreas Herrmann2109b992009-08-18 12:53:00 +02007417 case sa_rootdomain:
Peter Zijlstra822ff792011-04-07 14:09:51 +02007418 if (!atomic_read(&d->rd->refcount))
7419 free_rootdomain(&d->rd->rcu); /* fall through */
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02007420 case sa_sd:
7421 free_percpu(d->sd); /* fall through */
Peter Zijlstradce840a2011-04-07 14:09:50 +02007422 case sa_sd_storage:
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007423 __sdt_free(cpu_map); /* fall through */
Andreas Herrmann2109b992009-08-18 12:53:00 +02007424 case sa_none:
7425 break;
7426 }
7427}
7428
7429static enum s_alloc __visit_domain_allocation_hell(struct s_data *d,
7430 const struct cpumask *cpu_map)
7431{
Peter Zijlstradce840a2011-04-07 14:09:50 +02007432 memset(d, 0, sizeof(*d));
7433
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007434 if (__sdt_alloc(cpu_map))
7435 return sa_sd_storage;
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02007436 d->sd = alloc_percpu(struct sched_domain *);
Peter Zijlstradce840a2011-04-07 14:09:50 +02007437 if (!d->sd)
7438 return sa_sd_storage;
Andreas Herrmann2109b992009-08-18 12:53:00 +02007439 d->rd = alloc_rootdomain();
Peter Zijlstradce840a2011-04-07 14:09:50 +02007440 if (!d->rd)
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02007441 return sa_sd;
Andreas Herrmann2109b992009-08-18 12:53:00 +02007442 return sa_rootdomain;
7443}
7444
Peter Zijlstradce840a2011-04-07 14:09:50 +02007445/*
7446 * NULL the sd_data elements we've used to build the sched_domain and
7447 * sched_group structure so that the subsequent __free_domain_allocs()
7448 * will not free the data we're using.
7449 */
7450static void claim_allocations(int cpu, struct sched_domain *sd)
7451{
7452 struct sd_data *sdd = sd->private;
Peter Zijlstradce840a2011-04-07 14:09:50 +02007453
7454 WARN_ON_ONCE(*per_cpu_ptr(sdd->sd, cpu) != sd);
7455 *per_cpu_ptr(sdd->sd, cpu) = NULL;
7456
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007457 if (atomic_read(&(*per_cpu_ptr(sdd->sg, cpu))->ref))
Peter Zijlstradce840a2011-04-07 14:09:50 +02007458 *per_cpu_ptr(sdd->sg, cpu) = NULL;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007459
7460 if (atomic_read(&(*per_cpu_ptr(sdd->sgp, cpu))->ref))
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02007461 *per_cpu_ptr(sdd->sgp, cpu) = NULL;
Peter Zijlstradce840a2011-04-07 14:09:50 +02007462}
7463
Andreas Herrmannd8173532009-08-18 12:57:03 +02007464#ifdef CONFIG_SCHED_SMT
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02007465static const struct cpumask *cpu_smt_mask(int cpu)
7466{
7467 return topology_thread_cpumask(cpu);
Andreas Herrmannd8173532009-08-18 12:57:03 +02007468}
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02007469#endif
Andreas Herrmannd8173532009-08-18 12:57:03 +02007470
Peter Zijlstrad069b912011-04-07 14:10:02 +02007471/*
7472 * Topology list, bottom-up.
7473 */
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02007474static struct sched_domain_topology_level default_topology[] = {
Peter Zijlstrad069b912011-04-07 14:10:02 +02007475#ifdef CONFIG_SCHED_SMT
7476 { sd_init_SIBLING, cpu_smt_mask, },
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02007477#endif
7478#ifdef CONFIG_SCHED_MC
7479 { sd_init_MC, cpu_coregroup_mask, },
7480#endif
Peter Zijlstrad069b912011-04-07 14:10:02 +02007481#ifdef CONFIG_SCHED_BOOK
7482 { sd_init_BOOK, cpu_book_mask, },
7483#endif
7484 { sd_init_CPU, cpu_cpu_mask, },
7485#ifdef CONFIG_NUMA
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007486 { sd_init_NODE, cpu_node_mask, SDTL_OVERLAP, },
Peter Zijlstrad069b912011-04-07 14:10:02 +02007487 { sd_init_ALLNODES, cpu_allnodes_mask, },
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02007488#endif
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02007489 { NULL, },
7490};
7491
7492static struct sched_domain_topology_level *sched_domain_topology = default_topology;
7493
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007494static int __sdt_alloc(const struct cpumask *cpu_map)
7495{
7496 struct sched_domain_topology_level *tl;
7497 int j;
7498
7499 for (tl = sched_domain_topology; tl->init; tl++) {
7500 struct sd_data *sdd = &tl->data;
7501
7502 sdd->sd = alloc_percpu(struct sched_domain *);
7503 if (!sdd->sd)
7504 return -ENOMEM;
7505
7506 sdd->sg = alloc_percpu(struct sched_group *);
7507 if (!sdd->sg)
7508 return -ENOMEM;
7509
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02007510 sdd->sgp = alloc_percpu(struct sched_group_power *);
7511 if (!sdd->sgp)
7512 return -ENOMEM;
7513
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007514 for_each_cpu(j, cpu_map) {
7515 struct sched_domain *sd;
7516 struct sched_group *sg;
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02007517 struct sched_group_power *sgp;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007518
7519 sd = kzalloc_node(sizeof(struct sched_domain) + cpumask_size(),
7520 GFP_KERNEL, cpu_to_node(j));
7521 if (!sd)
7522 return -ENOMEM;
7523
7524 *per_cpu_ptr(sdd->sd, j) = sd;
7525
7526 sg = kzalloc_node(sizeof(struct sched_group) + cpumask_size(),
7527 GFP_KERNEL, cpu_to_node(j));
7528 if (!sg)
7529 return -ENOMEM;
7530
7531 *per_cpu_ptr(sdd->sg, j) = sg;
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02007532
7533 sgp = kzalloc_node(sizeof(struct sched_group_power),
7534 GFP_KERNEL, cpu_to_node(j));
7535 if (!sgp)
7536 return -ENOMEM;
7537
7538 *per_cpu_ptr(sdd->sgp, j) = sgp;
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007539 }
7540 }
7541
7542 return 0;
7543}
7544
7545static void __sdt_free(const struct cpumask *cpu_map)
7546{
7547 struct sched_domain_topology_level *tl;
7548 int j;
7549
7550 for (tl = sched_domain_topology; tl->init; tl++) {
7551 struct sd_data *sdd = &tl->data;
7552
7553 for_each_cpu(j, cpu_map) {
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007554 struct sched_domain *sd = *per_cpu_ptr(sdd->sd, j);
7555 if (sd && (sd->flags & SD_OVERLAP))
7556 free_sched_groups(sd->groups, 0);
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007557 kfree(*per_cpu_ptr(sdd->sg, j));
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02007558 kfree(*per_cpu_ptr(sdd->sgp, j));
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007559 }
7560 free_percpu(sdd->sd);
7561 free_percpu(sdd->sg);
Peter Zijlstra9c3f75c2011-07-14 13:00:06 +02007562 free_percpu(sdd->sgp);
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007563 }
7564}
7565
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02007566struct sched_domain *build_sched_domain(struct sched_domain_topology_level *tl,
7567 struct s_data *d, const struct cpumask *cpu_map,
Peter Zijlstrad069b912011-04-07 14:10:02 +02007568 struct sched_domain_attr *attr, struct sched_domain *child,
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02007569 int cpu)
7570{
Peter Zijlstra54ab4ff2011-04-07 14:10:03 +02007571 struct sched_domain *sd = tl->init(tl, cpu);
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02007572 if (!sd)
Peter Zijlstrad069b912011-04-07 14:10:02 +02007573 return child;
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02007574
7575 set_domain_attribute(sd, attr);
7576 cpumask_and(sched_domain_span(sd), cpu_map, tl->mask(cpu));
Peter Zijlstra60495e72011-04-07 14:10:04 +02007577 if (child) {
7578 sd->level = child->level + 1;
7579 sched_domain_level_max = max(sched_domain_level_max, sd->level);
Peter Zijlstrad069b912011-04-07 14:10:02 +02007580 child->parent = sd;
Peter Zijlstra60495e72011-04-07 14:10:04 +02007581 }
Peter Zijlstrad069b912011-04-07 14:10:02 +02007582 sd->child = child;
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02007583
7584 return sd;
7585}
7586
Mike Travis7c16ec52008-04-04 18:11:11 -07007587/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007588 * Build sched domains for a given set of cpus and attach the sched domains
7589 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07007590 */
Peter Zijlstradce840a2011-04-07 14:09:50 +02007591static int build_sched_domains(const struct cpumask *cpu_map,
7592 struct sched_domain_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007593{
Andreas Herrmann2109b992009-08-18 12:53:00 +02007594 enum s_alloc alloc_state = sa_none;
Peter Zijlstradce840a2011-04-07 14:09:50 +02007595 struct sched_domain *sd;
Andreas Herrmann49a02c52009-08-18 12:51:52 +02007596 struct s_data d;
Peter Zijlstra822ff792011-04-07 14:09:51 +02007597 int i, ret = -ENOMEM;
Rusty Russell3404c8d2008-11-25 02:35:03 +10307598
Andreas Herrmann2109b992009-08-18 12:53:00 +02007599 alloc_state = __visit_domain_allocation_hell(&d, cpu_map);
7600 if (alloc_state != sa_rootdomain)
7601 goto error;
Mike Travis7c16ec52008-04-04 18:11:11 -07007602
Peter Zijlstradce840a2011-04-07 14:09:50 +02007603 /* Set up domains for cpus specified by the cpu_map. */
Rusty Russellabcd0832008-11-25 02:35:02 +10307604 for_each_cpu(i, cpu_map) {
Peter Zijlstraeb7a74e62011-04-07 14:10:00 +02007605 struct sched_domain_topology_level *tl;
7606
Peter Zijlstra3bd65a82011-04-07 14:09:54 +02007607 sd = NULL;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007608 for (tl = sched_domain_topology; tl->init; tl++) {
Peter Zijlstra2c402dc2011-04-07 14:10:01 +02007609 sd = build_sched_domain(tl, &d, cpu_map, attr, sd, i);
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007610 if (tl->flags & SDTL_OVERLAP || sched_feat(FORCE_SD_OVERLAP))
7611 sd->flags |= SD_OVERLAP;
Peter Zijlstrad1102352011-07-20 18:42:57 +02007612 if (cpumask_equal(cpu_map, sched_domain_span(sd)))
7613 break;
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007614 }
Peter Zijlstrad274cb32011-04-07 14:09:43 +02007615
Peter Zijlstrad069b912011-04-07 14:10:02 +02007616 while (sd->child)
7617 sd = sd->child;
7618
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02007619 *per_cpu_ptr(d.sd, i) = sd;
Peter Zijlstradce840a2011-04-07 14:09:50 +02007620 }
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02007621
Peter Zijlstradce840a2011-04-07 14:09:50 +02007622 /* Build the groups for the domains */
7623 for_each_cpu(i, cpu_map) {
7624 for (sd = *per_cpu_ptr(d.sd, i); sd; sd = sd->parent) {
7625 sd->span_weight = cpumask_weight(sched_domain_span(sd));
Peter Zijlstrae3589f62011-07-15 10:35:52 +02007626 if (sd->flags & SD_OVERLAP) {
7627 if (build_overlap_sched_groups(sd, i))
7628 goto error;
7629 } else {
7630 if (build_sched_groups(sd, i))
7631 goto error;
7632 }
Peter Zijlstra1cf519022011-04-07 14:09:47 +02007633 }
Peter Zijlstraa06dadb2011-04-07 14:09:44 +02007634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007635
Linus Torvalds1da177e2005-04-16 15:20:36 -07007636 /* Calculate CPU power for physical packages and nodes */
Peter Zijlstraa9c9a9b2011-04-07 14:09:49 +02007637 for (i = nr_cpumask_bits-1; i >= 0; i--) {
7638 if (!cpumask_test_cpu(i, cpu_map))
7639 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007640
Peter Zijlstradce840a2011-04-07 14:09:50 +02007641 for (sd = *per_cpu_ptr(d.sd, i); sd; sd = sd->parent) {
7642 claim_allocations(i, sd);
Peter Zijlstracd4ea6a2011-04-07 14:09:45 +02007643 init_sched_groups_power(i, sd);
Peter Zijlstradce840a2011-04-07 14:09:50 +02007644 }
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07007645 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07007646
Linus Torvalds1da177e2005-04-16 15:20:36 -07007647 /* Attach the domains */
Peter Zijlstradce840a2011-04-07 14:09:50 +02007648 rcu_read_lock();
Rusty Russellabcd0832008-11-25 02:35:02 +10307649 for_each_cpu(i, cpu_map) {
Peter Zijlstra21d42cc2011-04-07 14:09:48 +02007650 sd = *per_cpu_ptr(d.sd, i);
Andreas Herrmann49a02c52009-08-18 12:51:52 +02007651 cpu_attach_domain(sd, d.rd, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007652 }
Peter Zijlstradce840a2011-04-07 14:09:50 +02007653 rcu_read_unlock();
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007654
Peter Zijlstra822ff792011-04-07 14:09:51 +02007655 ret = 0;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07007656error:
Andreas Herrmann2109b992009-08-18 12:53:00 +02007657 __free_domain_allocs(&d, alloc_state, cpu_map);
Peter Zijlstra822ff792011-04-07 14:09:51 +02007658 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007659}
Paul Jackson029190c2007-10-18 23:40:20 -07007660
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307661static cpumask_var_t *doms_cur; /* current sched domains */
Paul Jackson029190c2007-10-18 23:40:20 -07007662static int ndoms_cur; /* number of sched domains in 'doms_cur' */
Ingo Molnar4285f5942008-05-16 17:47:14 +02007663static struct sched_domain_attr *dattr_cur;
7664 /* attribues of custom domains in 'doms_cur' */
Paul Jackson029190c2007-10-18 23:40:20 -07007665
7666/*
7667 * Special case: If a kmalloc of a doms_cur partition (array of
Rusty Russell42128232008-11-25 02:35:12 +10307668 * cpumask) fails, then fallback to a single sched domain,
7669 * as determined by the single cpumask fallback_doms.
Paul Jackson029190c2007-10-18 23:40:20 -07007670 */
Rusty Russell42128232008-11-25 02:35:12 +10307671static cpumask_var_t fallback_doms;
Paul Jackson029190c2007-10-18 23:40:20 -07007672
Heiko Carstensee79d1b2008-12-09 18:49:50 +01007673/*
7674 * arch_update_cpu_topology lets virtualized architectures update the
7675 * cpu core maps. It is supposed to return 1 if the topology changed
7676 * or 0 if it stayed the same.
7677 */
7678int __attribute__((weak)) arch_update_cpu_topology(void)
Heiko Carstens22e52b02008-03-12 18:31:59 +01007679{
Heiko Carstensee79d1b2008-12-09 18:49:50 +01007680 return 0;
Heiko Carstens22e52b02008-03-12 18:31:59 +01007681}
7682
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307683cpumask_var_t *alloc_sched_domains(unsigned int ndoms)
7684{
7685 int i;
7686 cpumask_var_t *doms;
7687
7688 doms = kmalloc(sizeof(*doms) * ndoms, GFP_KERNEL);
7689 if (!doms)
7690 return NULL;
7691 for (i = 0; i < ndoms; i++) {
7692 if (!alloc_cpumask_var(&doms[i], GFP_KERNEL)) {
7693 free_sched_domains(doms, i);
7694 return NULL;
7695 }
7696 }
7697 return doms;
7698}
7699
7700void free_sched_domains(cpumask_var_t doms[], unsigned int ndoms)
7701{
7702 unsigned int i;
7703 for (i = 0; i < ndoms; i++)
7704 free_cpumask_var(doms[i]);
7705 kfree(doms);
7706}
7707
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007708/*
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007709 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
Paul Jackson029190c2007-10-18 23:40:20 -07007710 * For now this just excludes isolated cpus, but could be used to
7711 * exclude other special cases in the future.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007712 */
Peter Zijlstrac4a88492011-04-07 14:09:42 +02007713static int init_sched_domains(const struct cpumask *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007714{
Milton Miller73785472007-10-24 18:23:48 +02007715 int err;
7716
Heiko Carstens22e52b02008-03-12 18:31:59 +01007717 arch_update_cpu_topology();
Paul Jackson029190c2007-10-18 23:40:20 -07007718 ndoms_cur = 1;
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307719 doms_cur = alloc_sched_domains(ndoms_cur);
Paul Jackson029190c2007-10-18 23:40:20 -07007720 if (!doms_cur)
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307721 doms_cur = &fallback_doms;
7722 cpumask_andnot(doms_cur[0], cpu_map, cpu_isolated_map);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007723 dattr_cur = NULL;
Peter Zijlstradce840a2011-04-07 14:09:50 +02007724 err = build_sched_domains(doms_cur[0], NULL);
Milton Miller6382bc92007-10-15 17:00:19 +02007725 register_sched_domain_sysctl();
Milton Miller73785472007-10-24 18:23:48 +02007726
7727 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007728}
7729
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007730/*
7731 * Detach sched domains from a group of cpus specified in cpu_map
7732 * These cpus will now be attached to the NULL domain
7733 */
Rusty Russell96f874e2008-11-25 02:35:14 +10307734static void detach_destroy_domains(const struct cpumask *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007735{
7736 int i;
7737
Peter Zijlstradce840a2011-04-07 14:09:50 +02007738 rcu_read_lock();
Rusty Russellabcd0832008-11-25 02:35:02 +10307739 for_each_cpu(i, cpu_map)
Gregory Haskins57d885f2008-01-25 21:08:18 +01007740 cpu_attach_domain(NULL, &def_root_domain, i);
Peter Zijlstradce840a2011-04-07 14:09:50 +02007741 rcu_read_unlock();
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07007742}
7743
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007744/* handle null as "default" */
7745static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur,
7746 struct sched_domain_attr *new, int idx_new)
7747{
7748 struct sched_domain_attr tmp;
7749
7750 /* fast path */
7751 if (!new && !cur)
7752 return 1;
7753
7754 tmp = SD_ATTR_INIT;
7755 return !memcmp(cur ? (cur + idx_cur) : &tmp,
7756 new ? (new + idx_new) : &tmp,
7757 sizeof(struct sched_domain_attr));
7758}
7759
Paul Jackson029190c2007-10-18 23:40:20 -07007760/*
7761 * Partition sched domains as specified by the 'ndoms_new'
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007762 * cpumasks in the array doms_new[] of cpumasks. This compares
Paul Jackson029190c2007-10-18 23:40:20 -07007763 * doms_new[] to the current sched domain partitioning, doms_cur[].
7764 * It destroys each deleted domain and builds each new domain.
7765 *
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307766 * 'doms_new' is an array of cpumask_var_t's of length 'ndoms_new'.
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01007767 * The masks don't intersect (don't overlap.) We should setup one
7768 * sched domain for each mask. CPUs not in any of the cpumasks will
7769 * not be load balanced. If the same cpumask appears both in the
Paul Jackson029190c2007-10-18 23:40:20 -07007770 * current 'doms_cur' domains and in the new 'doms_new', we can leave
7771 * it as it is.
7772 *
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307773 * The passed in 'doms_new' should be allocated using
7774 * alloc_sched_domains. This routine takes ownership of it and will
7775 * free_sched_domains it when done with it. If the caller failed the
7776 * alloc call, then it can pass in doms_new == NULL && ndoms_new == 1,
7777 * and partition_sched_domains() will fallback to the single partition
7778 * 'fallback_doms', it also forces the domains to be rebuilt.
Paul Jackson029190c2007-10-18 23:40:20 -07007779 *
Rusty Russell96f874e2008-11-25 02:35:14 +10307780 * If doms_new == NULL it will be replaced with cpu_online_mask.
Li Zefan700018e2008-11-18 14:02:03 +08007781 * ndoms_new == 0 is a special case for destroying existing domains,
7782 * and it will not create the default domain.
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007783 *
Paul Jackson029190c2007-10-18 23:40:20 -07007784 * Call with hotplug lock held
7785 */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307786void partition_sched_domains(int ndoms_new, cpumask_var_t doms_new[],
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007787 struct sched_domain_attr *dattr_new)
Paul Jackson029190c2007-10-18 23:40:20 -07007788{
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007789 int i, j, n;
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01007790 int new_topology;
Paul Jackson029190c2007-10-18 23:40:20 -07007791
Heiko Carstens712555e2008-04-28 11:33:07 +02007792 mutex_lock(&sched_domains_mutex);
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007793
Milton Miller73785472007-10-24 18:23:48 +02007794 /* always unregister in case we don't destroy any domains */
7795 unregister_sched_domain_sysctl();
7796
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01007797 /* Let architecture update cpu core mappings. */
7798 new_topology = arch_update_cpu_topology();
7799
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007800 n = doms_new ? ndoms_new : 0;
Paul Jackson029190c2007-10-18 23:40:20 -07007801
7802 /* Destroy deleted domains */
7803 for (i = 0; i < ndoms_cur; i++) {
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01007804 for (j = 0; j < n && !new_topology; j++) {
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307805 if (cpumask_equal(doms_cur[i], doms_new[j])
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007806 && dattrs_equal(dattr_cur, i, dattr_new, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007807 goto match1;
7808 }
7809 /* no match - a current sched domain not in new doms_new[] */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307810 detach_destroy_domains(doms_cur[i]);
Paul Jackson029190c2007-10-18 23:40:20 -07007811match1:
7812 ;
7813 }
7814
Max Krasnyanskye761b772008-07-15 04:43:49 -07007815 if (doms_new == NULL) {
7816 ndoms_cur = 0;
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307817 doms_new = &fallback_doms;
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01007818 cpumask_andnot(doms_new[0], cpu_active_mask, cpu_isolated_map);
Li Zefanfaa2f982008-11-04 16:20:23 +08007819 WARN_ON_ONCE(dattr_new);
Max Krasnyanskye761b772008-07-15 04:43:49 -07007820 }
7821
Paul Jackson029190c2007-10-18 23:40:20 -07007822 /* Build new domains */
7823 for (i = 0; i < ndoms_new; i++) {
Heiko Carstensd65bd5e2008-12-09 18:49:51 +01007824 for (j = 0; j < ndoms_cur && !new_topology; j++) {
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307825 if (cpumask_equal(doms_new[i], doms_cur[j])
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007826 && dattrs_equal(dattr_new, i, dattr_cur, j))
Paul Jackson029190c2007-10-18 23:40:20 -07007827 goto match2;
7828 }
7829 /* no match - add a new doms_new */
Peter Zijlstradce840a2011-04-07 14:09:50 +02007830 build_sched_domains(doms_new[i], dattr_new ? dattr_new + i : NULL);
Paul Jackson029190c2007-10-18 23:40:20 -07007831match2:
7832 ;
7833 }
7834
7835 /* Remember the new sched domains */
Rusty Russellacc3f5d2009-11-03 14:53:40 +10307836 if (doms_cur != &fallback_doms)
7837 free_sched_domains(doms_cur, ndoms_cur);
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007838 kfree(dattr_cur); /* kfree(NULL) is safe */
Paul Jackson029190c2007-10-18 23:40:20 -07007839 doms_cur = doms_new;
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +09007840 dattr_cur = dattr_new;
Paul Jackson029190c2007-10-18 23:40:20 -07007841 ndoms_cur = ndoms_new;
Milton Miller73785472007-10-24 18:23:48 +02007842
7843 register_sched_domain_sysctl();
Srivatsa Vaddagiria1835612008-01-25 21:08:00 +01007844
Heiko Carstens712555e2008-04-28 11:33:07 +02007845 mutex_unlock(&sched_domains_mutex);
Paul Jackson029190c2007-10-18 23:40:20 -07007846}
7847
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007848#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Peter Zijlstrac4a88492011-04-07 14:09:42 +02007849static void reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007850{
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007851 get_online_cpus();
Max Krasnyanskydfb512e2008-08-29 13:11:41 -07007852
7853 /* Destroy domains first to force the rebuild */
7854 partition_sched_domains(0, NULL, NULL);
7855
Max Krasnyanskye761b772008-07-15 04:43:49 -07007856 rebuild_sched_domains();
Gautham R Shenoy95402b32008-01-25 21:08:02 +01007857 put_online_cpus();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007858}
7859
7860static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
7861{
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05307862 unsigned int level = 0;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007863
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05307864 if (sscanf(buf, "%u", &level) != 1)
7865 return -EINVAL;
7866
7867 /*
7868 * level is always be positive so don't check for
7869 * level < POWERSAVINGS_BALANCE_NONE which is 0
7870 * What happens on 0 or 1 byte write,
7871 * need to check for count as well?
7872 */
7873
7874 if (level >= MAX_POWERSAVINGS_BALANCE_LEVELS)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007875 return -EINVAL;
7876
7877 if (smt)
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05307878 sched_smt_power_savings = level;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007879 else
Gautham R Shenoyafb8a9b2008-12-18 23:26:09 +05307880 sched_mc_power_savings = level;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007881
Peter Zijlstrac4a88492011-04-07 14:09:42 +02007882 reinit_sched_domains();
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007883
Li Zefanc70f22d2009-01-05 19:07:50 +08007884 return count;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007885}
7886
Adrian Bunk6707de002007-08-12 18:08:19 +02007887#ifdef CONFIG_SCHED_MC
Andi Kleenf718cd42008-07-29 22:33:52 -07007888static ssize_t sched_mc_power_savings_show(struct sysdev_class *class,
Andi Kleenc9be0a32010-01-05 12:47:58 +01007889 struct sysdev_class_attribute *attr,
Andi Kleenf718cd42008-07-29 22:33:52 -07007890 char *page)
Adrian Bunk6707de002007-08-12 18:08:19 +02007891{
7892 return sprintf(page, "%u\n", sched_mc_power_savings);
7893}
Andi Kleenf718cd42008-07-29 22:33:52 -07007894static ssize_t sched_mc_power_savings_store(struct sysdev_class *class,
Andi Kleenc9be0a32010-01-05 12:47:58 +01007895 struct sysdev_class_attribute *attr,
Adrian Bunk6707de002007-08-12 18:08:19 +02007896 const char *buf, size_t count)
7897{
7898 return sched_power_savings_store(buf, count, 0);
7899}
Andi Kleenf718cd42008-07-29 22:33:52 -07007900static SYSDEV_CLASS_ATTR(sched_mc_power_savings, 0644,
7901 sched_mc_power_savings_show,
7902 sched_mc_power_savings_store);
Adrian Bunk6707de002007-08-12 18:08:19 +02007903#endif
7904
7905#ifdef CONFIG_SCHED_SMT
Andi Kleenf718cd42008-07-29 22:33:52 -07007906static ssize_t sched_smt_power_savings_show(struct sysdev_class *dev,
Andi Kleenc9be0a32010-01-05 12:47:58 +01007907 struct sysdev_class_attribute *attr,
Andi Kleenf718cd42008-07-29 22:33:52 -07007908 char *page)
Adrian Bunk6707de002007-08-12 18:08:19 +02007909{
7910 return sprintf(page, "%u\n", sched_smt_power_savings);
7911}
Andi Kleenf718cd42008-07-29 22:33:52 -07007912static ssize_t sched_smt_power_savings_store(struct sysdev_class *dev,
Andi Kleenc9be0a32010-01-05 12:47:58 +01007913 struct sysdev_class_attribute *attr,
Adrian Bunk6707de002007-08-12 18:08:19 +02007914 const char *buf, size_t count)
7915{
7916 return sched_power_savings_store(buf, count, 1);
7917}
Andi Kleenf718cd42008-07-29 22:33:52 -07007918static SYSDEV_CLASS_ATTR(sched_smt_power_savings, 0644,
7919 sched_smt_power_savings_show,
Adrian Bunk6707de002007-08-12 18:08:19 +02007920 sched_smt_power_savings_store);
7921#endif
7922
Li Zefan39aac642009-01-05 19:18:02 +08007923int __init sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007924{
7925 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07007926
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007927#ifdef CONFIG_SCHED_SMT
7928 if (smt_capable())
7929 err = sysfs_create_file(&cls->kset.kobj,
7930 &attr_sched_smt_power_savings.attr);
7931#endif
7932#ifdef CONFIG_SCHED_MC
7933 if (!err && mc_capable())
7934 err = sysfs_create_file(&cls->kset.kobj,
7935 &attr_sched_mc_power_savings.attr);
7936#endif
7937 return err;
7938}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02007939#endif /* CONFIG_SCHED_MC || CONFIG_SCHED_SMT */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07007940
Linus Torvalds1da177e2005-04-16 15:20:36 -07007941/*
Tejun Heo3a101d02010-06-08 21:40:36 +02007942 * Update cpusets according to cpu_active mask. If cpusets are
7943 * disabled, cpuset_update_active_cpus() becomes a simple wrapper
7944 * around partition_sched_domains().
Linus Torvalds1da177e2005-04-16 15:20:36 -07007945 */
Tejun Heo0b2e9182010-06-21 23:53:31 +02007946static int cpuset_cpu_active(struct notifier_block *nfb, unsigned long action,
7947 void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007948{
Tejun Heo3a101d02010-06-08 21:40:36 +02007949 switch (action & ~CPU_TASKS_FROZEN) {
Max Krasnyanskye761b772008-07-15 04:43:49 -07007950 case CPU_ONLINE:
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01007951 case CPU_DOWN_FAILED:
Tejun Heo3a101d02010-06-08 21:40:36 +02007952 cpuset_update_active_cpus();
Max Krasnyanskye761b772008-07-15 04:43:49 -07007953 return NOTIFY_OK;
Max Krasnyanskye761b772008-07-15 04:43:49 -07007954 default:
7955 return NOTIFY_DONE;
7956 }
7957}
Tejun Heo3a101d02010-06-08 21:40:36 +02007958
Tejun Heo0b2e9182010-06-21 23:53:31 +02007959static int cpuset_cpu_inactive(struct notifier_block *nfb, unsigned long action,
7960 void *hcpu)
Tejun Heo3a101d02010-06-08 21:40:36 +02007961{
7962 switch (action & ~CPU_TASKS_FROZEN) {
7963 case CPU_DOWN_PREPARE:
7964 cpuset_update_active_cpus();
7965 return NOTIFY_OK;
7966 default:
7967 return NOTIFY_DONE;
7968 }
7969}
Max Krasnyanskye761b772008-07-15 04:43:49 -07007970
7971static int update_runtime(struct notifier_block *nfb,
7972 unsigned long action, void *hcpu)
7973{
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007974 int cpu = (int)(long)hcpu;
7975
Linus Torvalds1da177e2005-04-16 15:20:36 -07007976 switch (action) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007977 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007978 case CPU_DOWN_PREPARE_FROZEN:
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007979 disable_runtime(cpu_rq(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07007980 return NOTIFY_OK;
7981
Linus Torvalds1da177e2005-04-16 15:20:36 -07007982 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007983 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07007984 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007985 case CPU_ONLINE_FROZEN:
Peter Zijlstra7def2be2008-06-05 14:49:58 +02007986 enable_runtime(cpu_rq(cpu));
Max Krasnyanskye761b772008-07-15 04:43:49 -07007987 return NOTIFY_OK;
7988
Linus Torvalds1da177e2005-04-16 15:20:36 -07007989 default:
7990 return NOTIFY_DONE;
7991 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007992}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007993
7994void __init sched_init_smp(void)
7995{
Rusty Russelldcc30a32008-11-25 02:35:12 +10307996 cpumask_var_t non_isolated_cpus;
7997
7998 alloc_cpumask_var(&non_isolated_cpus, GFP_KERNEL);
Yong Zhangcb5fd132009-09-14 20:20:16 +08007999 alloc_cpumask_var(&fallback_doms, GFP_KERNEL);
Nick Piggin5c1e1762006-10-03 01:14:04 -07008000
Gautham R Shenoy95402b32008-01-25 21:08:02 +01008001 get_online_cpus();
Heiko Carstens712555e2008-04-28 11:33:07 +02008002 mutex_lock(&sched_domains_mutex);
Peter Zijlstrac4a88492011-04-07 14:09:42 +02008003 init_sched_domains(cpu_active_mask);
Rusty Russelldcc30a32008-11-25 02:35:12 +10308004 cpumask_andnot(non_isolated_cpus, cpu_possible_mask, cpu_isolated_map);
8005 if (cpumask_empty(non_isolated_cpus))
8006 cpumask_set_cpu(smp_processor_id(), non_isolated_cpus);
Heiko Carstens712555e2008-04-28 11:33:07 +02008007 mutex_unlock(&sched_domains_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01008008 put_online_cpus();
Max Krasnyanskye761b772008-07-15 04:43:49 -07008009
Tejun Heo3a101d02010-06-08 21:40:36 +02008010 hotcpu_notifier(cpuset_cpu_active, CPU_PRI_CPUSET_ACTIVE);
8011 hotcpu_notifier(cpuset_cpu_inactive, CPU_PRI_CPUSET_INACTIVE);
Max Krasnyanskye761b772008-07-15 04:43:49 -07008012
8013 /* RT runtime code needs to handle some hotplug events */
8014 hotcpu_notifier(update_runtime, 0);
8015
Peter Zijlstrab328ca12008-04-29 10:02:46 +02008016 init_hrtick();
Nick Piggin5c1e1762006-10-03 01:14:04 -07008017
8018 /* Move init over to a non-isolated CPU */
Rusty Russelldcc30a32008-11-25 02:35:12 +10308019 if (set_cpus_allowed_ptr(current, non_isolated_cpus) < 0)
Nick Piggin5c1e1762006-10-03 01:14:04 -07008020 BUG();
Ingo Molnar19978ca2007-11-09 22:39:38 +01008021 sched_init_granularity();
Rusty Russelldcc30a32008-11-25 02:35:12 +10308022 free_cpumask_var(non_isolated_cpus);
Rusty Russell42128232008-11-25 02:35:12 +10308023
Rusty Russell0e3900e2008-11-25 02:35:13 +10308024 init_sched_rt_class();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008025}
8026#else
8027void __init sched_init_smp(void)
8028{
Ingo Molnar19978ca2007-11-09 22:39:38 +01008029 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008030}
8031#endif /* CONFIG_SMP */
8032
Arun R Bharadwajcd1bb942009-04-16 12:15:34 +05308033const_debug unsigned int sysctl_timer_migration = 1;
8034
Linus Torvalds1da177e2005-04-16 15:20:36 -07008035int in_sched_functions(unsigned long addr)
8036{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008037 return in_lock_functions(addr) ||
8038 (addr >= (unsigned long)__sched_text_start
8039 && addr < (unsigned long)__sched_text_end);
8040}
8041
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02008042static void init_cfs_rq(struct cfs_rq *cfs_rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02008043{
8044 cfs_rq->tasks_timeline = RB_ROOT;
Peter Zijlstra4a55bd52008-04-19 19:45:00 +02008045 INIT_LIST_HEAD(&cfs_rq->tasks);
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02008046 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Peter Zijlstrac64be782011-07-11 16:28:50 +02008047#ifndef CONFIG_64BIT
8048 cfs_rq->min_vruntime_copy = cfs_rq->min_vruntime;
8049#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02008050}
8051
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008052static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq)
8053{
8054 struct rt_prio_array *array;
8055 int i;
8056
8057 array = &rt_rq->active;
8058 for (i = 0; i < MAX_RT_PRIO; i++) {
8059 INIT_LIST_HEAD(array->queue + i);
8060 __clear_bit(i, array->bitmap);
8061 }
8062 /* delimiter for bitsearch: */
8063 __set_bit(MAX_RT_PRIO, array->bitmap);
8064
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02008065#if defined CONFIG_SMP
Gregory Haskinse864c492008-12-29 09:39:49 -05008066 rt_rq->highest_prio.curr = MAX_RT_PRIO;
8067 rt_rq->highest_prio.next = MAX_RT_PRIO;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008068 rt_rq->rt_nr_migratory = 0;
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008069 rt_rq->overloaded = 0;
Dima Zavin732375c2011-07-07 17:27:59 -07008070 plist_head_init(&rt_rq->pushable_tasks);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008071#endif
8072
8073 rt_rq->rt_time = 0;
8074 rt_rq->rt_throttled = 0;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008075 rt_rq->rt_runtime = 0;
Thomas Gleixner0986b112009-11-17 15:32:06 +01008076 raw_spin_lock_init(&rt_rq->rt_runtime_lock);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008077}
8078
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008079#ifdef CONFIG_FAIR_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008080static void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq,
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08008081 struct sched_entity *se, int cpu,
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008082 struct sched_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008083{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008084 struct rq *rq = cpu_rq(cpu);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008085
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02008086 cfs_rq->tg = tg;
8087 cfs_rq->rq = rq;
8088#ifdef CONFIG_SMP
8089 /* allow initial update_cfs_load() to truncate */
8090 cfs_rq->load_stamp = 1;
8091#endif
Paul Turnerab84d312011-07-21 09:43:28 -07008092 init_cfs_rq_runtime(cfs_rq);
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02008093
8094 tg->cfs_rq[cpu] = cfs_rq;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008095 tg->se[cpu] = se;
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02008096
Yong Zhang07e06b02011-01-07 15:17:36 +08008097 /* se could be NULL for root_task_group */
Dhaval Giani354d60c2008-04-19 19:44:59 +02008098 if (!se)
8099 return;
8100
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008101 if (!parent)
8102 se->cfs_rq = &rq->cfs;
8103 else
8104 se->cfs_rq = parent->my_q;
8105
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008106 se->my_q = cfs_rq;
Paul Turner94371782010-11-15 15:47:10 -08008107 update_load_set(&se->load, 0);
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008108 se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008109}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008110#endif
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008111
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008112#ifdef CONFIG_RT_GROUP_SCHED
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008113static void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq,
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08008114 struct sched_rt_entity *rt_se, int cpu,
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008115 struct sched_rt_entity *parent)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008116{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008117 struct rq *rq = cpu_rq(cpu);
8118
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02008119 rt_rq->highest_prio.curr = MAX_RT_PRIO;
8120 rt_rq->rt_nr_boosted = 0;
8121 rt_rq->rq = rq;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008122 rt_rq->tg = tg;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008123
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02008124 tg->rt_rq[cpu] = rt_rq;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008125 tg->rt_se[cpu] = rt_se;
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02008126
Dhaval Giani354d60c2008-04-19 19:44:59 +02008127 if (!rt_se)
8128 return;
8129
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008130 if (!parent)
8131 rt_se->rt_rq = &rq->rt;
8132 else
8133 rt_se->rt_rq = parent->my_q;
8134
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008135 rt_se->my_q = rt_rq;
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008136 rt_se->parent = parent;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008137 INIT_LIST_HEAD(&rt_se->run_list);
8138}
8139#endif
8140
Linus Torvalds1da177e2005-04-16 15:20:36 -07008141void __init sched_init(void)
8142{
Ingo Molnardd41f592007-07-09 18:51:59 +02008143 int i, j;
Mike Travis434d53b2008-04-04 18:11:04 -07008144 unsigned long alloc_size = 0, ptr;
8145
8146#ifdef CONFIG_FAIR_GROUP_SCHED
8147 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
8148#endif
8149#ifdef CONFIG_RT_GROUP_SCHED
8150 alloc_size += 2 * nr_cpu_ids * sizeof(void **);
8151#endif
Rusty Russelldf7c8e82009-03-19 15:22:20 +10308152#ifdef CONFIG_CPUMASK_OFFSTACK
Rusty Russell8c083f02009-03-19 15:22:20 +10308153 alloc_size += num_possible_cpus() * cpumask_size();
Rusty Russelldf7c8e82009-03-19 15:22:20 +10308154#endif
Mike Travis434d53b2008-04-04 18:11:04 -07008155 if (alloc_size) {
Pekka Enberg36b7b6d2009-06-10 23:42:36 +03008156 ptr = (unsigned long)kzalloc(alloc_size, GFP_NOWAIT);
Mike Travis434d53b2008-04-04 18:11:04 -07008157
8158#ifdef CONFIG_FAIR_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08008159 root_task_group.se = (struct sched_entity **)ptr;
Mike Travis434d53b2008-04-04 18:11:04 -07008160 ptr += nr_cpu_ids * sizeof(void **);
8161
Yong Zhang07e06b02011-01-07 15:17:36 +08008162 root_task_group.cfs_rq = (struct cfs_rq **)ptr;
Mike Travis434d53b2008-04-04 18:11:04 -07008163 ptr += nr_cpu_ids * sizeof(void **);
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008164
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008165#endif /* CONFIG_FAIR_GROUP_SCHED */
Mike Travis434d53b2008-04-04 18:11:04 -07008166#ifdef CONFIG_RT_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08008167 root_task_group.rt_se = (struct sched_rt_entity **)ptr;
Mike Travis434d53b2008-04-04 18:11:04 -07008168 ptr += nr_cpu_ids * sizeof(void **);
8169
Yong Zhang07e06b02011-01-07 15:17:36 +08008170 root_task_group.rt_rq = (struct rt_rq **)ptr;
Peter Zijlstraeff766a2008-04-19 19:45:00 +02008171 ptr += nr_cpu_ids * sizeof(void **);
8172
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008173#endif /* CONFIG_RT_GROUP_SCHED */
Rusty Russelldf7c8e82009-03-19 15:22:20 +10308174#ifdef CONFIG_CPUMASK_OFFSTACK
8175 for_each_possible_cpu(i) {
8176 per_cpu(load_balance_tmpmask, i) = (void *)ptr;
8177 ptr += cpumask_size();
8178 }
8179#endif /* CONFIG_CPUMASK_OFFSTACK */
Mike Travis434d53b2008-04-04 18:11:04 -07008180 }
Ingo Molnardd41f592007-07-09 18:51:59 +02008181
Gregory Haskins57d885f2008-01-25 21:08:18 +01008182#ifdef CONFIG_SMP
8183 init_defrootdomain();
8184#endif
8185
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008186 init_rt_bandwidth(&def_rt_bandwidth,
8187 global_rt_period(), global_rt_runtime());
8188
8189#ifdef CONFIG_RT_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08008190 init_rt_bandwidth(&root_task_group.rt_bandwidth,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008191 global_rt_period(), global_rt_runtime());
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008192#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008193
Dhaval Giani7c941432010-01-20 13:26:18 +01008194#ifdef CONFIG_CGROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08008195 list_add(&root_task_group.list, &task_groups);
8196 INIT_LIST_HEAD(&root_task_group.children);
Mike Galbraith5091faa2010-11-30 14:18:03 +01008197 autogroup_init(&init_task);
Dhaval Giani7c941432010-01-20 13:26:18 +01008198#endif /* CONFIG_CGROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008199
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08008200 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07008201 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008202
8203 rq = cpu_rq(i);
Thomas Gleixner05fa7852009-11-17 14:28:38 +01008204 raw_spin_lock_init(&rq->lock);
Nick Piggin78979862005-06-25 14:57:13 -07008205 rq->nr_running = 0;
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02008206 rq->calc_load_active = 0;
8207 rq->calc_load_update = jiffies + LOAD_FREQ;
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02008208 init_cfs_rq(&rq->cfs);
Peter Zijlstrafa85ae22008-01-25 21:08:29 +01008209 init_rt_rq(&rq->rt, rq);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008210#ifdef CONFIG_FAIR_GROUP_SCHED
Yong Zhang07e06b02011-01-07 15:17:36 +08008211 root_task_group.shares = root_task_group_load;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008212 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008213 /*
Yong Zhang07e06b02011-01-07 15:17:36 +08008214 * How much cpu bandwidth does root_task_group get?
Dhaval Giani354d60c2008-04-19 19:44:59 +02008215 *
8216 * In case of task-groups formed thr' the cgroup filesystem, it
8217 * gets 100% of the cpu resources in the system. This overall
8218 * system cpu resource is divided among the tasks of
Yong Zhang07e06b02011-01-07 15:17:36 +08008219 * root_task_group and its child task-groups in a fair manner,
Dhaval Giani354d60c2008-04-19 19:44:59 +02008220 * based on each entity's (task or task-group's) weight
8221 * (se->load.weight).
8222 *
Yong Zhang07e06b02011-01-07 15:17:36 +08008223 * In other words, if root_task_group has 10 tasks of weight
Dhaval Giani354d60c2008-04-19 19:44:59 +02008224 * 1024) and two child groups A0 and A1 (of weight 1024 each),
8225 * then A0's share of the cpu resource is:
8226 *
Ingo Molnar0d905bc2009-05-04 19:13:30 +02008227 * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33%
Dhaval Giani354d60c2008-04-19 19:44:59 +02008228 *
Yong Zhang07e06b02011-01-07 15:17:36 +08008229 * We achieve this by letting root_task_group's tasks sit
8230 * directly in rq->cfs (i.e root_task_group->se[] = NULL).
Dhaval Giani354d60c2008-04-19 19:44:59 +02008231 */
Paul Turnerab84d312011-07-21 09:43:28 -07008232 init_cfs_bandwidth(&root_task_group.cfs_bandwidth);
Yong Zhang07e06b02011-01-07 15:17:36 +08008233 init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, NULL);
Dhaval Giani354d60c2008-04-19 19:44:59 +02008234#endif /* CONFIG_FAIR_GROUP_SCHED */
8235
8236 rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008237#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008238 INIT_LIST_HEAD(&rq->leaf_rt_rq_list);
Yong Zhang07e06b02011-01-07 15:17:36 +08008239 init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, NULL);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008240#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07008241
Ingo Molnardd41f592007-07-09 18:51:59 +02008242 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
8243 rq->cpu_load[j] = 0;
Venkatesh Pallipadifdf3e952010-05-17 18:14:43 -07008244
8245 rq->last_load_update_tick = jiffies;
8246
Linus Torvalds1da177e2005-04-16 15:20:36 -07008247#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07008248 rq->sd = NULL;
Gregory Haskins57d885f2008-01-25 21:08:18 +01008249 rq->rd = NULL;
Nikhil Rao1399fa72011-05-18 10:09:39 -07008250 rq->cpu_power = SCHED_POWER_SCALE;
Gregory Haskins3f029d32009-07-29 11:08:47 -04008251 rq->post_schedule = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008252 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02008253 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008254 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07008255 rq->cpu = i;
Gregory Haskins1f11eb62008-06-04 15:04:05 -04008256 rq->online = 0;
Mike Galbraitheae0c9d2009-11-10 03:50:02 +01008257 rq->idle_stamp = 0;
8258 rq->avg_idle = 2*sysctl_sched_migration_cost;
Gregory Haskinsdc938522008-01-25 21:08:26 +01008259 rq_attach_root(rq, &def_root_domain);
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07008260#ifdef CONFIG_NO_HZ
8261 rq->nohz_balance_kick = 0;
8262 init_sched_softirq_csd(&per_cpu(remote_sched_softirq_cb, i));
8263#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07008264#endif
Peter Zijlstra8f4d37e2008-01-25 21:08:29 +01008265 init_rq_hrtick(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008266 atomic_set(&rq->nr_iowait, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008267 }
8268
Peter Williams2dd73a42006-06-27 02:54:34 -07008269 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008270
Avi Kivitye107be32007-07-26 13:40:43 +02008271#ifdef CONFIG_PREEMPT_NOTIFIERS
8272 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
8273#endif
8274
Christoph Lameterc9819f42006-12-10 02:20:25 -08008275#ifdef CONFIG_SMP
Carlos R. Mafra962cf362008-05-15 11:15:37 -03008276 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains);
Christoph Lameterc9819f42006-12-10 02:20:25 -08008277#endif
8278
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008279#ifdef CONFIG_RT_MUTEXES
Dima Zavin732375c2011-07-07 17:27:59 -07008280 plist_head_init(&init_task.pi_waiters);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07008281#endif
8282
Linus Torvalds1da177e2005-04-16 15:20:36 -07008283 /*
8284 * The boot idle thread does lazy MMU switching as well:
8285 */
8286 atomic_inc(&init_mm.mm_count);
8287 enter_lazy_tlb(&init_mm, current);
8288
8289 /*
8290 * Make us the idle thread. Technically, schedule() should not be
8291 * called from this thread, however somewhere below it might be,
8292 * but because we are the idle thread, we just pick up running again
8293 * when this runqueue becomes "idle".
8294 */
8295 init_idle(current, smp_processor_id());
Thomas Gleixnerdce48a82009-04-11 10:43:41 +02008296
8297 calc_load_update = jiffies + LOAD_FREQ;
8298
Ingo Molnardd41f592007-07-09 18:51:59 +02008299 /*
8300 * During early bootup we pretend to be a normal task:
8301 */
8302 current->sched_class = &fair_sched_class;
Ingo Molnar6892b752008-02-13 14:02:36 +01008303
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10308304 /* Allocate the nohz_cpu_mask if CONFIG_CPUMASK_OFFSTACK */
Rusty Russell49557e62009-11-02 20:37:20 +10308305 zalloc_cpumask_var(&nohz_cpu_mask, GFP_NOWAIT);
Rusty Russellbf4d83f2008-11-25 09:57:51 +10308306#ifdef CONFIG_SMP
Peter Zijlstra4cb98832011-04-07 14:09:58 +02008307 zalloc_cpumask_var(&sched_domains_tmpmask, GFP_NOWAIT);
Rusty Russell7d1e6a92008-11-25 02:35:09 +10308308#ifdef CONFIG_NO_HZ
Venkatesh Pallipadi83cd4fe2010-05-21 17:09:41 -07008309 zalloc_cpumask_var(&nohz.idle_cpus_mask, GFP_NOWAIT);
8310 alloc_cpumask_var(&nohz.grp_idle_mask, GFP_NOWAIT);
8311 atomic_set(&nohz.load_balancer, nr_cpu_ids);
8312 atomic_set(&nohz.first_pick_cpu, nr_cpu_ids);
8313 atomic_set(&nohz.second_pick_cpu, nr_cpu_ids);
Rusty Russell7d1e6a92008-11-25 02:35:09 +10308314#endif
Rusty Russellbdddd292009-12-02 14:09:16 +10308315 /* May be allocated at isolcpus cmdline parse time */
8316 if (cpu_isolated_map == NULL)
8317 zalloc_cpumask_var(&cpu_isolated_map, GFP_NOWAIT);
Rusty Russellbf4d83f2008-11-25 09:57:51 +10308318#endif /* SMP */
Rusty Russell6a7b3dc2008-11-25 02:35:04 +10308319
Ingo Molnar6892b752008-02-13 14:02:36 +01008320 scheduler_running = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008321}
8322
Frederic Weisbeckerd902db12011-06-08 19:31:56 +02008323#ifdef CONFIG_DEBUG_ATOMIC_SLEEP
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02008324static inline int preempt_count_equals(int preempt_offset)
8325{
Frederic Weisbecker234da7b2009-12-16 20:21:05 +01008326 int nested = (preempt_count() & ~PREEMPT_ACTIVE) + rcu_preempt_depth();
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02008327
Arnd Bergmann4ba82162011-01-25 22:52:22 +01008328 return (nested == preempt_offset);
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02008329}
8330
Simon Kagstromd8948372009-12-23 11:08:18 +01008331void __might_sleep(const char *file, int line, int preempt_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008332{
Linus Torvalds1da177e2005-04-16 15:20:36 -07008333 static unsigned long prev_jiffy; /* ratelimiting */
8334
Frederic Weisbeckere4aafea2009-07-16 15:44:29 +02008335 if ((preempt_count_equals(preempt_offset) && !irqs_disabled()) ||
8336 system_state != SYSTEM_RUNNING || oops_in_progress)
Ingo Molnaraef745f2008-08-28 11:34:43 +02008337 return;
8338 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
8339 return;
8340 prev_jiffy = jiffies;
8341
Peter Zijlstra3df0fc52009-12-20 14:23:57 +01008342 printk(KERN_ERR
8343 "BUG: sleeping function called from invalid context at %s:%d\n",
8344 file, line);
8345 printk(KERN_ERR
8346 "in_atomic(): %d, irqs_disabled(): %d, pid: %d, name: %s\n",
8347 in_atomic(), irqs_disabled(),
8348 current->pid, current->comm);
Ingo Molnaraef745f2008-08-28 11:34:43 +02008349
8350 debug_show_held_locks(current);
8351 if (irqs_disabled())
8352 print_irqtrace_events(current);
8353 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008354}
8355EXPORT_SYMBOL(__might_sleep);
8356#endif
8357
8358#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008359static void normalize_task(struct rq *rq, struct task_struct *p)
8360{
Peter Zijlstrada7a7352011-01-17 17:03:27 +01008361 const struct sched_class *prev_class = p->sched_class;
8362 int old_prio = p->prio;
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008363 int on_rq;
Peter Zijlstra3e51f332008-05-03 18:29:28 +02008364
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02008365 on_rq = p->on_rq;
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008366 if (on_rq)
8367 deactivate_task(rq, p, 0);
8368 __setscheduler(rq, p, SCHED_NORMAL, 0);
8369 if (on_rq) {
8370 activate_task(rq, p, 0);
8371 resched_task(rq->curr);
8372 }
Peter Zijlstrada7a7352011-01-17 17:03:27 +01008373
8374 check_class_changed(rq, p, prev_class, old_prio);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008375}
8376
Linus Torvalds1da177e2005-04-16 15:20:36 -07008377void normalize_rt_tasks(void)
8378{
Ingo Molnara0f98a12007-06-17 18:37:45 +02008379 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008380 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07008381 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008382
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008383 read_lock_irqsave(&tasklist_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008384 do_each_thread(g, p) {
Ingo Molnar178be792007-10-15 17:00:18 +02008385 /*
8386 * Only normalize user tasks:
8387 */
8388 if (!p->mm)
8389 continue;
8390
Ingo Molnardd41f592007-07-09 18:51:59 +02008391 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008392#ifdef CONFIG_SCHEDSTATS
Lucas De Marchi41acab82010-03-10 23:37:45 -03008393 p->se.statistics.wait_start = 0;
8394 p->se.statistics.sleep_start = 0;
8395 p->se.statistics.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02008396#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02008397
8398 if (!rt_task(p)) {
8399 /*
8400 * Renice negative nice level userspace
8401 * tasks back to 0:
8402 */
8403 if (TASK_NICE(p) < 0 && p->mm)
8404 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008405 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02008406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008407
Thomas Gleixner1d615482009-11-17 14:54:03 +01008408 raw_spin_lock(&p->pi_lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -07008409 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008410
Ingo Molnar178be792007-10-15 17:00:18 +02008411 normalize_task(rq, p);
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02008412
Ingo Molnarb29739f2006-06-27 02:54:51 -07008413 __task_rq_unlock(rq);
Thomas Gleixner1d615482009-11-17 14:54:03 +01008414 raw_spin_unlock(&p->pi_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02008415 } while_each_thread(g, p);
8416
Peter Zijlstra4cf5d772008-02-13 15:45:39 +01008417 read_unlock_irqrestore(&tasklist_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008418}
8419
8420#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07008421
Jason Wessel67fc4e02010-05-20 21:04:21 -05008422#if defined(CONFIG_IA64) || defined(CONFIG_KGDB_KDB)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008423/*
Jason Wessel67fc4e02010-05-20 21:04:21 -05008424 * These functions are only useful for the IA64 MCA handling, or kdb.
Linus Torvalds1df5c102005-09-12 07:59:21 -07008425 *
8426 * They can only be called when the whole system has been
8427 * stopped - every CPU needs to be quiescent, and no scheduling
8428 * activity can take place. Using them for anything else would
8429 * be a serious bug, and as a result, they aren't even visible
8430 * under any other configuration.
8431 */
8432
8433/**
8434 * curr_task - return the current task for a given cpu.
8435 * @cpu: the processor in question.
8436 *
8437 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8438 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008439struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008440{
8441 return cpu_curr(cpu);
8442}
8443
Jason Wessel67fc4e02010-05-20 21:04:21 -05008444#endif /* defined(CONFIG_IA64) || defined(CONFIG_KGDB_KDB) */
8445
8446#ifdef CONFIG_IA64
Linus Torvalds1df5c102005-09-12 07:59:21 -07008447/**
8448 * set_curr_task - set the current task for a given cpu.
8449 * @cpu: the processor in question.
8450 * @p: the task pointer to set.
8451 *
8452 * Description: This function must only be used when non-maskable interrupts
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01008453 * are serviced on a separate stack. It allows the architecture to switch the
8454 * notion of the current task on a cpu in a non-blocking manner. This function
Linus Torvalds1df5c102005-09-12 07:59:21 -07008455 * must be called with all CPU's synchronized, and interrupts disabled, the
8456 * and caller must save the original value of the current task (see
8457 * curr_task() above) and restore that value before reenabling interrupts and
8458 * re-starting the system.
8459 *
8460 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
8461 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07008462void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07008463{
8464 cpu_curr(cpu) = p;
8465}
8466
8467#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008468
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008469#ifdef CONFIG_FAIR_GROUP_SCHED
8470static void free_fair_sched_group(struct task_group *tg)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008471{
8472 int i;
8473
Paul Turnerab84d312011-07-21 09:43:28 -07008474 destroy_cfs_bandwidth(tg_cfs_bandwidth(tg));
8475
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008476 for_each_possible_cpu(i) {
8477 if (tg->cfs_rq)
8478 kfree(tg->cfs_rq[i]);
8479 if (tg->se)
8480 kfree(tg->se[i]);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008481 }
8482
8483 kfree(tg->cfs_rq);
8484 kfree(tg->se);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008485}
8486
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008487static
8488int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008489{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008490 struct cfs_rq *cfs_rq;
Li Zefaneab17222008-10-29 17:03:22 +08008491 struct sched_entity *se;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008492 int i;
8493
Mike Travis434d53b2008-04-04 18:11:04 -07008494 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008495 if (!tg->cfs_rq)
8496 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008497 tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008498 if (!tg->se)
8499 goto err;
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008500
8501 tg->shares = NICE_0_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008502
Paul Turnerab84d312011-07-21 09:43:28 -07008503 init_cfs_bandwidth(tg_cfs_bandwidth(tg));
8504
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008505 for_each_possible_cpu(i) {
Li Zefaneab17222008-10-29 17:03:22 +08008506 cfs_rq = kzalloc_node(sizeof(struct cfs_rq),
8507 GFP_KERNEL, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008508 if (!cfs_rq)
8509 goto err;
8510
Li Zefaneab17222008-10-29 17:03:22 +08008511 se = kzalloc_node(sizeof(struct sched_entity),
8512 GFP_KERNEL, cpu_to_node(i));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008513 if (!se)
Phil Carmodydfc12eb2009-12-10 14:29:37 +02008514 goto err_free_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008515
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02008516 init_cfs_rq(cfs_rq);
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08008517 init_tg_cfs_entry(tg, cfs_rq, se, i, parent->se[i]);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008518 }
8519
8520 return 1;
8521
Peter Zijlstra49246272010-10-17 21:46:10 +02008522err_free_rq:
Phil Carmodydfc12eb2009-12-10 14:29:37 +02008523 kfree(cfs_rq);
Peter Zijlstra49246272010-10-17 21:46:10 +02008524err:
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008525 return 0;
8526}
8527
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008528static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8529{
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08008530 struct rq *rq = cpu_rq(cpu);
8531 unsigned long flags;
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08008532
8533 /*
8534 * Only empty task groups can be destroyed; so we can speculatively
8535 * check on_list without danger of it being re-added.
8536 */
8537 if (!tg->cfs_rq[cpu]->on_list)
8538 return;
8539
8540 raw_spin_lock_irqsave(&rq->lock, flags);
Paul Turner822bc182010-11-29 16:55:40 -08008541 list_del_leaf_cfs_rq(tg->cfs_rq[cpu]);
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08008542 raw_spin_unlock_irqrestore(&rq->lock, flags);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008543}
Jan Schoenherr5f817d62011-07-13 20:13:31 +02008544#else /* !CONFIG_FAIR_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008545static inline void free_fair_sched_group(struct task_group *tg)
8546{
8547}
8548
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008549static inline
8550int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008551{
8552 return 1;
8553}
8554
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008555static inline void unregister_fair_sched_group(struct task_group *tg, int cpu)
8556{
8557}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008558#endif /* CONFIG_FAIR_GROUP_SCHED */
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008559
8560#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008561static void free_rt_sched_group(struct task_group *tg)
8562{
8563 int i;
8564
Bianca Lutz99bc5242011-07-13 20:13:36 +02008565 if (tg->rt_se)
8566 destroy_rt_bandwidth(&tg->rt_bandwidth);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008567
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008568 for_each_possible_cpu(i) {
8569 if (tg->rt_rq)
8570 kfree(tg->rt_rq[i]);
8571 if (tg->rt_se)
8572 kfree(tg->rt_se[i]);
8573 }
8574
8575 kfree(tg->rt_rq);
8576 kfree(tg->rt_se);
8577}
8578
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008579static
8580int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008581{
8582 struct rt_rq *rt_rq;
Li Zefaneab17222008-10-29 17:03:22 +08008583 struct sched_rt_entity *rt_se;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008584 int i;
8585
Mike Travis434d53b2008-04-04 18:11:04 -07008586 tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008587 if (!tg->rt_rq)
8588 goto err;
Mike Travis434d53b2008-04-04 18:11:04 -07008589 tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008590 if (!tg->rt_se)
8591 goto err;
8592
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008593 init_rt_bandwidth(&tg->rt_bandwidth,
8594 ktime_to_ns(def_rt_bandwidth.rt_period), 0);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008595
8596 for_each_possible_cpu(i) {
Li Zefaneab17222008-10-29 17:03:22 +08008597 rt_rq = kzalloc_node(sizeof(struct rt_rq),
8598 GFP_KERNEL, cpu_to_node(i));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008599 if (!rt_rq)
8600 goto err;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008601
Li Zefaneab17222008-10-29 17:03:22 +08008602 rt_se = kzalloc_node(sizeof(struct sched_rt_entity),
8603 GFP_KERNEL, cpu_to_node(i));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008604 if (!rt_se)
Phil Carmodydfc12eb2009-12-10 14:29:37 +02008605 goto err_free_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008606
Jan H. Schönherracb5a9b2011-07-14 18:32:43 +02008607 init_rt_rq(rt_rq, cpu_rq(i));
8608 rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08008609 init_tg_rt_entry(tg, rt_rq, rt_se, i, parent->rt_se[i]);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008610 }
8611
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008612 return 1;
8613
Peter Zijlstra49246272010-10-17 21:46:10 +02008614err_free_rq:
Phil Carmodydfc12eb2009-12-10 14:29:37 +02008615 kfree(rt_rq);
Peter Zijlstra49246272010-10-17 21:46:10 +02008616err:
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008617 return 0;
8618}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008619#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008620static inline void free_rt_sched_group(struct task_group *tg)
8621{
8622}
8623
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008624static inline
8625int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008626{
8627 return 1;
8628}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008629#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008630
Dhaval Giani7c941432010-01-20 13:26:18 +01008631#ifdef CONFIG_CGROUP_SCHED
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008632static void free_sched_group(struct task_group *tg)
8633{
8634 free_fair_sched_group(tg);
8635 free_rt_sched_group(tg);
Mike Galbraithe9aa1dd2011-01-05 11:11:25 +01008636 autogroup_free(tg);
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008637 kfree(tg);
8638}
8639
8640/* allocate runqueue etc for a new task group */
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008641struct task_group *sched_create_group(struct task_group *parent)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008642{
8643 struct task_group *tg;
8644 unsigned long flags;
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008645
8646 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
8647 if (!tg)
8648 return ERR_PTR(-ENOMEM);
8649
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008650 if (!alloc_fair_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008651 goto err;
8652
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008653 if (!alloc_rt_sched_group(tg, parent))
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008654 goto err;
8655
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008656 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008657 list_add_rcu(&tg->list, &task_groups);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008658
8659 WARN_ON(!parent); /* root should already exist */
8660
8661 tg->parent = parent;
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008662 INIT_LIST_HEAD(&tg->children);
Zhang, Yanmin09f27242030-08-14 15:56:40 +08008663 list_add_rcu(&tg->siblings, &parent->children);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008664 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008665
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008666 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008667
8668err:
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008669 free_sched_group(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008670 return ERR_PTR(-ENOMEM);
8671}
8672
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008673/* rcu callback to free various structures associated with a task group */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008674static void free_sched_group_rcu(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008675{
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008676 /* now it should be safe to free those cfs_rqs */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008677 free_sched_group(container_of(rhp, struct task_group, rcu));
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008678}
8679
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008680/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008681void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008682{
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008683 unsigned long flags;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008684 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008685
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08008686 /* end participation in shares distribution */
8687 for_each_possible_cpu(i)
Peter Zijlstrabccbe082008-02-13 15:45:40 +01008688 unregister_fair_sched_group(tg, i);
Peter Zijlstra3d4b47b2010-11-15 15:47:01 -08008689
8690 spin_lock_irqsave(&task_group_lock, flags);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008691 list_del_rcu(&tg->list);
Peter Zijlstraf473aa52008-04-19 19:45:00 +02008692 list_del_rcu(&tg->siblings);
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008693 spin_unlock_irqrestore(&task_group_lock, flags);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008694
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008695 /* wait for possible concurrent references to cfs_rqs complete */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008696 call_rcu(&tg->rcu, free_sched_group_rcu);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008697}
8698
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008699/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02008700 * The caller of this function should have put the task in its new group
8701 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
8702 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008703 */
8704void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008705{
8706 int on_rq, running;
8707 unsigned long flags;
8708 struct rq *rq;
8709
8710 rq = task_rq_lock(tsk, &flags);
8711
Dmitry Adamushko051a1d12007-12-18 15:21:13 +01008712 running = task_current(rq, tsk);
Peter Zijlstrafd2f4412011-04-05 17:23:44 +02008713 on_rq = tsk->on_rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008714
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008715 if (on_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008716 dequeue_task(rq, tsk, 0);
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008717 if (unlikely(running))
8718 tsk->sched_class->put_prev_task(rq, tsk);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008719
Peter Zijlstra810b3812008-02-29 15:21:01 -05008720#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstrab2b5ce02010-10-15 15:24:15 +02008721 if (tsk->sched_class->task_move_group)
8722 tsk->sched_class->task_move_group(tsk, on_rq);
8723 else
Peter Zijlstra810b3812008-02-29 15:21:01 -05008724#endif
Peter Zijlstrab2b5ce02010-10-15 15:24:15 +02008725 set_task_rq(tsk, task_cpu(tsk));
Peter Zijlstra810b3812008-02-29 15:21:01 -05008726
Hiroshi Shimamoto0e1f3482008-03-10 11:01:20 -07008727 if (unlikely(running))
8728 tsk->sched_class->set_curr_task(rq);
8729 if (on_rq)
Peter Zijlstra371fd7e2010-03-24 16:38:48 +01008730 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008731
Peter Zijlstra0122ec52011-04-05 17:23:51 +02008732 task_rq_unlock(rq, tsk, &flags);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008733}
Dhaval Giani7c941432010-01-20 13:26:18 +01008734#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008735
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008736#ifdef CONFIG_FAIR_GROUP_SCHED
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008737static DEFINE_MUTEX(shares_mutex);
8738
Ingo Molnar4cf86d72007-10-15 17:00:14 +02008739int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008740{
8741 int i;
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008742 unsigned long flags;
Ingo Molnarc61935f2008-01-22 11:24:58 +01008743
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008744 /*
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02008745 * We can't change the weight of the root cgroup.
8746 */
8747 if (!tg->se[0])
8748 return -EINVAL;
8749
Mike Galbraithcd622872011-06-04 15:03:20 +02008750 shares = clamp(shares, scale_load(MIN_SHARES), scale_load(MAX_SHARES));
Peter Zijlstra62fb1852008-02-25 17:34:02 +01008751
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008752 mutex_lock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008753 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008754 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008755
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008756 tg->shares = shares;
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008757 for_each_possible_cpu(i) {
Paul Turner94371782010-11-15 15:47:10 -08008758 struct rq *rq = cpu_rq(i);
8759 struct sched_entity *se;
8760
8761 se = tg->se[i];
8762 /* Propagate contribution to hierarchy */
8763 raw_spin_lock_irqsave(&rq->lock, flags);
8764 for_each_sched_entity(se)
Paul Turner6d5ab292011-01-21 20:45:01 -08008765 update_cfs_shares(group_cfs_rq(se));
Paul Turner94371782010-11-15 15:47:10 -08008766 raw_spin_unlock_irqrestore(&rq->lock, flags);
Peter Zijlstrac09595f2008-06-27 13:41:14 +02008767 }
Srivatsa Vaddagiri6b2d7702008-01-25 21:08:00 +01008768
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008769done:
Peter Zijlstra8ed36992008-02-13 15:45:39 +01008770 mutex_unlock(&shares_mutex);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02008771 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02008772}
8773
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008774unsigned long sched_group_shares(struct task_group *tg)
8775{
8776 return tg->shares;
8777}
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01008778#endif
Dhaval Giani5cb350b2007-10-15 17:00:14 +02008779
Paul Turnera790de92011-07-21 09:43:29 -07008780#if defined(CONFIG_RT_GROUP_SCHED) || defined(CONFIG_CFS_BANDWIDTH)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008781static unsigned long to_ratio(u64 period, u64 runtime)
8782{
8783 if (runtime == RUNTIME_INF)
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008784 return 1ULL << 20;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008785
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008786 return div64_u64(runtime << 20, period);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008787}
Paul Turnera790de92011-07-21 09:43:29 -07008788#endif
8789
8790#ifdef CONFIG_RT_GROUP_SCHED
8791/*
8792 * Ensure that the real time constraints are schedulable.
8793 */
8794static DEFINE_MUTEX(rt_constraints_mutex);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008795
Dhaval Giani521f1a242008-02-28 15:21:56 +05308796/* Must be called with tasklist_lock held */
8797static inline int tg_has_rt_tasks(struct task_group *tg)
8798{
8799 struct task_struct *g, *p;
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008800
Dhaval Giani521f1a242008-02-28 15:21:56 +05308801 do_each_thread(g, p) {
8802 if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg)
8803 return 1;
8804 } while_each_thread(g, p);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008805
Dhaval Giani521f1a242008-02-28 15:21:56 +05308806 return 0;
8807}
8808
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008809struct rt_schedulable_data {
8810 struct task_group *tg;
8811 u64 rt_period;
8812 u64 rt_runtime;
8813};
8814
Paul Turnera790de92011-07-21 09:43:29 -07008815static int tg_rt_schedulable(struct task_group *tg, void *data)
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008816{
8817 struct rt_schedulable_data *d = data;
8818 struct task_group *child;
8819 unsigned long total, sum = 0;
8820 u64 period, runtime;
8821
8822 period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8823 runtime = tg->rt_bandwidth.rt_runtime;
8824
8825 if (tg == d->tg) {
8826 period = d->rt_period;
8827 runtime = d->rt_runtime;
8828 }
8829
Peter Zijlstra4653f802008-09-23 15:33:44 +02008830 /*
8831 * Cannot have more runtime than the period.
8832 */
8833 if (runtime > period && runtime != RUNTIME_INF)
8834 return -EINVAL;
8835
8836 /*
8837 * Ensure we don't starve existing RT tasks.
8838 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008839 if (rt_bandwidth_enabled() && !runtime && tg_has_rt_tasks(tg))
8840 return -EBUSY;
8841
8842 total = to_ratio(period, runtime);
8843
Peter Zijlstra4653f802008-09-23 15:33:44 +02008844 /*
8845 * Nobody can have more than the global setting allows.
8846 */
8847 if (total > to_ratio(global_rt_period(), global_rt_runtime()))
8848 return -EINVAL;
8849
8850 /*
8851 * The sum of our children's runtime should not exceed our own.
8852 */
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008853 list_for_each_entry_rcu(child, &tg->children, siblings) {
8854 period = ktime_to_ns(child->rt_bandwidth.rt_period);
8855 runtime = child->rt_bandwidth.rt_runtime;
8856
8857 if (child == d->tg) {
8858 period = d->rt_period;
8859 runtime = d->rt_runtime;
8860 }
8861
8862 sum += to_ratio(period, runtime);
8863 }
8864
8865 if (sum > total)
8866 return -EINVAL;
8867
8868 return 0;
8869}
8870
8871static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime)
8872{
8873 struct rt_schedulable_data data = {
8874 .tg = tg,
8875 .rt_period = period,
8876 .rt_runtime = runtime,
8877 };
8878
Paul Turnera790de92011-07-21 09:43:29 -07008879 return walk_tg_tree(tg_rt_schedulable, tg_nop, &data);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008880}
8881
Paul Turnerab84d312011-07-21 09:43:28 -07008882static int tg_set_rt_bandwidth(struct task_group *tg,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008883 u64 rt_period, u64 rt_runtime)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008884{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008885 int i, err = 0;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008886
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008887 mutex_lock(&rt_constraints_mutex);
Dhaval Giani521f1a242008-02-28 15:21:56 +05308888 read_lock(&tasklist_lock);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008889 err = __rt_schedulable(tg, rt_period, rt_runtime);
8890 if (err)
Dhaval Giani521f1a242008-02-28 15:21:56 +05308891 goto unlock;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008892
Thomas Gleixner0986b112009-11-17 15:32:06 +01008893 raw_spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008894 tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period);
8895 tg->rt_bandwidth.rt_runtime = rt_runtime;
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008896
8897 for_each_possible_cpu(i) {
8898 struct rt_rq *rt_rq = tg->rt_rq[i];
8899
Thomas Gleixner0986b112009-11-17 15:32:06 +01008900 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008901 rt_rq->rt_runtime = rt_runtime;
Thomas Gleixner0986b112009-11-17 15:32:06 +01008902 raw_spin_unlock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008903 }
Thomas Gleixner0986b112009-11-17 15:32:06 +01008904 raw_spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock);
Peter Zijlstra49246272010-10-17 21:46:10 +02008905unlock:
Dhaval Giani521f1a242008-02-28 15:21:56 +05308906 read_unlock(&tasklist_lock);
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008907 mutex_unlock(&rt_constraints_mutex);
8908
8909 return err;
Peter Zijlstra6f505b12008-01-25 21:08:30 +01008910}
8911
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008912int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us)
8913{
8914 u64 rt_runtime, rt_period;
8915
8916 rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period);
8917 rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC;
8918 if (rt_runtime_us < 0)
8919 rt_runtime = RUNTIME_INF;
8920
Paul Turnerab84d312011-07-21 09:43:28 -07008921 return tg_set_rt_bandwidth(tg, rt_period, rt_runtime);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008922}
8923
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008924long sched_group_rt_runtime(struct task_group *tg)
8925{
8926 u64 rt_runtime_us;
8927
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008928 if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF)
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008929 return -1;
8930
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008931 rt_runtime_us = tg->rt_bandwidth.rt_runtime;
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01008932 do_div(rt_runtime_us, NSEC_PER_USEC);
8933 return rt_runtime_us;
8934}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008935
8936int sched_group_set_rt_period(struct task_group *tg, long rt_period_us)
8937{
8938 u64 rt_runtime, rt_period;
8939
8940 rt_period = (u64)rt_period_us * NSEC_PER_USEC;
8941 rt_runtime = tg->rt_bandwidth.rt_runtime;
8942
Raistlin619b0482008-06-26 18:54:09 +02008943 if (rt_period == 0)
8944 return -EINVAL;
8945
Paul Turnerab84d312011-07-21 09:43:28 -07008946 return tg_set_rt_bandwidth(tg, rt_period, rt_runtime);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008947}
8948
8949long sched_group_rt_period(struct task_group *tg)
8950{
8951 u64 rt_period_us;
8952
8953 rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period);
8954 do_div(rt_period_us, NSEC_PER_USEC);
8955 return rt_period_us;
8956}
8957
8958static int sched_rt_global_constraints(void)
8959{
Peter Zijlstra4653f802008-09-23 15:33:44 +02008960 u64 runtime, period;
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008961 int ret = 0;
8962
Hiroshi Shimamotoec5d4982008-09-10 17:00:19 -07008963 if (sysctl_sched_rt_period <= 0)
8964 return -EINVAL;
8965
Peter Zijlstra4653f802008-09-23 15:33:44 +02008966 runtime = global_rt_runtime();
8967 period = global_rt_period();
8968
8969 /*
8970 * Sanity check on the sysctl variables.
8971 */
8972 if (runtime > period && runtime != RUNTIME_INF)
8973 return -EINVAL;
Peter Zijlstra10b612f2008-06-19 14:22:27 +02008974
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008975 mutex_lock(&rt_constraints_mutex);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008976 read_lock(&tasklist_lock);
Peter Zijlstra4653f802008-09-23 15:33:44 +02008977 ret = __rt_schedulable(NULL, 0, 0);
Peter Zijlstra9a7e0b12008-08-19 12:33:06 +02008978 read_unlock(&tasklist_lock);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008979 mutex_unlock(&rt_constraints_mutex);
8980
8981 return ret;
8982}
Dhaval Giani54e99122009-02-27 15:13:54 +05308983
8984int sched_rt_can_attach(struct task_group *tg, struct task_struct *tsk)
8985{
8986 /* Don't accept realtime tasks when there is no way for them to run */
8987 if (rt_task(tsk) && tg->rt_bandwidth.rt_runtime == 0)
8988 return 0;
8989
8990 return 1;
8991}
8992
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02008993#else /* !CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02008994static int sched_rt_global_constraints(void)
8995{
Peter Zijlstraac086bc2008-04-19 19:44:58 +02008996 unsigned long flags;
8997 int i;
8998
Hiroshi Shimamotoec5d4982008-09-10 17:00:19 -07008999 if (sysctl_sched_rt_period <= 0)
9000 return -EINVAL;
9001
Peter Zijlstra60aa6052009-05-05 17:50:21 +02009002 /*
9003 * There's always some RT tasks in the root group
9004 * -- migration, kstopmachine etc..
9005 */
9006 if (sysctl_sched_rt_runtime == 0)
9007 return -EBUSY;
9008
Thomas Gleixner0986b112009-11-17 15:32:06 +01009009 raw_spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009010 for_each_possible_cpu(i) {
9011 struct rt_rq *rt_rq = &cpu_rq(i)->rt;
9012
Thomas Gleixner0986b112009-11-17 15:32:06 +01009013 raw_spin_lock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009014 rt_rq->rt_runtime = global_rt_runtime();
Thomas Gleixner0986b112009-11-17 15:32:06 +01009015 raw_spin_unlock(&rt_rq->rt_runtime_lock);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009016 }
Thomas Gleixner0986b112009-11-17 15:32:06 +01009017 raw_spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags);
Peter Zijlstraac086bc2008-04-19 19:44:58 +02009018
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009019 return 0;
9020}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009021#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009022
9023int sched_rt_handler(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07009024 void __user *buffer, size_t *lenp,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009025 loff_t *ppos)
9026{
9027 int ret;
9028 int old_period, old_runtime;
9029 static DEFINE_MUTEX(mutex);
9030
9031 mutex_lock(&mutex);
9032 old_period = sysctl_sched_rt_period;
9033 old_runtime = sysctl_sched_rt_runtime;
9034
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07009035 ret = proc_dointvec(table, write, buffer, lenp, ppos);
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009036
9037 if (!ret && write) {
9038 ret = sched_rt_global_constraints();
9039 if (ret) {
9040 sysctl_sched_rt_period = old_period;
9041 sysctl_sched_rt_runtime = old_runtime;
9042 } else {
9043 def_rt_bandwidth.rt_runtime = global_rt_runtime();
9044 def_rt_bandwidth.rt_period =
9045 ns_to_ktime(global_rt_period());
9046 }
9047 }
9048 mutex_unlock(&mutex);
9049
9050 return ret;
9051}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009052
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009053#ifdef CONFIG_CGROUP_SCHED
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009054
9055/* return corresponding task_group object of a cgroup */
Paul Menage2b01dfe2007-10-24 18:23:50 +02009056static inline struct task_group *cgroup_tg(struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009057{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009058 return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id),
9059 struct task_group, css);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009060}
9061
9062static struct cgroup_subsys_state *
Paul Menage2b01dfe2007-10-24 18:23:50 +02009063cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009064{
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009065 struct task_group *tg, *parent;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009066
Paul Menage2b01dfe2007-10-24 18:23:50 +02009067 if (!cgrp->parent) {
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009068 /* This is early initialization for the top cgroup */
Yong Zhang07e06b02011-01-07 15:17:36 +08009069 return &root_task_group.css;
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009070 }
9071
Dhaval Gianiec7dc8a2008-04-19 19:44:59 +02009072 parent = cgroup_tg(cgrp->parent);
9073 tg = sched_create_group(parent);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009074 if (IS_ERR(tg))
9075 return ERR_PTR(-ENOMEM);
9076
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009077 return &tg->css;
9078}
9079
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009080static void
9081cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009082{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009083 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009084
9085 sched_destroy_group(tg);
9086}
9087
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009088static int
Ben Blumbe367d02009-09-23 15:56:31 -07009089cpu_cgroup_can_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009090{
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009091#ifdef CONFIG_RT_GROUP_SCHED
Dhaval Giani54e99122009-02-27 15:13:54 +05309092 if (!sched_rt_can_attach(cgroup_tg(cgrp), tsk))
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009093 return -EINVAL;
9094#else
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009095 /* We don't support RT-tasks being in separate groups */
9096 if (tsk->sched_class != &fair_sched_class)
9097 return -EINVAL;
Peter Zijlstrab68aa232008-02-13 15:45:40 +01009098#endif
Ben Blumbe367d02009-09-23 15:56:31 -07009099 return 0;
9100}
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009101
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009102static void
Ben Blumf780bdb2011-05-26 16:25:19 -07009103cpu_cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009104{
9105 sched_move_task(tsk);
9106}
9107
Peter Zijlstra068c5cc2011-01-19 12:26:11 +01009108static void
Peter Zijlstrad41d5a02011-02-07 17:02:20 +01009109cpu_cgroup_exit(struct cgroup_subsys *ss, struct cgroup *cgrp,
9110 struct cgroup *old_cgrp, struct task_struct *task)
Peter Zijlstra068c5cc2011-01-19 12:26:11 +01009111{
9112 /*
9113 * cgroup_exit() is called in the copy_process() failure path.
9114 * Ignore this case since the task hasn't ran yet, this avoids
9115 * trying to poke a half freed task state from generic code.
9116 */
9117 if (!(task->flags & PF_EXITING))
9118 return;
9119
9120 sched_move_task(task);
9121}
9122
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009123#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagef4c753b2008-04-29 00:59:56 -07009124static int cpu_shares_write_u64(struct cgroup *cgrp, struct cftype *cftype,
Paul Menage2b01dfe2007-10-24 18:23:50 +02009125 u64 shareval)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009126{
Nikhil Raoc8b28112011-05-18 14:37:48 -07009127 return sched_group_set_shares(cgroup_tg(cgrp), scale_load(shareval));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009128}
9129
Paul Menagef4c753b2008-04-29 00:59:56 -07009130static u64 cpu_shares_read_u64(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009131{
Paul Menage2b01dfe2007-10-24 18:23:50 +02009132 struct task_group *tg = cgroup_tg(cgrp);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009133
Nikhil Raoc8b28112011-05-18 14:37:48 -07009134 return (u64) scale_load_down(tg->shares);
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009135}
Paul Turnerab84d312011-07-21 09:43:28 -07009136
9137#ifdef CONFIG_CFS_BANDWIDTH
Paul Turnera790de92011-07-21 09:43:29 -07009138static DEFINE_MUTEX(cfs_constraints_mutex);
9139
Paul Turnerab84d312011-07-21 09:43:28 -07009140const u64 max_cfs_quota_period = 1 * NSEC_PER_SEC; /* 1s */
9141const u64 min_cfs_quota_period = 1 * NSEC_PER_MSEC; /* 1ms */
9142
Paul Turnera790de92011-07-21 09:43:29 -07009143static int __cfs_schedulable(struct task_group *tg, u64 period, u64 runtime);
9144
Paul Turnerab84d312011-07-21 09:43:28 -07009145static int tg_set_cfs_bandwidth(struct task_group *tg, u64 period, u64 quota)
9146{
Paul Turner58088ad2011-07-21 09:43:31 -07009147 int i, ret = 0, runtime_enabled;
Paul Turnerab84d312011-07-21 09:43:28 -07009148 struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(tg);
Paul Turnerab84d312011-07-21 09:43:28 -07009149
9150 if (tg == &root_task_group)
9151 return -EINVAL;
9152
9153 /*
9154 * Ensure we have at some amount of bandwidth every period. This is
9155 * to prevent reaching a state of large arrears when throttled via
9156 * entity_tick() resulting in prolonged exit starvation.
9157 */
9158 if (quota < min_cfs_quota_period || period < min_cfs_quota_period)
9159 return -EINVAL;
9160
9161 /*
9162 * Likewise, bound things on the otherside by preventing insane quota
9163 * periods. This also allows us to normalize in computing quota
9164 * feasibility.
9165 */
9166 if (period > max_cfs_quota_period)
9167 return -EINVAL;
9168
Paul Turnera790de92011-07-21 09:43:29 -07009169 mutex_lock(&cfs_constraints_mutex);
9170 ret = __cfs_schedulable(tg, period, quota);
9171 if (ret)
9172 goto out_unlock;
9173
Paul Turner58088ad2011-07-21 09:43:31 -07009174 runtime_enabled = quota != RUNTIME_INF;
Paul Turnerab84d312011-07-21 09:43:28 -07009175 raw_spin_lock_irq(&cfs_b->lock);
9176 cfs_b->period = ns_to_ktime(period);
9177 cfs_b->quota = quota;
Paul Turner58088ad2011-07-21 09:43:31 -07009178
Paul Turnera9cf55b2011-07-21 09:43:32 -07009179 __refill_cfs_bandwidth_runtime(cfs_b);
Paul Turner58088ad2011-07-21 09:43:31 -07009180 /* restart the period timer (if active) to handle new period expiry */
9181 if (runtime_enabled && cfs_b->timer_active) {
9182 /* force a reprogram */
9183 cfs_b->timer_active = 0;
9184 __start_cfs_bandwidth(cfs_b);
9185 }
Paul Turnerab84d312011-07-21 09:43:28 -07009186 raw_spin_unlock_irq(&cfs_b->lock);
9187
9188 for_each_possible_cpu(i) {
9189 struct cfs_rq *cfs_rq = tg->cfs_rq[i];
9190 struct rq *rq = rq_of(cfs_rq);
9191
9192 raw_spin_lock_irq(&rq->lock);
Paul Turner58088ad2011-07-21 09:43:31 -07009193 cfs_rq->runtime_enabled = runtime_enabled;
Paul Turnerab84d312011-07-21 09:43:28 -07009194 cfs_rq->runtime_remaining = 0;
9195 raw_spin_unlock_irq(&rq->lock);
9196 }
Paul Turnera790de92011-07-21 09:43:29 -07009197out_unlock:
9198 mutex_unlock(&cfs_constraints_mutex);
Paul Turnerab84d312011-07-21 09:43:28 -07009199
Paul Turnera790de92011-07-21 09:43:29 -07009200 return ret;
Paul Turnerab84d312011-07-21 09:43:28 -07009201}
9202
9203int tg_set_cfs_quota(struct task_group *tg, long cfs_quota_us)
9204{
9205 u64 quota, period;
9206
9207 period = ktime_to_ns(tg_cfs_bandwidth(tg)->period);
9208 if (cfs_quota_us < 0)
9209 quota = RUNTIME_INF;
9210 else
9211 quota = (u64)cfs_quota_us * NSEC_PER_USEC;
9212
9213 return tg_set_cfs_bandwidth(tg, period, quota);
9214}
9215
9216long tg_get_cfs_quota(struct task_group *tg)
9217{
9218 u64 quota_us;
9219
9220 if (tg_cfs_bandwidth(tg)->quota == RUNTIME_INF)
9221 return -1;
9222
9223 quota_us = tg_cfs_bandwidth(tg)->quota;
9224 do_div(quota_us, NSEC_PER_USEC);
9225
9226 return quota_us;
9227}
9228
9229int tg_set_cfs_period(struct task_group *tg, long cfs_period_us)
9230{
9231 u64 quota, period;
9232
9233 period = (u64)cfs_period_us * NSEC_PER_USEC;
9234 quota = tg_cfs_bandwidth(tg)->quota;
9235
9236 if (period <= 0)
9237 return -EINVAL;
9238
9239 return tg_set_cfs_bandwidth(tg, period, quota);
9240}
9241
9242long tg_get_cfs_period(struct task_group *tg)
9243{
9244 u64 cfs_period_us;
9245
9246 cfs_period_us = ktime_to_ns(tg_cfs_bandwidth(tg)->period);
9247 do_div(cfs_period_us, NSEC_PER_USEC);
9248
9249 return cfs_period_us;
9250}
9251
9252static s64 cpu_cfs_quota_read_s64(struct cgroup *cgrp, struct cftype *cft)
9253{
9254 return tg_get_cfs_quota(cgroup_tg(cgrp));
9255}
9256
9257static int cpu_cfs_quota_write_s64(struct cgroup *cgrp, struct cftype *cftype,
9258 s64 cfs_quota_us)
9259{
9260 return tg_set_cfs_quota(cgroup_tg(cgrp), cfs_quota_us);
9261}
9262
9263static u64 cpu_cfs_period_read_u64(struct cgroup *cgrp, struct cftype *cft)
9264{
9265 return tg_get_cfs_period(cgroup_tg(cgrp));
9266}
9267
9268static int cpu_cfs_period_write_u64(struct cgroup *cgrp, struct cftype *cftype,
9269 u64 cfs_period_us)
9270{
9271 return tg_set_cfs_period(cgroup_tg(cgrp), cfs_period_us);
9272}
9273
Paul Turnera790de92011-07-21 09:43:29 -07009274struct cfs_schedulable_data {
9275 struct task_group *tg;
9276 u64 period, quota;
9277};
9278
9279/*
9280 * normalize group quota/period to be quota/max_period
9281 * note: units are usecs
9282 */
9283static u64 normalize_cfs_quota(struct task_group *tg,
9284 struct cfs_schedulable_data *d)
9285{
9286 u64 quota, period;
9287
9288 if (tg == d->tg) {
9289 period = d->period;
9290 quota = d->quota;
9291 } else {
9292 period = tg_get_cfs_period(tg);
9293 quota = tg_get_cfs_quota(tg);
9294 }
9295
9296 /* note: these should typically be equivalent */
9297 if (quota == RUNTIME_INF || quota == -1)
9298 return RUNTIME_INF;
9299
9300 return to_ratio(period, quota);
9301}
9302
9303static int tg_cfs_schedulable_down(struct task_group *tg, void *data)
9304{
9305 struct cfs_schedulable_data *d = data;
9306 struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(tg);
9307 s64 quota = 0, parent_quota = -1;
9308
9309 if (!tg->parent) {
9310 quota = RUNTIME_INF;
9311 } else {
9312 struct cfs_bandwidth *parent_b = tg_cfs_bandwidth(tg->parent);
9313
9314 quota = normalize_cfs_quota(tg, d);
9315 parent_quota = parent_b->hierarchal_quota;
9316
9317 /*
9318 * ensure max(child_quota) <= parent_quota, inherit when no
9319 * limit is set
9320 */
9321 if (quota == RUNTIME_INF)
9322 quota = parent_quota;
9323 else if (parent_quota != RUNTIME_INF && quota > parent_quota)
9324 return -EINVAL;
9325 }
9326 cfs_b->hierarchal_quota = quota;
9327
9328 return 0;
9329}
9330
9331static int __cfs_schedulable(struct task_group *tg, u64 period, u64 quota)
9332{
9333 struct cfs_schedulable_data data = {
9334 .tg = tg,
9335 .period = period,
9336 .quota = quota,
9337 };
9338
9339 if (quota != RUNTIME_INF) {
9340 do_div(data.period, NSEC_PER_USEC);
9341 do_div(data.quota, NSEC_PER_USEC);
9342 }
9343
9344 return walk_tg_tree(tg_cfs_schedulable_down, tg_nop, &data);
9345}
Paul Turnerab84d312011-07-21 09:43:28 -07009346#endif /* CONFIG_CFS_BANDWIDTH */
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009347#endif /* CONFIG_FAIR_GROUP_SCHED */
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009348
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009349#ifdef CONFIG_RT_GROUP_SCHED
Mirco Tischler0c708142008-05-14 16:05:46 -07009350static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft,
Paul Menage06ecb272008-04-29 01:00:06 -07009351 s64 val)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009352{
Paul Menage06ecb272008-04-29 01:00:06 -07009353 return sched_group_set_rt_runtime(cgroup_tg(cgrp), val);
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009354}
9355
Paul Menage06ecb272008-04-29 01:00:06 -07009356static s64 cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft)
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009357{
Paul Menage06ecb272008-04-29 01:00:06 -07009358 return sched_group_rt_runtime(cgroup_tg(cgrp));
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009359}
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009360
9361static int cpu_rt_period_write_uint(struct cgroup *cgrp, struct cftype *cftype,
9362 u64 rt_period_us)
9363{
9364 return sched_group_set_rt_period(cgroup_tg(cgrp), rt_period_us);
9365}
9366
9367static u64 cpu_rt_period_read_uint(struct cgroup *cgrp, struct cftype *cft)
9368{
9369 return sched_group_rt_period(cgroup_tg(cgrp));
9370}
Dhaval Giani6d6bc0a2008-05-30 14:23:45 +02009371#endif /* CONFIG_RT_GROUP_SCHED */
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009372
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009373static struct cftype cpu_files[] = {
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009374#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009375 {
9376 .name = "shares",
Paul Menagef4c753b2008-04-29 00:59:56 -07009377 .read_u64 = cpu_shares_read_u64,
9378 .write_u64 = cpu_shares_write_u64,
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009379 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009380#endif
Paul Turnerab84d312011-07-21 09:43:28 -07009381#ifdef CONFIG_CFS_BANDWIDTH
9382 {
9383 .name = "cfs_quota_us",
9384 .read_s64 = cpu_cfs_quota_read_s64,
9385 .write_s64 = cpu_cfs_quota_write_s64,
9386 },
9387 {
9388 .name = "cfs_period_us",
9389 .read_u64 = cpu_cfs_period_read_u64,
9390 .write_u64 = cpu_cfs_period_write_u64,
9391 },
9392#endif
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009393#ifdef CONFIG_RT_GROUP_SCHED
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009394 {
Peter Zijlstra9f0c1e52008-02-13 15:45:39 +01009395 .name = "rt_runtime_us",
Paul Menage06ecb272008-04-29 01:00:06 -07009396 .read_s64 = cpu_rt_runtime_read,
9397 .write_s64 = cpu_rt_runtime_write,
Peter Zijlstra6f505b12008-01-25 21:08:30 +01009398 },
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009399 {
9400 .name = "rt_period_us",
Paul Menagef4c753b2008-04-29 00:59:56 -07009401 .read_u64 = cpu_rt_period_read_uint,
9402 .write_u64 = cpu_rt_period_write_uint,
Peter Zijlstrad0b27fa2008-04-19 19:44:57 +02009403 },
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009404#endif
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009405};
9406
9407static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont)
9408{
Paul Menagefe5c7cc2007-10-29 21:18:11 +01009409 return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files));
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009410}
9411
9412struct cgroup_subsys cpu_cgroup_subsys = {
Ingo Molnar38605ca2007-10-29 21:18:11 +01009413 .name = "cpu",
9414 .create = cpu_cgroup_create,
9415 .destroy = cpu_cgroup_destroy,
Ben Blumf780bdb2011-05-26 16:25:19 -07009416 .can_attach_task = cpu_cgroup_can_attach_task,
9417 .attach_task = cpu_cgroup_attach_task,
Peter Zijlstra068c5cc2011-01-19 12:26:11 +01009418 .exit = cpu_cgroup_exit,
Ingo Molnar38605ca2007-10-29 21:18:11 +01009419 .populate = cpu_cgroup_populate,
9420 .subsys_id = cpu_cgroup_subsys_id,
Srivatsa Vaddagiri68318b82007-10-18 23:41:03 -07009421 .early_init = 1,
9422};
9423
Peter Zijlstra052f1dc2008-02-13 15:45:40 +01009424#endif /* CONFIG_CGROUP_SCHED */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009425
9426#ifdef CONFIG_CGROUP_CPUACCT
9427
9428/*
9429 * CPU accounting code for task groups.
9430 *
9431 * Based on the work by Paul Menage (menage@google.com) and Balbir Singh
9432 * (balbir@in.ibm.com).
9433 */
9434
Bharata B Rao934352f2008-11-10 20:41:13 +05309435/* track cpu usage of a group of tasks and its child groups */
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009436struct cpuacct {
9437 struct cgroup_subsys_state css;
9438 /* cpuusage holds pointer to a u64-type object on every cpu */
Tejun Heo43cf38e2010-02-02 14:38:57 +09009439 u64 __percpu *cpuusage;
Bharata B Raoef12fef2009-03-31 10:02:22 +05309440 struct percpu_counter cpustat[CPUACCT_STAT_NSTATS];
Bharata B Rao934352f2008-11-10 20:41:13 +05309441 struct cpuacct *parent;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009442};
9443
9444struct cgroup_subsys cpuacct_subsys;
9445
9446/* return cpu accounting group corresponding to this container */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309447static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009448{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309449 return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id),
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009450 struct cpuacct, css);
9451}
9452
9453/* return cpu accounting group to which this task belongs */
9454static inline struct cpuacct *task_ca(struct task_struct *tsk)
9455{
9456 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
9457 struct cpuacct, css);
9458}
9459
9460/* create a new cpu accounting group */
9461static struct cgroup_subsys_state *cpuacct_create(
Dhaval Giani32cd7562008-02-29 10:02:43 +05309462 struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009463{
9464 struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
Bharata B Raoef12fef2009-03-31 10:02:22 +05309465 int i;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009466
9467 if (!ca)
Bharata B Raoef12fef2009-03-31 10:02:22 +05309468 goto out;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009469
9470 ca->cpuusage = alloc_percpu(u64);
Bharata B Raoef12fef2009-03-31 10:02:22 +05309471 if (!ca->cpuusage)
9472 goto out_free_ca;
9473
9474 for (i = 0; i < CPUACCT_STAT_NSTATS; i++)
9475 if (percpu_counter_init(&ca->cpustat[i], 0))
9476 goto out_free_counters;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009477
Bharata B Rao934352f2008-11-10 20:41:13 +05309478 if (cgrp->parent)
9479 ca->parent = cgroup_ca(cgrp->parent);
9480
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009481 return &ca->css;
Bharata B Raoef12fef2009-03-31 10:02:22 +05309482
9483out_free_counters:
9484 while (--i >= 0)
9485 percpu_counter_destroy(&ca->cpustat[i]);
9486 free_percpu(ca->cpuusage);
9487out_free_ca:
9488 kfree(ca);
9489out:
9490 return ERR_PTR(-ENOMEM);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009491}
9492
9493/* destroy an existing cpu accounting group */
Ingo Molnar41a2d6c2007-12-05 15:46:09 +01009494static void
Dhaval Giani32cd7562008-02-29 10:02:43 +05309495cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009496{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309497 struct cpuacct *ca = cgroup_ca(cgrp);
Bharata B Raoef12fef2009-03-31 10:02:22 +05309498 int i;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009499
Bharata B Raoef12fef2009-03-31 10:02:22 +05309500 for (i = 0; i < CPUACCT_STAT_NSTATS; i++)
9501 percpu_counter_destroy(&ca->cpustat[i]);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009502 free_percpu(ca->cpuusage);
9503 kfree(ca);
9504}
9505
Ken Chen720f5492008-12-15 22:02:01 -08009506static u64 cpuacct_cpuusage_read(struct cpuacct *ca, int cpu)
9507{
Rusty Russellb36128c2009-02-20 16:29:08 +09009508 u64 *cpuusage = per_cpu_ptr(ca->cpuusage, cpu);
Ken Chen720f5492008-12-15 22:02:01 -08009509 u64 data;
9510
9511#ifndef CONFIG_64BIT
9512 /*
9513 * Take rq->lock to make 64-bit read safe on 32-bit platforms.
9514 */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01009515 raw_spin_lock_irq(&cpu_rq(cpu)->lock);
Ken Chen720f5492008-12-15 22:02:01 -08009516 data = *cpuusage;
Thomas Gleixner05fa7852009-11-17 14:28:38 +01009517 raw_spin_unlock_irq(&cpu_rq(cpu)->lock);
Ken Chen720f5492008-12-15 22:02:01 -08009518#else
9519 data = *cpuusage;
9520#endif
9521
9522 return data;
9523}
9524
9525static void cpuacct_cpuusage_write(struct cpuacct *ca, int cpu, u64 val)
9526{
Rusty Russellb36128c2009-02-20 16:29:08 +09009527 u64 *cpuusage = per_cpu_ptr(ca->cpuusage, cpu);
Ken Chen720f5492008-12-15 22:02:01 -08009528
9529#ifndef CONFIG_64BIT
9530 /*
9531 * Take rq->lock to make 64-bit write safe on 32-bit platforms.
9532 */
Thomas Gleixner05fa7852009-11-17 14:28:38 +01009533 raw_spin_lock_irq(&cpu_rq(cpu)->lock);
Ken Chen720f5492008-12-15 22:02:01 -08009534 *cpuusage = val;
Thomas Gleixner05fa7852009-11-17 14:28:38 +01009535 raw_spin_unlock_irq(&cpu_rq(cpu)->lock);
Ken Chen720f5492008-12-15 22:02:01 -08009536#else
9537 *cpuusage = val;
9538#endif
9539}
9540
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009541/* return total cpu usage (in nanoseconds) of a group */
Dhaval Giani32cd7562008-02-29 10:02:43 +05309542static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009543{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309544 struct cpuacct *ca = cgroup_ca(cgrp);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009545 u64 totalcpuusage = 0;
9546 int i;
9547
Ken Chen720f5492008-12-15 22:02:01 -08009548 for_each_present_cpu(i)
9549 totalcpuusage += cpuacct_cpuusage_read(ca, i);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009550
9551 return totalcpuusage;
9552}
9553
Dhaval Giani0297b802008-02-29 10:02:44 +05309554static int cpuusage_write(struct cgroup *cgrp, struct cftype *cftype,
9555 u64 reset)
9556{
9557 struct cpuacct *ca = cgroup_ca(cgrp);
9558 int err = 0;
9559 int i;
9560
9561 if (reset) {
9562 err = -EINVAL;
9563 goto out;
9564 }
9565
Ken Chen720f5492008-12-15 22:02:01 -08009566 for_each_present_cpu(i)
9567 cpuacct_cpuusage_write(ca, i, 0);
Dhaval Giani0297b802008-02-29 10:02:44 +05309568
Dhaval Giani0297b802008-02-29 10:02:44 +05309569out:
9570 return err;
9571}
9572
Ken Chene9515c32008-12-15 22:04:15 -08009573static int cpuacct_percpu_seq_read(struct cgroup *cgroup, struct cftype *cft,
9574 struct seq_file *m)
9575{
9576 struct cpuacct *ca = cgroup_ca(cgroup);
9577 u64 percpu;
9578 int i;
9579
9580 for_each_present_cpu(i) {
9581 percpu = cpuacct_cpuusage_read(ca, i);
9582 seq_printf(m, "%llu ", (unsigned long long) percpu);
9583 }
9584 seq_printf(m, "\n");
9585 return 0;
9586}
9587
Bharata B Raoef12fef2009-03-31 10:02:22 +05309588static const char *cpuacct_stat_desc[] = {
9589 [CPUACCT_STAT_USER] = "user",
9590 [CPUACCT_STAT_SYSTEM] = "system",
9591};
9592
9593static int cpuacct_stats_show(struct cgroup *cgrp, struct cftype *cft,
9594 struct cgroup_map_cb *cb)
9595{
9596 struct cpuacct *ca = cgroup_ca(cgrp);
9597 int i;
9598
9599 for (i = 0; i < CPUACCT_STAT_NSTATS; i++) {
9600 s64 val = percpu_counter_read(&ca->cpustat[i]);
9601 val = cputime64_to_clock_t(val);
9602 cb->fill(cb, cpuacct_stat_desc[i], val);
9603 }
9604 return 0;
9605}
9606
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009607static struct cftype files[] = {
9608 {
9609 .name = "usage",
Paul Menagef4c753b2008-04-29 00:59:56 -07009610 .read_u64 = cpuusage_read,
9611 .write_u64 = cpuusage_write,
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009612 },
Ken Chene9515c32008-12-15 22:04:15 -08009613 {
9614 .name = "usage_percpu",
9615 .read_seq_string = cpuacct_percpu_seq_read,
9616 },
Bharata B Raoef12fef2009-03-31 10:02:22 +05309617 {
9618 .name = "stat",
9619 .read_map = cpuacct_stats_show,
9620 },
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009621};
9622
Dhaval Giani32cd7562008-02-29 10:02:43 +05309623static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp)
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009624{
Dhaval Giani32cd7562008-02-29 10:02:43 +05309625 return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files));
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009626}
9627
9628/*
9629 * charge this task's execution time to its accounting group.
9630 *
9631 * called with rq->lock held.
9632 */
9633static void cpuacct_charge(struct task_struct *tsk, u64 cputime)
9634{
9635 struct cpuacct *ca;
Bharata B Rao934352f2008-11-10 20:41:13 +05309636 int cpu;
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009637
Li Zefanc40c6f82009-02-26 15:40:15 +08009638 if (unlikely(!cpuacct_subsys.active))
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009639 return;
9640
Bharata B Rao934352f2008-11-10 20:41:13 +05309641 cpu = task_cpu(tsk);
Bharata B Raoa18b83b2009-03-23 10:02:53 +05309642
9643 rcu_read_lock();
9644
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009645 ca = task_ca(tsk);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009646
Bharata B Rao934352f2008-11-10 20:41:13 +05309647 for (; ca; ca = ca->parent) {
Rusty Russellb36128c2009-02-20 16:29:08 +09009648 u64 *cpuusage = per_cpu_ptr(ca->cpuusage, cpu);
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009649 *cpuusage += cputime;
9650 }
Bharata B Raoa18b83b2009-03-23 10:02:53 +05309651
9652 rcu_read_unlock();
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009653}
9654
Bharata B Raoef12fef2009-03-31 10:02:22 +05309655/*
Anton Blanchardfa535a72010-02-02 14:46:13 -08009656 * When CONFIG_VIRT_CPU_ACCOUNTING is enabled one jiffy can be very large
9657 * in cputime_t units. As a result, cpuacct_update_stats calls
9658 * percpu_counter_add with values large enough to always overflow the
9659 * per cpu batch limit causing bad SMP scalability.
9660 *
9661 * To fix this we scale percpu_counter_batch by cputime_one_jiffy so we
9662 * batch the same amount of time with CONFIG_VIRT_CPU_ACCOUNTING disabled
9663 * and enabled. We cap it at INT_MAX which is the largest allowed batch value.
9664 */
9665#ifdef CONFIG_SMP
9666#define CPUACCT_BATCH \
9667 min_t(long, percpu_counter_batch * cputime_one_jiffy, INT_MAX)
9668#else
9669#define CPUACCT_BATCH 0
9670#endif
9671
9672/*
Bharata B Raoef12fef2009-03-31 10:02:22 +05309673 * Charge the system/user time to the task's accounting group.
9674 */
9675static void cpuacct_update_stats(struct task_struct *tsk,
9676 enum cpuacct_stat_index idx, cputime_t val)
9677{
9678 struct cpuacct *ca;
Anton Blanchardfa535a72010-02-02 14:46:13 -08009679 int batch = CPUACCT_BATCH;
Bharata B Raoef12fef2009-03-31 10:02:22 +05309680
9681 if (unlikely(!cpuacct_subsys.active))
9682 return;
9683
9684 rcu_read_lock();
9685 ca = task_ca(tsk);
9686
9687 do {
Anton Blanchardfa535a72010-02-02 14:46:13 -08009688 __percpu_counter_add(&ca->cpustat[idx], val, batch);
Bharata B Raoef12fef2009-03-31 10:02:22 +05309689 ca = ca->parent;
9690 } while (ca);
9691 rcu_read_unlock();
9692}
9693
Srivatsa Vaddagirid842de82007-12-02 20:04:49 +01009694struct cgroup_subsys cpuacct_subsys = {
9695 .name = "cpuacct",
9696 .create = cpuacct_create,
9697 .destroy = cpuacct_destroy,
9698 .populate = cpuacct_populate,
9699 .subsys_id = cpuacct_subsys_id,
9700};
9701#endif /* CONFIG_CGROUP_CPUACCT */