blob: 2c6295b395a91fc41ef263c6758205c8b10e6fa3 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 */
26
27#include <linux/mm.h>
28#include <linux/module.h>
29#include <linux/nmi.h>
30#include <linux/init.h>
Ingo Molnardff06c12007-07-09 18:52:00 +020031#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/highmem.h>
33#include <linux/smp_lock.h>
34#include <asm/mmu_context.h>
35#include <linux/interrupt.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080036#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/completion.h>
38#include <linux/kernel_stat.h>
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070039#include <linux/debug_locks.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/security.h>
41#include <linux/notifier.h>
42#include <linux/profile.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080043#include <linux/freezer.h>
akpm@osdl.org198e2f12006-01-12 01:05:30 -080044#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/blkdev.h>
46#include <linux/delay.h>
47#include <linux/smp.h>
48#include <linux/threads.h>
49#include <linux/timer.h>
50#include <linux/rcupdate.h>
51#include <linux/cpu.h>
52#include <linux/cpuset.h>
53#include <linux/percpu.h>
54#include <linux/kthread.h>
55#include <linux/seq_file.h>
Nick Piggine692ab52007-07-26 13:40:43 +020056#include <linux/sysctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <linux/syscalls.h>
58#include <linux/times.h>
Jay Lan8f0ab512006-09-30 23:28:59 -070059#include <linux/tsacct_kern.h>
bibo maoc6fd91f2006-03-26 01:38:20 -080060#include <linux/kprobes.h>
Shailabh Nagar0ff92242006-07-14 00:24:37 -070061#include <linux/delayacct.h>
Eric Dumazet5517d862007-05-08 00:32:57 -070062#include <linux/reciprocal_div.h>
Ingo Molnardff06c12007-07-09 18:52:00 +020063#include <linux/unistd.h>
Jens Axboef5ff8422007-09-21 09:19:54 +020064#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Eric Dumazet5517d862007-05-08 00:32:57 -070066#include <asm/tlb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68/*
Alexey Dobriyanb035b6d2007-02-10 01:45:10 -080069 * Scheduler clock - returns current time in nanosec units.
70 * This is default implementation.
71 * Architectures and sub-architectures can override this.
72 */
73unsigned long long __attribute__((weak)) sched_clock(void)
74{
75 return (unsigned long long)jiffies * (1000000000 / HZ);
76}
77
Andi Kleen3a5e4dc2007-10-15 17:00:15 +020078#ifdef CONFIG_SMP
79#define is_migration_thread(p, rq) ((p) == (rq)->migration_thread)
80#else
81#define is_migration_thread(p, rq) 0
82#endif
83
Alexey Dobriyanb035b6d2007-02-10 01:45:10 -080084/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 * Convert user-nice values [ -20 ... 0 ... 19 ]
86 * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ],
87 * and back.
88 */
89#define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20)
90#define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20)
91#define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio)
92
93/*
94 * 'User priority' is the nice value converted to something we
95 * can work with better when scaling various scheduler parameters,
96 * it's a [ 0 ... 39 ] range.
97 */
98#define USER_PRIO(p) ((p)-MAX_RT_PRIO)
99#define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio)
100#define MAX_USER_PRIO (USER_PRIO(MAX_PRIO))
101
102/*
103 * Some helpers for converting nanosecond timing to jiffy resolution
104 */
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +0200105#define NS_TO_JIFFIES(TIME) ((unsigned long)(TIME) / (1000000000 / HZ))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#define JIFFIES_TO_NS(TIME) ((TIME) * (1000000000 / HZ))
107
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200108#define NICE_0_LOAD SCHED_LOAD_SCALE
109#define NICE_0_SHIFT SCHED_LOAD_SHIFT
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111/*
112 * These are the 'tuning knobs' of the scheduler:
113 *
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +0200114 * default timeslice is 100 msecs (used only for SCHED_RR tasks).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * Timeslices get refilled after they expire.
116 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#define DEF_TIMESLICE (100 * HZ / 1000)
Peter Williams2dd73a42006-06-27 02:54:34 -0700118
Eric Dumazet5517d862007-05-08 00:32:57 -0700119#ifdef CONFIG_SMP
120/*
121 * Divide a load by a sched group cpu_power : (load / sg->__cpu_power)
122 * Since cpu_power is a 'constant', we can use a reciprocal divide.
123 */
124static inline u32 sg_div_cpu_power(const struct sched_group *sg, u32 load)
125{
126 return reciprocal_divide(load, sg->reciprocal_cpu_power);
127}
128
129/*
130 * Each time a sched group cpu_power is changed,
131 * we must compute its reciprocal value
132 */
133static inline void sg_inc_cpu_power(struct sched_group *sg, u32 val)
134{
135 sg->__cpu_power += val;
136 sg->reciprocal_cpu_power = reciprocal_value(sg->__cpu_power);
137}
138#endif
139
Ingo Molnare05606d2007-07-09 18:51:59 +0200140static inline int rt_policy(int policy)
141{
142 if (unlikely(policy == SCHED_FIFO) || unlikely(policy == SCHED_RR))
143 return 1;
144 return 0;
145}
146
147static inline int task_has_rt_policy(struct task_struct *p)
148{
149 return rt_policy(p->policy);
150}
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152/*
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200153 * This is the priority-queue data structure of the RT scheduling class:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200155struct rt_prio_array {
156 DECLARE_BITMAP(bitmap, MAX_RT_PRIO+1); /* include 1 bit for delimiter */
157 struct list_head queue[MAX_RT_PRIO];
158};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200160#ifdef CONFIG_FAIR_GROUP_SCHED
161
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200162struct cfs_rq;
163
164/* task group related information */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200165struct task_group {
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200166 /* schedulable entities of this group on each cpu */
167 struct sched_entity **se;
168 /* runqueue "owned" by this group on each cpu */
169 struct cfs_rq **cfs_rq;
170 unsigned long shares;
Dhaval Giani5cb350b2007-10-15 17:00:14 +0200171 /* spinlock to serialize modification to shares */
172 spinlock_t lock;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200173};
174
175/* Default task group's sched entity on each cpu */
176static DEFINE_PER_CPU(struct sched_entity, init_sched_entity);
177/* Default task group's cfs_rq on each cpu */
178static DEFINE_PER_CPU(struct cfs_rq, init_cfs_rq) ____cacheline_aligned_in_smp;
179
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200180static struct sched_entity *init_sched_entity_p[NR_CPUS];
181static struct cfs_rq *init_cfs_rq_p[NR_CPUS];
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200182
183/* Default task group.
Ingo Molnar3a252012007-10-15 17:00:12 +0200184 * Every task in system belong to this group at bootup.
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200185 */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200186struct task_group init_task_group = {
Ingo Molnar3a252012007-10-15 17:00:12 +0200187 .se = init_sched_entity_p,
188 .cfs_rq = init_cfs_rq_p,
189};
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200190
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200191#ifdef CONFIG_FAIR_USER_SCHED
Ingo Molnar3a252012007-10-15 17:00:12 +0200192# define INIT_TASK_GRP_LOAD 2*NICE_0_LOAD
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200193#else
Ingo Molnar3a252012007-10-15 17:00:12 +0200194# define INIT_TASK_GRP_LOAD NICE_0_LOAD
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200195#endif
196
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200197static int init_task_group_load = INIT_TASK_GRP_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200198
199/* return group to which a task belongs */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200200static inline struct task_group *task_group(struct task_struct *p)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200201{
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200202 struct task_group *tg;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200203
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200204#ifdef CONFIG_FAIR_USER_SCHED
205 tg = p->user->tg;
206#else
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200207 tg = &init_task_group;
Srivatsa Vaddagiri24e377a2007-10-15 17:00:09 +0200208#endif
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200209
210 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200211}
212
213/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
214static inline void set_task_cfs_rq(struct task_struct *p)
215{
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200216 p->se.cfs_rq = task_group(p)->cfs_rq[task_cpu(p)];
217 p->se.parent = task_group(p)->se[task_cpu(p)];
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200218}
219
220#else
221
222static inline void set_task_cfs_rq(struct task_struct *p) { }
223
224#endif /* CONFIG_FAIR_GROUP_SCHED */
225
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200226/* CFS-related fields in a runqueue */
227struct cfs_rq {
228 struct load_weight load;
229 unsigned long nr_running;
230
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200231 u64 exec_clock;
Ingo Molnare9acbff2007-10-15 17:00:04 +0200232 u64 min_vruntime;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200233
234 struct rb_root tasks_timeline;
235 struct rb_node *rb_leftmost;
236 struct rb_node *rb_load_balance_curr;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200237 /* 'curr' points to currently running entity on this cfs_rq.
238 * It is set to NULL otherwise (i.e when none are currently running).
239 */
240 struct sched_entity *curr;
Peter Zijlstraddc97292007-10-15 17:00:10 +0200241
242 unsigned long nr_spread_over;
243
Ingo Molnar62160e32007-10-15 17:00:03 +0200244#ifdef CONFIG_FAIR_GROUP_SCHED
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200245 struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */
246
247 /* leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
248 * a hierarchy). Non-leaf lrqs hold other higher schedulable entities
249 * (like users, containers etc.)
250 *
251 * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This
252 * list is used during load balance.
253 */
254 struct list_head leaf_cfs_rq_list; /* Better name : task_cfs_rq_list? */
Ingo Molnar4cf86d72007-10-15 17:00:14 +0200255 struct task_group *tg; /* group that "owns" this runqueue */
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200256 struct rcu_head rcu;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200257#endif
258};
259
260/* Real-Time classes' related field in a runqueue: */
261struct rt_rq {
262 struct rt_prio_array active;
263 int rt_load_balance_idx;
264 struct list_head *rt_load_balance_head, *rt_load_balance_curr;
265};
266
267/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 * This is the main, per-CPU runqueue data structure.
269 *
270 * Locking rule: those places that want to lock multiple runqueues
271 * (such as the load balancing or the thread migration code), lock
272 * acquire operations must be ordered by ascending &runqueue.
273 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700274struct rq {
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200275 spinlock_t lock; /* runqueue lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 /*
278 * nr_running and cpu_load should be in the same cacheline because
279 * remote CPUs use both these fields when doing load calculation.
280 */
281 unsigned long nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200282 #define CPU_LOAD_IDX_MAX 5
283 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
Siddha, Suresh Bbdecea32007-05-08 00:32:48 -0700284 unsigned char idle_at_tick;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700285#ifdef CONFIG_NO_HZ
286 unsigned char in_nohz_recently;
287#endif
Dmitry Adamushko495eca42007-10-15 17:00:06 +0200288 struct load_weight load; /* capture load from *all* tasks on this cpu */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200289 unsigned long nr_load_updates;
290 u64 nr_switches;
291
292 struct cfs_rq cfs;
293#ifdef CONFIG_FAIR_GROUP_SCHED
294 struct list_head leaf_cfs_rq_list; /* list of leaf cfs_rq on this cpu */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200296 struct rt_rq rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 /*
299 * This is part of a global counter where only the total sum
300 * over all CPUs matters. A task can increase this counter on
301 * one CPU and if it got migrated afterwards it may decrease
302 * it on another CPU. Always updated under the runqueue lock:
303 */
304 unsigned long nr_uninterruptible;
305
Ingo Molnar36c8b582006-07-03 00:25:41 -0700306 struct task_struct *curr, *idle;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800307 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 struct mm_struct *prev_mm;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200309
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200310 u64 clock, prev_clock_raw;
311 s64 clock_max_delta;
312
313 unsigned int clock_warps, clock_overflows;
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200314 u64 idle_clock;
315 unsigned int clock_deep_idle_events;
Ingo Molnar529c7722007-08-10 23:05:11 +0200316 u64 tick_timestamp;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 atomic_t nr_iowait;
319
320#ifdef CONFIG_SMP
321 struct sched_domain *sd;
322
323 /* For active balancing */
324 int active_balance;
325 int push_cpu;
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700326 int cpu; /* cpu of this runqueue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Ingo Molnar36c8b582006-07-03 00:25:41 -0700328 struct task_struct *migration_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 struct list_head migration_queue;
330#endif
331
332#ifdef CONFIG_SCHEDSTATS
333 /* latency stats */
334 struct sched_info rq_sched_info;
335
336 /* sys_sched_yield() stats */
337 unsigned long yld_exp_empty;
338 unsigned long yld_act_empty;
339 unsigned long yld_both_empty;
Ingo Molnar2d723762007-10-15 17:00:12 +0200340 unsigned long yld_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 /* schedule() stats */
343 unsigned long sched_switch;
Ingo Molnar2d723762007-10-15 17:00:12 +0200344 unsigned long sched_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 unsigned long sched_goidle;
346
347 /* try_to_wake_up() stats */
Ingo Molnar2d723762007-10-15 17:00:12 +0200348 unsigned long ttwu_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 unsigned long ttwu_local;
Ingo Molnarb8efb562007-10-15 17:00:10 +0200350
351 /* BKL stats */
Ingo Molnar2d723762007-10-15 17:00:12 +0200352 unsigned long bkl_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353#endif
Ingo Molnarfcb99372006-07-03 00:25:10 -0700354 struct lock_class_key rq_lock_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355};
356
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700357static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Gautham R Shenoy5be93612007-05-09 02:34:04 -0700358static DEFINE_MUTEX(sched_hotcpu_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Ingo Molnardd41f592007-07-09 18:51:59 +0200360static inline void check_preempt_curr(struct rq *rq, struct task_struct *p)
361{
362 rq->curr->sched_class->check_preempt_curr(rq, p);
363}
364
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700365static inline int cpu_of(struct rq *rq)
366{
367#ifdef CONFIG_SMP
368 return rq->cpu;
369#else
370 return 0;
371#endif
372}
373
Nick Piggin674311d2005-06-25 14:57:27 -0700374/*
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200375 * Update the per-runqueue clock, as finegrained as the platform can give
376 * us, but without assuming monotonicity, etc.:
Ingo Molnar20d315d2007-07-09 18:51:58 +0200377 */
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200378static void __update_rq_clock(struct rq *rq)
Ingo Molnar20d315d2007-07-09 18:51:58 +0200379{
380 u64 prev_raw = rq->prev_clock_raw;
381 u64 now = sched_clock();
382 s64 delta = now - prev_raw;
383 u64 clock = rq->clock;
384
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200385#ifdef CONFIG_SCHED_DEBUG
386 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
387#endif
Ingo Molnar20d315d2007-07-09 18:51:58 +0200388 /*
389 * Protect against sched_clock() occasionally going backwards:
390 */
391 if (unlikely(delta < 0)) {
392 clock++;
393 rq->clock_warps++;
394 } else {
395 /*
396 * Catch too large forward jumps too:
397 */
Ingo Molnar529c7722007-08-10 23:05:11 +0200398 if (unlikely(clock + delta > rq->tick_timestamp + TICK_NSEC)) {
399 if (clock < rq->tick_timestamp + TICK_NSEC)
400 clock = rq->tick_timestamp + TICK_NSEC;
401 else
402 clock++;
Ingo Molnar20d315d2007-07-09 18:51:58 +0200403 rq->clock_overflows++;
404 } else {
405 if (unlikely(delta > rq->clock_max_delta))
406 rq->clock_max_delta = delta;
407 clock += delta;
408 }
409 }
410
411 rq->prev_clock_raw = now;
412 rq->clock = clock;
Ingo Molnar20d315d2007-07-09 18:51:58 +0200413}
414
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200415static void update_rq_clock(struct rq *rq)
Ingo Molnar20d315d2007-07-09 18:51:58 +0200416{
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200417 if (likely(smp_processor_id() == cpu_of(rq)))
418 __update_rq_clock(rq);
419}
Ingo Molnar20d315d2007-07-09 18:51:58 +0200420
Ingo Molnar20d315d2007-07-09 18:51:58 +0200421/*
Nick Piggin674311d2005-06-25 14:57:27 -0700422 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700423 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700424 *
425 * The domain tree of any CPU may only be accessed from within
426 * preempt-disabled sections.
427 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700428#define for_each_domain(cpu, __sd) \
429 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
432#define this_rq() (&__get_cpu_var(runqueues))
433#define task_rq(p) cpu_rq(task_cpu(p))
434#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
435
Ingo Molnare436d802007-07-19 21:28:35 +0200436/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200437 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
438 */
439#ifdef CONFIG_SCHED_DEBUG
440# define const_debug __read_mostly
441#else
442# define const_debug static const
443#endif
444
445/*
446 * Debugging: various feature bits
447 */
448enum {
Ingo Molnarbbdba7c2007-10-15 17:00:06 +0200449 SCHED_FEAT_NEW_FAIR_SLEEPERS = 1,
450 SCHED_FEAT_START_DEBIT = 2,
Ingo Molnar06877c32007-10-15 17:00:13 +0200451 SCHED_FEAT_TREE_AVG = 4,
Ingo Molnarbbdba7c2007-10-15 17:00:06 +0200452 SCHED_FEAT_APPROX_AVG = 8,
Peter Zijlstrace6c1312007-10-15 17:00:14 +0200453 SCHED_FEAT_WAKEUP_PREEMPT = 16,
Mike Galbraith95938a32007-10-15 17:00:14 +0200454 SCHED_FEAT_PREEMPT_RESTRICT = 32,
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200455};
456
457const_debug unsigned int sysctl_sched_features =
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200458 SCHED_FEAT_NEW_FAIR_SLEEPERS *1 |
Peter Zijlstra94dfb5e2007-10-15 17:00:05 +0200459 SCHED_FEAT_START_DEBIT *1 |
Ingo Molnar06877c32007-10-15 17:00:13 +0200460 SCHED_FEAT_TREE_AVG *0 |
Peter Zijlstrace6c1312007-10-15 17:00:14 +0200461 SCHED_FEAT_APPROX_AVG *0 |
Mike Galbraith95938a32007-10-15 17:00:14 +0200462 SCHED_FEAT_WAKEUP_PREEMPT *1 |
463 SCHED_FEAT_PREEMPT_RESTRICT *1;
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200464
465#define sched_feat(x) (sysctl_sched_features & SCHED_FEAT_##x)
466
467/*
Ingo Molnare436d802007-07-19 21:28:35 +0200468 * For kernel-internal use: high-speed (but slightly incorrect) per-cpu
469 * clock constructed from sched_clock():
470 */
471unsigned long long cpu_clock(int cpu)
472{
Ingo Molnare436d802007-07-19 21:28:35 +0200473 unsigned long long now;
474 unsigned long flags;
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200475 struct rq *rq;
Ingo Molnare436d802007-07-19 21:28:35 +0200476
Ingo Molnar2cd4d0e2007-07-26 13:40:43 +0200477 local_irq_save(flags);
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200478 rq = cpu_rq(cpu);
479 update_rq_clock(rq);
480 now = rq->clock;
Ingo Molnar2cd4d0e2007-07-26 13:40:43 +0200481 local_irq_restore(flags);
Ingo Molnare436d802007-07-19 21:28:35 +0200482
483 return now;
484}
Paul E. McKenneya58f6f22007-10-15 17:00:14 +0200485EXPORT_SYMBOL_GPL(cpu_clock);
Ingo Molnare436d802007-07-19 21:28:35 +0200486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700488# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700490#ifndef finish_arch_switch
491# define finish_arch_switch(prev) do { } while (0)
492#endif
493
494#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700495static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700496{
497 return rq->curr == p;
498}
499
Ingo Molnar70b97a72006-07-03 00:25:42 -0700500static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700501{
502}
503
Ingo Molnar70b97a72006-07-03 00:25:42 -0700504static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700505{
Ingo Molnarda04c032005-09-13 11:17:59 +0200506#ifdef CONFIG_DEBUG_SPINLOCK
507 /* this is a valid case when another task releases the spinlock */
508 rq->lock.owner = current;
509#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700510 /*
511 * If we are tracking spinlock dependencies then we have to
512 * fix up the runqueue lock - which gets 'carried over' from
513 * prev into current:
514 */
515 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
516
Nick Piggin4866cde2005-06-25 14:57:23 -0700517 spin_unlock_irq(&rq->lock);
518}
519
520#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700521static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700522{
523#ifdef CONFIG_SMP
524 return p->oncpu;
525#else
526 return rq->curr == p;
527#endif
528}
529
Ingo Molnar70b97a72006-07-03 00:25:42 -0700530static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700531{
532#ifdef CONFIG_SMP
533 /*
534 * We can optimise this out completely for !SMP, because the
535 * SMP rebalancing from interrupt is the only thing that cares
536 * here.
537 */
538 next->oncpu = 1;
539#endif
540#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
541 spin_unlock_irq(&rq->lock);
542#else
543 spin_unlock(&rq->lock);
544#endif
545}
546
Ingo Molnar70b97a72006-07-03 00:25:42 -0700547static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700548{
549#ifdef CONFIG_SMP
550 /*
551 * After ->oncpu is cleared, the task can be moved to a different CPU.
552 * We must ensure this doesn't happen until the switch is completely
553 * finished.
554 */
555 smp_wmb();
556 prev->oncpu = 0;
557#endif
558#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
559 local_irq_enable();
560#endif
561}
562#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
564/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700565 * __task_rq_lock - lock the runqueue a given task resides on.
566 * Must be called interrupts disabled.
567 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700568static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700569 __acquires(rq->lock)
570{
Andi Kleen3a5c3592007-10-15 17:00:14 +0200571 for (;;) {
572 struct rq *rq = task_rq(p);
573 spin_lock(&rq->lock);
574 if (likely(rq == task_rq(p)))
575 return rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -0700576 spin_unlock(&rq->lock);
Ingo Molnarb29739f2006-06-27 02:54:51 -0700577 }
Ingo Molnarb29739f2006-06-27 02:54:51 -0700578}
579
580/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 * task_rq_lock - lock the runqueue a given task resides on and disable
582 * interrupts. Note the ordering: we can safely lookup the task_rq without
583 * explicitly disabling preemption.
584 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700585static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 __acquires(rq->lock)
587{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700588 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Andi Kleen3a5c3592007-10-15 17:00:14 +0200590 for (;;) {
591 local_irq_save(*flags);
592 rq = task_rq(p);
593 spin_lock(&rq->lock);
594 if (likely(rq == task_rq(p)))
595 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 spin_unlock_irqrestore(&rq->lock, *flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598}
599
Alexey Dobriyana9957442007-10-15 17:00:13 +0200600static void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700601 __releases(rq->lock)
602{
603 spin_unlock(&rq->lock);
604}
605
Ingo Molnar70b97a72006-07-03 00:25:42 -0700606static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 __releases(rq->lock)
608{
609 spin_unlock_irqrestore(&rq->lock, *flags);
610}
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -0800613 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 */
Alexey Dobriyana9957442007-10-15 17:00:13 +0200615static struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 __acquires(rq->lock)
617{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700618 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620 local_irq_disable();
621 rq = this_rq();
622 spin_lock(&rq->lock);
623
624 return rq;
625}
626
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200627/*
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200628 * We are going deep-idle (irqs are disabled):
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200629 */
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200630void sched_clock_idle_sleep_event(void)
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200631{
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200632 struct rq *rq = cpu_rq(smp_processor_id());
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200633
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200634 spin_lock(&rq->lock);
635 __update_rq_clock(rq);
636 spin_unlock(&rq->lock);
637 rq->clock_deep_idle_events++;
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200638}
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200639EXPORT_SYMBOL_GPL(sched_clock_idle_sleep_event);
640
641/*
642 * We just idled delta nanoseconds (called with irqs disabled):
643 */
644void sched_clock_idle_wakeup_event(u64 delta_ns)
645{
646 struct rq *rq = cpu_rq(smp_processor_id());
647 u64 now = sched_clock();
648
649 rq->idle_clock += delta_ns;
650 /*
651 * Override the previous timestamp and ignore all
652 * sched_clock() deltas that occured while we idled,
653 * and use the PM-provided delta_ns to advance the
654 * rq clock:
655 */
656 spin_lock(&rq->lock);
657 rq->prev_clock_raw = now;
658 rq->clock += delta_ns;
659 spin_unlock(&rq->lock);
660}
661EXPORT_SYMBOL_GPL(sched_clock_idle_wakeup_event);
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200662
663/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200664 * resched_task - mark a task 'to be rescheduled now'.
665 *
666 * On UP this means the setting of the need_resched flag, on SMP it
667 * might also involve a cross-CPU call to trigger the scheduler on
668 * the target CPU.
669 */
670#ifdef CONFIG_SMP
671
672#ifndef tsk_is_polling
673#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
674#endif
675
676static void resched_task(struct task_struct *p)
677{
678 int cpu;
679
680 assert_spin_locked(&task_rq(p)->lock);
681
682 if (unlikely(test_tsk_thread_flag(p, TIF_NEED_RESCHED)))
683 return;
684
685 set_tsk_thread_flag(p, TIF_NEED_RESCHED);
686
687 cpu = task_cpu(p);
688 if (cpu == smp_processor_id())
689 return;
690
691 /* NEED_RESCHED must be visible before we test polling */
692 smp_mb();
693 if (!tsk_is_polling(p))
694 smp_send_reschedule(cpu);
695}
696
697static void resched_cpu(int cpu)
698{
699 struct rq *rq = cpu_rq(cpu);
700 unsigned long flags;
701
702 if (!spin_trylock_irqsave(&rq->lock, flags))
703 return;
704 resched_task(cpu_curr(cpu));
705 spin_unlock_irqrestore(&rq->lock, flags);
706}
707#else
708static inline void resched_task(struct task_struct *p)
709{
710 assert_spin_locked(&task_rq(p)->lock);
711 set_tsk_need_resched(p);
712}
713#endif
714
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200715#if BITS_PER_LONG == 32
716# define WMULT_CONST (~0UL)
717#else
718# define WMULT_CONST (1UL << 32)
719#endif
720
721#define WMULT_SHIFT 32
722
Ingo Molnar194081e2007-08-09 11:16:51 +0200723/*
724 * Shift right and round:
725 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +0200726#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +0200727
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +0200728static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200729calc_delta_mine(unsigned long delta_exec, unsigned long weight,
730 struct load_weight *lw)
731{
732 u64 tmp;
733
734 if (unlikely(!lw->inv_weight))
Ingo Molnar194081e2007-08-09 11:16:51 +0200735 lw->inv_weight = (WMULT_CONST - lw->weight/2) / lw->weight + 1;
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200736
737 tmp = (u64)delta_exec * weight;
738 /*
739 * Check whether we'd overflow the 64-bit multiplication:
740 */
Ingo Molnar194081e2007-08-09 11:16:51 +0200741 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +0200742 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +0200743 WMULT_SHIFT/2);
744 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +0200745 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200746
Ingo Molnarecf691d2007-08-02 17:41:40 +0200747 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200748}
749
750static inline unsigned long
751calc_delta_fair(unsigned long delta_exec, struct load_weight *lw)
752{
753 return calc_delta_mine(delta_exec, NICE_0_LOAD, lw);
754}
755
Ingo Molnar10919852007-10-15 17:00:04 +0200756static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200757{
758 lw->weight += inc;
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200759}
760
Ingo Molnar10919852007-10-15 17:00:04 +0200761static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200762{
763 lw->weight -= dec;
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200764}
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766/*
Peter Williams2dd73a42006-06-27 02:54:34 -0700767 * To aid in avoiding the subversion of "niceness" due to uneven distribution
768 * of tasks with abnormal "nice" values across CPUs the contribution that
769 * each task makes to its run queue's load is weighted according to its
770 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
771 * scaled version of the new time slice allocation that they receive on time
772 * slice expiry etc.
773 */
774
Ingo Molnardd41f592007-07-09 18:51:59 +0200775#define WEIGHT_IDLEPRIO 2
776#define WMULT_IDLEPRIO (1 << 31)
777
778/*
779 * Nice levels are multiplicative, with a gentle 10% change for every
780 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
781 * nice 1, it will get ~10% less CPU time than another CPU-bound task
782 * that remained on nice 0.
783 *
784 * The "10% effect" is relative and cumulative: from _any_ nice level,
785 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee2007-07-16 09:46:30 +0200786 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
787 * If a task goes up by ~10% and another task goes down by ~10% then
788 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +0200789 */
790static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +0200791 /* -20 */ 88761, 71755, 56483, 46273, 36291,
792 /* -15 */ 29154, 23254, 18705, 14949, 11916,
793 /* -10 */ 9548, 7620, 6100, 4904, 3906,
794 /* -5 */ 3121, 2501, 1991, 1586, 1277,
795 /* 0 */ 1024, 820, 655, 526, 423,
796 /* 5 */ 335, 272, 215, 172, 137,
797 /* 10 */ 110, 87, 70, 56, 45,
798 /* 15 */ 36, 29, 23, 18, 15,
Ingo Molnardd41f592007-07-09 18:51:59 +0200799};
800
Ingo Molnar5714d2d2007-07-16 09:46:31 +0200801/*
802 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
803 *
804 * In cases where the weight does not change often, we can use the
805 * precalculated inverse to speed up arithmetics by turning divisions
806 * into multiplications:
807 */
Ingo Molnardd41f592007-07-09 18:51:59 +0200808static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +0200809 /* -20 */ 48388, 59856, 76040, 92818, 118348,
810 /* -15 */ 147320, 184698, 229616, 287308, 360437,
811 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
812 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
813 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
814 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
815 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
816 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +0200817};
Peter Williams2dd73a42006-06-27 02:54:34 -0700818
Ingo Molnardd41f592007-07-09 18:51:59 +0200819static void activate_task(struct rq *rq, struct task_struct *p, int wakeup);
820
821/*
822 * runqueue iterator, to support SMP load-balancing between different
823 * scheduling classes, without having to expose their internal data
824 * structures to the load-balancing proper:
825 */
826struct rq_iterator {
827 void *arg;
828 struct task_struct *(*start)(void *);
829 struct task_struct *(*next)(void *);
830};
831
832static int balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
833 unsigned long max_nr_move, unsigned long max_load_move,
834 struct sched_domain *sd, enum cpu_idle_type idle,
835 int *all_pinned, unsigned long *load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +0200836 int *this_best_prio, struct rq_iterator *iterator);
Ingo Molnardd41f592007-07-09 18:51:59 +0200837
838#include "sched_stats.h"
Ingo Molnardd41f592007-07-09 18:51:59 +0200839#include "sched_idletask.c"
Ingo Molnar5522d5d2007-10-15 17:00:12 +0200840#include "sched_fair.c"
841#include "sched_rt.c"
Ingo Molnardd41f592007-07-09 18:51:59 +0200842#ifdef CONFIG_SCHED_DEBUG
843# include "sched_debug.c"
844#endif
845
846#define sched_class_highest (&rt_sched_class)
847
Ingo Molnar9c217242007-08-02 17:41:40 +0200848/*
849 * Update delta_exec, delta_fair fields for rq.
850 *
851 * delta_fair clock advances at a rate inversely proportional to
Dmitry Adamushko495eca42007-10-15 17:00:06 +0200852 * total load (rq->load.weight) on the runqueue, while
Ingo Molnar9c217242007-08-02 17:41:40 +0200853 * delta_exec advances at the same rate as wall-clock (provided
854 * cpu is not idle).
855 *
856 * delta_exec / delta_fair is a measure of the (smoothened) load on this
857 * runqueue over any given interval. This (smoothened) load is used
858 * during load balance.
859 *
Dmitry Adamushko495eca42007-10-15 17:00:06 +0200860 * This function is called /before/ updating rq->load
Ingo Molnar9c217242007-08-02 17:41:40 +0200861 * and when switching tasks.
862 */
Ingo Molnar29b4b622007-08-09 11:16:49 +0200863static inline void inc_load(struct rq *rq, const struct task_struct *p)
Ingo Molnar9c217242007-08-02 17:41:40 +0200864{
Dmitry Adamushko495eca42007-10-15 17:00:06 +0200865 update_load_add(&rq->load, p->se.load.weight);
Ingo Molnar9c217242007-08-02 17:41:40 +0200866}
867
Ingo Molnar79b5ddd2007-08-09 11:16:49 +0200868static inline void dec_load(struct rq *rq, const struct task_struct *p)
Ingo Molnar9c217242007-08-02 17:41:40 +0200869{
Dmitry Adamushko495eca42007-10-15 17:00:06 +0200870 update_load_sub(&rq->load, p->se.load.weight);
Ingo Molnar9c217242007-08-02 17:41:40 +0200871}
872
Ingo Molnare5fa2232007-08-09 11:16:49 +0200873static void inc_nr_running(struct task_struct *p, struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +0200874{
875 rq->nr_running++;
Ingo Molnar29b4b622007-08-09 11:16:49 +0200876 inc_load(rq, p);
Ingo Molnar9c217242007-08-02 17:41:40 +0200877}
878
Ingo Molnardb531812007-08-09 11:16:49 +0200879static void dec_nr_running(struct task_struct *p, struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +0200880{
881 rq->nr_running--;
Ingo Molnar79b5ddd2007-08-09 11:16:49 +0200882 dec_load(rq, p);
Ingo Molnar9c217242007-08-02 17:41:40 +0200883}
884
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200885static void set_load_weight(struct task_struct *p)
886{
887 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +0200888 p->se.load.weight = prio_to_weight[0] * 2;
889 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
890 return;
891 }
892
893 /*
894 * SCHED_IDLE tasks get minimal weight:
895 */
896 if (p->policy == SCHED_IDLE) {
897 p->se.load.weight = WEIGHT_IDLEPRIO;
898 p->se.load.inv_weight = WMULT_IDLEPRIO;
899 return;
900 }
901
902 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
903 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200904}
905
Ingo Molnar8159f872007-08-09 11:16:49 +0200906static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnar71f8bd42007-07-09 18:51:59 +0200907{
908 sched_info_queued(p);
Ingo Molnarfd390f62007-08-09 11:16:48 +0200909 p->sched_class->enqueue_task(rq, p, wakeup);
Ingo Molnardd41f592007-07-09 18:51:59 +0200910 p->se.on_rq = 1;
911}
912
Ingo Molnar69be72c2007-08-09 11:16:49 +0200913static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnardd41f592007-07-09 18:51:59 +0200914{
Ingo Molnarf02231e2007-08-09 11:16:48 +0200915 p->sched_class->dequeue_task(rq, p, sleep);
Ingo Molnardd41f592007-07-09 18:51:59 +0200916 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +0200917}
918
919/*
Ingo Molnardd41f592007-07-09 18:51:59 +0200920 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +0200921 */
Ingo Molnar14531182007-07-09 18:51:59 +0200922static inline int __normal_prio(struct task_struct *p)
923{
Ingo Molnardd41f592007-07-09 18:51:59 +0200924 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +0200925}
926
927/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700928 * Calculate the expected normal priority: i.e. priority
929 * without taking RT-inheritance into account. Might be
930 * boosted by interactivity modifiers. Changes upon fork,
931 * setprio syscalls, and whenever the interactivity
932 * estimator recalculates.
933 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700934static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700935{
936 int prio;
937
Ingo Molnare05606d2007-07-09 18:51:59 +0200938 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -0700939 prio = MAX_RT_PRIO-1 - p->rt_priority;
940 else
941 prio = __normal_prio(p);
942 return prio;
943}
944
945/*
946 * Calculate the current priority, i.e. the priority
947 * taken into account by the scheduler. This value might
948 * be boosted by RT tasks, or might be boosted by
949 * interactivity modifiers. Will be RT if the task got
950 * RT-boosted. If not then it returns p->normal_prio.
951 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700952static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700953{
954 p->normal_prio = normal_prio(p);
955 /*
956 * If we are RT tasks or we were boosted to RT priority,
957 * keep the priority unchanged. Otherwise, update priority
958 * to the normal priority:
959 */
960 if (!rt_prio(p->prio))
961 return p->normal_prio;
962 return p->prio;
963}
964
965/*
Ingo Molnardd41f592007-07-09 18:51:59 +0200966 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 */
Ingo Molnardd41f592007-07-09 18:51:59 +0200968static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
Ingo Molnardd41f592007-07-09 18:51:59 +0200970 if (p->state == TASK_UNINTERRUPTIBLE)
971 rq->nr_uninterruptible--;
972
Ingo Molnar8159f872007-08-09 11:16:49 +0200973 enqueue_task(rq, p, wakeup);
Ingo Molnare5fa2232007-08-09 11:16:49 +0200974 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975}
976
977/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 * deactivate_task - remove a task from the runqueue.
979 */
Ingo Molnar2e1cb742007-08-09 11:16:49 +0200980static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
Ingo Molnardd41f592007-07-09 18:51:59 +0200982 if (p->state == TASK_UNINTERRUPTIBLE)
983 rq->nr_uninterruptible++;
984
Ingo Molnar69be72c2007-08-09 11:16:49 +0200985 dequeue_task(rq, p, sleep);
Ingo Molnardb531812007-08-09 11:16:49 +0200986 dec_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987}
988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989/**
990 * task_curr - is this task currently executing on a CPU?
991 * @p: the task in question.
992 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700993inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994{
995 return cpu_curr(task_cpu(p)) == p;
996}
997
Peter Williams2dd73a42006-06-27 02:54:34 -0700998/* Used instead of source_load when we know the type == 0 */
999unsigned long weighted_cpuload(const int cpu)
1000{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02001001 return cpu_rq(cpu)->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02001002}
1003
1004static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1005{
1006#ifdef CONFIG_SMP
1007 task_thread_info(p)->cpu = cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02001008#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02001009 set_task_cfs_rq(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07001010}
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +02001013
Ingo Molnardd41f592007-07-09 18:51:59 +02001014void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02001015{
Ingo Molnardd41f592007-07-09 18:51:59 +02001016 int old_cpu = task_cpu(p);
1017 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001018 struct cfs_rq *old_cfsrq = task_cfs_rq(p),
1019 *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02001020 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001021
1022 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001023
1024#ifdef CONFIG_SCHEDSTATS
1025 if (p->se.wait_start)
1026 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001027 if (p->se.sleep_start)
1028 p->se.sleep_start -= clock_offset;
1029 if (p->se.block_start)
1030 p->se.block_start -= clock_offset;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001031#endif
Srivatsa Vaddagiri2830cf82007-10-15 17:00:12 +02001032 p->se.vruntime -= old_cfsrq->min_vruntime -
1033 new_cfsrq->min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02001034
1035 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02001036}
1037
Ingo Molnar70b97a72006-07-03 00:25:42 -07001038struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Ingo Molnar36c8b582006-07-03 00:25:41 -07001041 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 int dest_cpu;
1043
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001045};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
1047/*
1048 * The task's runqueue lock must be held.
1049 * Returns true if you have to wait for migration thread.
1050 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001051static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07001052migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001054 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056 /*
1057 * If the task is not on a runqueue (and not running), then
1058 * it is sufficient to simply update the task's cpu field.
1059 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001060 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 set_task_cpu(p, dest_cpu);
1062 return 0;
1063 }
1064
1065 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 req->task = p;
1067 req->dest_cpu = dest_cpu;
1068 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07001069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 return 1;
1071}
1072
1073/*
1074 * wait_task_inactive - wait for a thread to unschedule.
1075 *
1076 * The caller must ensure that the task *will* unschedule sometime soon,
1077 * else this function might spin for a *long* time. This function can't
1078 * be called with interrupts off, or it may introduce deadlock with
1079 * smp_call_function() if an IPI is sent by the same process we are
1080 * waiting to become inactive.
1081 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001082void wait_task_inactive(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083{
1084 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001085 int running, on_rq;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001086 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Andi Kleen3a5c3592007-10-15 17:00:14 +02001088 for (;;) {
1089 /*
1090 * We do the initial early heuristics without holding
1091 * any task-queue locks at all. We'll only try to get
1092 * the runqueue lock when things look like they will
1093 * work out!
1094 */
1095 rq = task_rq(p);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001096
Andi Kleen3a5c3592007-10-15 17:00:14 +02001097 /*
1098 * If the task is actively running on another CPU
1099 * still, just relax and busy-wait without holding
1100 * any locks.
1101 *
1102 * NOTE! Since we don't hold any locks, it's not
1103 * even sure that "rq" stays as the right runqueue!
1104 * But we don't care, since "task_running()" will
1105 * return false if the runqueue has changed and p
1106 * is actually now running somewhere else!
1107 */
1108 while (task_running(rq, p))
1109 cpu_relax();
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001110
Andi Kleen3a5c3592007-10-15 17:00:14 +02001111 /*
1112 * Ok, time to look more closely! We need the rq
1113 * lock now, to be *sure*. If we're wrong, we'll
1114 * just go back and repeat.
1115 */
1116 rq = task_rq_lock(p, &flags);
1117 running = task_running(rq, p);
1118 on_rq = p->se.on_rq;
1119 task_rq_unlock(rq, &flags);
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001120
Andi Kleen3a5c3592007-10-15 17:00:14 +02001121 /*
1122 * Was it really running after all now that we
1123 * checked with the proper locks actually held?
1124 *
1125 * Oops. Go back and try again..
1126 */
1127 if (unlikely(running)) {
1128 cpu_relax();
1129 continue;
1130 }
1131
1132 /*
1133 * It's not enough that it's not actively running,
1134 * it must be off the runqueue _entirely_, and not
1135 * preempted!
1136 *
1137 * So if it wa still runnable (but just not actively
1138 * running right now), it's preempted, and we should
1139 * yield - it could be a while.
1140 */
1141 if (unlikely(on_rq)) {
1142 schedule_timeout_uninterruptible(1);
1143 continue;
1144 }
1145
1146 /*
1147 * Ahh, all good. It wasn't running, and it wasn't
1148 * runnable, which means that it will never become
1149 * running in the future either. We're all done!
1150 */
1151 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153}
1154
1155/***
1156 * kick_process - kick a running thread to enter/exit the kernel
1157 * @p: the to-be-kicked thread
1158 *
1159 * Cause a process which is running on another CPU to enter
1160 * kernel-mode, without any delay. (to get signals handled.)
1161 *
1162 * NOTE: this function doesnt have to take the runqueue lock,
1163 * because all it wants to ensure is that the remote task enters
1164 * the kernel. If the IPI races and the task has been migrated
1165 * to another CPU then no harm is done and the purpose has been
1166 * achieved as well.
1167 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001168void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169{
1170 int cpu;
1171
1172 preempt_disable();
1173 cpu = task_cpu(p);
1174 if ((cpu != smp_processor_id()) && task_curr(p))
1175 smp_send_reschedule(cpu);
1176 preempt_enable();
1177}
1178
1179/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001180 * Return a low guess at the load of a migration-source cpu weighted
1181 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 *
1183 * We want to under-estimate the load of migration sources, to
1184 * balance conservatively.
1185 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001186static unsigned long source_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08001187{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001188 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001189 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001190
Peter Williams2dd73a42006-06-27 02:54:34 -07001191 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001192 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001193
Ingo Molnardd41f592007-07-09 18:51:59 +02001194 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195}
1196
1197/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001198 * Return a high guess at the load of a migration-target cpu weighted
1199 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001201static unsigned long target_load(int cpu, int type)
Con Kolivasb9104722005-11-08 21:38:55 -08001202{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001203 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001204 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001205
Peter Williams2dd73a42006-06-27 02:54:34 -07001206 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001207 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001208
Ingo Molnardd41f592007-07-09 18:51:59 +02001209 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07001210}
1211
1212/*
1213 * Return the average load per task on the cpu's run queue
1214 */
1215static inline unsigned long cpu_avg_load_per_task(int cpu)
1216{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001217 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001218 unsigned long total = weighted_cpuload(cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07001219 unsigned long n = rq->nr_running;
1220
Ingo Molnardd41f592007-07-09 18:51:59 +02001221 return n ? total / n : SCHED_LOAD_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222}
1223
Nick Piggin147cbb42005-06-25 14:57:19 -07001224/*
1225 * find_idlest_group finds and returns the least busy CPU group within the
1226 * domain.
1227 */
1228static struct sched_group *
1229find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
1230{
1231 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
1232 unsigned long min_load = ULONG_MAX, this_load = 0;
1233 int load_idx = sd->forkexec_idx;
1234 int imbalance = 100 + (sd->imbalance_pct-100)/2;
1235
1236 do {
1237 unsigned long load, avg_load;
1238 int local_group;
1239 int i;
1240
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001241 /* Skip over this group if it has no CPUs allowed */
1242 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
Andi Kleen3a5c3592007-10-15 17:00:14 +02001243 continue;
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001244
Nick Piggin147cbb42005-06-25 14:57:19 -07001245 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07001246
1247 /* Tally up the load of all CPUs in the group */
1248 avg_load = 0;
1249
1250 for_each_cpu_mask(i, group->cpumask) {
1251 /* Bias balancing toward cpus of our domain */
1252 if (local_group)
1253 load = source_load(i, load_idx);
1254 else
1255 load = target_load(i, load_idx);
1256
1257 avg_load += load;
1258 }
1259
1260 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07001261 avg_load = sg_div_cpu_power(group,
1262 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07001263
1264 if (local_group) {
1265 this_load = avg_load;
1266 this = group;
1267 } else if (avg_load < min_load) {
1268 min_load = avg_load;
1269 idlest = group;
1270 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02001271 } while (group = group->next, group != sd->groups);
Nick Piggin147cbb42005-06-25 14:57:19 -07001272
1273 if (!idlest || 100*this_load < imbalance*min_load)
1274 return NULL;
1275 return idlest;
1276}
1277
1278/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07001279 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07001280 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07001281static int
1282find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu)
Nick Piggin147cbb42005-06-25 14:57:19 -07001283{
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001284 cpumask_t tmp;
Nick Piggin147cbb42005-06-25 14:57:19 -07001285 unsigned long load, min_load = ULONG_MAX;
1286 int idlest = -1;
1287 int i;
1288
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001289 /* Traverse only the allowed CPUs */
1290 cpus_and(tmp, group->cpumask, p->cpus_allowed);
1291
1292 for_each_cpu_mask(i, tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07001293 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07001294
1295 if (load < min_load || (load == min_load && i == this_cpu)) {
1296 min_load = load;
1297 idlest = i;
1298 }
1299 }
1300
1301 return idlest;
1302}
1303
Nick Piggin476d1392005-06-25 14:57:29 -07001304/*
1305 * sched_balance_self: balance the current task (running on cpu) in domains
1306 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
1307 * SD_BALANCE_EXEC.
1308 *
1309 * Balance, ie. select the least loaded group.
1310 *
1311 * Returns the target CPU number, or the same CPU if no balancing is needed.
1312 *
1313 * preempt must be disabled.
1314 */
1315static int sched_balance_self(int cpu, int flag)
1316{
1317 struct task_struct *t = current;
1318 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07001319
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001320 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02001321 /*
1322 * If power savings logic is enabled for a domain, stop there.
1323 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07001324 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
1325 break;
Nick Piggin476d1392005-06-25 14:57:29 -07001326 if (tmp->flags & flag)
1327 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001328 }
Nick Piggin476d1392005-06-25 14:57:29 -07001329
1330 while (sd) {
1331 cpumask_t span;
1332 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001333 int new_cpu, weight;
1334
1335 if (!(sd->flags & flag)) {
1336 sd = sd->child;
1337 continue;
1338 }
Nick Piggin476d1392005-06-25 14:57:29 -07001339
1340 span = sd->span;
1341 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001342 if (!group) {
1343 sd = sd->child;
1344 continue;
1345 }
Nick Piggin476d1392005-06-25 14:57:29 -07001346
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001347 new_cpu = find_idlest_cpu(group, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001348 if (new_cpu == -1 || new_cpu == cpu) {
1349 /* Now try balancing at a lower domain level of cpu */
1350 sd = sd->child;
1351 continue;
1352 }
Nick Piggin476d1392005-06-25 14:57:29 -07001353
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001354 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07001355 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07001356 sd = NULL;
1357 weight = cpus_weight(span);
1358 for_each_domain(cpu, tmp) {
1359 if (weight <= cpus_weight(tmp->span))
1360 break;
1361 if (tmp->flags & flag)
1362 sd = tmp;
1363 }
1364 /* while loop will break here if sd == NULL */
1365 }
1366
1367 return cpu;
1368}
1369
1370#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
1372/*
1373 * wake_idle() will wake a task on an idle cpu if task->cpu is
1374 * not idle and an idle cpu is available. The span of cpus to
1375 * search starts with cpus closest then further out as needed,
1376 * so we always favor a closer, idle cpu.
1377 *
1378 * Returns the CPU we should wake onto.
1379 */
1380#if defined(ARCH_HAS_SCHED_WAKE_IDLE)
Ingo Molnar36c8b582006-07-03 00:25:41 -07001381static int wake_idle(int cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382{
1383 cpumask_t tmp;
1384 struct sched_domain *sd;
1385 int i;
1386
Siddha, Suresh B49531982007-05-08 00:33:01 -07001387 /*
1388 * If it is idle, then it is the best cpu to run this task.
1389 *
1390 * This cpu is also the best, if it has more than one task already.
1391 * Siblings must be also busy(in most cases) as they didn't already
1392 * pickup the extra load from this cpu and hence we need not check
1393 * sibling runqueue info. This will avoid the checks and cache miss
1394 * penalities associated with that.
1395 */
1396 if (idle_cpu(cpu) || cpu_rq(cpu)->nr_running > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 return cpu;
1398
1399 for_each_domain(cpu, sd) {
1400 if (sd->flags & SD_WAKE_IDLE) {
Nick Piggine0f364f2005-06-25 14:57:06 -07001401 cpus_and(tmp, sd->span, p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 for_each_cpu_mask(i, tmp) {
1403 if (idle_cpu(i))
1404 return i;
1405 }
Ingo Molnar9761eea2007-07-09 18:52:00 +02001406 } else {
Nick Piggine0f364f2005-06-25 14:57:06 -07001407 break;
Ingo Molnar9761eea2007-07-09 18:52:00 +02001408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 }
1410 return cpu;
1411}
1412#else
Ingo Molnar36c8b582006-07-03 00:25:41 -07001413static inline int wake_idle(int cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414{
1415 return cpu;
1416}
1417#endif
1418
1419/***
1420 * try_to_wake_up - wake up a thread
1421 * @p: the to-be-woken-up thread
1422 * @state: the mask of task states that can be woken
1423 * @sync: do a synchronous wakeup?
1424 *
1425 * Put it on the run-queue if it's not already there. The "current"
1426 * thread is always on the run-queue (except when the actual
1427 * re-schedule is in progress), and as such you're allowed to do
1428 * the simpler "current->state = TASK_RUNNING" to mark yourself
1429 * runnable without the overhead of this.
1430 *
1431 * returns failure only if the task is already active.
1432 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001433static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434{
1435 int cpu, this_cpu, success = 0;
1436 unsigned long flags;
1437 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001438 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439#ifdef CONFIG_SMP
Nick Piggin78979862005-06-25 14:57:13 -07001440 struct sched_domain *sd, *this_sd = NULL;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001441 unsigned long load, this_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 int new_cpu;
1443#endif
1444
1445 rq = task_rq_lock(p, &flags);
1446 old_state = p->state;
1447 if (!(old_state & state))
1448 goto out;
1449
Ingo Molnardd41f592007-07-09 18:51:59 +02001450 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 goto out_running;
1452
1453 cpu = task_cpu(p);
1454 this_cpu = smp_processor_id();
1455
1456#ifdef CONFIG_SMP
1457 if (unlikely(task_running(rq, p)))
1458 goto out_activate;
1459
Nick Piggin78979862005-06-25 14:57:13 -07001460 new_cpu = cpu;
1461
Ingo Molnar2d723762007-10-15 17:00:12 +02001462 schedstat_inc(rq, ttwu_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 if (cpu == this_cpu) {
1464 schedstat_inc(rq, ttwu_local);
Nick Piggin78979862005-06-25 14:57:13 -07001465 goto out_set_cpu;
1466 }
1467
1468 for_each_domain(this_cpu, sd) {
1469 if (cpu_isset(cpu, sd->span)) {
1470 schedstat_inc(sd, ttwu_wake_remote);
1471 this_sd = sd;
1472 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 }
1474 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Nick Piggin78979862005-06-25 14:57:13 -07001476 if (unlikely(!cpu_isset(this_cpu, p->cpus_allowed)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 goto out_set_cpu;
1478
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 /*
Nick Piggin78979862005-06-25 14:57:13 -07001480 * Check for affine wakeup and passive balancing possibilities.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 */
Nick Piggin78979862005-06-25 14:57:13 -07001482 if (this_sd) {
1483 int idx = this_sd->wake_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 unsigned int imbalance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Nick Piggina3f21bc2005-06-25 14:57:15 -07001486 imbalance = 100 + (this_sd->imbalance_pct - 100) / 2;
1487
Nick Piggin78979862005-06-25 14:57:13 -07001488 load = source_load(cpu, idx);
1489 this_load = target_load(this_cpu, idx);
1490
Nick Piggin78979862005-06-25 14:57:13 -07001491 new_cpu = this_cpu; /* Wake to this CPU if we can */
1492
Nick Piggina3f21bc2005-06-25 14:57:15 -07001493 if (this_sd->flags & SD_WAKE_AFFINE) {
1494 unsigned long tl = this_load;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08001495 unsigned long tl_per_task;
1496
1497 tl_per_task = cpu_avg_load_per_task(this_cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07001498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 /*
Nick Piggina3f21bc2005-06-25 14:57:15 -07001500 * If sync wakeup then subtract the (maximum possible)
1501 * effect of the currently running task from the load
1502 * of the current CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 */
Nick Piggina3f21bc2005-06-25 14:57:15 -07001504 if (sync)
Ingo Molnardd41f592007-07-09 18:51:59 +02001505 tl -= current->se.load.weight;
Nick Piggina3f21bc2005-06-25 14:57:15 -07001506
1507 if ((tl <= load &&
Peter Williams2dd73a42006-06-27 02:54:34 -07001508 tl + target_load(cpu, idx) <= tl_per_task) ||
Ingo Molnardd41f592007-07-09 18:51:59 +02001509 100*(tl + p->se.load.weight) <= imbalance*load) {
Nick Piggina3f21bc2005-06-25 14:57:15 -07001510 /*
1511 * This domain has SD_WAKE_AFFINE and
1512 * p is cache cold in this domain, and
1513 * there is no bad imbalance.
1514 */
1515 schedstat_inc(this_sd, ttwu_move_affine);
1516 goto out_set_cpu;
1517 }
1518 }
1519
1520 /*
1521 * Start passive balancing when half the imbalance_pct
1522 * limit is reached.
1523 */
1524 if (this_sd->flags & SD_WAKE_BALANCE) {
1525 if (imbalance*this_load <= 100*load) {
1526 schedstat_inc(this_sd, ttwu_move_balance);
1527 goto out_set_cpu;
1528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 }
1530 }
1531
1532 new_cpu = cpu; /* Could not wake to this_cpu. Wake to cpu instead */
1533out_set_cpu:
1534 new_cpu = wake_idle(new_cpu, p);
1535 if (new_cpu != cpu) {
1536 set_task_cpu(p, new_cpu);
1537 task_rq_unlock(rq, &flags);
1538 /* might preempt at this point */
1539 rq = task_rq_lock(p, &flags);
1540 old_state = p->state;
1541 if (!(old_state & state))
1542 goto out;
Ingo Molnardd41f592007-07-09 18:51:59 +02001543 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 goto out_running;
1545
1546 this_cpu = smp_processor_id();
1547 cpu = task_cpu(p);
1548 }
1549
1550out_activate:
1551#endif /* CONFIG_SMP */
Ingo Molnar2daa3572007-08-09 11:16:51 +02001552 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02001553 activate_task(rq, p, 1);
Ingo Molnard79fc0f2005-09-10 00:26:12 -07001554 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 * Sync wakeups (i.e. those types of wakeups where the waker
1556 * has indicated that it will leave the CPU in short order)
1557 * don't trigger a preemption, if the woken up task will run on
1558 * this cpu. (in this case the 'I will reschedule' promise of
1559 * the waker guarantees that the freshly woken up task is going
1560 * to be considered on this CPU.)
1561 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001562 if (!sync || cpu != this_cpu)
1563 check_preempt_curr(rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 success = 1;
1565
1566out_running:
1567 p->state = TASK_RUNNING;
1568out:
1569 task_rq_unlock(rq, &flags);
1570
1571 return success;
1572}
1573
Ingo Molnar36c8b582006-07-03 00:25:41 -07001574int fastcall wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575{
1576 return try_to_wake_up(p, TASK_STOPPED | TASK_TRACED |
1577 TASK_INTERRUPTIBLE | TASK_UNINTERRUPTIBLE, 0);
1578}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579EXPORT_SYMBOL(wake_up_process);
1580
Ingo Molnar36c8b582006-07-03 00:25:41 -07001581int fastcall wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582{
1583 return try_to_wake_up(p, state, 0);
1584}
1585
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586/*
1587 * Perform scheduler related setup for a newly forked process p.
1588 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02001589 *
1590 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001592static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593{
Ingo Molnardd41f592007-07-09 18:51:59 +02001594 p->se.exec_start = 0;
1595 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02001596 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001597
1598#ifdef CONFIG_SCHEDSTATS
1599 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001600 p->se.sum_sleep_runtime = 0;
1601 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001602 p->se.block_start = 0;
1603 p->se.sleep_max = 0;
1604 p->se.block_max = 0;
1605 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02001606 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001607 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001608#endif
Nick Piggin476d1392005-06-25 14:57:29 -07001609
Ingo Molnardd41f592007-07-09 18:51:59 +02001610 INIT_LIST_HEAD(&p->run_list);
1611 p->se.on_rq = 0;
Nick Piggin476d1392005-06-25 14:57:29 -07001612
Avi Kivitye107be32007-07-26 13:40:43 +02001613#ifdef CONFIG_PREEMPT_NOTIFIERS
1614 INIT_HLIST_HEAD(&p->preempt_notifiers);
1615#endif
1616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 /*
1618 * We mark the process as running here, but have not actually
1619 * inserted it onto the runqueue yet. This guarantees that
1620 * nobody will actually run it, and a signal or other external
1621 * event cannot wake it up and insert it on the runqueue either.
1622 */
1623 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02001624}
1625
1626/*
1627 * fork()/clone()-time setup:
1628 */
1629void sched_fork(struct task_struct *p, int clone_flags)
1630{
1631 int cpu = get_cpu();
1632
1633 __sched_fork(p);
1634
1635#ifdef CONFIG_SMP
1636 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
1637#endif
Ingo Molnar02e4bac2007-10-15 17:00:11 +02001638 set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07001639
1640 /*
1641 * Make sure we do not leak PI boosting priority to the child:
1642 */
1643 p->prio = current->normal_prio;
Hiroshi Shimamoto2ddbf952007-10-15 17:00:11 +02001644 if (!rt_prio(p->prio))
1645 p->sched_class = &fair_sched_class;
Ingo Molnarb29739f2006-06-27 02:54:51 -07001646
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001647#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02001648 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001649 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08001651#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07001652 p->oncpu = 0;
1653#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07001655 /* Want to start with kernel preemption disabled. */
Al Viroa1261f52005-11-13 16:06:55 -08001656 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657#endif
Nick Piggin476d1392005-06-25 14:57:29 -07001658 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659}
1660
1661/*
1662 * wake_up_new_task - wake up a newly created task for the first time.
1663 *
1664 * This function will do some initial scheduler statistics housekeeping
1665 * that must be done for every newly created context, then puts the task
1666 * on the runqueue and wakes it.
1667 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001668void fastcall wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669{
1670 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001671 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
1673 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnara8e504d2007-08-09 11:16:47 +02001675 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
1677 p->prio = effective_prio(p);
1678
Ingo Molnar00bf7bf2007-10-15 17:00:14 +02001679 if (!p->sched_class->task_new || !current->se.on_rq || !rq->cfs.curr) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001680 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02001683 * Let the scheduling class do new task startup
1684 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02001686 p->sched_class->task_new(rq, p);
Ingo Molnare5fa2232007-08-09 11:16:49 +02001687 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 }
Ingo Molnardd41f592007-07-09 18:51:59 +02001689 check_preempt_curr(rq, p);
1690 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691}
1692
Avi Kivitye107be32007-07-26 13:40:43 +02001693#ifdef CONFIG_PREEMPT_NOTIFIERS
1694
1695/**
Randy Dunlap421cee22007-07-31 00:37:50 -07001696 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
1697 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02001698 */
1699void preempt_notifier_register(struct preempt_notifier *notifier)
1700{
1701 hlist_add_head(&notifier->link, &current->preempt_notifiers);
1702}
1703EXPORT_SYMBOL_GPL(preempt_notifier_register);
1704
1705/**
1706 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07001707 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02001708 *
1709 * This is safe to call from within a preemption notifier.
1710 */
1711void preempt_notifier_unregister(struct preempt_notifier *notifier)
1712{
1713 hlist_del(&notifier->link);
1714}
1715EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
1716
1717static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
1718{
1719 struct preempt_notifier *notifier;
1720 struct hlist_node *node;
1721
1722 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
1723 notifier->ops->sched_in(notifier, raw_smp_processor_id());
1724}
1725
1726static void
1727fire_sched_out_preempt_notifiers(struct task_struct *curr,
1728 struct task_struct *next)
1729{
1730 struct preempt_notifier *notifier;
1731 struct hlist_node *node;
1732
1733 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
1734 notifier->ops->sched_out(notifier, next);
1735}
1736
1737#else
1738
1739static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
1740{
1741}
1742
1743static void
1744fire_sched_out_preempt_notifiers(struct task_struct *curr,
1745 struct task_struct *next)
1746{
1747}
1748
1749#endif
1750
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751/**
Nick Piggin4866cde2005-06-25 14:57:23 -07001752 * prepare_task_switch - prepare to switch tasks
1753 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07001754 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07001755 * @next: the task we are going to switch to.
1756 *
1757 * This is called with the rq lock held and interrupts off. It must
1758 * be paired with a subsequent finish_task_switch after the context
1759 * switch.
1760 *
1761 * prepare_task_switch sets up locking and calls architecture specific
1762 * hooks.
1763 */
Avi Kivitye107be32007-07-26 13:40:43 +02001764static inline void
1765prepare_task_switch(struct rq *rq, struct task_struct *prev,
1766 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07001767{
Avi Kivitye107be32007-07-26 13:40:43 +02001768 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07001769 prepare_lock_switch(rq, next);
1770 prepare_arch_switch(next);
1771}
1772
1773/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04001775 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 * @prev: the thread we just switched away from.
1777 *
Nick Piggin4866cde2005-06-25 14:57:23 -07001778 * finish_task_switch must be called after the context switch, paired
1779 * with a prepare_task_switch call before the context switch.
1780 * finish_task_switch will reconcile locking set up by prepare_task_switch,
1781 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 *
1783 * Note that we may have delayed dropping an mm in context_switch(). If
1784 * so, we finish that here outside of the runqueue lock. (Doing it
1785 * with the lock held can cause deadlocks; see schedule() for
1786 * details.)
1787 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02001788static void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 __releases(rq->lock)
1790{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07001792 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
1794 rq->prev_mm = NULL;
1795
1796 /*
1797 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07001798 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07001799 * schedule one last time. The schedule call will never return, and
1800 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07001801 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 * still held, otherwise prev could be scheduled on another cpu, die
1803 * there before we look at prev->state, and then the reference would
1804 * be dropped twice.
1805 * Manfred Spraul <manfred@colorfullife.com>
1806 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07001807 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07001808 finish_arch_switch(prev);
1809 finish_lock_switch(rq, prev);
Avi Kivitye107be32007-07-26 13:40:43 +02001810 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 if (mm)
1812 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07001813 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08001814 /*
1815 * Remove function-return probe instances associated with this
1816 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02001817 */
bibo maoc6fd91f2006-03-26 01:38:20 -08001818 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08001820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821}
1822
1823/**
1824 * schedule_tail - first thing a freshly forked thread must call.
1825 * @prev: the thread we just switched away from.
1826 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001827asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 __releases(rq->lock)
1829{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001830 struct rq *rq = this_rq();
1831
Nick Piggin4866cde2005-06-25 14:57:23 -07001832 finish_task_switch(rq, prev);
1833#ifdef __ARCH_WANT_UNLOCKED_CTXSW
1834 /* In this case, finish_task_switch does not reenable preemption */
1835 preempt_enable();
1836#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 if (current->set_child_tid)
1838 put_user(current->pid, current->set_child_tid);
1839}
1840
1841/*
1842 * context_switch - switch to the new MM and the new
1843 * thread's register state.
1844 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001845static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07001846context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07001847 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
Ingo Molnardd41f592007-07-09 18:51:59 +02001849 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Avi Kivitye107be32007-07-26 13:40:43 +02001851 prepare_task_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02001852 mm = next->mm;
1853 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01001854 /*
1855 * For paravirt, this is coupled with an exit in switch_to to
1856 * combine the page table reload and the switch backend into
1857 * one hypercall.
1858 */
1859 arch_enter_lazy_cpu_mode();
1860
Ingo Molnardd41f592007-07-09 18:51:59 +02001861 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 next->active_mm = oldmm;
1863 atomic_inc(&oldmm->mm_count);
1864 enter_lazy_tlb(oldmm, next);
1865 } else
1866 switch_mm(oldmm, mm, next);
1867
Ingo Molnardd41f592007-07-09 18:51:59 +02001868 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 rq->prev_mm = oldmm;
1871 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07001872 /*
1873 * Since the runqueue lock will be released by the next
1874 * task (which is an invalid locking op but in the case
1875 * of the scheduler it's an obvious special-case), so we
1876 * do an early lockdep release here:
1877 */
1878#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07001879 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07001880#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
1882 /* Here we just switch the register state and the stack. */
1883 switch_to(prev, next, prev);
1884
Ingo Molnardd41f592007-07-09 18:51:59 +02001885 barrier();
1886 /*
1887 * this_rq must be evaluated again because prev may have moved
1888 * CPUs since it called schedule(), thus the 'rq' on its stack
1889 * frame will be invalid.
1890 */
1891 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892}
1893
1894/*
1895 * nr_running, nr_uninterruptible and nr_context_switches:
1896 *
1897 * externally visible scheduler statistics: current number of runnable
1898 * threads, current number of uninterruptible-sleeping threads, total
1899 * number of context switches performed since bootup.
1900 */
1901unsigned long nr_running(void)
1902{
1903 unsigned long i, sum = 0;
1904
1905 for_each_online_cpu(i)
1906 sum += cpu_rq(i)->nr_running;
1907
1908 return sum;
1909}
1910
1911unsigned long nr_uninterruptible(void)
1912{
1913 unsigned long i, sum = 0;
1914
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001915 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 sum += cpu_rq(i)->nr_uninterruptible;
1917
1918 /*
1919 * Since we read the counters lockless, it might be slightly
1920 * inaccurate. Do not allow it to go below zero though:
1921 */
1922 if (unlikely((long)sum < 0))
1923 sum = 0;
1924
1925 return sum;
1926}
1927
1928unsigned long long nr_context_switches(void)
1929{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07001930 int i;
1931 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001933 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 sum += cpu_rq(i)->nr_switches;
1935
1936 return sum;
1937}
1938
1939unsigned long nr_iowait(void)
1940{
1941 unsigned long i, sum = 0;
1942
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001943 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 sum += atomic_read(&cpu_rq(i)->nr_iowait);
1945
1946 return sum;
1947}
1948
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08001949unsigned long nr_active(void)
1950{
1951 unsigned long i, running = 0, uninterruptible = 0;
1952
1953 for_each_online_cpu(i) {
1954 running += cpu_rq(i)->nr_running;
1955 uninterruptible += cpu_rq(i)->nr_uninterruptible;
1956 }
1957
1958 if (unlikely((long)uninterruptible < 0))
1959 uninterruptible = 0;
1960
1961 return running + uninterruptible;
1962}
1963
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001965 * Update rq->cpu_load[] statistics. This function is usually called every
1966 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07001967 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001968static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07001969{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02001970 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02001971 int i, scale;
1972
1973 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02001974
1975 /* Update our load: */
1976 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
1977 unsigned long old_load, new_load;
1978
1979 /* scale is effectively 1 << i now, and >> i divides by scale */
1980
1981 old_load = this_rq->cpu_load[i];
1982 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02001983 /*
1984 * Round up the averaging division if load is increasing. This
1985 * prevents us from getting stuck on 9 if the load is 10, for
1986 * example.
1987 */
1988 if (new_load > old_load)
1989 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02001990 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
1991 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07001992}
1993
Ingo Molnardd41f592007-07-09 18:51:59 +02001994#ifdef CONFIG_SMP
1995
Ingo Molnar48f24c42006-07-03 00:25:40 -07001996/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 * double_rq_lock - safely lock two runqueues
1998 *
1999 * Note this does not disable interrupts like task_rq_lock,
2000 * you need to do so manually before calling.
2001 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002002static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 __acquires(rq1->lock)
2004 __acquires(rq2->lock)
2005{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002006 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 if (rq1 == rq2) {
2008 spin_lock(&rq1->lock);
2009 __acquire(rq2->lock); /* Fake it out ;) */
2010 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002011 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 spin_lock(&rq1->lock);
2013 spin_lock(&rq2->lock);
2014 } else {
2015 spin_lock(&rq2->lock);
2016 spin_lock(&rq1->lock);
2017 }
2018 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002019 update_rq_clock(rq1);
2020 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021}
2022
2023/*
2024 * double_rq_unlock - safely unlock two runqueues
2025 *
2026 * Note this does not restore interrupts like task_rq_unlock,
2027 * you need to do so manually after calling.
2028 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002029static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 __releases(rq1->lock)
2031 __releases(rq2->lock)
2032{
2033 spin_unlock(&rq1->lock);
2034 if (rq1 != rq2)
2035 spin_unlock(&rq2->lock);
2036 else
2037 __release(rq2->lock);
2038}
2039
2040/*
2041 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
2042 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002043static void double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 __releases(this_rq->lock)
2045 __acquires(busiest->lock)
2046 __acquires(this_rq->lock)
2047{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002048 if (unlikely(!irqs_disabled())) {
2049 /* printk() doesn't work good under rq->lock */
2050 spin_unlock(&this_rq->lock);
2051 BUG_ON(1);
2052 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002054 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 spin_unlock(&this_rq->lock);
2056 spin_lock(&busiest->lock);
2057 spin_lock(&this_rq->lock);
2058 } else
2059 spin_lock(&busiest->lock);
2060 }
2061}
2062
2063/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 * If dest_cpu is allowed for this process, migrate the task to it.
2065 * This is accomplished by forcing the cpu_allowed mask to only
2066 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
2067 * the cpu_allowed mask is restored.
2068 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002069static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002071 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002073 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
2075 rq = task_rq_lock(p, &flags);
2076 if (!cpu_isset(dest_cpu, p->cpus_allowed)
2077 || unlikely(cpu_is_offline(dest_cpu)))
2078 goto out;
2079
2080 /* force the process onto the specified CPU */
2081 if (migrate_task(p, dest_cpu, &req)) {
2082 /* Need to wait for migration thread (might exit: take ref). */
2083 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002084
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 get_task_struct(mt);
2086 task_rq_unlock(rq, &flags);
2087 wake_up_process(mt);
2088 put_task_struct(mt);
2089 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07002090
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 return;
2092 }
2093out:
2094 task_rq_unlock(rq, &flags);
2095}
2096
2097/*
Nick Piggin476d1392005-06-25 14:57:29 -07002098 * sched_exec - execve() is a valuable balancing opportunity, because at
2099 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 */
2101void sched_exec(void)
2102{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002104 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002106 if (new_cpu != this_cpu)
2107 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108}
2109
2110/*
2111 * pull_task - move a task from a remote runqueue to the local runqueue.
2112 * Both runqueues must be locked.
2113 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002114static void pull_task(struct rq *src_rq, struct task_struct *p,
2115 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02002117 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002119 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 /*
2121 * Note that idle threads have a prio of MAX_PRIO, for this test
2122 * to be always true for them.
2123 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002124 check_preempt_curr(this_rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125}
2126
2127/*
2128 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
2129 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002130static
Ingo Molnar70b97a72006-07-03 00:25:42 -07002131int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002132 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002133 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134{
2135 /*
2136 * We do not migrate tasks that are:
2137 * 1) running (obviously), or
2138 * 2) cannot be migrated to this CPU due to cpus_allowed, or
2139 * 3) are cache-hot on their current CPU.
2140 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 if (!cpu_isset(this_cpu, p->cpus_allowed))
2142 return 0;
Nick Piggin81026792005-06-25 14:57:07 -07002143 *all_pinned = 0;
2144
2145 if (task_running(rq, p))
2146 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 return 1;
2149}
2150
Ingo Molnardd41f592007-07-09 18:51:59 +02002151static int balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
2152 unsigned long max_nr_move, unsigned long max_load_move,
2153 struct sched_domain *sd, enum cpu_idle_type idle,
2154 int *all_pinned, unsigned long *load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002155 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02002156{
2157 int pulled = 0, pinned = 0, skip_for_load;
2158 struct task_struct *p;
2159 long rem_load_move = max_load_move;
2160
2161 if (max_nr_move == 0 || max_load_move == 0)
2162 goto out;
2163
2164 pinned = 1;
2165
2166 /*
2167 * Start the load-balancing iterator:
2168 */
2169 p = iterator->start(iterator->arg);
2170next:
2171 if (!p)
2172 goto out;
2173 /*
2174 * To help distribute high priority tasks accross CPUs we don't
2175 * skip a task if it will be the highest priority task (i.e. smallest
2176 * prio value) on its new queue regardless of its load weight
2177 */
2178 skip_for_load = (p->se.load.weight >> 1) > rem_load_move +
2179 SCHED_LOAD_SCALE_FUZZ;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002180 if ((skip_for_load && p->prio >= *this_best_prio) ||
Ingo Molnardd41f592007-07-09 18:51:59 +02002181 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002182 p = iterator->next(iterator->arg);
2183 goto next;
2184 }
2185
2186 pull_task(busiest, p, this_rq, this_cpu);
2187 pulled++;
2188 rem_load_move -= p->se.load.weight;
2189
2190 /*
2191 * We only want to steal up to the prescribed number of tasks
2192 * and the prescribed amount of weighted load.
2193 */
2194 if (pulled < max_nr_move && rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002195 if (p->prio < *this_best_prio)
2196 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02002197 p = iterator->next(iterator->arg);
2198 goto next;
2199 }
2200out:
2201 /*
2202 * Right now, this is the only place pull_task() is called,
2203 * so we can safely collect pull_task() stats here rather than
2204 * inside pull_task().
2205 */
2206 schedstat_add(sd, lb_gained[idle], pulled);
2207
2208 if (all_pinned)
2209 *all_pinned = pinned;
2210 *load_moved = max_load_move - rem_load_move;
2211 return pulled;
2212}
Ingo Molnar48f24c42006-07-03 00:25:40 -07002213
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214/*
Peter Williams43010652007-08-09 11:16:46 +02002215 * move_tasks tries to move up to max_load_move weighted load from busiest to
2216 * this_rq, as part of a balancing operation within domain "sd".
2217 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 *
2219 * Called with both runqueues locked.
2220 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002221static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02002222 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002223 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07002224 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002226 const struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02002227 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002228 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
Ingo Molnardd41f592007-07-09 18:51:59 +02002230 do {
Peter Williams43010652007-08-09 11:16:46 +02002231 total_load_moved +=
2232 class->load_balance(this_rq, this_cpu, busiest,
2233 ULONG_MAX, max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002234 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02002235 class = class->next;
Peter Williams43010652007-08-09 11:16:46 +02002236 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
Peter Williams43010652007-08-09 11:16:46 +02002238 return total_load_moved > 0;
2239}
2240
2241/*
2242 * move_one_task tries to move exactly one task from busiest to this_rq, as
2243 * part of active balancing operations within "domain".
2244 * Returns 1 if successful and 0 otherwise.
2245 *
2246 * Called with both runqueues locked.
2247 */
2248static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2249 struct sched_domain *sd, enum cpu_idle_type idle)
2250{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02002251 const struct sched_class *class;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002252 int this_best_prio = MAX_PRIO;
Peter Williams43010652007-08-09 11:16:46 +02002253
2254 for (class = sched_class_highest; class; class = class->next)
2255 if (class->load_balance(this_rq, this_cpu, busiest,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002256 1, ULONG_MAX, sd, idle, NULL,
2257 &this_best_prio))
Peter Williams43010652007-08-09 11:16:46 +02002258 return 1;
2259
2260 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261}
2262
2263/*
2264 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07002265 * domain. It calculates and returns the amount of weighted load which
2266 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 */
2268static struct sched_group *
2269find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02002270 unsigned long *imbalance, enum cpu_idle_type idle,
2271 int *sd_idle, cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272{
2273 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
2274 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002275 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07002276 unsigned long busiest_load_per_task, busiest_nr_running;
2277 unsigned long this_load_per_task, this_nr_running;
Nick Piggin78979862005-06-25 14:57:13 -07002278 int load_idx;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002279#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2280 int power_savings_balance = 1;
2281 unsigned long leader_nr_running = 0, min_load_per_task = 0;
2282 unsigned long min_nr_running = ULONG_MAX;
2283 struct sched_group *group_min = NULL, *group_leader = NULL;
2284#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285
2286 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002287 busiest_load_per_task = busiest_nr_running = 0;
2288 this_load_per_task = this_nr_running = 0;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002289 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002290 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002291 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002292 load_idx = sd->newidle_idx;
2293 else
2294 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
2296 do {
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002297 unsigned long load, group_capacity;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 int local_group;
2299 int i;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002300 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002301 unsigned long sum_nr_running, sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
2303 local_group = cpu_isset(this_cpu, group->cpumask);
2304
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002305 if (local_group)
2306 balance_cpu = first_cpu(group->cpumask);
2307
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07002309 sum_weighted_load = sum_nr_running = avg_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
2311 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002312 struct rq *rq;
2313
2314 if (!cpu_isset(i, *cpus))
2315 continue;
2316
2317 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07002318
Suresh Siddha9439aab2007-07-19 21:28:35 +02002319 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07002320 *sd_idle = 0;
2321
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002323 if (local_group) {
2324 if (idle_cpu(i) && !first_idle_cpu) {
2325 first_idle_cpu = 1;
2326 balance_cpu = i;
2327 }
2328
Nick Piggina2000572006-02-10 01:51:02 -08002329 load = target_load(i, load_idx);
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002330 } else
Nick Piggina2000572006-02-10 01:51:02 -08002331 load = source_load(i, load_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332
2333 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07002334 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002335 sum_weighted_load += weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 }
2337
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002338 /*
2339 * First idle cpu or the first cpu(busiest) in this sched group
2340 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02002341 * domains. In the newly idle case, we will allow all the cpu's
2342 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002343 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02002344 if (idle != CPU_NEWLY_IDLE && local_group &&
2345 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002346 *balance = 0;
2347 goto ret;
2348 }
2349
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07002351 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352
2353 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002354 avg_load = sg_div_cpu_power(group,
2355 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356
Eric Dumazet5517d862007-05-08 00:32:57 -07002357 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002358
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 if (local_group) {
2360 this_load = avg_load;
2361 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002362 this_nr_running = sum_nr_running;
2363 this_load_per_task = sum_weighted_load;
2364 } else if (avg_load > max_load &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002365 sum_nr_running > group_capacity) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 max_load = avg_load;
2367 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002368 busiest_nr_running = sum_nr_running;
2369 busiest_load_per_task = sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002371
2372#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2373 /*
2374 * Busy processors will not participate in power savings
2375 * balance.
2376 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002377 if (idle == CPU_NOT_IDLE ||
2378 !(sd->flags & SD_POWERSAVINGS_BALANCE))
2379 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002380
2381 /*
2382 * If the local group is idle or completely loaded
2383 * no need to do power savings balance at this domain
2384 */
2385 if (local_group && (this_nr_running >= group_capacity ||
2386 !this_nr_running))
2387 power_savings_balance = 0;
2388
Ingo Molnardd41f592007-07-09 18:51:59 +02002389 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002390 * If a group is already running at full capacity or idle,
2391 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02002392 */
2393 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002394 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02002395 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002396
Ingo Molnardd41f592007-07-09 18:51:59 +02002397 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002398 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002399 * This is the group from where we need to pick up the load
2400 * for saving power
2401 */
2402 if ((sum_nr_running < min_nr_running) ||
2403 (sum_nr_running == min_nr_running &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002404 first_cpu(group->cpumask) <
2405 first_cpu(group_min->cpumask))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002406 group_min = group;
2407 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002408 min_load_per_task = sum_weighted_load /
2409 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002410 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002411
Ingo Molnardd41f592007-07-09 18:51:59 +02002412 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002413 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02002414 * capacity but still has some space to pick up some load
2415 * from other group and save more power
2416 */
2417 if (sum_nr_running <= group_capacity - 1) {
2418 if (sum_nr_running > leader_nr_running ||
2419 (sum_nr_running == leader_nr_running &&
2420 first_cpu(group->cpumask) >
2421 first_cpu(group_leader->cpumask))) {
2422 group_leader = group;
2423 leader_nr_running = sum_nr_running;
2424 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002425 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002426group_next:
2427#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 group = group->next;
2429 } while (group != sd->groups);
2430
Peter Williams2dd73a42006-06-27 02:54:34 -07002431 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 goto out_balanced;
2433
2434 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
2435
2436 if (this_load >= avg_load ||
2437 100*max_load <= sd->imbalance_pct*this_load)
2438 goto out_balanced;
2439
Peter Williams2dd73a42006-06-27 02:54:34 -07002440 busiest_load_per_task /= busiest_nr_running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 /*
2442 * We're trying to get all the cpus to the average_load, so we don't
2443 * want to push ourselves above the average load, nor do we wish to
2444 * reduce the max loaded cpu below the average load, as either of these
2445 * actions would just result in more rebalancing later, and ping-pong
2446 * tasks around. Thus we look for the minimum possible imbalance.
2447 * Negative imbalances (*we* are more loaded than anyone else) will
2448 * be counted as no imbalance for these purposes -- we can't fix that
2449 * by pulling tasks to us. Be careful of negative numbers as they'll
2450 * appear as very large values with unsigned longs.
2451 */
Peter Williams2dd73a42006-06-27 02:54:34 -07002452 if (max_load <= busiest_load_per_task)
2453 goto out_balanced;
2454
2455 /*
2456 * In the presence of smp nice balancing, certain scenarios can have
2457 * max load less than avg load(as we skip the groups at or below
2458 * its cpu_power, while calculating max_load..)
2459 */
2460 if (max_load < avg_load) {
2461 *imbalance = 0;
2462 goto small_imbalance;
2463 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002464
2465 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07002466 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002467
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07002469 *imbalance = min(max_pull * busiest->__cpu_power,
2470 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 / SCHED_LOAD_SCALE;
2472
Peter Williams2dd73a42006-06-27 02:54:34 -07002473 /*
2474 * if *imbalance is less than the average load per runnable task
2475 * there is no gaurantee that any tasks will be moved so we'll have
2476 * a think about bumping its value to force at least one task to be
2477 * moved
2478 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02002479 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07002480 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07002481 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482
Peter Williams2dd73a42006-06-27 02:54:34 -07002483small_imbalance:
2484 pwr_move = pwr_now = 0;
2485 imbn = 2;
2486 if (this_nr_running) {
2487 this_load_per_task /= this_nr_running;
2488 if (busiest_load_per_task > this_load_per_task)
2489 imbn = 1;
2490 } else
2491 this_load_per_task = SCHED_LOAD_SCALE;
2492
Ingo Molnardd41f592007-07-09 18:51:59 +02002493 if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >=
2494 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07002495 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 return busiest;
2497 }
2498
2499 /*
2500 * OK, we don't have enough imbalance to justify moving tasks,
2501 * however we may be able to increase total CPU power used by
2502 * moving them.
2503 */
2504
Eric Dumazet5517d862007-05-08 00:32:57 -07002505 pwr_now += busiest->__cpu_power *
2506 min(busiest_load_per_task, max_load);
2507 pwr_now += this->__cpu_power *
2508 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 pwr_now /= SCHED_LOAD_SCALE;
2510
2511 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07002512 tmp = sg_div_cpu_power(busiest,
2513 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07002515 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07002516 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
2518 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07002519 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08002520 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07002521 tmp = sg_div_cpu_power(this,
2522 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 else
Eric Dumazet5517d862007-05-08 00:32:57 -07002524 tmp = sg_div_cpu_power(this,
2525 busiest_load_per_task * SCHED_LOAD_SCALE);
2526 pwr_move += this->__cpu_power *
2527 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 pwr_move /= SCHED_LOAD_SCALE;
2529
2530 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02002531 if (pwr_move > pwr_now)
2532 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 }
2534
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 return busiest;
2536
2537out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002538#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002539 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002540 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002542 if (this == group_leader && group_leader != group_min) {
2543 *imbalance = min_load_per_task;
2544 return group_min;
2545 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002546#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002547ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 *imbalance = 0;
2549 return NULL;
2550}
2551
2552/*
2553 * find_busiest_queue - find the busiest runqueue among the cpus in group.
2554 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002555static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002556find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002557 unsigned long imbalance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002559 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07002560 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 int i;
2562
2563 for_each_cpu_mask(i, group->cpumask) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002564 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002565
2566 if (!cpu_isset(i, *cpus))
2567 continue;
2568
Ingo Molnar48f24c42006-07-03 00:25:40 -07002569 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02002570 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571
Ingo Molnardd41f592007-07-09 18:51:59 +02002572 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07002573 continue;
2574
Ingo Molnardd41f592007-07-09 18:51:59 +02002575 if (wl > max_load) {
2576 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002577 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 }
2579 }
2580
2581 return busiest;
2582}
2583
2584/*
Nick Piggin77391d72005-06-25 14:57:30 -07002585 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
2586 * so long as it is large enough.
2587 */
2588#define MAX_PINNED_INTERVAL 512
2589
2590/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 * Check this_cpu to ensure it is balanced within domain. Attempt to move
2592 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002594static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002595 struct sched_domain *sd, enum cpu_idle_type idle,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002596 int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597{
Peter Williams43010652007-08-09 11:16:46 +02002598 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002601 struct rq *busiest;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002602 cpumask_t cpus = CPU_MASK_ALL;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002603 unsigned long flags;
Nick Piggin5969fe02005-09-10 00:26:19 -07002604
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002605 /*
2606 * When power savings policy is enabled for the parent domain, idle
2607 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02002608 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002609 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002610 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002611 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002612 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002613 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614
Ingo Molnar2d723762007-10-15 17:00:12 +02002615 schedstat_inc(sd, lb_count[idle]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002617redo:
2618 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002619 &cpus, balance);
2620
Chen, Kenneth W06066712006-12-10 02:20:35 -08002621 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002622 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002623
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 if (!group) {
2625 schedstat_inc(sd, lb_nobusyg[idle]);
2626 goto out_balanced;
2627 }
2628
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002629 busiest = find_busiest_queue(group, idle, imbalance, &cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 if (!busiest) {
2631 schedstat_inc(sd, lb_nobusyq[idle]);
2632 goto out_balanced;
2633 }
2634
Nick Piggindb935db2005-06-25 14:57:11 -07002635 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636
2637 schedstat_add(sd, lb_imbalance[idle], imbalance);
2638
Peter Williams43010652007-08-09 11:16:46 +02002639 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 if (busiest->nr_running > 1) {
2641 /*
2642 * Attempt to move tasks. If find_busiest_group has found
2643 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02002644 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 * correctly treated as an imbalance.
2646 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002647 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07002648 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02002649 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07002650 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07002651 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002652 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07002653
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07002654 /*
2655 * some other cpu did the load balance for us.
2656 */
Peter Williams43010652007-08-09 11:16:46 +02002657 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07002658 resched_cpu(this_cpu);
2659
Nick Piggin81026792005-06-25 14:57:07 -07002660 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002661 if (unlikely(all_pinned)) {
2662 cpu_clear(cpu_of(busiest), cpus);
2663 if (!cpus_empty(cpus))
2664 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07002665 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002666 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 }
Nick Piggin81026792005-06-25 14:57:07 -07002668
Peter Williams43010652007-08-09 11:16:46 +02002669 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 schedstat_inc(sd, lb_failed[idle]);
2671 sd->nr_balance_failed++;
2672
2673 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002675 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07002676
2677 /* don't kick the migration_thread, if the curr
2678 * task on busiest cpu can't be moved to this_cpu
2679 */
2680 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002681 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07002682 all_pinned = 1;
2683 goto out_one_pinned;
2684 }
2685
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 if (!busiest->active_balance) {
2687 busiest->active_balance = 1;
2688 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07002689 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002691 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07002692 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 wake_up_process(busiest->migration_thread);
2694
2695 /*
2696 * We've kicked active balancing, reset the failure
2697 * counter.
2698 */
Nick Piggin39507452005-06-25 14:57:09 -07002699 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 }
Nick Piggin81026792005-06-25 14:57:07 -07002701 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 sd->nr_balance_failed = 0;
2703
Nick Piggin81026792005-06-25 14:57:07 -07002704 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 /* We were unbalanced, so reset the balancing interval */
2706 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07002707 } else {
2708 /*
2709 * If we've begun active balancing, start to back off. This
2710 * case may not be covered by the all_pinned logic if there
2711 * is only 1 task on the busy runqueue (because we don't call
2712 * move_tasks).
2713 */
2714 if (sd->balance_interval < sd->max_interval)
2715 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 }
2717
Peter Williams43010652007-08-09 11:16:46 +02002718 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002719 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002720 return -1;
Peter Williams43010652007-08-09 11:16:46 +02002721 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722
2723out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 schedstat_inc(sd, lb_balanced[idle]);
2725
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002726 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07002727
2728out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07002730 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
2731 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 sd->balance_interval *= 2;
2733
Ingo Molnar48f24c42006-07-03 00:25:40 -07002734 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002735 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002736 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 return 0;
2738}
2739
2740/*
2741 * Check this_cpu to ensure it is balanced within domain. Attempt to move
2742 * tasks if there is an imbalance.
2743 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002744 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 * this_rq is locked.
2746 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07002747static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07002748load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749{
2750 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002751 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02002753 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07002754 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02002755 int all_pinned = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002756 cpumask_t cpus = CPU_MASK_ALL;
Nick Piggin5969fe02005-09-10 00:26:19 -07002757
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002758 /*
2759 * When power savings policy is enabled for the parent domain, idle
2760 * sibling can pick up load irrespective of busy siblings. In this case,
2761 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002762 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002763 */
2764 if (sd->flags & SD_SHARE_CPUPOWER &&
2765 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002766 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767
Ingo Molnar2d723762007-10-15 17:00:12 +02002768 schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002769redo:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002770 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002771 &sd_idle, &cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002773 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002774 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 }
2776
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002777 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002778 &cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07002779 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002780 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002781 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 }
2783
Nick Piggindb935db2005-06-25 14:57:11 -07002784 BUG_ON(busiest == this_rq);
2785
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002786 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07002787
Peter Williams43010652007-08-09 11:16:46 +02002788 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07002789 if (busiest->nr_running > 1) {
2790 /* Attempt to move tasks */
2791 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002792 /* this_rq->clock is already updated */
2793 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02002794 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02002795 imbalance, sd, CPU_NEWLY_IDLE,
2796 &all_pinned);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07002797 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002798
Suresh Siddha969bb4e2007-07-19 21:28:35 +02002799 if (unlikely(all_pinned)) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002800 cpu_clear(cpu_of(busiest), cpus);
2801 if (!cpus_empty(cpus))
2802 goto redo;
2803 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07002804 }
2805
Peter Williams43010652007-08-09 11:16:46 +02002806 if (!ld_moved) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002807 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002808 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
2809 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002810 return -1;
2811 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002812 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813
Peter Williams43010652007-08-09 11:16:46 +02002814 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002815
2816out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002817 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07002818 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002819 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002820 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002821 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002822
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002823 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824}
2825
2826/*
2827 * idle_balance is called by schedule() if this_cpu is about to become
2828 * idle. Attempts to pull tasks from other CPUs.
2829 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002830static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831{
2832 struct sched_domain *sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02002833 int pulled_task = -1;
2834 unsigned long next_balance = jiffies + HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835
2836 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07002837 unsigned long interval;
2838
2839 if (!(sd->flags & SD_LOAD_BALANCE))
2840 continue;
2841
2842 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002843 /* If we've pulled tasks over stop searching: */
Christoph Lameter1bd77f22006-12-10 02:20:27 -08002844 pulled_task = load_balance_newidle(this_cpu,
Christoph Lameter92c4ca52007-06-23 17:16:33 -07002845 this_rq, sd);
2846
2847 interval = msecs_to_jiffies(sd->balance_interval);
2848 if (time_after(next_balance, sd->last_balance + interval))
2849 next_balance = sd->last_balance + interval;
2850 if (pulled_task)
2851 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002853 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08002854 /*
2855 * We are going idle. next_balance may be set based on
2856 * a busy processor. So reset next_balance.
2857 */
2858 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02002859 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860}
2861
2862/*
2863 * active_load_balance is run by migration threads. It pushes running tasks
2864 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
2865 * running on each physical CPU where possible, and avoids physical /
2866 * logical imbalances.
2867 *
2868 * Called with busiest_rq locked.
2869 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002870static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871{
Nick Piggin39507452005-06-25 14:57:09 -07002872 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002873 struct sched_domain *sd;
2874 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07002875
Ingo Molnar48f24c42006-07-03 00:25:40 -07002876 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07002877 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07002878 return;
2879
2880 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881
2882 /*
Nick Piggin39507452005-06-25 14:57:09 -07002883 * This condition is "impossible", if it occurs
2884 * we need to fix it. Originally reported by
2885 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 */
Nick Piggin39507452005-06-25 14:57:09 -07002887 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888
Nick Piggin39507452005-06-25 14:57:09 -07002889 /* move a task from busiest_rq to target_rq */
2890 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002891 update_rq_clock(busiest_rq);
2892 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893
Nick Piggin39507452005-06-25 14:57:09 -07002894 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002895 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07002896 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07002897 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07002898 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002899 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900
Ingo Molnar48f24c42006-07-03 00:25:40 -07002901 if (likely(sd)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02002902 schedstat_inc(sd, alb_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903
Peter Williams43010652007-08-09 11:16:46 +02002904 if (move_one_task(target_rq, target_cpu, busiest_rq,
2905 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07002906 schedstat_inc(sd, alb_pushed);
2907 else
2908 schedstat_inc(sd, alb_failed);
2909 }
Nick Piggin39507452005-06-25 14:57:09 -07002910 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911}
2912
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07002913#ifdef CONFIG_NO_HZ
2914static struct {
2915 atomic_t load_balancer;
2916 cpumask_t cpu_mask;
2917} nohz ____cacheline_aligned = {
2918 .load_balancer = ATOMIC_INIT(-1),
2919 .cpu_mask = CPU_MASK_NONE,
2920};
2921
Christoph Lameter7835b982006-12-10 02:20:22 -08002922/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07002923 * This routine will try to nominate the ilb (idle load balancing)
2924 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
2925 * load balancing on behalf of all those cpus. If all the cpus in the system
2926 * go into this tickless mode, then there will be no ilb owner (as there is
2927 * no need for one) and all the cpus will sleep till the next wakeup event
2928 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08002929 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07002930 * For the ilb owner, tick is not stopped. And this tick will be used
2931 * for idle load balancing. ilb owner will still be part of
2932 * nohz.cpu_mask..
2933 *
2934 * While stopping the tick, this cpu will become the ilb owner if there
2935 * is no other owner. And will be the owner till that cpu becomes busy
2936 * or if all cpus in the system stop their ticks at which point
2937 * there is no need for ilb owner.
2938 *
2939 * When the ilb owner becomes busy, it nominates another owner, during the
2940 * next busy scheduler_tick()
2941 */
2942int select_nohz_load_balancer(int stop_tick)
2943{
2944 int cpu = smp_processor_id();
2945
2946 if (stop_tick) {
2947 cpu_set(cpu, nohz.cpu_mask);
2948 cpu_rq(cpu)->in_nohz_recently = 1;
2949
2950 /*
2951 * If we are going offline and still the leader, give up!
2952 */
2953 if (cpu_is_offline(cpu) &&
2954 atomic_read(&nohz.load_balancer) == cpu) {
2955 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
2956 BUG();
2957 return 0;
2958 }
2959
2960 /* time for ilb owner also to sleep */
2961 if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
2962 if (atomic_read(&nohz.load_balancer) == cpu)
2963 atomic_set(&nohz.load_balancer, -1);
2964 return 0;
2965 }
2966
2967 if (atomic_read(&nohz.load_balancer) == -1) {
2968 /* make me the ilb owner */
2969 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
2970 return 1;
2971 } else if (atomic_read(&nohz.load_balancer) == cpu)
2972 return 1;
2973 } else {
2974 if (!cpu_isset(cpu, nohz.cpu_mask))
2975 return 0;
2976
2977 cpu_clear(cpu, nohz.cpu_mask);
2978
2979 if (atomic_read(&nohz.load_balancer) == cpu)
2980 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
2981 BUG();
2982 }
2983 return 0;
2984}
2985#endif
2986
2987static DEFINE_SPINLOCK(balancing);
2988
2989/*
Christoph Lameter7835b982006-12-10 02:20:22 -08002990 * It checks each scheduling domain to see if it is due to be balanced,
2991 * and initiates a balancing operation if so.
2992 *
2993 * Balancing parameters are set up in arch_init_sched_domains.
2994 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02002995static void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08002996{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07002997 int balance = 1;
2998 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08002999 unsigned long interval;
3000 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003001 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08003002 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003003 int update_next_balance = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003005 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 if (!(sd->flags & SD_LOAD_BALANCE))
3007 continue;
3008
3009 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003010 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 interval *= sd->busy_factor;
3012
3013 /* scale ms to jiffies */
3014 interval = msecs_to_jiffies(interval);
3015 if (unlikely(!interval))
3016 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02003017 if (interval > HZ*NR_CPUS/10)
3018 interval = HZ*NR_CPUS/10;
3019
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020
Christoph Lameter08c183f2006-12-10 02:20:29 -08003021 if (sd->flags & SD_SERIALIZE) {
3022 if (!spin_trylock(&balancing))
3023 goto out;
3024 }
3025
Christoph Lameterc9819f42006-12-10 02:20:25 -08003026 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003027 if (load_balance(cpu, rq, sd, idle, &balance)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003028 /*
3029 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07003030 * longer idle, or one of our SMT siblings is
3031 * not idle.
3032 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003033 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003035 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 }
Christoph Lameter08c183f2006-12-10 02:20:29 -08003037 if (sd->flags & SD_SERIALIZE)
3038 spin_unlock(&balancing);
3039out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02003040 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08003041 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003042 update_next_balance = 1;
3043 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003044
3045 /*
3046 * Stop the load balance at this level. There is another
3047 * CPU in our sched group which is doing load balancing more
3048 * actively.
3049 */
3050 if (!balance)
3051 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02003053
3054 /*
3055 * next_balance will be updated only when there is a need.
3056 * When the cpu is attached to null domain for ex, it will not be
3057 * updated.
3058 */
3059 if (likely(update_next_balance))
3060 rq->next_balance = next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003061}
3062
3063/*
3064 * run_rebalance_domains is triggered when needed from the scheduler tick.
3065 * In CONFIG_NO_HZ case, the idle load balance owner will do the
3066 * rebalancing for all the cpus for whom scheduler ticks are stopped.
3067 */
3068static void run_rebalance_domains(struct softirq_action *h)
3069{
Ingo Molnardd41f592007-07-09 18:51:59 +02003070 int this_cpu = smp_processor_id();
3071 struct rq *this_rq = cpu_rq(this_cpu);
3072 enum cpu_idle_type idle = this_rq->idle_at_tick ?
3073 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003074
Ingo Molnardd41f592007-07-09 18:51:59 +02003075 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003076
3077#ifdef CONFIG_NO_HZ
3078 /*
3079 * If this cpu is the owner for idle load balancing, then do the
3080 * balancing on behalf of the other idle cpus whose ticks are
3081 * stopped.
3082 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003083 if (this_rq->idle_at_tick &&
3084 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003085 cpumask_t cpus = nohz.cpu_mask;
3086 struct rq *rq;
3087 int balance_cpu;
3088
Ingo Molnardd41f592007-07-09 18:51:59 +02003089 cpu_clear(this_cpu, cpus);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003090 for_each_cpu_mask(balance_cpu, cpus) {
3091 /*
3092 * If this cpu gets work to do, stop the load balancing
3093 * work being done for other cpus. Next load
3094 * balancing owner will pick it up.
3095 */
3096 if (need_resched())
3097 break;
3098
Oleg Nesterovde0cf892007-08-12 18:08:19 +02003099 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003100
3101 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003102 if (time_after(this_rq->next_balance, rq->next_balance))
3103 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003104 }
3105 }
3106#endif
3107}
3108
3109/*
3110 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
3111 *
3112 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
3113 * idle load balancing owner or decide to stop the periodic load balancing,
3114 * if the whole system is idle.
3115 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003116static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003117{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003118#ifdef CONFIG_NO_HZ
3119 /*
3120 * If we were in the nohz mode recently and busy at the current
3121 * scheduler tick, then check if we need to nominate new idle
3122 * load balancer.
3123 */
3124 if (rq->in_nohz_recently && !rq->idle_at_tick) {
3125 rq->in_nohz_recently = 0;
3126
3127 if (atomic_read(&nohz.load_balancer) == cpu) {
3128 cpu_clear(cpu, nohz.cpu_mask);
3129 atomic_set(&nohz.load_balancer, -1);
3130 }
3131
3132 if (atomic_read(&nohz.load_balancer) == -1) {
3133 /*
3134 * simple selection for now: Nominate the
3135 * first cpu in the nohz list to be the next
3136 * ilb owner.
3137 *
3138 * TBD: Traverse the sched domains and nominate
3139 * the nearest cpu in the nohz.cpu_mask.
3140 */
3141 int ilb = first_cpu(nohz.cpu_mask);
3142
3143 if (ilb != NR_CPUS)
3144 resched_cpu(ilb);
3145 }
3146 }
3147
3148 /*
3149 * If this cpu is idle and doing idle load balancing for all the
3150 * cpus with ticks stopped, is it time for that to stop?
3151 */
3152 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
3153 cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3154 resched_cpu(cpu);
3155 return;
3156 }
3157
3158 /*
3159 * If this cpu is idle and the idle load balancing is done by
3160 * someone else, then no need raise the SCHED_SOFTIRQ
3161 */
3162 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
3163 cpu_isset(cpu, nohz.cpu_mask))
3164 return;
3165#endif
3166 if (time_after_eq(jiffies, rq->next_balance))
3167 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168}
Ingo Molnardd41f592007-07-09 18:51:59 +02003169
3170#else /* CONFIG_SMP */
3171
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172/*
3173 * on UP we do not need to balance between CPUs:
3174 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003175static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176{
3177}
Ingo Molnardd41f592007-07-09 18:51:59 +02003178
3179/* Avoid "used but not defined" warning on UP */
3180static int balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
3181 unsigned long max_nr_move, unsigned long max_load_move,
3182 struct sched_domain *sd, enum cpu_idle_type idle,
3183 int *all_pinned, unsigned long *load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003184 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02003185{
3186 *load_moved = 0;
3187
3188 return 0;
3189}
3190
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191#endif
3192
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193DEFINE_PER_CPU(struct kernel_stat, kstat);
3194
3195EXPORT_PER_CPU_SYMBOL(kstat);
3196
3197/*
Ingo Molnar41b86e92007-07-09 18:51:58 +02003198 * Return p->sum_exec_runtime plus any more ns on the sched_clock
3199 * that have not yet been banked in case the task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 */
Ingo Molnar41b86e92007-07-09 18:51:58 +02003201unsigned long long task_sched_runtime(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003204 u64 ns, delta_exec;
3205 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003206
Ingo Molnar41b86e92007-07-09 18:51:58 +02003207 rq = task_rq_lock(p, &flags);
3208 ns = p->se.sum_exec_runtime;
3209 if (rq->curr == p) {
Ingo Molnara8e504d2007-08-09 11:16:47 +02003210 update_rq_clock(rq);
3211 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003212 if ((s64)delta_exec > 0)
3213 ns += delta_exec;
3214 }
3215 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003216
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 return ns;
3218}
3219
3220/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221 * Account user cpu time to a process.
3222 * @p: the process that the cpu time gets accounted to
3223 * @hardirq_offset: the offset to subtract from hardirq_count()
3224 * @cputime: the cpu time spent in user space since the last update
3225 */
3226void account_user_time(struct task_struct *p, cputime_t cputime)
3227{
3228 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3229 cputime64_t tmp;
3230
3231 p->utime = cputime_add(p->utime, cputime);
3232
3233 /* Add user time to cpustat. */
3234 tmp = cputime_to_cputime64(cputime);
3235 if (TASK_NICE(p) > 0)
3236 cpustat->nice = cputime64_add(cpustat->nice, tmp);
3237 else
3238 cpustat->user = cputime64_add(cpustat->user, tmp);
3239}
3240
3241/*
3242 * Account system cpu time to a process.
3243 * @p: the process that the cpu time gets accounted to
3244 * @hardirq_offset: the offset to subtract from hardirq_count()
3245 * @cputime: the cpu time spent in kernel space since the last update
3246 */
3247void account_system_time(struct task_struct *p, int hardirq_offset,
3248 cputime_t cputime)
3249{
3250 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003251 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 cputime64_t tmp;
3253
3254 p->stime = cputime_add(p->stime, cputime);
3255
3256 /* Add system time to cpustat. */
3257 tmp = cputime_to_cputime64(cputime);
3258 if (hardirq_count() - hardirq_offset)
3259 cpustat->irq = cputime64_add(cpustat->irq, tmp);
3260 else if (softirq_count())
3261 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
3262 else if (p != rq->idle)
3263 cpustat->system = cputime64_add(cpustat->system, tmp);
3264 else if (atomic_read(&rq->nr_iowait) > 0)
3265 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3266 else
3267 cpustat->idle = cputime64_add(cpustat->idle, tmp);
3268 /* Account for system time used */
3269 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270}
3271
3272/*
3273 * Account for involuntary wait time.
3274 * @p: the process from which the cpu time has been stolen
3275 * @steal: the cpu time spent in involuntary wait
3276 */
3277void account_steal_time(struct task_struct *p, cputime_t steal)
3278{
3279 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3280 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07003281 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282
3283 if (p == rq->idle) {
3284 p->stime = cputime_add(p->stime, steal);
3285 if (atomic_read(&rq->nr_iowait) > 0)
3286 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3287 else
3288 cpustat->idle = cputime64_add(cpustat->idle, tmp);
3289 } else
3290 cpustat->steal = cputime64_add(cpustat->steal, tmp);
3291}
3292
Christoph Lameter7835b982006-12-10 02:20:22 -08003293/*
3294 * This function gets called by the timer code, with HZ frequency.
3295 * We call it with interrupts disabled.
3296 *
3297 * It also gets called by the fork code, when changing the parent's
3298 * timeslices.
3299 */
3300void scheduler_tick(void)
3301{
Christoph Lameter7835b982006-12-10 02:20:22 -08003302 int cpu = smp_processor_id();
3303 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003304 struct task_struct *curr = rq->curr;
Ingo Molnar529c7722007-08-10 23:05:11 +02003305 u64 next_tick = rq->tick_timestamp + TICK_NSEC;
Christoph Lameter7835b982006-12-10 02:20:22 -08003306
Ingo Molnardd41f592007-07-09 18:51:59 +02003307 spin_lock(&rq->lock);
Ingo Molnar546fe3c2007-08-09 11:16:51 +02003308 __update_rq_clock(rq);
Ingo Molnar529c7722007-08-10 23:05:11 +02003309 /*
3310 * Let rq->clock advance by at least TICK_NSEC:
3311 */
3312 if (unlikely(rq->clock < next_tick))
3313 rq->clock = next_tick;
3314 rq->tick_timestamp = rq->clock;
Ingo Molnarf1a438d2007-08-09 11:16:45 +02003315 update_cpu_load(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003316 if (curr != rq->idle) /* FIXME: needed? */
3317 curr->sched_class->task_tick(rq, curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02003318 spin_unlock(&rq->lock);
3319
Christoph Lametere418e1c2006-12-10 02:20:23 -08003320#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02003321 rq->idle_at_tick = idle_cpu(cpu);
3322 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08003323#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324}
3325
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326#if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
3327
3328void fastcall add_preempt_count(int val)
3329{
3330 /*
3331 * Underflow?
3332 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003333 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
3334 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335 preempt_count() += val;
3336 /*
3337 * Spinlock count overflowing soon?
3338 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003339 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
3340 PREEMPT_MASK - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341}
3342EXPORT_SYMBOL(add_preempt_count);
3343
3344void fastcall sub_preempt_count(int val)
3345{
3346 /*
3347 * Underflow?
3348 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003349 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
3350 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 /*
3352 * Is the spinlock portion underflowing?
3353 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003354 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
3355 !(preempt_count() & PREEMPT_MASK)))
3356 return;
3357
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358 preempt_count() -= val;
3359}
3360EXPORT_SYMBOL(sub_preempt_count);
3361
3362#endif
3363
3364/*
Ingo Molnardd41f592007-07-09 18:51:59 +02003365 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003367static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368{
Ingo Molnardd41f592007-07-09 18:51:59 +02003369 printk(KERN_ERR "BUG: scheduling while atomic: %s/0x%08x/%d\n",
3370 prev->comm, preempt_count(), prev->pid);
3371 debug_show_held_locks(prev);
3372 if (irqs_disabled())
3373 print_irqtrace_events(prev);
3374 dump_stack();
3375}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376
Ingo Molnardd41f592007-07-09 18:51:59 +02003377/*
3378 * Various schedule()-time debugging checks and statistics:
3379 */
3380static inline void schedule_debug(struct task_struct *prev)
3381{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382 /*
3383 * Test if we are atomic. Since do_exit() needs to call into
3384 * schedule() atomically, we ignore that path for now.
3385 * Otherwise, whine if we are scheduling when we should not be.
3386 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003387 if (unlikely(in_atomic_preempt_off()) && unlikely(!prev->exit_state))
3388 __schedule_bug(prev);
3389
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
3391
Ingo Molnar2d723762007-10-15 17:00:12 +02003392 schedstat_inc(this_rq(), sched_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02003393#ifdef CONFIG_SCHEDSTATS
3394 if (unlikely(prev->lock_depth >= 0)) {
Ingo Molnar2d723762007-10-15 17:00:12 +02003395 schedstat_inc(this_rq(), bkl_count);
3396 schedstat_inc(prev, sched_info.bkl_count);
Ingo Molnarb8efb562007-10-15 17:00:10 +02003397 }
3398#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02003399}
3400
3401/*
3402 * Pick up the highest-prio task:
3403 */
3404static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02003405pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02003406{
Ingo Molnar5522d5d2007-10-15 17:00:12 +02003407 const struct sched_class *class;
Ingo Molnardd41f592007-07-09 18:51:59 +02003408 struct task_struct *p;
3409
3410 /*
3411 * Optimization: we know that if all tasks are in
3412 * the fair class we can call that function directly:
3413 */
3414 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02003415 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003416 if (likely(p))
3417 return p;
3418 }
3419
3420 class = sched_class_highest;
3421 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02003422 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003423 if (p)
3424 return p;
3425 /*
3426 * Will never be NULL as the idle class always
3427 * returns a non-NULL p:
3428 */
3429 class = class->next;
3430 }
3431}
3432
3433/*
3434 * schedule() is the main scheduler function.
3435 */
3436asmlinkage void __sched schedule(void)
3437{
3438 struct task_struct *prev, *next;
3439 long *switch_count;
3440 struct rq *rq;
Ingo Molnardd41f592007-07-09 18:51:59 +02003441 int cpu;
3442
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443need_resched:
3444 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02003445 cpu = smp_processor_id();
3446 rq = cpu_rq(cpu);
3447 rcu_qsctr_inc(cpu);
3448 prev = rq->curr;
3449 switch_count = &prev->nivcsw;
3450
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 release_kernel_lock(prev);
3452need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453
Ingo Molnardd41f592007-07-09 18:51:59 +02003454 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455
Ingo Molnar1e819952007-10-15 17:00:13 +02003456 /*
3457 * Do the rq-clock update outside the rq lock:
3458 */
3459 local_irq_disable();
Ingo Molnarc1b3da32007-08-09 11:16:47 +02003460 __update_rq_clock(rq);
Ingo Molnar1e819952007-10-15 17:00:13 +02003461 spin_lock(&rq->lock);
3462 clear_tsk_need_resched(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463
Ingo Molnardd41f592007-07-09 18:51:59 +02003464 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
3465 if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
3466 unlikely(signal_pending(prev)))) {
3467 prev->state = TASK_RUNNING;
3468 } else {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02003469 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02003470 }
3471 switch_count = &prev->nvcsw;
3472 }
3473
3474 if (unlikely(!rq->nr_running))
3475 idle_balance(cpu, rq);
3476
Ingo Molnar31ee5292007-08-09 11:16:49 +02003477 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02003478 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479
3480 sched_info_switch(prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02003481
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482 if (likely(prev != next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 rq->nr_switches++;
3484 rq->curr = next;
3485 ++*switch_count;
3486
Ingo Molnardd41f592007-07-09 18:51:59 +02003487 context_switch(rq, prev, next); /* unlocks the rq */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 } else
3489 spin_unlock_irq(&rq->lock);
3490
Ingo Molnardd41f592007-07-09 18:51:59 +02003491 if (unlikely(reacquire_kernel_lock(current) < 0)) {
3492 cpu = smp_processor_id();
3493 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494 goto need_resched_nonpreemptible;
Ingo Molnardd41f592007-07-09 18:51:59 +02003495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496 preempt_enable_no_resched();
3497 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3498 goto need_resched;
3499}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500EXPORT_SYMBOL(schedule);
3501
3502#ifdef CONFIG_PREEMPT
3503/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003504 * this is the entry point to schedule() from in-kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 * off of preempt_enable. Kernel preemptions off return from interrupt
3506 * occur there and call schedule directly.
3507 */
3508asmlinkage void __sched preempt_schedule(void)
3509{
3510 struct thread_info *ti = current_thread_info();
3511#ifdef CONFIG_PREEMPT_BKL
3512 struct task_struct *task = current;
3513 int saved_lock_depth;
3514#endif
3515 /*
3516 * If there is a non-zero preempt_count or interrupts are disabled,
3517 * we do not want to preempt the current task. Just return..
3518 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07003519 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520 return;
3521
Andi Kleen3a5c3592007-10-15 17:00:14 +02003522 do {
3523 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524
Andi Kleen3a5c3592007-10-15 17:00:14 +02003525 /*
3526 * We keep the big kernel semaphore locked, but we
3527 * clear ->lock_depth so that schedule() doesnt
3528 * auto-release the semaphore:
3529 */
3530#ifdef CONFIG_PREEMPT_BKL
3531 saved_lock_depth = task->lock_depth;
3532 task->lock_depth = -1;
3533#endif
3534 schedule();
3535#ifdef CONFIG_PREEMPT_BKL
3536 task->lock_depth = saved_lock_depth;
3537#endif
3538 sub_preempt_count(PREEMPT_ACTIVE);
3539
3540 /*
3541 * Check again in case we missed a preemption opportunity
3542 * between schedule and now.
3543 */
3544 barrier();
3545 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547EXPORT_SYMBOL(preempt_schedule);
3548
3549/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003550 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551 * off of irq context.
3552 * Note, that this is called and return with irqs disabled. This will
3553 * protect us against recursive calling from irq.
3554 */
3555asmlinkage void __sched preempt_schedule_irq(void)
3556{
3557 struct thread_info *ti = current_thread_info();
3558#ifdef CONFIG_PREEMPT_BKL
3559 struct task_struct *task = current;
3560 int saved_lock_depth;
3561#endif
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003562 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 BUG_ON(ti->preempt_count || !irqs_disabled());
3564
Andi Kleen3a5c3592007-10-15 17:00:14 +02003565 do {
3566 add_preempt_count(PREEMPT_ACTIVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567
Andi Kleen3a5c3592007-10-15 17:00:14 +02003568 /*
3569 * We keep the big kernel semaphore locked, but we
3570 * clear ->lock_depth so that schedule() doesnt
3571 * auto-release the semaphore:
3572 */
3573#ifdef CONFIG_PREEMPT_BKL
3574 saved_lock_depth = task->lock_depth;
3575 task->lock_depth = -1;
3576#endif
3577 local_irq_enable();
3578 schedule();
3579 local_irq_disable();
3580#ifdef CONFIG_PREEMPT_BKL
3581 task->lock_depth = saved_lock_depth;
3582#endif
3583 sub_preempt_count(PREEMPT_ACTIVE);
3584
3585 /*
3586 * Check again in case we missed a preemption opportunity
3587 * between schedule and now.
3588 */
3589 barrier();
3590 } while (unlikely(test_thread_flag(TIF_NEED_RESCHED)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591}
3592
3593#endif /* CONFIG_PREEMPT */
3594
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003595int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
3596 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597{
Ingo Molnar48f24c42006-07-03 00:25:40 -07003598 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600EXPORT_SYMBOL(default_wake_function);
3601
3602/*
3603 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
3604 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
3605 * number) then we wake all the non-exclusive tasks and one exclusive task.
3606 *
3607 * There are circumstances in which we can try to wake a task which has already
3608 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
3609 * zero in this (rare) case, and we handle it by continuing to scan the queue.
3610 */
3611static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
3612 int nr_exclusive, int sync, void *key)
3613{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02003614 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02003616 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07003617 unsigned flags = curr->flags;
3618
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003620 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621 break;
3622 }
3623}
3624
3625/**
3626 * __wake_up - wake up threads blocked on a waitqueue.
3627 * @q: the waitqueue
3628 * @mode: which threads
3629 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07003630 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631 */
3632void fastcall __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003633 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634{
3635 unsigned long flags;
3636
3637 spin_lock_irqsave(&q->lock, flags);
3638 __wake_up_common(q, mode, nr_exclusive, 0, key);
3639 spin_unlock_irqrestore(&q->lock, flags);
3640}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641EXPORT_SYMBOL(__wake_up);
3642
3643/*
3644 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
3645 */
3646void fastcall __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
3647{
3648 __wake_up_common(q, mode, 1, 0, NULL);
3649}
3650
3651/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07003652 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 * @q: the waitqueue
3654 * @mode: which threads
3655 * @nr_exclusive: how many wake-one or wake-many threads to wake up
3656 *
3657 * The sync wakeup differs that the waker knows that it will schedule
3658 * away soon, so while the target thread will be woken up, it will not
3659 * be migrated to another CPU - ie. the two threads are 'synchronized'
3660 * with each other. This can prevent needless bouncing between CPUs.
3661 *
3662 * On UP it can prevent extra preemption.
3663 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003664void fastcall
3665__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666{
3667 unsigned long flags;
3668 int sync = 1;
3669
3670 if (unlikely(!q))
3671 return;
3672
3673 if (unlikely(!nr_exclusive))
3674 sync = 0;
3675
3676 spin_lock_irqsave(&q->lock, flags);
3677 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
3678 spin_unlock_irqrestore(&q->lock, flags);
3679}
3680EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
3681
3682void fastcall complete(struct completion *x)
3683{
3684 unsigned long flags;
3685
3686 spin_lock_irqsave(&x->wait.lock, flags);
3687 x->done++;
3688 __wake_up_common(&x->wait, TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE,
3689 1, 0, NULL);
3690 spin_unlock_irqrestore(&x->wait.lock, flags);
3691}
3692EXPORT_SYMBOL(complete);
3693
3694void fastcall complete_all(struct completion *x)
3695{
3696 unsigned long flags;
3697
3698 spin_lock_irqsave(&x->wait.lock, flags);
3699 x->done += UINT_MAX/2;
3700 __wake_up_common(&x->wait, TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE,
3701 0, 0, NULL);
3702 spin_unlock_irqrestore(&x->wait.lock, flags);
3703}
3704EXPORT_SYMBOL(complete_all);
3705
Andi Kleen8cbbe862007-10-15 17:00:14 +02003706static inline long __sched
3707do_wait_for_common(struct completion *x, long timeout, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709 if (!x->done) {
3710 DECLARE_WAITQUEUE(wait, current);
3711
3712 wait.flags |= WQ_FLAG_EXCLUSIVE;
3713 __add_wait_queue_tail(&x->wait, &wait);
3714 do {
Andi Kleen8cbbe862007-10-15 17:00:14 +02003715 if (state == TASK_INTERRUPTIBLE &&
3716 signal_pending(current)) {
3717 __remove_wait_queue(&x->wait, &wait);
3718 return -ERESTARTSYS;
3719 }
3720 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02003722 timeout = schedule_timeout(timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723 spin_lock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02003724 if (!timeout) {
3725 __remove_wait_queue(&x->wait, &wait);
3726 return timeout;
3727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728 } while (!x->done);
3729 __remove_wait_queue(&x->wait, &wait);
3730 }
3731 x->done--;
Andi Kleen8cbbe862007-10-15 17:00:14 +02003732 return timeout;
3733}
3734
3735static long __sched
3736wait_for_common(struct completion *x, long timeout, int state)
3737{
3738 might_sleep();
3739
3740 spin_lock_irq(&x->wait.lock);
3741 timeout = do_wait_for_common(x, timeout, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742 spin_unlock_irq(&x->wait.lock);
Andi Kleen8cbbe862007-10-15 17:00:14 +02003743 return timeout;
3744}
3745
3746void fastcall __sched wait_for_completion(struct completion *x)
3747{
3748 wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749}
3750EXPORT_SYMBOL(wait_for_completion);
3751
3752unsigned long fastcall __sched
3753wait_for_completion_timeout(struct completion *x, unsigned long timeout)
3754{
Andi Kleen8cbbe862007-10-15 17:00:14 +02003755 return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756}
3757EXPORT_SYMBOL(wait_for_completion_timeout);
3758
Andi Kleen8cbbe862007-10-15 17:00:14 +02003759int __sched wait_for_completion_interruptible(struct completion *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760{
Andi Kleen8cbbe862007-10-15 17:00:14 +02003761 return wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762}
3763EXPORT_SYMBOL(wait_for_completion_interruptible);
3764
3765unsigned long fastcall __sched
3766wait_for_completion_interruptible_timeout(struct completion *x,
3767 unsigned long timeout)
3768{
Andi Kleen8cbbe862007-10-15 17:00:14 +02003769 return wait_for_common(x, timeout, TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770}
3771EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
3772
Andi Kleen8cbbe862007-10-15 17:00:14 +02003773static long __sched
3774sleep_on_common(wait_queue_head_t *q, int state, long timeout)
Ingo Molnar0fec1712007-07-09 18:52:01 +02003775{
3776 unsigned long flags;
3777 wait_queue_t wait;
3778
3779 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780
Andi Kleen8cbbe862007-10-15 17:00:14 +02003781 __set_current_state(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782
Andi Kleen8cbbe862007-10-15 17:00:14 +02003783 spin_lock_irqsave(&q->lock, flags);
3784 __add_wait_queue(q, &wait);
3785 spin_unlock(&q->lock);
3786 timeout = schedule_timeout(timeout);
3787 spin_lock_irq(&q->lock);
3788 __remove_wait_queue(q, &wait);
3789 spin_unlock_irqrestore(&q->lock, flags);
3790
3791 return timeout;
3792}
3793
3794void __sched interruptible_sleep_on(wait_queue_head_t *q)
3795{
3796 sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798EXPORT_SYMBOL(interruptible_sleep_on);
3799
Ingo Molnar0fec1712007-07-09 18:52:01 +02003800long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003801interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802{
Andi Kleen8cbbe862007-10-15 17:00:14 +02003803 return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805EXPORT_SYMBOL(interruptible_sleep_on_timeout);
3806
Ingo Molnar0fec1712007-07-09 18:52:01 +02003807void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808{
Andi Kleen8cbbe862007-10-15 17:00:14 +02003809 sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811EXPORT_SYMBOL(sleep_on);
3812
Ingo Molnar0fec1712007-07-09 18:52:01 +02003813long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814{
Andi Kleen8cbbe862007-10-15 17:00:14 +02003815 return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817EXPORT_SYMBOL(sleep_on_timeout);
3818
Ingo Molnarb29739f2006-06-27 02:54:51 -07003819#ifdef CONFIG_RT_MUTEXES
3820
3821/*
3822 * rt_mutex_setprio - set the current priority of a task
3823 * @p: task
3824 * @prio: prio value (kernel-internal form)
3825 *
3826 * This function changes the 'effective' priority of a task. It does
3827 * not touch ->normal_prio like __setscheduler().
3828 *
3829 * Used by the rt_mutex code to implement priority inheritance logic.
3830 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003831void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07003832{
3833 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02003834 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003835 struct rq *rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -07003836
3837 BUG_ON(prio < 0 || prio > MAX_PRIO);
3838
3839 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02003840 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003841
Andrew Mortond5f9f942007-05-08 20:27:06 -07003842 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02003843 on_rq = p->se.on_rq;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02003844 running = task_running(rq, p);
3845 if (on_rq) {
Ingo Molnar69be72c2007-08-09 11:16:49 +02003846 dequeue_task(rq, p, 0);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02003847 if (running)
3848 p->sched_class->put_prev_task(rq, p);
3849 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003850
3851 if (rt_prio(prio))
3852 p->sched_class = &rt_sched_class;
3853 else
3854 p->sched_class = &fair_sched_class;
3855
Ingo Molnarb29739f2006-06-27 02:54:51 -07003856 p->prio = prio;
3857
Ingo Molnardd41f592007-07-09 18:51:59 +02003858 if (on_rq) {
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02003859 if (running)
3860 p->sched_class->set_curr_task(rq);
Ingo Molnar8159f872007-08-09 11:16:49 +02003861 enqueue_task(rq, p, 0);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003862 /*
3863 * Reschedule if we are currently running on this runqueue and
Andrew Mortond5f9f942007-05-08 20:27:06 -07003864 * our priority decreased, or if we are not currently running on
3865 * this runqueue and our priority is higher than the current's
Ingo Molnarb29739f2006-06-27 02:54:51 -07003866 */
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02003867 if (running) {
Andrew Mortond5f9f942007-05-08 20:27:06 -07003868 if (p->prio > oldprio)
3869 resched_task(rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02003870 } else {
3871 check_preempt_curr(rq, p);
3872 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07003873 }
3874 task_rq_unlock(rq, &flags);
3875}
3876
3877#endif
3878
Ingo Molnar36c8b582006-07-03 00:25:41 -07003879void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880{
Ingo Molnardd41f592007-07-09 18:51:59 +02003881 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003883 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884
3885 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
3886 return;
3887 /*
3888 * We have to be careful, if called from sys_setpriority(),
3889 * the task might be in the middle of scheduling on another CPU.
3890 */
3891 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02003892 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893 /*
3894 * The RT priorities are set via sched_setscheduler(), but we still
3895 * allow the 'normal' nice value to be set - but as expected
3896 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02003897 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898 */
Ingo Molnare05606d2007-07-09 18:51:59 +02003899 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 p->static_prio = NICE_TO_PRIO(nice);
3901 goto out_unlock;
3902 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003903 on_rq = p->se.on_rq;
3904 if (on_rq) {
Ingo Molnar69be72c2007-08-09 11:16:49 +02003905 dequeue_task(rq, p, 0);
Ingo Molnar79b5ddd2007-08-09 11:16:49 +02003906 dec_load(rq, p);
Peter Williams2dd73a42006-06-27 02:54:34 -07003907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07003910 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003911 old_prio = p->prio;
3912 p->prio = effective_prio(p);
3913 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914
Ingo Molnardd41f592007-07-09 18:51:59 +02003915 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02003916 enqueue_task(rq, p, 0);
Ingo Molnar29b4b622007-08-09 11:16:49 +02003917 inc_load(rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07003919 * If the task increased its priority or is running and
3920 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07003922 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 resched_task(rq->curr);
3924 }
3925out_unlock:
3926 task_rq_unlock(rq, &flags);
3927}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928EXPORT_SYMBOL(set_user_nice);
3929
Matt Mackalle43379f2005-05-01 08:59:00 -07003930/*
3931 * can_nice - check if a task can reduce its nice value
3932 * @p: task
3933 * @nice: nice value
3934 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003935int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07003936{
Matt Mackall024f4742005-08-18 11:24:19 -07003937 /* convert nice value [19,-20] to rlimit style value [1,40] */
3938 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003939
Matt Mackalle43379f2005-05-01 08:59:00 -07003940 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
3941 capable(CAP_SYS_NICE));
3942}
3943
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944#ifdef __ARCH_WANT_SYS_NICE
3945
3946/*
3947 * sys_nice - change the priority of the current process.
3948 * @increment: priority increment
3949 *
3950 * sys_setpriority is a more generic, but much slower function that
3951 * does similar things.
3952 */
3953asmlinkage long sys_nice(int increment)
3954{
Ingo Molnar48f24c42006-07-03 00:25:40 -07003955 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956
3957 /*
3958 * Setpriority might change our priority at the same moment.
3959 * We don't have to worry. Conceptually one call occurs first
3960 * and we have a single winner.
3961 */
Matt Mackalle43379f2005-05-01 08:59:00 -07003962 if (increment < -40)
3963 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964 if (increment > 40)
3965 increment = 40;
3966
3967 nice = PRIO_TO_NICE(current->static_prio) + increment;
3968 if (nice < -20)
3969 nice = -20;
3970 if (nice > 19)
3971 nice = 19;
3972
Matt Mackalle43379f2005-05-01 08:59:00 -07003973 if (increment < 0 && !can_nice(current, nice))
3974 return -EPERM;
3975
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976 retval = security_task_setnice(current, nice);
3977 if (retval)
3978 return retval;
3979
3980 set_user_nice(current, nice);
3981 return 0;
3982}
3983
3984#endif
3985
3986/**
3987 * task_prio - return the priority value of a given task.
3988 * @p: the task in question.
3989 *
3990 * This is the priority value as seen by users in /proc.
3991 * RT tasks are offset by -200. Normal tasks are centered
3992 * around 0, value goes from -16 to +15.
3993 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003994int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995{
3996 return p->prio - MAX_RT_PRIO;
3997}
3998
3999/**
4000 * task_nice - return the nice value of a given task.
4001 * @p: the task in question.
4002 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004003int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004{
4005 return TASK_NICE(p);
4006}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007EXPORT_SYMBOL_GPL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008
4009/**
4010 * idle_cpu - is a given cpu idle currently?
4011 * @cpu: the processor in question.
4012 */
4013int idle_cpu(int cpu)
4014{
4015 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
4016}
4017
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018/**
4019 * idle_task - return the idle task for a given cpu.
4020 * @cpu: the processor in question.
4021 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004022struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023{
4024 return cpu_rq(cpu)->idle;
4025}
4026
4027/**
4028 * find_process_by_pid - find a process with a matching PID value.
4029 * @pid: the pid in question.
4030 */
Alexey Dobriyana9957442007-10-15 17:00:13 +02004031static struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032{
4033 return pid ? find_task_by_pid(pid) : current;
4034}
4035
4036/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02004037static void
4038__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039{
Ingo Molnardd41f592007-07-09 18:51:59 +02004040 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004041
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02004043 switch (p->policy) {
4044 case SCHED_NORMAL:
4045 case SCHED_BATCH:
4046 case SCHED_IDLE:
4047 p->sched_class = &fair_sched_class;
4048 break;
4049 case SCHED_FIFO:
4050 case SCHED_RR:
4051 p->sched_class = &rt_sched_class;
4052 break;
4053 }
4054
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004056 p->normal_prio = normal_prio(p);
4057 /* we are holding p->pi_lock already */
4058 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07004059 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060}
4061
4062/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004063 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064 * @p: the task in question.
4065 * @policy: new policy.
4066 * @param: structure containing the new RT priority.
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004067 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004068 * NOTE that the task may be already dead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004070int sched_setscheduler(struct task_struct *p, int policy,
4071 struct sched_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004073 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004075 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076
Steven Rostedt66e53932006-06-27 02:54:44 -07004077 /* may grab non-irq protected spin_locks */
4078 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079recheck:
4080 /* double check policy once rq lock held */
4081 if (policy < 0)
4082 policy = oldpolicy = p->policy;
4083 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02004084 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
4085 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08004086 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087 /*
4088 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02004089 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
4090 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091 */
4092 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004093 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04004094 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02004096 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097 return -EINVAL;
4098
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004099 /*
4100 * Allow unprivileged RT tasks to decrease priority:
4101 */
4102 if (!capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02004103 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004104 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004105
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004106 if (!lock_task_sighand(p, &flags))
4107 return -ESRCH;
4108 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
4109 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004110
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004111 /* can't set/change the rt policy */
4112 if (policy != p->policy && !rlim_rtprio)
4113 return -EPERM;
4114
4115 /* can't increase priority */
4116 if (param->sched_priority > p->rt_priority &&
4117 param->sched_priority > rlim_rtprio)
4118 return -EPERM;
4119 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004120 /*
4121 * Like positive nice levels, dont allow tasks to
4122 * move out of SCHED_IDLE either:
4123 */
4124 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
4125 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004126
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004127 /* can't change other user's priorities */
4128 if ((current->euid != p->euid) &&
4129 (current->euid != p->uid))
4130 return -EPERM;
4131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132
4133 retval = security_task_setscheduler(p, policy, param);
4134 if (retval)
4135 return retval;
4136 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07004137 * make sure no PI-waiters arrive (or leave) while we are
4138 * changing the priority of the task:
4139 */
4140 spin_lock_irqsave(&p->pi_lock, flags);
4141 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142 * To be able to change p->policy safely, the apropriate
4143 * runqueue lock must be held.
4144 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07004145 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146 /* recheck policy now with rq lock held */
4147 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
4148 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004149 __task_rq_unlock(rq);
4150 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151 goto recheck;
4152 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02004153 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004154 on_rq = p->se.on_rq;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004155 running = task_running(rq, p);
4156 if (on_rq) {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004157 deactivate_task(rq, p, 0);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004158 if (running)
4159 p->sched_class->put_prev_task(rq, p);
4160 }
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02004161
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004163 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02004164
Ingo Molnardd41f592007-07-09 18:51:59 +02004165 if (on_rq) {
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004166 if (running)
4167 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004168 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169 /*
4170 * Reschedule if we are currently running on this runqueue and
Andrew Mortond5f9f942007-05-08 20:27:06 -07004171 * our priority decreased, or if we are not currently running on
4172 * this runqueue and our priority is higher than the current's
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173 */
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004174 if (running) {
Andrew Mortond5f9f942007-05-08 20:27:06 -07004175 if (p->prio > oldprio)
4176 resched_task(rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02004177 } else {
4178 check_preempt_curr(rq, p);
4179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07004181 __task_rq_unlock(rq);
4182 spin_unlock_irqrestore(&p->pi_lock, flags);
4183
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07004184 rt_mutex_adjust_pi(p);
4185
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186 return 0;
4187}
4188EXPORT_SYMBOL_GPL(sched_setscheduler);
4189
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004190static int
4191do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193 struct sched_param lparam;
4194 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004195 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196
4197 if (!param || pid < 0)
4198 return -EINVAL;
4199 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
4200 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004201
4202 rcu_read_lock();
4203 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004205 if (p != NULL)
4206 retval = sched_setscheduler(p, policy, &lparam);
4207 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07004208
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209 return retval;
4210}
4211
4212/**
4213 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
4214 * @pid: the pid in question.
4215 * @policy: new policy.
4216 * @param: structure containing the new RT priority.
4217 */
4218asmlinkage long sys_sched_setscheduler(pid_t pid, int policy,
4219 struct sched_param __user *param)
4220{
Jason Baronc21761f2006-01-18 17:43:03 -08004221 /* negative values for policy are not valid */
4222 if (policy < 0)
4223 return -EINVAL;
4224
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225 return do_sched_setscheduler(pid, policy, param);
4226}
4227
4228/**
4229 * sys_sched_setparam - set/change the RT priority of a thread
4230 * @pid: the pid in question.
4231 * @param: structure containing the new RT priority.
4232 */
4233asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
4234{
4235 return do_sched_setscheduler(pid, -1, param);
4236}
4237
4238/**
4239 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
4240 * @pid: the pid in question.
4241 */
4242asmlinkage long sys_sched_getscheduler(pid_t pid)
4243{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004244 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004245 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246
4247 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004248 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249
4250 retval = -ESRCH;
4251 read_lock(&tasklist_lock);
4252 p = find_process_by_pid(pid);
4253 if (p) {
4254 retval = security_task_getscheduler(p);
4255 if (!retval)
4256 retval = p->policy;
4257 }
4258 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259 return retval;
4260}
4261
4262/**
4263 * sys_sched_getscheduler - get the RT priority of a thread
4264 * @pid: the pid in question.
4265 * @param: structure containing the RT priority.
4266 */
4267asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
4268{
4269 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004270 struct task_struct *p;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004271 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272
4273 if (!param || pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004274 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275
4276 read_lock(&tasklist_lock);
4277 p = find_process_by_pid(pid);
4278 retval = -ESRCH;
4279 if (!p)
4280 goto out_unlock;
4281
4282 retval = security_task_getscheduler(p);
4283 if (retval)
4284 goto out_unlock;
4285
4286 lp.sched_priority = p->rt_priority;
4287 read_unlock(&tasklist_lock);
4288
4289 /*
4290 * This one might sleep, we cannot do it with a spinlock held ...
4291 */
4292 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
4293
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294 return retval;
4295
4296out_unlock:
4297 read_unlock(&tasklist_lock);
4298 return retval;
4299}
4300
4301long sched_setaffinity(pid_t pid, cpumask_t new_mask)
4302{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303 cpumask_t cpus_allowed;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004304 struct task_struct *p;
4305 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306
Gautham R Shenoy5be93612007-05-09 02:34:04 -07004307 mutex_lock(&sched_hotcpu_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308 read_lock(&tasklist_lock);
4309
4310 p = find_process_by_pid(pid);
4311 if (!p) {
4312 read_unlock(&tasklist_lock);
Gautham R Shenoy5be93612007-05-09 02:34:04 -07004313 mutex_unlock(&sched_hotcpu_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314 return -ESRCH;
4315 }
4316
4317 /*
4318 * It is not safe to call set_cpus_allowed with the
4319 * tasklist_lock held. We will bump the task_struct's
4320 * usage count and then drop tasklist_lock.
4321 */
4322 get_task_struct(p);
4323 read_unlock(&tasklist_lock);
4324
4325 retval = -EPERM;
4326 if ((current->euid != p->euid) && (current->euid != p->uid) &&
4327 !capable(CAP_SYS_NICE))
4328 goto out_unlock;
4329
David Quigleye7834f82006-06-23 02:03:59 -07004330 retval = security_task_setscheduler(p, 0, NULL);
4331 if (retval)
4332 goto out_unlock;
4333
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334 cpus_allowed = cpuset_cpus_allowed(p);
4335 cpus_and(new_mask, new_mask, cpus_allowed);
4336 retval = set_cpus_allowed(p, new_mask);
4337
4338out_unlock:
4339 put_task_struct(p);
Gautham R Shenoy5be93612007-05-09 02:34:04 -07004340 mutex_unlock(&sched_hotcpu_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341 return retval;
4342}
4343
4344static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
4345 cpumask_t *new_mask)
4346{
4347 if (len < sizeof(cpumask_t)) {
4348 memset(new_mask, 0, sizeof(cpumask_t));
4349 } else if (len > sizeof(cpumask_t)) {
4350 len = sizeof(cpumask_t);
4351 }
4352 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
4353}
4354
4355/**
4356 * sys_sched_setaffinity - set the cpu affinity of a process
4357 * @pid: pid of the process
4358 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4359 * @user_mask_ptr: user-space pointer to the new cpu mask
4360 */
4361asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
4362 unsigned long __user *user_mask_ptr)
4363{
4364 cpumask_t new_mask;
4365 int retval;
4366
4367 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
4368 if (retval)
4369 return retval;
4370
4371 return sched_setaffinity(pid, new_mask);
4372}
4373
4374/*
4375 * Represents all cpu's present in the system
4376 * In systems capable of hotplug, this map could dynamically grow
4377 * as new cpu's are detected in the system via any platform specific
4378 * method, such as ACPI for e.g.
4379 */
4380
Andi Kleen4cef0c62006-01-11 22:44:57 +01004381cpumask_t cpu_present_map __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382EXPORT_SYMBOL(cpu_present_map);
4383
4384#ifndef CONFIG_SMP
Andi Kleen4cef0c62006-01-11 22:44:57 +01004385cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004386EXPORT_SYMBOL(cpu_online_map);
4387
Andi Kleen4cef0c62006-01-11 22:44:57 +01004388cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004389EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390#endif
4391
4392long sched_getaffinity(pid_t pid, cpumask_t *mask)
4393{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004394 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396
Gautham R Shenoy5be93612007-05-09 02:34:04 -07004397 mutex_lock(&sched_hotcpu_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398 read_lock(&tasklist_lock);
4399
4400 retval = -ESRCH;
4401 p = find_process_by_pid(pid);
4402 if (!p)
4403 goto out_unlock;
4404
David Quigleye7834f82006-06-23 02:03:59 -07004405 retval = security_task_getscheduler(p);
4406 if (retval)
4407 goto out_unlock;
4408
Jack Steiner2f7016d2006-02-01 03:05:18 -08004409 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410
4411out_unlock:
4412 read_unlock(&tasklist_lock);
Gautham R Shenoy5be93612007-05-09 02:34:04 -07004413 mutex_unlock(&sched_hotcpu_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414
Ulrich Drepper9531b622007-08-09 11:16:46 +02004415 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416}
4417
4418/**
4419 * sys_sched_getaffinity - get the cpu affinity of a process
4420 * @pid: pid of the process
4421 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4422 * @user_mask_ptr: user-space pointer to hold the current cpu mask
4423 */
4424asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
4425 unsigned long __user *user_mask_ptr)
4426{
4427 int ret;
4428 cpumask_t mask;
4429
4430 if (len < sizeof(cpumask_t))
4431 return -EINVAL;
4432
4433 ret = sched_getaffinity(pid, &mask);
4434 if (ret < 0)
4435 return ret;
4436
4437 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
4438 return -EFAULT;
4439
4440 return sizeof(cpumask_t);
4441}
4442
4443/**
4444 * sys_sched_yield - yield the current processor to other threads.
4445 *
Ingo Molnardd41f592007-07-09 18:51:59 +02004446 * This function yields the current CPU to other tasks. If there are no
4447 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448 */
4449asmlinkage long sys_sched_yield(void)
4450{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004451 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452
Ingo Molnar2d723762007-10-15 17:00:12 +02004453 schedstat_inc(rq, yld_count);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02004454 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455
4456 /*
4457 * Since we are going to call schedule() anyway, there's
4458 * no need to preempt or enable interrupts:
4459 */
4460 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004461 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462 _raw_spin_unlock(&rq->lock);
4463 preempt_enable_no_resched();
4464
4465 schedule();
4466
4467 return 0;
4468}
4469
Andrew Mortone7b38402006-06-30 01:56:00 -07004470static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07004472#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
4473 __might_sleep(__FILE__, __LINE__);
4474#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07004475 /*
4476 * The BKS might be reacquired before we have dropped
4477 * PREEMPT_ACTIVE, which could trigger a second
4478 * cond_resched() call.
4479 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480 do {
4481 add_preempt_count(PREEMPT_ACTIVE);
4482 schedule();
4483 sub_preempt_count(PREEMPT_ACTIVE);
4484 } while (need_resched());
4485}
4486
4487int __sched cond_resched(void)
4488{
Ingo Molnar94142322006-12-29 16:48:13 -08004489 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
4490 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491 __cond_resched();
4492 return 1;
4493 }
4494 return 0;
4495}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496EXPORT_SYMBOL(cond_resched);
4497
4498/*
4499 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
4500 * call schedule, and on return reacquire the lock.
4501 *
4502 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
4503 * operations here to prevent schedule() from being called twice (once via
4504 * spin_unlock(), once by hand).
4505 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004506int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507{
Jan Kara6df3cec2005-06-13 15:52:32 -07004508 int ret = 0;
4509
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510 if (need_lockbreak(lock)) {
4511 spin_unlock(lock);
4512 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07004513 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514 spin_lock(lock);
4515 }
Ingo Molnar94142322006-12-29 16:48:13 -08004516 if (need_resched() && system_state == SYSTEM_RUNNING) {
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004517 spin_release(&lock->dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518 _raw_spin_unlock(lock);
4519 preempt_enable_no_resched();
4520 __cond_resched();
Jan Kara6df3cec2005-06-13 15:52:32 -07004521 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523 }
Jan Kara6df3cec2005-06-13 15:52:32 -07004524 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526EXPORT_SYMBOL(cond_resched_lock);
4527
4528int __sched cond_resched_softirq(void)
4529{
4530 BUG_ON(!in_softirq());
4531
Ingo Molnar94142322006-12-29 16:48:13 -08004532 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d82562007-05-23 13:58:18 -07004533 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534 __cond_resched();
4535 local_bh_disable();
4536 return 1;
4537 }
4538 return 0;
4539}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540EXPORT_SYMBOL(cond_resched_softirq);
4541
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542/**
4543 * yield - yield the current processor to other threads.
4544 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004545 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546 * thread runnable and calls sys_sched_yield().
4547 */
4548void __sched yield(void)
4549{
4550 set_current_state(TASK_RUNNING);
4551 sys_sched_yield();
4552}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553EXPORT_SYMBOL(yield);
4554
4555/*
4556 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
4557 * that process accounting knows that this is a task in IO wait state.
4558 *
4559 * But don't do that if it is a deliberate, throttling IO wait (this task
4560 * has set its backing_dev_info: the queue against which it should throttle)
4561 */
4562void __sched io_schedule(void)
4563{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004564 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004566 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567 atomic_inc(&rq->nr_iowait);
4568 schedule();
4569 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004570 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572EXPORT_SYMBOL(io_schedule);
4573
4574long __sched io_schedule_timeout(long timeout)
4575{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004576 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577 long ret;
4578
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004579 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580 atomic_inc(&rq->nr_iowait);
4581 ret = schedule_timeout(timeout);
4582 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004583 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584 return ret;
4585}
4586
4587/**
4588 * sys_sched_get_priority_max - return maximum RT priority.
4589 * @policy: scheduling class.
4590 *
4591 * this syscall returns the maximum rt_priority that can be used
4592 * by a given scheduling class.
4593 */
4594asmlinkage long sys_sched_get_priority_max(int policy)
4595{
4596 int ret = -EINVAL;
4597
4598 switch (policy) {
4599 case SCHED_FIFO:
4600 case SCHED_RR:
4601 ret = MAX_USER_RT_PRIO-1;
4602 break;
4603 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08004604 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02004605 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606 ret = 0;
4607 break;
4608 }
4609 return ret;
4610}
4611
4612/**
4613 * sys_sched_get_priority_min - return minimum RT priority.
4614 * @policy: scheduling class.
4615 *
4616 * this syscall returns the minimum rt_priority that can be used
4617 * by a given scheduling class.
4618 */
4619asmlinkage long sys_sched_get_priority_min(int policy)
4620{
4621 int ret = -EINVAL;
4622
4623 switch (policy) {
4624 case SCHED_FIFO:
4625 case SCHED_RR:
4626 ret = 1;
4627 break;
4628 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08004629 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02004630 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631 ret = 0;
4632 }
4633 return ret;
4634}
4635
4636/**
4637 * sys_sched_rr_get_interval - return the default timeslice of a process.
4638 * @pid: pid of the process.
4639 * @interval: userspace pointer to the timeslice value.
4640 *
4641 * this syscall writes the default timeslice value of a given process
4642 * into the user-space timespec buffer. A value of '0' means infinity.
4643 */
4644asmlinkage
4645long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
4646{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004647 struct task_struct *p;
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02004648 unsigned int time_slice;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004649 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651
4652 if (pid < 0)
Andi Kleen3a5c3592007-10-15 17:00:14 +02004653 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654
4655 retval = -ESRCH;
4656 read_lock(&tasklist_lock);
4657 p = find_process_by_pid(pid);
4658 if (!p)
4659 goto out_unlock;
4660
4661 retval = security_task_getscheduler(p);
4662 if (retval)
4663 goto out_unlock;
4664
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02004665 if (p->policy == SCHED_FIFO)
4666 time_slice = 0;
4667 else if (p->policy == SCHED_RR)
4668 time_slice = DEF_TIMESLICE;
4669 else {
4670 struct sched_entity *se = &p->se;
4671 unsigned long flags;
4672 struct rq *rq;
4673
4674 rq = task_rq_lock(p, &flags);
4675 time_slice = NS_TO_JIFFIES(sched_slice(cfs_rq_of(se), se));
4676 task_rq_unlock(rq, &flags);
4677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004678 read_unlock(&tasklist_lock);
Dmitry Adamushkoa4ec24b2007-10-15 17:00:13 +02004679 jiffies_to_timespec(time_slice, &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681 return retval;
Andi Kleen3a5c3592007-10-15 17:00:14 +02004682
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683out_unlock:
4684 read_unlock(&tasklist_lock);
4685 return retval;
4686}
4687
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004688static const char stat_nam[] = "RSDTtZX";
Ingo Molnar36c8b582006-07-03 00:25:41 -07004689
4690static void show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004693 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695 state = p->state ? __ffs(p->state) + 1 : 0;
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004696 printk("%-13.13s %c", p->comm,
4697 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02004698#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699 if (state == TASK_RUNNING)
Ingo Molnar4bd77322007-07-11 21:21:47 +02004700 printk(" running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701 else
Ingo Molnar4bd77322007-07-11 21:21:47 +02004702 printk(" %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703#else
4704 if (state == TASK_RUNNING)
Ingo Molnar4bd77322007-07-11 21:21:47 +02004705 printk(" running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706 else
4707 printk(" %016lx ", thread_saved_pc(p));
4708#endif
4709#ifdef CONFIG_DEBUG_STACK_USAGE
4710 {
Al Viro10ebffd2005-11-13 16:06:56 -08004711 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712 while (!*n)
4713 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08004714 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715 }
4716#endif
Ingo Molnar4bd77322007-07-11 21:21:47 +02004717 printk("%5lu %5d %6d\n", free, p->pid, p->parent->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718
4719 if (state != TASK_RUNNING)
4720 show_stack(p, NULL);
4721}
4722
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004723void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004725 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726
Ingo Molnar4bd77322007-07-11 21:21:47 +02004727#if BITS_PER_LONG == 32
4728 printk(KERN_INFO
4729 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02004731 printk(KERN_INFO
4732 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733#endif
4734 read_lock(&tasklist_lock);
4735 do_each_thread(g, p) {
4736 /*
4737 * reset the NMI-timeout, listing all files on a slow
4738 * console might take alot of time:
4739 */
4740 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07004741 if (!state_filter || (p->state & state_filter))
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004742 show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743 } while_each_thread(g, p);
4744
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07004745 touch_all_softlockup_watchdogs();
4746
Ingo Molnardd41f592007-07-09 18:51:59 +02004747#ifdef CONFIG_SCHED_DEBUG
4748 sysrq_sched_debug_show();
4749#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004751 /*
4752 * Only show locks if all tasks are dumped:
4753 */
4754 if (state_filter == -1)
4755 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004756}
4757
Ingo Molnar1df21052007-07-09 18:51:58 +02004758void __cpuinit init_idle_bootup_task(struct task_struct *idle)
4759{
Ingo Molnardd41f592007-07-09 18:51:59 +02004760 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02004761}
4762
Ingo Molnarf340c0d2005-06-28 16:40:42 +02004763/**
4764 * init_idle - set up an idle thread for a given CPU
4765 * @idle: task in question
4766 * @cpu: cpu the idle task belongs to
4767 *
4768 * NOTE: this function does not set the idle thread's NEED_RESCHED
4769 * flag, to make booting more robust.
4770 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07004771void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004773 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774 unsigned long flags;
4775
Ingo Molnardd41f592007-07-09 18:51:59 +02004776 __sched_fork(idle);
4777 idle->se.exec_start = sched_clock();
4778
Ingo Molnarb29739f2006-06-27 02:54:51 -07004779 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780 idle->cpus_allowed = cpumask_of_cpu(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004781 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004782
4783 spin_lock_irqsave(&rq->lock, flags);
4784 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07004785#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
4786 idle->oncpu = 1;
4787#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788 spin_unlock_irqrestore(&rq->lock, flags);
4789
4790 /* Set the preempt count _outside_ the spinlocks! */
4791#if defined(CONFIG_PREEMPT) && !defined(CONFIG_PREEMPT_BKL)
Al Viroa1261f52005-11-13 16:06:55 -08004792 task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004793#else
Al Viroa1261f52005-11-13 16:06:55 -08004794 task_thread_info(idle)->preempt_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02004796 /*
4797 * The idle tasks have their own, simple scheduling class:
4798 */
4799 idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800}
4801
4802/*
4803 * In a system that switches off the HZ timer nohz_cpu_mask
4804 * indicates which cpus entered this state. This is used
4805 * in the rcu update to wait only for active cpus. For system
4806 * which do not switch off the HZ timer nohz_cpu_mask should
4807 * always be CPU_MASK_NONE.
4808 */
4809cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
4810
4811#ifdef CONFIG_SMP
4812/*
4813 * This is how migration works:
4814 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07004815 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816 * runqueue and wake up that CPU's migration thread.
4817 * 2) we down() the locked semaphore => thread blocks.
4818 * 3) migration thread wakes up (implicitly it forces the migrated
4819 * thread off the CPU)
4820 * 4) it gets the migration request and checks whether the migrated
4821 * task is still in the wrong runqueue.
4822 * 5) if it's in the wrong runqueue then the migration thread removes
4823 * it and puts it into the right queue.
4824 * 6) migration thread up()s the semaphore.
4825 * 7) we wake up and the migration is done.
4826 */
4827
4828/*
4829 * Change a given task's CPU affinity. Migrate the thread to a
4830 * proper CPU and schedule it away if the CPU it's executing on
4831 * is removed from the allowed bitmask.
4832 *
4833 * NOTE: the caller must have a valid reference to the task, the
4834 * task must not exit() & deallocate itself prematurely. The
4835 * call is not atomic; no spinlocks may be held.
4836 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004837int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004839 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004841 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004842 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843
4844 rq = task_rq_lock(p, &flags);
4845 if (!cpus_intersects(new_mask, cpu_online_map)) {
4846 ret = -EINVAL;
4847 goto out;
4848 }
4849
4850 p->cpus_allowed = new_mask;
4851 /* Can the task run on the task's current CPU? If so, we're done */
4852 if (cpu_isset(task_cpu(p), new_mask))
4853 goto out;
4854
4855 if (migrate_task(p, any_online_cpu(new_mask), &req)) {
4856 /* Need help from migration thread: drop lock and wait. */
4857 task_rq_unlock(rq, &flags);
4858 wake_up_process(rq->migration_thread);
4859 wait_for_completion(&req.done);
4860 tlb_migrate_finish(p->mm);
4861 return 0;
4862 }
4863out:
4864 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004865
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866 return ret;
4867}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868EXPORT_SYMBOL_GPL(set_cpus_allowed);
4869
4870/*
4871 * Move (not current) task off this cpu, onto dest cpu. We're doing
4872 * this because either it can't run here any more (set_cpus_allowed()
4873 * away from this CPU, or CPU going down), or because we're
4874 * attempting to rebalance this task on exec (sched_exec).
4875 *
4876 * So we race with normal scheduler movements, but that's OK, as long
4877 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07004878 *
4879 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07004881static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004883 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02004884 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004885
4886 if (unlikely(cpu_is_offline(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07004887 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888
4889 rq_src = cpu_rq(src_cpu);
4890 rq_dest = cpu_rq(dest_cpu);
4891
4892 double_rq_lock(rq_src, rq_dest);
4893 /* Already moved. */
4894 if (task_cpu(p) != src_cpu)
4895 goto out;
4896 /* Affinity changed (again). */
4897 if (!cpu_isset(dest_cpu, p->cpus_allowed))
4898 goto out;
4899
Ingo Molnardd41f592007-07-09 18:51:59 +02004900 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02004901 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004902 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02004903
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004905 if (on_rq) {
4906 activate_task(rq_dest, p, 0);
4907 check_preempt_curr(rq_dest, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908 }
Kirill Korotaevefc30812006-06-27 02:54:32 -07004909 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910out:
4911 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07004912 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004913}
4914
4915/*
4916 * migration_thread - this is a highprio system thread that performs
4917 * thread migration by bumping thread off CPU then 'pushing' onto
4918 * another runqueue.
4919 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004920static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004923 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924
4925 rq = cpu_rq(cpu);
4926 BUG_ON(rq->migration_thread != current);
4927
4928 set_current_state(TASK_INTERRUPTIBLE);
4929 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07004930 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933 spin_lock_irq(&rq->lock);
4934
4935 if (cpu_is_offline(cpu)) {
4936 spin_unlock_irq(&rq->lock);
4937 goto wait_to_die;
4938 }
4939
4940 if (rq->active_balance) {
4941 active_load_balance(rq, cpu);
4942 rq->active_balance = 0;
4943 }
4944
4945 head = &rq->migration_queue;
4946
4947 if (list_empty(head)) {
4948 spin_unlock_irq(&rq->lock);
4949 schedule();
4950 set_current_state(TASK_INTERRUPTIBLE);
4951 continue;
4952 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07004953 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954 list_del_init(head->next);
4955
Nick Piggin674311d2005-06-25 14:57:27 -07004956 spin_unlock(&rq->lock);
4957 __migrate_task(req->task, cpu, req->dest_cpu);
4958 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959
4960 complete(&req->done);
4961 }
4962 __set_current_state(TASK_RUNNING);
4963 return 0;
4964
4965wait_to_die:
4966 /* Wait for kthread_stop */
4967 set_current_state(TASK_INTERRUPTIBLE);
4968 while (!kthread_should_stop()) {
4969 schedule();
4970 set_current_state(TASK_INTERRUPTIBLE);
4971 }
4972 __set_current_state(TASK_RUNNING);
4973 return 0;
4974}
4975
4976#ifdef CONFIG_HOTPLUG_CPU
Kirill Korotaev054b9102006-12-10 02:20:11 -08004977/*
4978 * Figure out where task on dead CPU should go, use force if neccessary.
4979 * NOTE: interrupts should be disabled by the caller
4980 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07004981static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004982{
Kirill Korotaevefc30812006-06-27 02:54:32 -07004983 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004985 struct rq *rq;
4986 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987
Andi Kleen3a5c3592007-10-15 17:00:14 +02004988 do {
4989 /* On same node? */
4990 mask = node_to_cpumask(cpu_to_node(dead_cpu));
4991 cpus_and(mask, mask, p->cpus_allowed);
4992 dest_cpu = any_online_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993
Andi Kleen3a5c3592007-10-15 17:00:14 +02004994 /* On any allowed CPU? */
4995 if (dest_cpu == NR_CPUS)
4996 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997
Andi Kleen3a5c3592007-10-15 17:00:14 +02004998 /* No more Mr. Nice Guy. */
4999 if (dest_cpu == NR_CPUS) {
5000 rq = task_rq_lock(p, &flags);
5001 cpus_setall(p->cpus_allowed);
5002 dest_cpu = any_online_cpu(p->cpus_allowed);
5003 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004
Andi Kleen3a5c3592007-10-15 17:00:14 +02005005 /*
5006 * Don't tell them about moving exiting tasks or
5007 * kernel threads (both mm NULL), since they never
5008 * leave kernel.
5009 */
5010 if (p->mm && printk_ratelimit())
5011 printk(KERN_INFO "process %d (%s) no "
5012 "longer affine to cpu%d\n",
5013 p->pid, p->comm, dead_cpu);
5014 }
5015 } while (!__migrate_task(p, dead_cpu, dest_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016}
5017
5018/*
5019 * While a dead CPU has no uninterruptible tasks queued at this point,
5020 * it might still have a nonzero ->nr_uninterruptible counter, because
5021 * for performance reasons the counter is not stricly tracking tasks to
5022 * their home CPUs. So we just add the counter to another CPU's counter,
5023 * to keep the global sum constant after CPU-down:
5024 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07005025static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005027 struct rq *rq_dest = cpu_rq(any_online_cpu(CPU_MASK_ALL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028 unsigned long flags;
5029
5030 local_irq_save(flags);
5031 double_rq_lock(rq_src, rq_dest);
5032 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
5033 rq_src->nr_uninterruptible = 0;
5034 double_rq_unlock(rq_src, rq_dest);
5035 local_irq_restore(flags);
5036}
5037
5038/* Run through task list and migrate tasks from the dead cpu. */
5039static void migrate_live_tasks(int src_cpu)
5040{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005041 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042
5043 write_lock_irq(&tasklist_lock);
5044
Ingo Molnar48f24c42006-07-03 00:25:40 -07005045 do_each_thread(t, p) {
5046 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005047 continue;
5048
Ingo Molnar48f24c42006-07-03 00:25:40 -07005049 if (task_cpu(p) == src_cpu)
5050 move_task_off_dead_cpu(src_cpu, p);
5051 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005052
5053 write_unlock_irq(&tasklist_lock);
5054}
5055
Ingo Molnardd41f592007-07-09 18:51:59 +02005056/*
Alexey Dobriyana9957442007-10-15 17:00:13 +02005057 * activate_idle_task - move idle task to the _front_ of runqueue.
5058 */
5059static void activate_idle_task(struct task_struct *p, struct rq *rq)
5060{
5061 update_rq_clock(rq);
5062
5063 if (p->state == TASK_UNINTERRUPTIBLE)
5064 rq->nr_uninterruptible--;
5065
5066 enqueue_task(rq, p, 0);
5067 inc_nr_running(p, rq);
5068}
5069
5070/*
Ingo Molnardd41f592007-07-09 18:51:59 +02005071 * Schedules idle task to be the next runnable task on current CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005072 * It does so by boosting its priority to highest possible and adding it to
Ingo Molnar48f24c42006-07-03 00:25:40 -07005073 * the _front_ of the runqueue. Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005074 */
5075void sched_idle_next(void)
5076{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005077 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07005078 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079 struct task_struct *p = rq->idle;
5080 unsigned long flags;
5081
5082 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005083 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084
Ingo Molnar48f24c42006-07-03 00:25:40 -07005085 /*
5086 * Strictly not necessary since rest of the CPUs are stopped by now
5087 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088 */
5089 spin_lock_irqsave(&rq->lock, flags);
5090
Ingo Molnardd41f592007-07-09 18:51:59 +02005091 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005092
5093 /* Add idle task to the _front_ of its priority queue: */
Ingo Molnardd41f592007-07-09 18:51:59 +02005094 activate_idle_task(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005095
5096 spin_unlock_irqrestore(&rq->lock, flags);
5097}
5098
Ingo Molnar48f24c42006-07-03 00:25:40 -07005099/*
5100 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101 * offline.
5102 */
5103void idle_task_exit(void)
5104{
5105 struct mm_struct *mm = current->active_mm;
5106
5107 BUG_ON(cpu_online(smp_processor_id()));
5108
5109 if (mm != &init_mm)
5110 switch_mm(mm, &init_mm, current);
5111 mmdrop(mm);
5112}
5113
Kirill Korotaev054b9102006-12-10 02:20:11 -08005114/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005115static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005117 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118
5119 /* Must be exiting, otherwise would be on tasklist. */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005120 BUG_ON(p->exit_state != EXIT_ZOMBIE && p->exit_state != EXIT_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121
5122 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07005123 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005124
Ingo Molnar48f24c42006-07-03 00:25:40 -07005125 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126
5127 /*
5128 * Drop lock around migration; if someone else moves it,
5129 * that's OK. No task can be added to this CPU, so iteration is
5130 * fine.
Kirill Korotaev054b9102006-12-10 02:20:11 -08005131 * NOTE: interrupts should be left disabled --dev@
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132 */
Kirill Korotaev054b9102006-12-10 02:20:11 -08005133 spin_unlock(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005134 move_task_off_dead_cpu(dead_cpu, p);
Kirill Korotaev054b9102006-12-10 02:20:11 -08005135 spin_lock(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005136
Ingo Molnar48f24c42006-07-03 00:25:40 -07005137 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138}
5139
5140/* release_task() removes task from tasklist, so we won't find dead tasks. */
5141static void migrate_dead_tasks(unsigned int dead_cpu)
5142{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005143 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005144 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145
Ingo Molnardd41f592007-07-09 18:51:59 +02005146 for ( ; ; ) {
5147 if (!rq->nr_running)
5148 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02005149 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02005150 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02005151 if (!next)
5152 break;
5153 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02005154
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155 }
5156}
5157#endif /* CONFIG_HOTPLUG_CPU */
5158
Nick Piggine692ab52007-07-26 13:40:43 +02005159#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
5160
5161static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005162 {
5163 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005164 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005165 },
Nick Piggine692ab52007-07-26 13:40:43 +02005166 {0,},
5167};
5168
5169static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005170 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005171 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005172 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005173 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005174 .child = sd_ctl_dir,
5175 },
Nick Piggine692ab52007-07-26 13:40:43 +02005176 {0,},
5177};
5178
5179static struct ctl_table *sd_alloc_ctl_entry(int n)
5180{
5181 struct ctl_table *entry =
5182 kmalloc(n * sizeof(struct ctl_table), GFP_KERNEL);
5183
5184 BUG_ON(!entry);
5185 memset(entry, 0, n * sizeof(struct ctl_table));
5186
5187 return entry;
5188}
5189
5190static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02005191set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02005192 const char *procname, void *data, int maxlen,
5193 mode_t mode, proc_handler *proc_handler)
5194{
Nick Piggine692ab52007-07-26 13:40:43 +02005195 entry->procname = procname;
5196 entry->data = data;
5197 entry->maxlen = maxlen;
5198 entry->mode = mode;
5199 entry->proc_handler = proc_handler;
5200}
5201
5202static struct ctl_table *
5203sd_alloc_ctl_domain_table(struct sched_domain *sd)
5204{
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005205 struct ctl_table *table = sd_alloc_ctl_entry(12);
Nick Piggine692ab52007-07-26 13:40:43 +02005206
Alexey Dobriyane0361852007-08-09 11:16:46 +02005207 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005208 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005209 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005210 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005211 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005212 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005213 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005214 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005215 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005216 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005217 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005218 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005219 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005220 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005221 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02005222 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005223 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02005224 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005225 set_table_entry(&table[9], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02005226 &sd->cache_nice_tries,
5227 sizeof(int), 0644, proc_dointvec_minmax);
Zou Nan haiace8b3d2007-10-15 17:00:14 +02005228 set_table_entry(&table[10], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02005229 sizeof(int), 0644, proc_dointvec_minmax);
5230
5231 return table;
5232}
5233
5234static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
5235{
5236 struct ctl_table *entry, *table;
5237 struct sched_domain *sd;
5238 int domain_num = 0, i;
5239 char buf[32];
5240
5241 for_each_domain(cpu, sd)
5242 domain_num++;
5243 entry = table = sd_alloc_ctl_entry(domain_num + 1);
5244
5245 i = 0;
5246 for_each_domain(cpu, sd) {
5247 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005248 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005249 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005250 entry->child = sd_alloc_ctl_domain_table(sd);
5251 entry++;
5252 i++;
5253 }
5254 return table;
5255}
5256
5257static struct ctl_table_header *sd_sysctl_header;
5258static void init_sched_domain_sysctl(void)
5259{
5260 int i, cpu_num = num_online_cpus();
5261 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
5262 char buf[32];
5263
5264 sd_ctl_dir[0].child = entry;
5265
5266 for (i = 0; i < cpu_num; i++, entry++) {
5267 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005268 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005269 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005270 entry->child = sd_alloc_ctl_cpu_table(i);
5271 }
5272 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
5273}
5274#else
5275static void init_sched_domain_sysctl(void)
5276{
5277}
5278#endif
5279
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280/*
5281 * migration_call - callback that gets triggered when a CPU is added.
5282 * Here we can start up the necessary migration thread for the new CPU.
5283 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005284static int __cpuinit
5285migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005286{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005287 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005288 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005289 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005290 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005291
5292 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07005293 case CPU_LOCK_ACQUIRE:
5294 mutex_lock(&sched_hotcpu_mutex);
5295 break;
5296
Linus Torvalds1da177e2005-04-16 15:20:36 -07005297 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005298 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02005299 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300 if (IS_ERR(p))
5301 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005302 kthread_bind(p, cpu);
5303 /* Must be high prio: stop_machine expects to yield to it. */
5304 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02005305 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306 task_rq_unlock(rq, &flags);
5307 cpu_rq(cpu)->migration_thread = p;
5308 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005309
Linus Torvalds1da177e2005-04-16 15:20:36 -07005310 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005311 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312 /* Strictly unneccessary, as first user will wake it. */
5313 wake_up_process(cpu_rq(cpu)->migration_thread);
5314 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005315
Linus Torvalds1da177e2005-04-16 15:20:36 -07005316#ifdef CONFIG_HOTPLUG_CPU
5317 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005318 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07005319 if (!cpu_rq(cpu)->migration_thread)
5320 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08005322 kthread_bind(cpu_rq(cpu)->migration_thread,
5323 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005324 kthread_stop(cpu_rq(cpu)->migration_thread);
5325 cpu_rq(cpu)->migration_thread = NULL;
5326 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005327
Linus Torvalds1da177e2005-04-16 15:20:36 -07005328 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005329 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330 migrate_live_tasks(cpu);
5331 rq = cpu_rq(cpu);
5332 kthread_stop(rq->migration_thread);
5333 rq->migration_thread = NULL;
5334 /* Idle task back to normal (off runqueue, low prio) */
5335 rq = task_rq_lock(rq->idle, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02005336 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005337 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02005339 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
5340 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341 migrate_dead_tasks(cpu);
5342 task_rq_unlock(rq, &flags);
5343 migrate_nr_uninterruptible(rq);
5344 BUG_ON(rq->nr_running != 0);
5345
5346 /* No need to migrate the tasks: it was best-effort if
Gautham R Shenoy5be93612007-05-09 02:34:04 -07005347 * they didn't take sched_hotcpu_mutex. Just wake up
Linus Torvalds1da177e2005-04-16 15:20:36 -07005348 * the requestors. */
5349 spin_lock_irq(&rq->lock);
5350 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005351 struct migration_req *req;
5352
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07005354 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355 list_del_init(&req->list);
5356 complete(&req->done);
5357 }
5358 spin_unlock_irq(&rq->lock);
5359 break;
5360#endif
Gautham R Shenoy5be93612007-05-09 02:34:04 -07005361 case CPU_LOCK_RELEASE:
5362 mutex_unlock(&sched_hotcpu_mutex);
5363 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005364 }
5365 return NOTIFY_OK;
5366}
5367
5368/* Register at highest priority so that task migration (migrate_all_tasks)
5369 * happens before everything else.
5370 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07005371static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372 .notifier_call = migration_call,
5373 .priority = 10
5374};
5375
5376int __init migration_init(void)
5377{
5378 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07005379 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005380
5381 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07005382 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
5383 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384 migration_call(&migration_notifier, CPU_ONLINE, cpu);
5385 register_cpu_notifier(&migration_notifier);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005386
Linus Torvalds1da177e2005-04-16 15:20:36 -07005387 return 0;
5388}
5389#endif
5390
5391#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07005392
5393/* Number of possible processor ids */
5394int nr_cpu_ids __read_mostly = NR_CPUS;
5395EXPORT_SYMBOL(nr_cpu_ids);
5396
Ingo Molnar3e9830d2007-10-15 17:00:13 +02005397#ifdef CONFIG_SCHED_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398static void sched_domain_debug(struct sched_domain *sd, int cpu)
5399{
5400 int level = 0;
5401
Nick Piggin41c7ce92005-06-25 14:57:24 -07005402 if (!sd) {
5403 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
5404 return;
5405 }
5406
Linus Torvalds1da177e2005-04-16 15:20:36 -07005407 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
5408
5409 do {
5410 int i;
5411 char str[NR_CPUS];
5412 struct sched_group *group = sd->groups;
5413 cpumask_t groupmask;
5414
5415 cpumask_scnprintf(str, NR_CPUS, sd->span);
5416 cpus_clear(groupmask);
5417
5418 printk(KERN_DEBUG);
5419 for (i = 0; i < level + 1; i++)
5420 printk(" ");
5421 printk("domain %d: ", level);
5422
5423 if (!(sd->flags & SD_LOAD_BALANCE)) {
5424 printk("does not load-balance\n");
5425 if (sd->parent)
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005426 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
5427 " has parent");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005428 break;
5429 }
5430
5431 printk("span %s\n", str);
5432
5433 if (!cpu_isset(cpu, sd->span))
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005434 printk(KERN_ERR "ERROR: domain->span does not contain "
5435 "CPU%d\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436 if (!cpu_isset(cpu, group->cpumask))
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005437 printk(KERN_ERR "ERROR: domain->groups does not contain"
5438 " CPU%d\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005439
5440 printk(KERN_DEBUG);
5441 for (i = 0; i < level + 2; i++)
5442 printk(" ");
5443 printk("groups:");
5444 do {
5445 if (!group) {
5446 printk("\n");
5447 printk(KERN_ERR "ERROR: group is NULL\n");
5448 break;
5449 }
5450
Eric Dumazet5517d862007-05-08 00:32:57 -07005451 if (!group->__cpu_power) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005452 printk("\n");
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005453 printk(KERN_ERR "ERROR: domain->cpu_power not "
5454 "set\n");
Ingo Molnar26797a32007-10-15 17:00:13 +02005455 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456 }
5457
5458 if (!cpus_weight(group->cpumask)) {
5459 printk("\n");
5460 printk(KERN_ERR "ERROR: empty group\n");
Ingo Molnar26797a32007-10-15 17:00:13 +02005461 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462 }
5463
5464 if (cpus_intersects(groupmask, group->cpumask)) {
5465 printk("\n");
5466 printk(KERN_ERR "ERROR: repeated CPUs\n");
Ingo Molnar26797a32007-10-15 17:00:13 +02005467 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005468 }
5469
5470 cpus_or(groupmask, groupmask, group->cpumask);
5471
5472 cpumask_scnprintf(str, NR_CPUS, group->cpumask);
5473 printk(" %s", str);
5474
5475 group = group->next;
5476 } while (group != sd->groups);
5477 printk("\n");
5478
5479 if (!cpus_equal(sd->span, groupmask))
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005480 printk(KERN_ERR "ERROR: groups don't span "
5481 "domain->span\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005482
5483 level++;
5484 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005485 if (!sd)
5486 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005487
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005488 if (!cpus_subset(groupmask, sd->span))
5489 printk(KERN_ERR "ERROR: parent span is not a superset "
5490 "of domain->span\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005491
5492 } while (sd);
5493}
5494#else
Ingo Molnar48f24c42006-07-03 00:25:40 -07005495# define sched_domain_debug(sd, cpu) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496#endif
5497
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07005498static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005499{
5500 if (cpus_weight(sd->span) == 1)
5501 return 1;
5502
5503 /* Following flags need at least 2 groups */
5504 if (sd->flags & (SD_LOAD_BALANCE |
5505 SD_BALANCE_NEWIDLE |
5506 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005507 SD_BALANCE_EXEC |
5508 SD_SHARE_CPUPOWER |
5509 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005510 if (sd->groups != sd->groups->next)
5511 return 0;
5512 }
5513
5514 /* Following flags don't use groups */
5515 if (sd->flags & (SD_WAKE_IDLE |
5516 SD_WAKE_AFFINE |
5517 SD_WAKE_BALANCE))
5518 return 0;
5519
5520 return 1;
5521}
5522
Ingo Molnar48f24c42006-07-03 00:25:40 -07005523static int
5524sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005525{
5526 unsigned long cflags = sd->flags, pflags = parent->flags;
5527
5528 if (sd_degenerate(parent))
5529 return 1;
5530
5531 if (!cpus_equal(sd->span, parent->span))
5532 return 0;
5533
5534 /* Does parent contain flags not in child? */
5535 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
5536 if (cflags & SD_WAKE_AFFINE)
5537 pflags &= ~SD_WAKE_BALANCE;
5538 /* Flags needing groups don't count if only 1 group in parent */
5539 if (parent->groups == parent->groups->next) {
5540 pflags &= ~(SD_LOAD_BALANCE |
5541 SD_BALANCE_NEWIDLE |
5542 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005543 SD_BALANCE_EXEC |
5544 SD_SHARE_CPUPOWER |
5545 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07005546 }
5547 if (~cflags & pflags)
5548 return 0;
5549
5550 return 1;
5551}
5552
Linus Torvalds1da177e2005-04-16 15:20:36 -07005553/*
5554 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
5555 * hold the hotplug lock.
5556 */
John Hawkes9c1cfda2005-09-06 15:18:14 -07005557static void cpu_attach_domain(struct sched_domain *sd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005558{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005559 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07005560 struct sched_domain *tmp;
5561
5562 /* Remove the sched domains which do not contribute to scheduling. */
5563 for (tmp = sd; tmp; tmp = tmp->parent) {
5564 struct sched_domain *parent = tmp->parent;
5565 if (!parent)
5566 break;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005567 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005568 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005569 if (parent->parent)
5570 parent->parent->child = tmp;
5571 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07005572 }
5573
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005574 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005575 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005576 if (sd)
5577 sd->child = NULL;
5578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005579
5580 sched_domain_debug(sd, cpu);
5581
Nick Piggin674311d2005-06-25 14:57:27 -07005582 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005583}
5584
5585/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08005586static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005587
5588/* Setup the mask of cpus configured for isolated domains */
5589static int __init isolated_cpu_setup(char *str)
5590{
5591 int ints[NR_CPUS], i;
5592
5593 str = get_options(str, ARRAY_SIZE(ints), ints);
5594 cpus_clear(cpu_isolated_map);
5595 for (i = 1; i <= ints[0]; i++)
5596 if (ints[i] < NR_CPUS)
5597 cpu_set(ints[i], cpu_isolated_map);
5598 return 1;
5599}
5600
Ingo Molnar8927f492007-10-15 17:00:13 +02005601__setup("isolcpus=", isolated_cpu_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005602
5603/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005604 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
5605 * to a function which identifies what group(along with sched group) a CPU
5606 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
5607 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005608 *
5609 * init_sched_build_groups will build a circular linked list of the groups
5610 * covered by the given span, and will set each group's ->cpumask correctly,
5611 * and ->cpu_power to 0.
5612 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07005613static void
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005614init_sched_build_groups(cpumask_t span, const cpumask_t *cpu_map,
5615 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
5616 struct sched_group **sg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617{
5618 struct sched_group *first = NULL, *last = NULL;
5619 cpumask_t covered = CPU_MASK_NONE;
5620 int i;
5621
5622 for_each_cpu_mask(i, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005623 struct sched_group *sg;
5624 int group = group_fn(i, cpu_map, &sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005625 int j;
5626
5627 if (cpu_isset(i, covered))
5628 continue;
5629
5630 sg->cpumask = CPU_MASK_NONE;
Eric Dumazet5517d862007-05-08 00:32:57 -07005631 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005632
5633 for_each_cpu_mask(j, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005634 if (group_fn(j, cpu_map, NULL) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005635 continue;
5636
5637 cpu_set(j, covered);
5638 cpu_set(j, sg->cpumask);
5639 }
5640 if (!first)
5641 first = sg;
5642 if (last)
5643 last->next = sg;
5644 last = sg;
5645 }
5646 last->next = first;
5647}
5648
John Hawkes9c1cfda2005-09-06 15:18:14 -07005649#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07005650
John Hawkes9c1cfda2005-09-06 15:18:14 -07005651#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005652
John Hawkes9c1cfda2005-09-06 15:18:14 -07005653/**
5654 * find_next_best_node - find the next node to include in a sched_domain
5655 * @node: node whose sched_domain we're building
5656 * @used_nodes: nodes already in the sched_domain
5657 *
5658 * Find the next node to include in a given scheduling domain. Simply
5659 * finds the closest node not already in the @used_nodes map.
5660 *
5661 * Should use nodemask_t.
5662 */
5663static int find_next_best_node(int node, unsigned long *used_nodes)
5664{
5665 int i, n, val, min_val, best_node = 0;
5666
5667 min_val = INT_MAX;
5668
5669 for (i = 0; i < MAX_NUMNODES; i++) {
5670 /* Start at @node */
5671 n = (node + i) % MAX_NUMNODES;
5672
5673 if (!nr_cpus_node(n))
5674 continue;
5675
5676 /* Skip already used nodes */
5677 if (test_bit(n, used_nodes))
5678 continue;
5679
5680 /* Simple min distance search */
5681 val = node_distance(node, n);
5682
5683 if (val < min_val) {
5684 min_val = val;
5685 best_node = n;
5686 }
5687 }
5688
5689 set_bit(best_node, used_nodes);
5690 return best_node;
5691}
5692
5693/**
5694 * sched_domain_node_span - get a cpumask for a node's sched_domain
5695 * @node: node whose cpumask we're constructing
5696 * @size: number of nodes to include in this span
5697 *
5698 * Given a node, construct a good cpumask for its sched_domain to span. It
5699 * should be one that prevents unnecessary balancing, but also spreads tasks
5700 * out optimally.
5701 */
5702static cpumask_t sched_domain_node_span(int node)
5703{
John Hawkes9c1cfda2005-09-06 15:18:14 -07005704 DECLARE_BITMAP(used_nodes, MAX_NUMNODES);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005705 cpumask_t span, nodemask;
5706 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07005707
5708 cpus_clear(span);
5709 bitmap_zero(used_nodes, MAX_NUMNODES);
5710
5711 nodemask = node_to_cpumask(node);
5712 cpus_or(span, span, nodemask);
5713 set_bit(node, used_nodes);
5714
5715 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
5716 int next_node = find_next_best_node(node, used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005717
John Hawkes9c1cfda2005-09-06 15:18:14 -07005718 nodemask = node_to_cpumask(next_node);
5719 cpus_or(span, span, nodemask);
5720 }
5721
5722 return span;
5723}
5724#endif
5725
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07005726int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005727
John Hawkes9c1cfda2005-09-06 15:18:14 -07005728/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07005729 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07005730 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005731#ifdef CONFIG_SCHED_SMT
5732static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005733static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005734
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005735static int cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map,
5736 struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005737{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005738 if (sg)
5739 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005740 return cpu;
5741}
5742#endif
5743
Ingo Molnar48f24c42006-07-03 00:25:40 -07005744/*
5745 * multi-core sched-domains:
5746 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005747#ifdef CONFIG_SCHED_MC
5748static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005749static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005750#endif
5751
5752#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005753static int cpu_to_core_group(int cpu, const cpumask_t *cpu_map,
5754 struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005755{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005756 int group;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07005757 cpumask_t mask = cpu_sibling_map[cpu];
5758 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005759 group = first_cpu(mask);
5760 if (sg)
5761 *sg = &per_cpu(sched_group_core, group);
5762 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005763}
5764#elif defined(CONFIG_SCHED_MC)
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005765static int cpu_to_core_group(int cpu, const cpumask_t *cpu_map,
5766 struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005767{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005768 if (sg)
5769 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005770 return cpu;
5771}
5772#endif
5773
Linus Torvalds1da177e2005-04-16 15:20:36 -07005774static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005775static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005776
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005777static int cpu_to_phys_group(int cpu, const cpumask_t *cpu_map,
5778 struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005779{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005780 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005781#ifdef CONFIG_SCHED_MC
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005782 cpumask_t mask = cpu_coregroup_map(cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07005783 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005784 group = first_cpu(mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005785#elif defined(CONFIG_SCHED_SMT)
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07005786 cpumask_t mask = cpu_sibling_map[cpu];
5787 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005788 group = first_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005789#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005790 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005791#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005792 if (sg)
5793 *sg = &per_cpu(sched_group_phys, group);
5794 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795}
5796
5797#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07005798/*
5799 * The init_sched_build_groups can't handle what we want to do with node
5800 * groups, so roll our own. Now each node has its own list of groups which
5801 * gets dynamically allocated.
5802 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005803static DEFINE_PER_CPU(struct sched_domain, node_domains);
John Hawkesd1b55132005-09-06 15:18:14 -07005804static struct sched_group **sched_group_nodes_bycpu[NR_CPUS];
John Hawkes9c1cfda2005-09-06 15:18:14 -07005805
5806static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005807static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07005808
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005809static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
5810 struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005811{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005812 cpumask_t nodemask = node_to_cpumask(cpu_to_node(cpu));
5813 int group;
5814
5815 cpus_and(nodemask, nodemask, *cpu_map);
5816 group = first_cpu(nodemask);
5817
5818 if (sg)
5819 *sg = &per_cpu(sched_group_allnodes, group);
5820 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005821}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005822
Siddha, Suresh B08069032006-03-27 01:15:23 -08005823static void init_numa_sched_groups_power(struct sched_group *group_head)
5824{
5825 struct sched_group *sg = group_head;
5826 int j;
5827
5828 if (!sg)
5829 return;
Andi Kleen3a5c3592007-10-15 17:00:14 +02005830 do {
5831 for_each_cpu_mask(j, sg->cpumask) {
5832 struct sched_domain *sd;
Siddha, Suresh B08069032006-03-27 01:15:23 -08005833
Andi Kleen3a5c3592007-10-15 17:00:14 +02005834 sd = &per_cpu(phys_domains, j);
5835 if (j != first_cpu(sd->groups->cpumask)) {
5836 /*
5837 * Only add "power" once for each
5838 * physical package.
5839 */
5840 continue;
5841 }
5842
5843 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08005844 }
Andi Kleen3a5c3592007-10-15 17:00:14 +02005845 sg = sg->next;
5846 } while (sg != group_head);
Siddha, Suresh B08069032006-03-27 01:15:23 -08005847}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848#endif
5849
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07005850#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07005851/* Free memory allocated for various sched_group structures */
5852static void free_sched_groups(const cpumask_t *cpu_map)
5853{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07005854 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07005855
5856 for_each_cpu_mask(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07005857 struct sched_group **sched_group_nodes
5858 = sched_group_nodes_bycpu[cpu];
5859
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07005860 if (!sched_group_nodes)
5861 continue;
5862
5863 for (i = 0; i < MAX_NUMNODES; i++) {
5864 cpumask_t nodemask = node_to_cpumask(i);
5865 struct sched_group *oldsg, *sg = sched_group_nodes[i];
5866
5867 cpus_and(nodemask, nodemask, *cpu_map);
5868 if (cpus_empty(nodemask))
5869 continue;
5870
5871 if (sg == NULL)
5872 continue;
5873 sg = sg->next;
5874next_sg:
5875 oldsg = sg;
5876 sg = sg->next;
5877 kfree(oldsg);
5878 if (oldsg != sched_group_nodes[i])
5879 goto next_sg;
5880 }
5881 kfree(sched_group_nodes);
5882 sched_group_nodes_bycpu[cpu] = NULL;
5883 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07005884}
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07005885#else
5886static void free_sched_groups(const cpumask_t *cpu_map)
5887{
5888}
5889#endif
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07005890
Linus Torvalds1da177e2005-04-16 15:20:36 -07005891/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005892 * Initialize sched groups cpu_power.
5893 *
5894 * cpu_power indicates the capacity of sched group, which is used while
5895 * distributing the load between different sched groups in a sched domain.
5896 * Typically cpu_power for all the groups in a sched domain will be same unless
5897 * there are asymmetries in the topology. If there are asymmetries, group
5898 * having more cpu_power will pickup more load compared to the group having
5899 * less cpu_power.
5900 *
5901 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
5902 * the maximum number of tasks a group can handle in the presence of other idle
5903 * or lightly loaded groups in the same sched domain.
5904 */
5905static void init_sched_groups_power(int cpu, struct sched_domain *sd)
5906{
5907 struct sched_domain *child;
5908 struct sched_group *group;
5909
5910 WARN_ON(!sd || !sd->groups);
5911
5912 if (cpu != first_cpu(sd->groups->cpumask))
5913 return;
5914
5915 child = sd->child;
5916
Eric Dumazet5517d862007-05-08 00:32:57 -07005917 sd->groups->__cpu_power = 0;
5918
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005919 /*
5920 * For perf policy, if the groups in child domain share resources
5921 * (for example cores sharing some portions of the cache hierarchy
5922 * or SMT), then set this domain groups cpu_power such that each group
5923 * can handle only one task, when there are other idle groups in the
5924 * same sched domain.
5925 */
5926 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
5927 (child->flags &
5928 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07005929 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005930 return;
5931 }
5932
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005933 /*
5934 * add cpu_power of each child group to this groups cpu_power
5935 */
5936 group = child->groups;
5937 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07005938 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005939 group = group->next;
5940 } while (group != child->groups);
5941}
5942
5943/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07005944 * Build sched domains for a given set of cpus and attach the sched domains
5945 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07005946 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07005947static int build_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005948{
5949 int i;
John Hawkesd1b55132005-09-06 15:18:14 -07005950#ifdef CONFIG_NUMA
5951 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005952 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07005953
5954 /*
5955 * Allocate the per-node list of sched groups
5956 */
Ingo Molnardd41f592007-07-09 18:51:59 +02005957 sched_group_nodes = kzalloc(sizeof(struct sched_group *)*MAX_NUMNODES,
Srivatsa Vaddagirid3a5aa92006-06-27 02:54:39 -07005958 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07005959 if (!sched_group_nodes) {
5960 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07005961 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07005962 }
5963 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
5964#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965
5966 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07005967 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005968 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07005969 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005970 struct sched_domain *sd = NULL, *p;
5971 cpumask_t nodemask = node_to_cpumask(cpu_to_node(i));
5972
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07005973 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005974
5975#ifdef CONFIG_NUMA
Ingo Molnardd41f592007-07-09 18:51:59 +02005976 if (cpus_weight(*cpu_map) >
5977 SD_NODES_PER_DOMAIN*cpus_weight(nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07005978 sd = &per_cpu(allnodes_domains, i);
5979 *sd = SD_ALLNODES_INIT;
5980 sd->span = *cpu_map;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005981 cpu_to_allnodes_group(i, cpu_map, &sd->groups);
John Hawkes9c1cfda2005-09-06 15:18:14 -07005982 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005983 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07005984 } else
5985 p = NULL;
5986
Linus Torvalds1da177e2005-04-16 15:20:36 -07005987 sd = &per_cpu(node_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005988 *sd = SD_NODE_INIT;
John Hawkes9c1cfda2005-09-06 15:18:14 -07005989 sd->span = sched_domain_node_span(cpu_to_node(i));
5990 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005991 if (p)
5992 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07005993 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005994#endif
5995
5996 p = sd;
5997 sd = &per_cpu(phys_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998 *sd = SD_CPU_INIT;
5999 sd->span = nodemask;
6000 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006001 if (p)
6002 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006003 cpu_to_phys_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006004
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006005#ifdef CONFIG_SCHED_MC
6006 p = sd;
6007 sd = &per_cpu(core_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006008 *sd = SD_MC_INIT;
6009 sd->span = cpu_coregroup_map(i);
6010 cpus_and(sd->span, sd->span, *cpu_map);
6011 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006012 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006013 cpu_to_core_group(i, cpu_map, &sd->groups);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006014#endif
6015
Linus Torvalds1da177e2005-04-16 15:20:36 -07006016#ifdef CONFIG_SCHED_SMT
6017 p = sd;
6018 sd = &per_cpu(cpu_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006019 *sd = SD_SIBLING_INIT;
6020 sd->span = cpu_sibling_map[i];
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006021 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006022 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006023 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006024 cpu_to_cpu_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006025#endif
6026 }
6027
6028#ifdef CONFIG_SCHED_SMT
6029 /* Set up CPU (sibling) groups */
John Hawkes9c1cfda2005-09-06 15:18:14 -07006030 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006031 cpumask_t this_sibling_map = cpu_sibling_map[i];
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006032 cpus_and(this_sibling_map, this_sibling_map, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006033 if (i != first_cpu(this_sibling_map))
6034 continue;
6035
Ingo Molnardd41f592007-07-09 18:51:59 +02006036 init_sched_build_groups(this_sibling_map, cpu_map,
6037 &cpu_to_cpu_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006038 }
6039#endif
6040
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006041#ifdef CONFIG_SCHED_MC
6042 /* Set up multi-core groups */
6043 for_each_cpu_mask(i, *cpu_map) {
6044 cpumask_t this_core_map = cpu_coregroup_map(i);
6045 cpus_and(this_core_map, this_core_map, *cpu_map);
6046 if (i != first_cpu(this_core_map))
6047 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02006048 init_sched_build_groups(this_core_map, cpu_map,
6049 &cpu_to_core_group);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006050 }
6051#endif
6052
Linus Torvalds1da177e2005-04-16 15:20:36 -07006053 /* Set up physical groups */
6054 for (i = 0; i < MAX_NUMNODES; i++) {
6055 cpumask_t nodemask = node_to_cpumask(i);
6056
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006057 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006058 if (cpus_empty(nodemask))
6059 continue;
6060
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006061 init_sched_build_groups(nodemask, cpu_map, &cpu_to_phys_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006062 }
6063
6064#ifdef CONFIG_NUMA
6065 /* Set up node groups */
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006066 if (sd_allnodes)
Ingo Molnardd41f592007-07-09 18:51:59 +02006067 init_sched_build_groups(*cpu_map, cpu_map,
6068 &cpu_to_allnodes_group);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006069
6070 for (i = 0; i < MAX_NUMNODES; i++) {
6071 /* Set up node groups */
6072 struct sched_group *sg, *prev;
6073 cpumask_t nodemask = node_to_cpumask(i);
6074 cpumask_t domainspan;
6075 cpumask_t covered = CPU_MASK_NONE;
6076 int j;
6077
6078 cpus_and(nodemask, nodemask, *cpu_map);
John Hawkesd1b55132005-09-06 15:18:14 -07006079 if (cpus_empty(nodemask)) {
6080 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006081 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07006082 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006083
6084 domainspan = sched_domain_node_span(i);
6085 cpus_and(domainspan, domainspan, *cpu_map);
6086
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006087 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006088 if (!sg) {
6089 printk(KERN_WARNING "Can not alloc domain group for "
6090 "node %d\n", i);
6091 goto error;
6092 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006093 sched_group_nodes[i] = sg;
6094 for_each_cpu_mask(j, nodemask) {
6095 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02006096
John Hawkes9c1cfda2005-09-06 15:18:14 -07006097 sd = &per_cpu(node_domains, j);
6098 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006099 }
Eric Dumazet5517d862007-05-08 00:32:57 -07006100 sg->__cpu_power = 0;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006101 sg->cpumask = nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006102 sg->next = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006103 cpus_or(covered, covered, nodemask);
6104 prev = sg;
6105
6106 for (j = 0; j < MAX_NUMNODES; j++) {
6107 cpumask_t tmp, notcovered;
6108 int n = (i + j) % MAX_NUMNODES;
6109
6110 cpus_complement(notcovered, covered);
6111 cpus_and(tmp, notcovered, *cpu_map);
6112 cpus_and(tmp, tmp, domainspan);
6113 if (cpus_empty(tmp))
6114 break;
6115
6116 nodemask = node_to_cpumask(n);
6117 cpus_and(tmp, tmp, nodemask);
6118 if (cpus_empty(tmp))
6119 continue;
6120
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006121 sg = kmalloc_node(sizeof(struct sched_group),
6122 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006123 if (!sg) {
6124 printk(KERN_WARNING
6125 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006126 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006127 }
Eric Dumazet5517d862007-05-08 00:32:57 -07006128 sg->__cpu_power = 0;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006129 sg->cpumask = tmp;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006130 sg->next = prev->next;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006131 cpus_or(covered, covered, tmp);
6132 prev->next = sg;
6133 prev = sg;
6134 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006136#endif
6137
6138 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006139#ifdef CONFIG_SCHED_SMT
6140 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006141 struct sched_domain *sd = &per_cpu(cpu_domains, i);
6142
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006143 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006144 }
6145#endif
6146#ifdef CONFIG_SCHED_MC
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006147 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006148 struct sched_domain *sd = &per_cpu(core_domains, i);
6149
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006150 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006151 }
6152#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006153
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006154 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006155 struct sched_domain *sd = &per_cpu(phys_domains, i);
6156
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006157 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006158 }
6159
John Hawkes9c1cfda2005-09-06 15:18:14 -07006160#ifdef CONFIG_NUMA
Siddha, Suresh B08069032006-03-27 01:15:23 -08006161 for (i = 0; i < MAX_NUMNODES; i++)
6162 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006163
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006164 if (sd_allnodes) {
6165 struct sched_group *sg;
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07006166
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006167 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg);
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07006168 init_numa_sched_groups_power(sg);
6169 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006170#endif
6171
Linus Torvalds1da177e2005-04-16 15:20:36 -07006172 /* Attach the domains */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006173 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006174 struct sched_domain *sd;
6175#ifdef CONFIG_SCHED_SMT
6176 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006177#elif defined(CONFIG_SCHED_MC)
6178 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006179#else
6180 sd = &per_cpu(phys_domains, i);
6181#endif
6182 cpu_attach_domain(sd, i);
6183 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006184
6185 return 0;
6186
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006187#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006188error:
6189 free_sched_groups(cpu_map);
6190 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006191#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006192}
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006193/*
6194 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
6195 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006196static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006197{
6198 cpumask_t cpu_default_map;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006199 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006200
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006201 /*
6202 * Setup mask for cpus without special case scheduling requirements.
6203 * For now this just excludes isolated cpus, but could be used to
6204 * exclude other special cases in the future.
6205 */
6206 cpus_andnot(cpu_default_map, *cpu_map, cpu_isolated_map);
6207
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006208 err = build_sched_domains(&cpu_default_map);
6209
6210 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006211}
6212
6213static void arch_destroy_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006214{
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006215 free_sched_groups(cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006216}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006217
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006218/*
6219 * Detach sched domains from a group of cpus specified in cpu_map
6220 * These cpus will now be attached to the NULL domain
6221 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08006222static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006223{
6224 int i;
6225
6226 for_each_cpu_mask(i, *cpu_map)
6227 cpu_attach_domain(NULL, i);
6228 synchronize_sched();
6229 arch_destroy_sched_domains(cpu_map);
6230}
6231
6232/*
6233 * Partition sched domains as specified by the cpumasks below.
6234 * This attaches all cpus from the cpumasks to the NULL domain,
6235 * waits for a RCU quiescent period, recalculates sched
6236 * domain information and then attaches them back to the
6237 * correct sched domains
6238 * Call with hotplug lock held
6239 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006240int partition_sched_domains(cpumask_t *partition1, cpumask_t *partition2)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006241{
6242 cpumask_t change_map;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006243 int err = 0;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006244
6245 cpus_and(*partition1, *partition1, cpu_online_map);
6246 cpus_and(*partition2, *partition2, cpu_online_map);
6247 cpus_or(change_map, *partition1, *partition2);
6248
6249 /* Detach sched domains from all of the affected cpus */
6250 detach_destroy_domains(&change_map);
6251 if (!cpus_empty(*partition1))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006252 err = build_sched_domains(partition1);
6253 if (!err && !cpus_empty(*partition2))
6254 err = build_sched_domains(partition2);
6255
6256 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006257}
6258
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006259#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Adrian Bunk6707de002007-08-12 18:08:19 +02006260static int arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006261{
6262 int err;
6263
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006264 mutex_lock(&sched_hotcpu_mutex);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006265 detach_destroy_domains(&cpu_online_map);
6266 err = arch_init_sched_domains(&cpu_online_map);
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006267 mutex_unlock(&sched_hotcpu_mutex);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006268
6269 return err;
6270}
6271
6272static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
6273{
6274 int ret;
6275
6276 if (buf[0] != '0' && buf[0] != '1')
6277 return -EINVAL;
6278
6279 if (smt)
6280 sched_smt_power_savings = (buf[0] == '1');
6281 else
6282 sched_mc_power_savings = (buf[0] == '1');
6283
6284 ret = arch_reinit_sched_domains();
6285
6286 return ret ? ret : count;
6287}
6288
Adrian Bunk6707de002007-08-12 18:08:19 +02006289#ifdef CONFIG_SCHED_MC
6290static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
6291{
6292 return sprintf(page, "%u\n", sched_mc_power_savings);
6293}
6294static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
6295 const char *buf, size_t count)
6296{
6297 return sched_power_savings_store(buf, count, 0);
6298}
6299static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
6300 sched_mc_power_savings_store);
6301#endif
6302
6303#ifdef CONFIG_SCHED_SMT
6304static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
6305{
6306 return sprintf(page, "%u\n", sched_smt_power_savings);
6307}
6308static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
6309 const char *buf, size_t count)
6310{
6311 return sched_power_savings_store(buf, count, 1);
6312}
6313static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
6314 sched_smt_power_savings_store);
6315#endif
6316
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006317int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
6318{
6319 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006320
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006321#ifdef CONFIG_SCHED_SMT
6322 if (smt_capable())
6323 err = sysfs_create_file(&cls->kset.kobj,
6324 &attr_sched_smt_power_savings.attr);
6325#endif
6326#ifdef CONFIG_SCHED_MC
6327 if (!err && mc_capable())
6328 err = sysfs_create_file(&cls->kset.kobj,
6329 &attr_sched_mc_power_savings.attr);
6330#endif
6331 return err;
6332}
6333#endif
6334
Linus Torvalds1da177e2005-04-16 15:20:36 -07006335/*
6336 * Force a reinitialization of the sched domains hierarchy. The domains
6337 * and groups cannot be updated in place without racing with the balancing
Nick Piggin41c7ce92005-06-25 14:57:24 -07006338 * code, so we temporarily attach all running cpus to the NULL domain
Linus Torvalds1da177e2005-04-16 15:20:36 -07006339 * which will prevent rebalancing while the sched domains are recalculated.
6340 */
6341static int update_sched_domains(struct notifier_block *nfb,
6342 unsigned long action, void *hcpu)
6343{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006344 switch (action) {
6345 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006346 case CPU_UP_PREPARE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006347 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006348 case CPU_DOWN_PREPARE_FROZEN:
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006349 detach_destroy_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006350 return NOTIFY_OK;
6351
6352 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006353 case CPU_UP_CANCELED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006354 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006355 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006356 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006357 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006358 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006359 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006360 /*
6361 * Fall through and re-initialise the domains.
6362 */
6363 break;
6364 default:
6365 return NOTIFY_DONE;
6366 }
6367
6368 /* The hotplug lock is already held by cpu_up/cpu_down */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006369 arch_init_sched_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006370
6371 return NOTIFY_OK;
6372}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006373
6374void __init sched_init_smp(void)
6375{
Nick Piggin5c1e1762006-10-03 01:14:04 -07006376 cpumask_t non_isolated_cpus;
6377
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006378 mutex_lock(&sched_hotcpu_mutex);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006379 arch_init_sched_domains(&cpu_online_map);
Nathan Lynche5e56732007-01-10 23:15:28 -08006380 cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07006381 if (cpus_empty(non_isolated_cpus))
6382 cpu_set(smp_processor_id(), non_isolated_cpus);
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006383 mutex_unlock(&sched_hotcpu_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006384 /* XXX: Theoretical race here - CPU may be hotplugged now */
6385 hotcpu_notifier(update_sched_domains, 0);
Nick Piggin5c1e1762006-10-03 01:14:04 -07006386
Nick Piggine692ab52007-07-26 13:40:43 +02006387 init_sched_domain_sysctl();
6388
Nick Piggin5c1e1762006-10-03 01:14:04 -07006389 /* Move init over to a non-isolated CPU */
6390 if (set_cpus_allowed(current, non_isolated_cpus) < 0)
6391 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006392}
6393#else
6394void __init sched_init_smp(void)
6395{
6396}
6397#endif /* CONFIG_SMP */
6398
6399int in_sched_functions(unsigned long addr)
6400{
6401 /* Linker adds these: start and end of __sched functions */
6402 extern char __sched_text_start[], __sched_text_end[];
Ingo Molnar48f24c42006-07-03 00:25:40 -07006403
Linus Torvalds1da177e2005-04-16 15:20:36 -07006404 return in_lock_functions(addr) ||
6405 (addr >= (unsigned long)__sched_text_start
6406 && addr < (unsigned long)__sched_text_end);
6407}
6408
Alexey Dobriyana9957442007-10-15 17:00:13 +02006409static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
Ingo Molnardd41f592007-07-09 18:51:59 +02006410{
6411 cfs_rq->tasks_timeline = RB_ROOT;
Ingo Molnardd41f592007-07-09 18:51:59 +02006412#ifdef CONFIG_FAIR_GROUP_SCHED
6413 cfs_rq->rq = rq;
6414#endif
Peter Zijlstra67e9fb22007-10-15 17:00:10 +02006415 cfs_rq->min_vruntime = (u64)(-(1LL << 20));
Ingo Molnardd41f592007-07-09 18:51:59 +02006416}
6417
Linus Torvalds1da177e2005-04-16 15:20:36 -07006418void __init sched_init(void)
6419{
Christoph Lameter476f3532007-05-06 14:48:58 -07006420 int highest_cpu = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02006421 int i, j;
6422
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08006423 for_each_possible_cpu(i) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006424 struct rt_prio_array *array;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006425 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006426
6427 rq = cpu_rq(i);
6428 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07006429 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07006430 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02006431 rq->clock = 1;
6432 init_cfs_rq(&rq->cfs, rq);
6433#ifdef CONFIG_FAIR_GROUP_SCHED
6434 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Ingo Molnar3a252012007-10-15 17:00:12 +02006435 {
6436 struct cfs_rq *cfs_rq = &per_cpu(init_cfs_rq, i);
6437 struct sched_entity *se =
6438 &per_cpu(init_sched_entity, i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006439
Ingo Molnar3a252012007-10-15 17:00:12 +02006440 init_cfs_rq_p[i] = cfs_rq;
6441 init_cfs_rq(cfs_rq, rq);
Ingo Molnar4cf86d72007-10-15 17:00:14 +02006442 cfs_rq->tg = &init_task_group;
Ingo Molnar3a252012007-10-15 17:00:12 +02006443 list_add(&cfs_rq->leaf_cfs_rq_list,
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006444 &rq->leaf_cfs_rq_list);
6445
Ingo Molnar3a252012007-10-15 17:00:12 +02006446 init_sched_entity_p[i] = se;
6447 se->cfs_rq = &rq->cfs;
6448 se->my_q = cfs_rq;
Ingo Molnar4cf86d72007-10-15 17:00:14 +02006449 se->load.weight = init_task_group_load;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006450 se->load.inv_weight =
Ingo Molnar4cf86d72007-10-15 17:00:14 +02006451 div64_64(1ULL<<32, init_task_group_load);
Ingo Molnar3a252012007-10-15 17:00:12 +02006452 se->parent = NULL;
6453 }
Ingo Molnar4cf86d72007-10-15 17:00:14 +02006454 init_task_group.shares = init_task_group_load;
Dhaval Giani5cb350b2007-10-15 17:00:14 +02006455 spin_lock_init(&init_task_group.lock);
Ingo Molnardd41f592007-07-09 18:51:59 +02006456#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006457
Ingo Molnardd41f592007-07-09 18:51:59 +02006458 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
6459 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006460#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07006461 rq->sd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006462 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02006463 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006464 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07006465 rq->cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006466 rq->migration_thread = NULL;
6467 INIT_LIST_HEAD(&rq->migration_queue);
6468#endif
6469 atomic_set(&rq->nr_iowait, 0);
6470
Ingo Molnardd41f592007-07-09 18:51:59 +02006471 array = &rq->rt.active;
6472 for (j = 0; j < MAX_RT_PRIO; j++) {
6473 INIT_LIST_HEAD(array->queue + j);
6474 __clear_bit(j, array->bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006475 }
Christoph Lameter476f3532007-05-06 14:48:58 -07006476 highest_cpu = i;
Ingo Molnardd41f592007-07-09 18:51:59 +02006477 /* delimiter for bitsearch: */
6478 __set_bit(MAX_RT_PRIO, array->bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006479 }
6480
Peter Williams2dd73a42006-06-27 02:54:34 -07006481 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07006482
Avi Kivitye107be32007-07-26 13:40:43 +02006483#ifdef CONFIG_PREEMPT_NOTIFIERS
6484 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
6485#endif
6486
Christoph Lameterc9819f42006-12-10 02:20:25 -08006487#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07006488 nr_cpu_ids = highest_cpu + 1;
Christoph Lameterc9819f42006-12-10 02:20:25 -08006489 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL);
6490#endif
6491
Heiko Carstensb50f60c2006-07-30 03:03:52 -07006492#ifdef CONFIG_RT_MUTEXES
6493 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
6494#endif
6495
Linus Torvalds1da177e2005-04-16 15:20:36 -07006496 /*
6497 * The boot idle thread does lazy MMU switching as well:
6498 */
6499 atomic_inc(&init_mm.mm_count);
6500 enter_lazy_tlb(&init_mm, current);
6501
6502 /*
6503 * Make us the idle thread. Technically, schedule() should not be
6504 * called from this thread, however somewhere below it might be,
6505 * but because we are the idle thread, we just pick up running again
6506 * when this runqueue becomes "idle".
6507 */
6508 init_idle(current, smp_processor_id());
Ingo Molnardd41f592007-07-09 18:51:59 +02006509 /*
6510 * During early bootup we pretend to be a normal task:
6511 */
6512 current->sched_class = &fair_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006513}
6514
6515#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
6516void __might_sleep(char *file, int line)
6517{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006518#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07006519 static unsigned long prev_jiffy; /* ratelimiting */
6520
6521 if ((in_atomic() || irqs_disabled()) &&
6522 system_state == SYSTEM_RUNNING && !oops_in_progress) {
6523 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
6524 return;
6525 prev_jiffy = jiffies;
Ingo Molnar91368d72006-03-23 03:00:54 -08006526 printk(KERN_ERR "BUG: sleeping function called from invalid"
Linus Torvalds1da177e2005-04-16 15:20:36 -07006527 " context at %s:%d\n", file, line);
6528 printk("in_atomic():%d, irqs_disabled():%d\n",
6529 in_atomic(), irqs_disabled());
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08006530 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08006531 if (irqs_disabled())
6532 print_irqtrace_events(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006533 dump_stack();
6534 }
6535#endif
6536}
6537EXPORT_SYMBOL(__might_sleep);
6538#endif
6539
6540#ifdef CONFIG_MAGIC_SYSRQ
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02006541static void normalize_task(struct rq *rq, struct task_struct *p)
6542{
6543 int on_rq;
6544 update_rq_clock(rq);
6545 on_rq = p->se.on_rq;
6546 if (on_rq)
6547 deactivate_task(rq, p, 0);
6548 __setscheduler(rq, p, SCHED_NORMAL, 0);
6549 if (on_rq) {
6550 activate_task(rq, p, 0);
6551 resched_task(rq->curr);
6552 }
6553}
6554
Linus Torvalds1da177e2005-04-16 15:20:36 -07006555void normalize_rt_tasks(void)
6556{
Ingo Molnara0f98a12007-06-17 18:37:45 +02006557 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006558 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006559 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006560
6561 read_lock_irq(&tasklist_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02006562 do_each_thread(g, p) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006563 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02006564#ifdef CONFIG_SCHEDSTATS
6565 p->se.wait_start = 0;
6566 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02006567 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02006568#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02006569 task_rq(p)->clock = 0;
6570
6571 if (!rt_task(p)) {
6572 /*
6573 * Renice negative nice level userspace
6574 * tasks back to 0:
6575 */
6576 if (TASK_NICE(p) < 0 && p->mm)
6577 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006578 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02006579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006580
Ingo Molnarb29739f2006-06-27 02:54:51 -07006581 spin_lock_irqsave(&p->pi_lock, flags);
6582 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006583
Andi Kleen3a5e4dc2007-10-15 17:00:15 +02006584 if (!is_migration_thread(p, rq))
6585 normalize_task(rq, p);
6586
Ingo Molnarb29739f2006-06-27 02:54:51 -07006587 __task_rq_unlock(rq);
6588 spin_unlock_irqrestore(&p->pi_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02006589 } while_each_thread(g, p);
6590
Linus Torvalds1da177e2005-04-16 15:20:36 -07006591 read_unlock_irq(&tasklist_lock);
6592}
6593
6594#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07006595
6596#ifdef CONFIG_IA64
6597/*
6598 * These functions are only useful for the IA64 MCA handling.
6599 *
6600 * They can only be called when the whole system has been
6601 * stopped - every CPU needs to be quiescent, and no scheduling
6602 * activity can take place. Using them for anything else would
6603 * be a serious bug, and as a result, they aren't even visible
6604 * under any other configuration.
6605 */
6606
6607/**
6608 * curr_task - return the current task for a given cpu.
6609 * @cpu: the processor in question.
6610 *
6611 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
6612 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006613struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07006614{
6615 return cpu_curr(cpu);
6616}
6617
6618/**
6619 * set_curr_task - set the current task for a given cpu.
6620 * @cpu: the processor in question.
6621 * @p: the task pointer to set.
6622 *
6623 * Description: This function must only be used when non-maskable interrupts
6624 * are serviced on a separate stack. It allows the architecture to switch the
6625 * notion of the current task on a cpu in a non-blocking manner. This function
6626 * must be called with all CPU's synchronized, and interrupts disabled, the
6627 * and caller must save the original value of the current task (see
6628 * curr_task() above) and restore that value before reenabling interrupts and
6629 * re-starting the system.
6630 *
6631 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
6632 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006633void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07006634{
6635 cpu_curr(cpu) = p;
6636}
6637
6638#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006639
6640#ifdef CONFIG_FAIR_GROUP_SCHED
6641
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006642/* allocate runqueue etc for a new task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02006643struct task_group *sched_create_group(void)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006644{
Ingo Molnar4cf86d72007-10-15 17:00:14 +02006645 struct task_group *tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006646 struct cfs_rq *cfs_rq;
6647 struct sched_entity *se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006648 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006649 int i;
6650
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006651 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
6652 if (!tg)
6653 return ERR_PTR(-ENOMEM);
6654
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006655 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * NR_CPUS, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006656 if (!tg->cfs_rq)
6657 goto err;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006658 tg->se = kzalloc(sizeof(se) * NR_CPUS, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006659 if (!tg->se)
6660 goto err;
6661
6662 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006663 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006664
6665 cfs_rq = kmalloc_node(sizeof(struct cfs_rq), GFP_KERNEL,
6666 cpu_to_node(i));
6667 if (!cfs_rq)
6668 goto err;
6669
6670 se = kmalloc_node(sizeof(struct sched_entity), GFP_KERNEL,
6671 cpu_to_node(i));
6672 if (!se)
6673 goto err;
6674
6675 memset(cfs_rq, 0, sizeof(struct cfs_rq));
6676 memset(se, 0, sizeof(struct sched_entity));
6677
6678 tg->cfs_rq[i] = cfs_rq;
6679 init_cfs_rq(cfs_rq, rq);
6680 cfs_rq->tg = tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006681
6682 tg->se[i] = se;
6683 se->cfs_rq = &rq->cfs;
6684 se->my_q = cfs_rq;
6685 se->load.weight = NICE_0_LOAD;
6686 se->load.inv_weight = div64_64(1ULL<<32, NICE_0_LOAD);
6687 se->parent = NULL;
6688 }
6689
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006690 for_each_possible_cpu(i) {
6691 rq = cpu_rq(i);
6692 cfs_rq = tg->cfs_rq[i];
6693 list_add_rcu(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
6694 }
6695
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006696 tg->shares = NICE_0_LOAD;
Dhaval Giani5cb350b2007-10-15 17:00:14 +02006697 spin_lock_init(&tg->lock);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006698
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006699 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006700
6701err:
6702 for_each_possible_cpu(i) {
Ingo Molnara65914b2007-10-15 17:00:13 +02006703 if (tg->cfs_rq)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006704 kfree(tg->cfs_rq[i]);
Ingo Molnara65914b2007-10-15 17:00:13 +02006705 if (tg->se)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006706 kfree(tg->se[i]);
6707 }
Ingo Molnara65914b2007-10-15 17:00:13 +02006708 kfree(tg->cfs_rq);
6709 kfree(tg->se);
6710 kfree(tg);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006711
6712 return ERR_PTR(-ENOMEM);
6713}
6714
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006715/* rcu callback to free various structures associated with a task group */
6716static void free_sched_group(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006717{
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006718 struct cfs_rq *cfs_rq = container_of(rhp, struct cfs_rq, rcu);
Ingo Molnar4cf86d72007-10-15 17:00:14 +02006719 struct task_group *tg = cfs_rq->tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006720 struct sched_entity *se;
6721 int i;
6722
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006723 /* now it should be safe to free those cfs_rqs */
6724 for_each_possible_cpu(i) {
6725 cfs_rq = tg->cfs_rq[i];
6726 kfree(cfs_rq);
6727
6728 se = tg->se[i];
6729 kfree(se);
6730 }
6731
6732 kfree(tg->cfs_rq);
6733 kfree(tg->se);
6734 kfree(tg);
6735}
6736
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006737/* Destroy runqueue etc associated with a task group */
Ingo Molnar4cf86d72007-10-15 17:00:14 +02006738void sched_destroy_group(struct task_group *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006739{
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006740 struct cfs_rq *cfs_rq;
6741 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006742
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006743 for_each_possible_cpu(i) {
6744 cfs_rq = tg->cfs_rq[i];
6745 list_del_rcu(&cfs_rq->leaf_cfs_rq_list);
6746 }
6747
6748 cfs_rq = tg->cfs_rq[0];
6749
6750 /* wait for possible concurrent references to cfs_rqs complete */
6751 call_rcu(&cfs_rq->rcu, free_sched_group);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006752}
6753
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006754/* change task's runqueue when it moves between groups.
Ingo Molnar3a252012007-10-15 17:00:12 +02006755 * The caller of this function should have put the task in its new group
6756 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
6757 * reflect its new group.
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006758 */
6759void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006760{
6761 int on_rq, running;
6762 unsigned long flags;
6763 struct rq *rq;
6764
6765 rq = task_rq_lock(tsk, &flags);
6766
6767 if (tsk->sched_class != &fair_sched_class)
6768 goto done;
6769
6770 update_rq_clock(rq);
6771
6772 running = task_running(rq, tsk);
6773 on_rq = tsk->se.on_rq;
6774
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02006775 if (on_rq) {
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006776 dequeue_task(rq, tsk, 0);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02006777 if (unlikely(running))
6778 tsk->sched_class->put_prev_task(rq, tsk);
6779 }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006780
6781 set_task_cfs_rq(tsk);
6782
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02006783 if (on_rq) {
6784 if (unlikely(running))
6785 tsk->sched_class->set_curr_task(rq);
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02006786 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02006787 }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006788
6789done:
6790 task_rq_unlock(rq, &flags);
6791}
6792
6793static void set_se_shares(struct sched_entity *se, unsigned long shares)
6794{
6795 struct cfs_rq *cfs_rq = se->cfs_rq;
6796 struct rq *rq = cfs_rq->rq;
6797 int on_rq;
6798
6799 spin_lock_irq(&rq->lock);
6800
6801 on_rq = se->on_rq;
6802 if (on_rq)
6803 dequeue_entity(cfs_rq, se, 0);
6804
6805 se->load.weight = shares;
6806 se->load.inv_weight = div64_64((1ULL<<32), shares);
6807
6808 if (on_rq)
6809 enqueue_entity(cfs_rq, se, 0);
6810
6811 spin_unlock_irq(&rq->lock);
6812}
6813
Ingo Molnar4cf86d72007-10-15 17:00:14 +02006814int sched_group_set_shares(struct task_group *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006815{
6816 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006817
Dhaval Giani5cb350b2007-10-15 17:00:14 +02006818 spin_lock(&tg->lock);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006819 if (tg->shares == shares)
Dhaval Giani5cb350b2007-10-15 17:00:14 +02006820 goto done;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006821
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006822 /* return -EINVAL if the new value is not sane */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006823
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006824 tg->shares = shares;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006825 for_each_possible_cpu(i)
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006826 set_se_shares(tg->se[i], shares);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006827
Dhaval Giani5cb350b2007-10-15 17:00:14 +02006828done:
6829 spin_unlock(&tg->lock);
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006830 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006831}
6832
Dhaval Giani5cb350b2007-10-15 17:00:14 +02006833unsigned long sched_group_shares(struct task_group *tg)
6834{
6835 return tg->shares;
6836}
6837
Ingo Molnar3a252012007-10-15 17:00:12 +02006838#endif /* CONFIG_FAIR_GROUP_SCHED */