blob: e10c403b1213a9082f59492e9382c1a8631f37df [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
78/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 * Convert user-nice values [ -20 ... 0 ... 19 ]
80 * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ],
81 * and back.
82 */
83#define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20)
84#define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20)
85#define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio)
86
87/*
88 * 'User priority' is the nice value converted to something we
89 * can work with better when scaling various scheduler parameters,
90 * it's a [ 0 ... 39 ] range.
91 */
92#define USER_PRIO(p) ((p)-MAX_RT_PRIO)
93#define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio)
94#define MAX_USER_PRIO (USER_PRIO(MAX_PRIO))
95
96/*
97 * Some helpers for converting nanosecond timing to jiffy resolution
98 */
99#define NS_TO_JIFFIES(TIME) ((TIME) / (1000000000 / HZ))
100#define JIFFIES_TO_NS(TIME) ((TIME) * (1000000000 / HZ))
101
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200102#define NICE_0_LOAD SCHED_LOAD_SCALE
103#define NICE_0_SHIFT SCHED_LOAD_SHIFT
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105/*
106 * These are the 'tuning knobs' of the scheduler:
107 *
108 * Minimum timeslice is 5 msecs (or 1 jiffy, whichever is larger),
109 * default timeslice is 100 msecs, maximum timeslice is 800 msecs.
110 * Timeslices get refilled after they expire.
111 */
112#define MIN_TIMESLICE max(5 * HZ / 1000, 1)
113#define DEF_TIMESLICE (100 * HZ / 1000)
Peter Williams2dd73a42006-06-27 02:54:34 -0700114
Eric Dumazet5517d862007-05-08 00:32:57 -0700115#ifdef CONFIG_SMP
116/*
117 * Divide a load by a sched group cpu_power : (load / sg->__cpu_power)
118 * Since cpu_power is a 'constant', we can use a reciprocal divide.
119 */
120static inline u32 sg_div_cpu_power(const struct sched_group *sg, u32 load)
121{
122 return reciprocal_divide(load, sg->reciprocal_cpu_power);
123}
124
125/*
126 * Each time a sched group cpu_power is changed,
127 * we must compute its reciprocal value
128 */
129static inline void sg_inc_cpu_power(struct sched_group *sg, u32 val)
130{
131 sg->__cpu_power += val;
132 sg->reciprocal_cpu_power = reciprocal_value(sg->__cpu_power);
133}
134#endif
135
Ingo Molnar634fa8c2007-07-09 18:52:00 +0200136#define SCALE_PRIO(x, prio) \
137 max(x * (MAX_PRIO - prio) / (MAX_USER_PRIO / 2), MIN_TIMESLICE)
Borislav Petkov91fcdd42006-10-19 23:28:29 -0700138
Ingo Molnar634fa8c2007-07-09 18:52:00 +0200139/*
140 * static_prio_timeslice() scales user-nice values [ -20 ... 0 ... 19 ]
141 * to time slice values: [800ms ... 100ms ... 5ms]
142 */
143static unsigned int static_prio_timeslice(int static_prio)
Peter Williams2dd73a42006-06-27 02:54:34 -0700144{
Ingo Molnar634fa8c2007-07-09 18:52:00 +0200145 if (static_prio == NICE_TO_PRIO(19))
146 return 1;
147
148 if (static_prio < NICE_TO_PRIO(0))
149 return SCALE_PRIO(DEF_TIMESLICE * 4, static_prio);
150 else
151 return SCALE_PRIO(DEF_TIMESLICE, static_prio);
Peter Williams2dd73a42006-06-27 02:54:34 -0700152}
153
Ingo Molnare05606d2007-07-09 18:51:59 +0200154static inline int rt_policy(int policy)
155{
156 if (unlikely(policy == SCHED_FIFO) || unlikely(policy == SCHED_RR))
157 return 1;
158 return 0;
159}
160
161static inline int task_has_rt_policy(struct task_struct *p)
162{
163 return rt_policy(p->policy);
164}
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166/*
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200167 * This is the priority-queue data structure of the RT scheduling class:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200169struct rt_prio_array {
170 DECLARE_BITMAP(bitmap, MAX_RT_PRIO+1); /* include 1 bit for delimiter */
171 struct list_head queue[MAX_RT_PRIO];
172};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200174#ifdef CONFIG_FAIR_GROUP_SCHED
175
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200176struct cfs_rq;
177
178/* task group related information */
179struct task_grp {
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200180 /* schedulable entities of this group on each cpu */
181 struct sched_entity **se;
182 /* runqueue "owned" by this group on each cpu */
183 struct cfs_rq **cfs_rq;
184 unsigned long shares;
185};
186
187/* Default task group's sched entity on each cpu */
188static DEFINE_PER_CPU(struct sched_entity, init_sched_entity);
189/* Default task group's cfs_rq on each cpu */
190static DEFINE_PER_CPU(struct cfs_rq, init_cfs_rq) ____cacheline_aligned_in_smp;
191
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200192static struct sched_entity *init_sched_entity_p[NR_CPUS];
193static struct cfs_rq *init_cfs_rq_p[NR_CPUS];
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200194
195/* Default task group.
196 * Every task in system belong to this group at bootup.
197 */
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200198struct task_grp init_task_grp = {
199 .se = init_sched_entity_p,
200 .cfs_rq = init_cfs_rq_p,
201 };
202
203#define INIT_TASK_GRP_LOAD NICE_0_LOAD
204static int init_task_grp_load = INIT_TASK_GRP_LOAD;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200205
206/* return group to which a task belongs */
207static inline struct task_grp *task_grp(struct task_struct *p)
208{
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +0200209 struct task_grp *tg;
210
211 tg = &init_task_grp;
212
213 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200214}
215
216/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
217static inline void set_task_cfs_rq(struct task_struct *p)
218{
219 p->se.cfs_rq = task_grp(p)->cfs_rq[task_cpu(p)];
220 p->se.parent = task_grp(p)->se[task_cpu(p)];
221}
222
223#else
224
225static inline void set_task_cfs_rq(struct task_struct *p) { }
226
227#endif /* CONFIG_FAIR_GROUP_SCHED */
228
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200229/* CFS-related fields in a runqueue */
230struct cfs_rq {
231 struct load_weight load;
232 unsigned long nr_running;
233
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200234 u64 exec_clock;
Ingo Molnare9acbff2007-10-15 17:00:04 +0200235 u64 min_vruntime;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200236
237 struct rb_root tasks_timeline;
238 struct rb_node *rb_leftmost;
239 struct rb_node *rb_load_balance_curr;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200240 /* 'curr' points to currently running entity on this cfs_rq.
241 * It is set to NULL otherwise (i.e when none are currently running).
242 */
243 struct sched_entity *curr;
Ingo Molnar62160e3f2007-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? */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +0200255 struct task_grp *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;
340 unsigned long yld_cnt;
341
342 /* schedule() stats */
343 unsigned long sched_switch;
344 unsigned long sched_cnt;
345 unsigned long sched_goidle;
346
347 /* try_to_wake_up() stats */
348 unsigned long ttwu_cnt;
349 unsigned long ttwu_local;
350#endif
Ingo Molnarfcb99372006-07-03 00:25:10 -0700351 struct lock_class_key rq_lock_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352};
353
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700354static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Gautham R Shenoy5be93612007-05-09 02:34:04 -0700355static DEFINE_MUTEX(sched_hotcpu_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Ingo Molnardd41f592007-07-09 18:51:59 +0200357static inline void check_preempt_curr(struct rq *rq, struct task_struct *p)
358{
359 rq->curr->sched_class->check_preempt_curr(rq, p);
360}
361
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700362static inline int cpu_of(struct rq *rq)
363{
364#ifdef CONFIG_SMP
365 return rq->cpu;
366#else
367 return 0;
368#endif
369}
370
Nick Piggin674311d2005-06-25 14:57:27 -0700371/*
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200372 * Update the per-runqueue clock, as finegrained as the platform can give
373 * us, but without assuming monotonicity, etc.:
Ingo Molnar20d315d2007-07-09 18:51:58 +0200374 */
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200375static void __update_rq_clock(struct rq *rq)
Ingo Molnar20d315d2007-07-09 18:51:58 +0200376{
377 u64 prev_raw = rq->prev_clock_raw;
378 u64 now = sched_clock();
379 s64 delta = now - prev_raw;
380 u64 clock = rq->clock;
381
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200382#ifdef CONFIG_SCHED_DEBUG
383 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
384#endif
Ingo Molnar20d315d2007-07-09 18:51:58 +0200385 /*
386 * Protect against sched_clock() occasionally going backwards:
387 */
388 if (unlikely(delta < 0)) {
389 clock++;
390 rq->clock_warps++;
391 } else {
392 /*
393 * Catch too large forward jumps too:
394 */
Ingo Molnar529c7722007-08-10 23:05:11 +0200395 if (unlikely(clock + delta > rq->tick_timestamp + TICK_NSEC)) {
396 if (clock < rq->tick_timestamp + TICK_NSEC)
397 clock = rq->tick_timestamp + TICK_NSEC;
398 else
399 clock++;
Ingo Molnar20d315d2007-07-09 18:51:58 +0200400 rq->clock_overflows++;
401 } else {
402 if (unlikely(delta > rq->clock_max_delta))
403 rq->clock_max_delta = delta;
404 clock += delta;
405 }
406 }
407
408 rq->prev_clock_raw = now;
409 rq->clock = clock;
Ingo Molnar20d315d2007-07-09 18:51:58 +0200410}
411
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200412static void update_rq_clock(struct rq *rq)
Ingo Molnar20d315d2007-07-09 18:51:58 +0200413{
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200414 if (likely(smp_processor_id() == cpu_of(rq)))
415 __update_rq_clock(rq);
416}
Ingo Molnar20d315d2007-07-09 18:51:58 +0200417
Ingo Molnar20d315d2007-07-09 18:51:58 +0200418/*
Nick Piggin674311d2005-06-25 14:57:27 -0700419 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700420 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700421 *
422 * The domain tree of any CPU may only be accessed from within
423 * preempt-disabled sections.
424 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700425#define for_each_domain(cpu, __sd) \
426 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
429#define this_rq() (&__get_cpu_var(runqueues))
430#define task_rq(p) cpu_rq(task_cpu(p))
431#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
432
Ingo Molnare436d802007-07-19 21:28:35 +0200433/*
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200434 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
435 */
436#ifdef CONFIG_SCHED_DEBUG
437# define const_debug __read_mostly
438#else
439# define const_debug static const
440#endif
441
442/*
443 * Debugging: various feature bits
444 */
445enum {
Ingo Molnarbbdba7c2007-10-15 17:00:06 +0200446 SCHED_FEAT_NEW_FAIR_SLEEPERS = 1,
447 SCHED_FEAT_START_DEBIT = 2,
448 SCHED_FEAT_USE_TREE_AVG = 4,
449 SCHED_FEAT_APPROX_AVG = 8,
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200450};
451
452const_debug unsigned int sysctl_sched_features =
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200453 SCHED_FEAT_NEW_FAIR_SLEEPERS *1 |
Peter Zijlstra94dfb5e2007-10-15 17:00:05 +0200454 SCHED_FEAT_START_DEBIT *1 |
455 SCHED_FEAT_USE_TREE_AVG *0 |
456 SCHED_FEAT_APPROX_AVG *0;
Ingo Molnarbf5c91b2007-10-15 17:00:04 +0200457
458#define sched_feat(x) (sysctl_sched_features & SCHED_FEAT_##x)
459
460/*
Ingo Molnare436d802007-07-19 21:28:35 +0200461 * For kernel-internal use: high-speed (but slightly incorrect) per-cpu
462 * clock constructed from sched_clock():
463 */
464unsigned long long cpu_clock(int cpu)
465{
Ingo Molnare436d802007-07-19 21:28:35 +0200466 unsigned long long now;
467 unsigned long flags;
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200468 struct rq *rq;
Ingo Molnare436d802007-07-19 21:28:35 +0200469
Ingo Molnar2cd4d0e2007-07-26 13:40:43 +0200470 local_irq_save(flags);
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200471 rq = cpu_rq(cpu);
472 update_rq_clock(rq);
473 now = rq->clock;
Ingo Molnar2cd4d0e2007-07-26 13:40:43 +0200474 local_irq_restore(flags);
Ingo Molnare436d802007-07-19 21:28:35 +0200475
476 return now;
477}
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700480# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700482#ifndef finish_arch_switch
483# define finish_arch_switch(prev) do { } while (0)
484#endif
485
486#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700487static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700488{
489 return rq->curr == p;
490}
491
Ingo Molnar70b97a72006-07-03 00:25:42 -0700492static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700493{
494}
495
Ingo Molnar70b97a72006-07-03 00:25:42 -0700496static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700497{
Ingo Molnarda04c032005-09-13 11:17:59 +0200498#ifdef CONFIG_DEBUG_SPINLOCK
499 /* this is a valid case when another task releases the spinlock */
500 rq->lock.owner = current;
501#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700502 /*
503 * If we are tracking spinlock dependencies then we have to
504 * fix up the runqueue lock - which gets 'carried over' from
505 * prev into current:
506 */
507 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
508
Nick Piggin4866cde2005-06-25 14:57:23 -0700509 spin_unlock_irq(&rq->lock);
510}
511
512#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700513static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700514{
515#ifdef CONFIG_SMP
516 return p->oncpu;
517#else
518 return rq->curr == p;
519#endif
520}
521
Ingo Molnar70b97a72006-07-03 00:25:42 -0700522static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700523{
524#ifdef CONFIG_SMP
525 /*
526 * We can optimise this out completely for !SMP, because the
527 * SMP rebalancing from interrupt is the only thing that cares
528 * here.
529 */
530 next->oncpu = 1;
531#endif
532#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
533 spin_unlock_irq(&rq->lock);
534#else
535 spin_unlock(&rq->lock);
536#endif
537}
538
Ingo Molnar70b97a72006-07-03 00:25:42 -0700539static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700540{
541#ifdef CONFIG_SMP
542 /*
543 * After ->oncpu is cleared, the task can be moved to a different CPU.
544 * We must ensure this doesn't happen until the switch is completely
545 * finished.
546 */
547 smp_wmb();
548 prev->oncpu = 0;
549#endif
550#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
551 local_irq_enable();
552#endif
553}
554#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700557 * __task_rq_lock - lock the runqueue a given task resides on.
558 * Must be called interrupts disabled.
559 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700560static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700561 __acquires(rq->lock)
562{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700563 struct rq *rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -0700564
565repeat_lock_task:
566 rq = task_rq(p);
567 spin_lock(&rq->lock);
568 if (unlikely(rq != task_rq(p))) {
569 spin_unlock(&rq->lock);
570 goto repeat_lock_task;
571 }
572 return rq;
573}
574
575/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 * task_rq_lock - lock the runqueue a given task resides on and disable
577 * interrupts. Note the ordering: we can safely lookup the task_rq without
578 * explicitly disabling preemption.
579 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700580static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 __acquires(rq->lock)
582{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700583 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
585repeat_lock_task:
586 local_irq_save(*flags);
587 rq = task_rq(p);
588 spin_lock(&rq->lock);
589 if (unlikely(rq != task_rq(p))) {
590 spin_unlock_irqrestore(&rq->lock, *flags);
591 goto repeat_lock_task;
592 }
593 return rq;
594}
595
Ingo Molnar70b97a72006-07-03 00:25:42 -0700596static inline void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700597 __releases(rq->lock)
598{
599 spin_unlock(&rq->lock);
600}
601
Ingo Molnar70b97a72006-07-03 00:25:42 -0700602static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 __releases(rq->lock)
604{
605 spin_unlock_irqrestore(&rq->lock, *flags);
606}
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -0800609 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700611static inline struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 __acquires(rq->lock)
613{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700614 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616 local_irq_disable();
617 rq = this_rq();
618 spin_lock(&rq->lock);
619
620 return rq;
621}
622
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200623/*
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200624 * We are going deep-idle (irqs are disabled):
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200625 */
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200626void sched_clock_idle_sleep_event(void)
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200627{
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200628 struct rq *rq = cpu_rq(smp_processor_id());
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200629
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200630 spin_lock(&rq->lock);
631 __update_rq_clock(rq);
632 spin_unlock(&rq->lock);
633 rq->clock_deep_idle_events++;
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200634}
Ingo Molnar2aa44d02007-08-23 15:18:02 +0200635EXPORT_SYMBOL_GPL(sched_clock_idle_sleep_event);
636
637/*
638 * We just idled delta nanoseconds (called with irqs disabled):
639 */
640void sched_clock_idle_wakeup_event(u64 delta_ns)
641{
642 struct rq *rq = cpu_rq(smp_processor_id());
643 u64 now = sched_clock();
644
645 rq->idle_clock += delta_ns;
646 /*
647 * Override the previous timestamp and ignore all
648 * sched_clock() deltas that occured while we idled,
649 * and use the PM-provided delta_ns to advance the
650 * rq clock:
651 */
652 spin_lock(&rq->lock);
653 rq->prev_clock_raw = now;
654 rq->clock += delta_ns;
655 spin_unlock(&rq->lock);
656}
657EXPORT_SYMBOL_GPL(sched_clock_idle_wakeup_event);
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200658
659/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200660 * resched_task - mark a task 'to be rescheduled now'.
661 *
662 * On UP this means the setting of the need_resched flag, on SMP it
663 * might also involve a cross-CPU call to trigger the scheduler on
664 * the target CPU.
665 */
666#ifdef CONFIG_SMP
667
668#ifndef tsk_is_polling
669#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
670#endif
671
672static void resched_task(struct task_struct *p)
673{
674 int cpu;
675
676 assert_spin_locked(&task_rq(p)->lock);
677
678 if (unlikely(test_tsk_thread_flag(p, TIF_NEED_RESCHED)))
679 return;
680
681 set_tsk_thread_flag(p, TIF_NEED_RESCHED);
682
683 cpu = task_cpu(p);
684 if (cpu == smp_processor_id())
685 return;
686
687 /* NEED_RESCHED must be visible before we test polling */
688 smp_mb();
689 if (!tsk_is_polling(p))
690 smp_send_reschedule(cpu);
691}
692
693static void resched_cpu(int cpu)
694{
695 struct rq *rq = cpu_rq(cpu);
696 unsigned long flags;
697
698 if (!spin_trylock_irqsave(&rq->lock, flags))
699 return;
700 resched_task(cpu_curr(cpu));
701 spin_unlock_irqrestore(&rq->lock, flags);
702}
703#else
704static inline void resched_task(struct task_struct *p)
705{
706 assert_spin_locked(&task_rq(p)->lock);
707 set_tsk_need_resched(p);
708}
709#endif
710
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200711#if BITS_PER_LONG == 32
712# define WMULT_CONST (~0UL)
713#else
714# define WMULT_CONST (1UL << 32)
715#endif
716
717#define WMULT_SHIFT 32
718
Ingo Molnar194081e2007-08-09 11:16:51 +0200719/*
720 * Shift right and round:
721 */
Ingo Molnarcf2ab462007-09-05 14:32:49 +0200722#define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y))
Ingo Molnar194081e2007-08-09 11:16:51 +0200723
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +0200724static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200725calc_delta_mine(unsigned long delta_exec, unsigned long weight,
726 struct load_weight *lw)
727{
728 u64 tmp;
729
730 if (unlikely(!lw->inv_weight))
Ingo Molnar194081e2007-08-09 11:16:51 +0200731 lw->inv_weight = (WMULT_CONST - lw->weight/2) / lw->weight + 1;
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200732
733 tmp = (u64)delta_exec * weight;
734 /*
735 * Check whether we'd overflow the 64-bit multiplication:
736 */
Ingo Molnar194081e2007-08-09 11:16:51 +0200737 if (unlikely(tmp > WMULT_CONST))
Ingo Molnarcf2ab462007-09-05 14:32:49 +0200738 tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight,
Ingo Molnar194081e2007-08-09 11:16:51 +0200739 WMULT_SHIFT/2);
740 else
Ingo Molnarcf2ab462007-09-05 14:32:49 +0200741 tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT);
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200742
Ingo Molnarecf691d2007-08-02 17:41:40 +0200743 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200744}
745
746static inline unsigned long
747calc_delta_fair(unsigned long delta_exec, struct load_weight *lw)
748{
749 return calc_delta_mine(delta_exec, NICE_0_LOAD, lw);
750}
751
Ingo Molnar10919852007-10-15 17:00:04 +0200752static inline void update_load_add(struct load_weight *lw, unsigned long inc)
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200753{
754 lw->weight += inc;
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200755}
756
Ingo Molnar10919852007-10-15 17:00:04 +0200757static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200758{
759 lw->weight -= dec;
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200760}
761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762/*
Peter Williams2dd73a42006-06-27 02:54:34 -0700763 * To aid in avoiding the subversion of "niceness" due to uneven distribution
764 * of tasks with abnormal "nice" values across CPUs the contribution that
765 * each task makes to its run queue's load is weighted according to its
766 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
767 * scaled version of the new time slice allocation that they receive on time
768 * slice expiry etc.
769 */
770
Ingo Molnardd41f592007-07-09 18:51:59 +0200771#define WEIGHT_IDLEPRIO 2
772#define WMULT_IDLEPRIO (1 << 31)
773
774/*
775 * Nice levels are multiplicative, with a gentle 10% change for every
776 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
777 * nice 1, it will get ~10% less CPU time than another CPU-bound task
778 * that remained on nice 0.
779 *
780 * The "10% effect" is relative and cumulative: from _any_ nice level,
781 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee2007-07-16 09:46:30 +0200782 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
783 * If a task goes up by ~10% and another task goes down by ~10% then
784 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +0200785 */
786static const int prio_to_weight[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +0200787 /* -20 */ 88761, 71755, 56483, 46273, 36291,
788 /* -15 */ 29154, 23254, 18705, 14949, 11916,
789 /* -10 */ 9548, 7620, 6100, 4904, 3906,
790 /* -5 */ 3121, 2501, 1991, 1586, 1277,
791 /* 0 */ 1024, 820, 655, 526, 423,
792 /* 5 */ 335, 272, 215, 172, 137,
793 /* 10 */ 110, 87, 70, 56, 45,
794 /* 15 */ 36, 29, 23, 18, 15,
Ingo Molnardd41f592007-07-09 18:51:59 +0200795};
796
Ingo Molnar5714d2d2007-07-16 09:46:31 +0200797/*
798 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
799 *
800 * In cases where the weight does not change often, we can use the
801 * precalculated inverse to speed up arithmetics by turning divisions
802 * into multiplications:
803 */
Ingo Molnardd41f592007-07-09 18:51:59 +0200804static const u32 prio_to_wmult[40] = {
Ingo Molnar254753d2007-08-09 11:16:51 +0200805 /* -20 */ 48388, 59856, 76040, 92818, 118348,
806 /* -15 */ 147320, 184698, 229616, 287308, 360437,
807 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
808 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
809 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
810 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
811 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
812 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +0200813};
Peter Williams2dd73a42006-06-27 02:54:34 -0700814
Ingo Molnardd41f592007-07-09 18:51:59 +0200815static void activate_task(struct rq *rq, struct task_struct *p, int wakeup);
816
817/*
818 * runqueue iterator, to support SMP load-balancing between different
819 * scheduling classes, without having to expose their internal data
820 * structures to the load-balancing proper:
821 */
822struct rq_iterator {
823 void *arg;
824 struct task_struct *(*start)(void *);
825 struct task_struct *(*next)(void *);
826};
827
828static int balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
829 unsigned long max_nr_move, unsigned long max_load_move,
830 struct sched_domain *sd, enum cpu_idle_type idle,
831 int *all_pinned, unsigned long *load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +0200832 int *this_best_prio, struct rq_iterator *iterator);
Ingo Molnardd41f592007-07-09 18:51:59 +0200833
834#include "sched_stats.h"
835#include "sched_rt.c"
836#include "sched_fair.c"
837#include "sched_idletask.c"
838#ifdef CONFIG_SCHED_DEBUG
839# include "sched_debug.c"
840#endif
841
842#define sched_class_highest (&rt_sched_class)
843
Ingo Molnar9c217242007-08-02 17:41:40 +0200844/*
845 * Update delta_exec, delta_fair fields for rq.
846 *
847 * delta_fair clock advances at a rate inversely proportional to
Dmitry Adamushko495eca42007-10-15 17:00:06 +0200848 * total load (rq->load.weight) on the runqueue, while
Ingo Molnar9c217242007-08-02 17:41:40 +0200849 * delta_exec advances at the same rate as wall-clock (provided
850 * cpu is not idle).
851 *
852 * delta_exec / delta_fair is a measure of the (smoothened) load on this
853 * runqueue over any given interval. This (smoothened) load is used
854 * during load balance.
855 *
Dmitry Adamushko495eca42007-10-15 17:00:06 +0200856 * This function is called /before/ updating rq->load
Ingo Molnar9c217242007-08-02 17:41:40 +0200857 * and when switching tasks.
858 */
Ingo Molnar29b4b622007-08-09 11:16:49 +0200859static inline void inc_load(struct rq *rq, const struct task_struct *p)
Ingo Molnar9c217242007-08-02 17:41:40 +0200860{
Dmitry Adamushko495eca42007-10-15 17:00:06 +0200861 update_load_add(&rq->load, p->se.load.weight);
Ingo Molnar9c217242007-08-02 17:41:40 +0200862}
863
Ingo Molnar79b5ddd2007-08-09 11:16:49 +0200864static inline void dec_load(struct rq *rq, const struct task_struct *p)
Ingo Molnar9c217242007-08-02 17:41:40 +0200865{
Dmitry Adamushko495eca42007-10-15 17:00:06 +0200866 update_load_sub(&rq->load, p->se.load.weight);
Ingo Molnar9c217242007-08-02 17:41:40 +0200867}
868
Ingo Molnare5fa2232007-08-09 11:16:49 +0200869static void inc_nr_running(struct task_struct *p, struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +0200870{
871 rq->nr_running++;
Ingo Molnar29b4b622007-08-09 11:16:49 +0200872 inc_load(rq, p);
Ingo Molnar9c217242007-08-02 17:41:40 +0200873}
874
Ingo Molnardb531812007-08-09 11:16:49 +0200875static void dec_nr_running(struct task_struct *p, struct rq *rq)
Ingo Molnar9c217242007-08-02 17:41:40 +0200876{
877 rq->nr_running--;
Ingo Molnar79b5ddd2007-08-09 11:16:49 +0200878 dec_load(rq, p);
Ingo Molnar9c217242007-08-02 17:41:40 +0200879}
880
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200881static void set_load_weight(struct task_struct *p)
882{
883 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +0200884 p->se.load.weight = prio_to_weight[0] * 2;
885 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
886 return;
887 }
888
889 /*
890 * SCHED_IDLE tasks get minimal weight:
891 */
892 if (p->policy == SCHED_IDLE) {
893 p->se.load.weight = WEIGHT_IDLEPRIO;
894 p->se.load.inv_weight = WMULT_IDLEPRIO;
895 return;
896 }
897
898 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
899 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200900}
901
Ingo Molnar8159f872007-08-09 11:16:49 +0200902static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup)
Ingo Molnar71f8bd42007-07-09 18:51:59 +0200903{
904 sched_info_queued(p);
Ingo Molnarfd390f62007-08-09 11:16:48 +0200905 p->sched_class->enqueue_task(rq, p, wakeup);
Ingo Molnardd41f592007-07-09 18:51:59 +0200906 p->se.on_rq = 1;
907}
908
Ingo Molnar69be72c2007-08-09 11:16:49 +0200909static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep)
Ingo Molnardd41f592007-07-09 18:51:59 +0200910{
Ingo Molnarf02231e2007-08-09 11:16:48 +0200911 p->sched_class->dequeue_task(rq, p, sleep);
Ingo Molnardd41f592007-07-09 18:51:59 +0200912 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +0200913}
914
915/*
Ingo Molnardd41f592007-07-09 18:51:59 +0200916 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +0200917 */
Ingo Molnar14531182007-07-09 18:51:59 +0200918static inline int __normal_prio(struct task_struct *p)
919{
Ingo Molnardd41f592007-07-09 18:51:59 +0200920 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +0200921}
922
923/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700924 * Calculate the expected normal priority: i.e. priority
925 * without taking RT-inheritance into account. Might be
926 * boosted by interactivity modifiers. Changes upon fork,
927 * setprio syscalls, and whenever the interactivity
928 * estimator recalculates.
929 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700930static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700931{
932 int prio;
933
Ingo Molnare05606d2007-07-09 18:51:59 +0200934 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -0700935 prio = MAX_RT_PRIO-1 - p->rt_priority;
936 else
937 prio = __normal_prio(p);
938 return prio;
939}
940
941/*
942 * Calculate the current priority, i.e. the priority
943 * taken into account by the scheduler. This value might
944 * be boosted by RT tasks, or might be boosted by
945 * interactivity modifiers. Will be RT if the task got
946 * RT-boosted. If not then it returns p->normal_prio.
947 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700948static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700949{
950 p->normal_prio = normal_prio(p);
951 /*
952 * If we are RT tasks or we were boosted to RT priority,
953 * keep the priority unchanged. Otherwise, update priority
954 * to the normal priority:
955 */
956 if (!rt_prio(p->prio))
957 return p->normal_prio;
958 return p->prio;
959}
960
961/*
Ingo Molnardd41f592007-07-09 18:51:59 +0200962 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 */
Ingo Molnardd41f592007-07-09 18:51:59 +0200964static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
Ingo Molnardd41f592007-07-09 18:51:59 +0200966 if (p->state == TASK_UNINTERRUPTIBLE)
967 rq->nr_uninterruptible--;
968
Ingo Molnar8159f872007-08-09 11:16:49 +0200969 enqueue_task(rq, p, wakeup);
Ingo Molnare5fa2232007-08-09 11:16:49 +0200970 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971}
972
973/*
Ingo Molnardd41f592007-07-09 18:51:59 +0200974 * activate_idle_task - move idle task to the _front_ of runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 */
Ingo Molnardd41f592007-07-09 18:51:59 +0200976static inline void activate_idle_task(struct task_struct *p, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
Ingo Molnara8e504d2007-08-09 11:16:47 +0200978 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Ingo Molnardd41f592007-07-09 18:51:59 +0200980 if (p->state == TASK_UNINTERRUPTIBLE)
981 rq->nr_uninterruptible--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Ingo Molnar8159f872007-08-09 11:16:49 +0200983 enqueue_task(rq, p, 0);
Ingo Molnare5fa2232007-08-09 11:16:49 +0200984 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985}
986
987/*
988 * deactivate_task - remove a task from the runqueue.
989 */
Ingo Molnar2e1cb742007-08-09 11:16:49 +0200990static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991{
Ingo Molnardd41f592007-07-09 18:51:59 +0200992 if (p->state == TASK_UNINTERRUPTIBLE)
993 rq->nr_uninterruptible++;
994
Ingo Molnar69be72c2007-08-09 11:16:49 +0200995 dequeue_task(rq, p, sleep);
Ingo Molnardb531812007-08-09 11:16:49 +0200996 dec_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997}
998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999/**
1000 * task_curr - is this task currently executing on a CPU?
1001 * @p: the task in question.
1002 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001003inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004{
1005 return cpu_curr(task_cpu(p)) == p;
1006}
1007
Peter Williams2dd73a42006-06-27 02:54:34 -07001008/* Used instead of source_load when we know the type == 0 */
1009unsigned long weighted_cpuload(const int cpu)
1010{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02001011 return cpu_rq(cpu)->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02001012}
1013
1014static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
1015{
1016#ifdef CONFIG_SMP
1017 task_thread_info(p)->cpu = cpu;
Ingo Molnardd41f592007-07-09 18:51:59 +02001018#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02001019 set_task_cfs_rq(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07001020}
1021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +02001023
Ingo Molnardd41f592007-07-09 18:51:59 +02001024void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +02001025{
Ingo Molnardd41f592007-07-09 18:51:59 +02001026 int old_cpu = task_cpu(p);
1027 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
Ingo Molnarbbdba7c2007-10-15 17:00:06 +02001028 u64 clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001029
1030 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001031
1032#ifdef CONFIG_SCHEDSTATS
1033 if (p->se.wait_start)
1034 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001035 if (p->se.sleep_start)
1036 p->se.sleep_start -= clock_offset;
1037 if (p->se.block_start)
1038 p->se.block_start -= clock_offset;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001039#endif
Mike Galbraith119fe5e2007-10-15 17:00:07 +02001040 if (likely(new_rq->cfs.min_vruntime))
1041 p->se.vruntime -= old_rq->cfs.min_vruntime -
1042 new_rq->cfs.min_vruntime;
Ingo Molnardd41f592007-07-09 18:51:59 +02001043
1044 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02001045}
1046
Ingo Molnar70b97a72006-07-03 00:25:42 -07001047struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
Ingo Molnar36c8b582006-07-03 00:25:41 -07001050 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 int dest_cpu;
1052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001054};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056/*
1057 * The task's runqueue lock must be held.
1058 * Returns true if you have to wait for migration thread.
1059 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001060static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07001061migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001063 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
1065 /*
1066 * If the task is not on a runqueue (and not running), then
1067 * it is sufficient to simply update the task's cpu field.
1068 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001069 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 set_task_cpu(p, dest_cpu);
1071 return 0;
1072 }
1073
1074 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 req->task = p;
1076 req->dest_cpu = dest_cpu;
1077 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07001078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 return 1;
1080}
1081
1082/*
1083 * wait_task_inactive - wait for a thread to unschedule.
1084 *
1085 * The caller must ensure that the task *will* unschedule sometime soon,
1086 * else this function might spin for a *long* time. This function can't
1087 * be called with interrupts off, or it may introduce deadlock with
1088 * smp_call_function() if an IPI is sent by the same process we are
1089 * waiting to become inactive.
1090 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001091void wait_task_inactive(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092{
1093 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001094 int running, on_rq;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001095 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
1097repeat:
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001098 /*
1099 * We do the initial early heuristics without holding
1100 * any task-queue locks at all. We'll only try to get
1101 * the runqueue lock when things look like they will
1102 * work out!
1103 */
1104 rq = task_rq(p);
1105
1106 /*
1107 * If the task is actively running on another CPU
1108 * still, just relax and busy-wait without holding
1109 * any locks.
1110 *
1111 * NOTE! Since we don't hold any locks, it's not
1112 * even sure that "rq" stays as the right runqueue!
1113 * But we don't care, since "task_running()" will
1114 * return false if the runqueue has changed and p
1115 * is actually now running somewhere else!
1116 */
1117 while (task_running(rq, p))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 cpu_relax();
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001119
1120 /*
1121 * Ok, time to look more closely! We need the rq
1122 * lock now, to be *sure*. If we're wrong, we'll
1123 * just go back and repeat.
1124 */
1125 rq = task_rq_lock(p, &flags);
1126 running = task_running(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02001127 on_rq = p->se.on_rq;
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001128 task_rq_unlock(rq, &flags);
1129
1130 /*
1131 * Was it really running after all now that we
1132 * checked with the proper locks actually held?
1133 *
1134 * Oops. Go back and try again..
1135 */
1136 if (unlikely(running)) {
1137 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 goto repeat;
1139 }
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001140
1141 /*
1142 * It's not enough that it's not actively running,
1143 * it must be off the runqueue _entirely_, and not
1144 * preempted!
1145 *
1146 * So if it wa still runnable (but just not actively
1147 * running right now), it's preempted, and we should
1148 * yield - it could be a while.
1149 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001150 if (unlikely(on_rq)) {
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001151 yield();
1152 goto repeat;
1153 }
1154
1155 /*
1156 * Ahh, all good. It wasn't running, and it wasn't
1157 * runnable, which means that it will never become
1158 * running in the future either. We're all done!
1159 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160}
1161
1162/***
1163 * kick_process - kick a running thread to enter/exit the kernel
1164 * @p: the to-be-kicked thread
1165 *
1166 * Cause a process which is running on another CPU to enter
1167 * kernel-mode, without any delay. (to get signals handled.)
1168 *
1169 * NOTE: this function doesnt have to take the runqueue lock,
1170 * because all it wants to ensure is that the remote task enters
1171 * the kernel. If the IPI races and the task has been migrated
1172 * to another CPU then no harm is done and the purpose has been
1173 * achieved as well.
1174 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001175void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176{
1177 int cpu;
1178
1179 preempt_disable();
1180 cpu = task_cpu(p);
1181 if ((cpu != smp_processor_id()) && task_curr(p))
1182 smp_send_reschedule(cpu);
1183 preempt_enable();
1184}
1185
1186/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001187 * Return a low guess at the load of a migration-source cpu weighted
1188 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 *
1190 * We want to under-estimate the load of migration sources, to
1191 * balance conservatively.
1192 */
Con Kolivasb9104722005-11-08 21:38:55 -08001193static inline unsigned long source_load(int cpu, int type)
1194{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001195 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001196 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001197
Peter Williams2dd73a42006-06-27 02:54:34 -07001198 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001199 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001200
Ingo Molnardd41f592007-07-09 18:51:59 +02001201 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202}
1203
1204/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001205 * Return a high guess at the load of a migration-target cpu weighted
1206 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 */
Con Kolivasb9104722005-11-08 21:38:55 -08001208static inline unsigned long target_load(int cpu, int type)
1209{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001210 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001211 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001212
Peter Williams2dd73a42006-06-27 02:54:34 -07001213 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001214 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001215
Ingo Molnardd41f592007-07-09 18:51:59 +02001216 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07001217}
1218
1219/*
1220 * Return the average load per task on the cpu's run queue
1221 */
1222static inline unsigned long cpu_avg_load_per_task(int cpu)
1223{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001224 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001225 unsigned long total = weighted_cpuload(cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07001226 unsigned long n = rq->nr_running;
1227
Ingo Molnardd41f592007-07-09 18:51:59 +02001228 return n ? total / n : SCHED_LOAD_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229}
1230
Nick Piggin147cbb42005-06-25 14:57:19 -07001231/*
1232 * find_idlest_group finds and returns the least busy CPU group within the
1233 * domain.
1234 */
1235static struct sched_group *
1236find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
1237{
1238 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
1239 unsigned long min_load = ULONG_MAX, this_load = 0;
1240 int load_idx = sd->forkexec_idx;
1241 int imbalance = 100 + (sd->imbalance_pct-100)/2;
1242
1243 do {
1244 unsigned long load, avg_load;
1245 int local_group;
1246 int i;
1247
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001248 /* Skip over this group if it has no CPUs allowed */
1249 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
1250 goto nextgroup;
1251
Nick Piggin147cbb42005-06-25 14:57:19 -07001252 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07001253
1254 /* Tally up the load of all CPUs in the group */
1255 avg_load = 0;
1256
1257 for_each_cpu_mask(i, group->cpumask) {
1258 /* Bias balancing toward cpus of our domain */
1259 if (local_group)
1260 load = source_load(i, load_idx);
1261 else
1262 load = target_load(i, load_idx);
1263
1264 avg_load += load;
1265 }
1266
1267 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07001268 avg_load = sg_div_cpu_power(group,
1269 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07001270
1271 if (local_group) {
1272 this_load = avg_load;
1273 this = group;
1274 } else if (avg_load < min_load) {
1275 min_load = avg_load;
1276 idlest = group;
1277 }
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001278nextgroup:
Nick Piggin147cbb42005-06-25 14:57:19 -07001279 group = group->next;
1280 } while (group != sd->groups);
1281
1282 if (!idlest || 100*this_load < imbalance*min_load)
1283 return NULL;
1284 return idlest;
1285}
1286
1287/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07001288 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07001289 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07001290static int
1291find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu)
Nick Piggin147cbb42005-06-25 14:57:19 -07001292{
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001293 cpumask_t tmp;
Nick Piggin147cbb42005-06-25 14:57:19 -07001294 unsigned long load, min_load = ULONG_MAX;
1295 int idlest = -1;
1296 int i;
1297
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001298 /* Traverse only the allowed CPUs */
1299 cpus_and(tmp, group->cpumask, p->cpus_allowed);
1300
1301 for_each_cpu_mask(i, tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07001302 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07001303
1304 if (load < min_load || (load == min_load && i == this_cpu)) {
1305 min_load = load;
1306 idlest = i;
1307 }
1308 }
1309
1310 return idlest;
1311}
1312
Nick Piggin476d1392005-06-25 14:57:29 -07001313/*
1314 * sched_balance_self: balance the current task (running on cpu) in domains
1315 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
1316 * SD_BALANCE_EXEC.
1317 *
1318 * Balance, ie. select the least loaded group.
1319 *
1320 * Returns the target CPU number, or the same CPU if no balancing is needed.
1321 *
1322 * preempt must be disabled.
1323 */
1324static int sched_balance_self(int cpu, int flag)
1325{
1326 struct task_struct *t = current;
1327 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07001328
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001329 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02001330 /*
1331 * If power savings logic is enabled for a domain, stop there.
1332 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07001333 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
1334 break;
Nick Piggin476d1392005-06-25 14:57:29 -07001335 if (tmp->flags & flag)
1336 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001337 }
Nick Piggin476d1392005-06-25 14:57:29 -07001338
1339 while (sd) {
1340 cpumask_t span;
1341 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001342 int new_cpu, weight;
1343
1344 if (!(sd->flags & flag)) {
1345 sd = sd->child;
1346 continue;
1347 }
Nick Piggin476d1392005-06-25 14:57:29 -07001348
1349 span = sd->span;
1350 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001351 if (!group) {
1352 sd = sd->child;
1353 continue;
1354 }
Nick Piggin476d1392005-06-25 14:57:29 -07001355
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001356 new_cpu = find_idlest_cpu(group, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001357 if (new_cpu == -1 || new_cpu == cpu) {
1358 /* Now try balancing at a lower domain level of cpu */
1359 sd = sd->child;
1360 continue;
1361 }
Nick Piggin476d1392005-06-25 14:57:29 -07001362
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001363 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07001364 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07001365 sd = NULL;
1366 weight = cpus_weight(span);
1367 for_each_domain(cpu, tmp) {
1368 if (weight <= cpus_weight(tmp->span))
1369 break;
1370 if (tmp->flags & flag)
1371 sd = tmp;
1372 }
1373 /* while loop will break here if sd == NULL */
1374 }
1375
1376 return cpu;
1377}
1378
1379#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381/*
1382 * wake_idle() will wake a task on an idle cpu if task->cpu is
1383 * not idle and an idle cpu is available. The span of cpus to
1384 * search starts with cpus closest then further out as needed,
1385 * so we always favor a closer, idle cpu.
1386 *
1387 * Returns the CPU we should wake onto.
1388 */
1389#if defined(ARCH_HAS_SCHED_WAKE_IDLE)
Ingo Molnar36c8b582006-07-03 00:25:41 -07001390static int wake_idle(int cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391{
1392 cpumask_t tmp;
1393 struct sched_domain *sd;
1394 int i;
1395
Siddha, Suresh B49531982007-05-08 00:33:01 -07001396 /*
1397 * If it is idle, then it is the best cpu to run this task.
1398 *
1399 * This cpu is also the best, if it has more than one task already.
1400 * Siblings must be also busy(in most cases) as they didn't already
1401 * pickup the extra load from this cpu and hence we need not check
1402 * sibling runqueue info. This will avoid the checks and cache miss
1403 * penalities associated with that.
1404 */
1405 if (idle_cpu(cpu) || cpu_rq(cpu)->nr_running > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 return cpu;
1407
1408 for_each_domain(cpu, sd) {
1409 if (sd->flags & SD_WAKE_IDLE) {
Nick Piggine0f364f2005-06-25 14:57:06 -07001410 cpus_and(tmp, sd->span, p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 for_each_cpu_mask(i, tmp) {
1412 if (idle_cpu(i))
1413 return i;
1414 }
Ingo Molnar9761eea2007-07-09 18:52:00 +02001415 } else {
Nick Piggine0f364f2005-06-25 14:57:06 -07001416 break;
Ingo Molnar9761eea2007-07-09 18:52:00 +02001417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 }
1419 return cpu;
1420}
1421#else
Ingo Molnar36c8b582006-07-03 00:25:41 -07001422static inline int wake_idle(int cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423{
1424 return cpu;
1425}
1426#endif
1427
1428/***
1429 * try_to_wake_up - wake up a thread
1430 * @p: the to-be-woken-up thread
1431 * @state: the mask of task states that can be woken
1432 * @sync: do a synchronous wakeup?
1433 *
1434 * Put it on the run-queue if it's not already there. The "current"
1435 * thread is always on the run-queue (except when the actual
1436 * re-schedule is in progress), and as such you're allowed to do
1437 * the simpler "current->state = TASK_RUNNING" to mark yourself
1438 * runnable without the overhead of this.
1439 *
1440 * returns failure only if the task is already active.
1441 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001442static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443{
1444 int cpu, this_cpu, success = 0;
1445 unsigned long flags;
1446 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001447 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448#ifdef CONFIG_SMP
Nick Piggin78979862005-06-25 14:57:13 -07001449 struct sched_domain *sd, *this_sd = NULL;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001450 unsigned long load, this_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 int new_cpu;
1452#endif
1453
1454 rq = task_rq_lock(p, &flags);
1455 old_state = p->state;
1456 if (!(old_state & state))
1457 goto out;
1458
Ingo Molnardd41f592007-07-09 18:51:59 +02001459 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 goto out_running;
1461
1462 cpu = task_cpu(p);
1463 this_cpu = smp_processor_id();
1464
1465#ifdef CONFIG_SMP
1466 if (unlikely(task_running(rq, p)))
1467 goto out_activate;
1468
Nick Piggin78979862005-06-25 14:57:13 -07001469 new_cpu = cpu;
1470
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 schedstat_inc(rq, ttwu_cnt);
1472 if (cpu == this_cpu) {
1473 schedstat_inc(rq, ttwu_local);
Nick Piggin78979862005-06-25 14:57:13 -07001474 goto out_set_cpu;
1475 }
1476
1477 for_each_domain(this_cpu, sd) {
1478 if (cpu_isset(cpu, sd->span)) {
1479 schedstat_inc(sd, ttwu_wake_remote);
1480 this_sd = sd;
1481 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 }
1483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Nick Piggin78979862005-06-25 14:57:13 -07001485 if (unlikely(!cpu_isset(this_cpu, p->cpus_allowed)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 goto out_set_cpu;
1487
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 /*
Nick Piggin78979862005-06-25 14:57:13 -07001489 * Check for affine wakeup and passive balancing possibilities.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 */
Nick Piggin78979862005-06-25 14:57:13 -07001491 if (this_sd) {
1492 int idx = this_sd->wake_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 unsigned int imbalance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Nick Piggina3f21bc2005-06-25 14:57:15 -07001495 imbalance = 100 + (this_sd->imbalance_pct - 100) / 2;
1496
Nick Piggin78979862005-06-25 14:57:13 -07001497 load = source_load(cpu, idx);
1498 this_load = target_load(this_cpu, idx);
1499
Nick Piggin78979862005-06-25 14:57:13 -07001500 new_cpu = this_cpu; /* Wake to this CPU if we can */
1501
Nick Piggina3f21bc2005-06-25 14:57:15 -07001502 if (this_sd->flags & SD_WAKE_AFFINE) {
1503 unsigned long tl = this_load;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08001504 unsigned long tl_per_task;
1505
1506 tl_per_task = cpu_avg_load_per_task(this_cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07001507
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 /*
Nick Piggina3f21bc2005-06-25 14:57:15 -07001509 * If sync wakeup then subtract the (maximum possible)
1510 * effect of the currently running task from the load
1511 * of the current CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 */
Nick Piggina3f21bc2005-06-25 14:57:15 -07001513 if (sync)
Ingo Molnardd41f592007-07-09 18:51:59 +02001514 tl -= current->se.load.weight;
Nick Piggina3f21bc2005-06-25 14:57:15 -07001515
1516 if ((tl <= load &&
Peter Williams2dd73a42006-06-27 02:54:34 -07001517 tl + target_load(cpu, idx) <= tl_per_task) ||
Ingo Molnardd41f592007-07-09 18:51:59 +02001518 100*(tl + p->se.load.weight) <= imbalance*load) {
Nick Piggina3f21bc2005-06-25 14:57:15 -07001519 /*
1520 * This domain has SD_WAKE_AFFINE and
1521 * p is cache cold in this domain, and
1522 * there is no bad imbalance.
1523 */
1524 schedstat_inc(this_sd, ttwu_move_affine);
1525 goto out_set_cpu;
1526 }
1527 }
1528
1529 /*
1530 * Start passive balancing when half the imbalance_pct
1531 * limit is reached.
1532 */
1533 if (this_sd->flags & SD_WAKE_BALANCE) {
1534 if (imbalance*this_load <= 100*load) {
1535 schedstat_inc(this_sd, ttwu_move_balance);
1536 goto out_set_cpu;
1537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 }
1539 }
1540
1541 new_cpu = cpu; /* Could not wake to this_cpu. Wake to cpu instead */
1542out_set_cpu:
1543 new_cpu = wake_idle(new_cpu, p);
1544 if (new_cpu != cpu) {
1545 set_task_cpu(p, new_cpu);
1546 task_rq_unlock(rq, &flags);
1547 /* might preempt at this point */
1548 rq = task_rq_lock(p, &flags);
1549 old_state = p->state;
1550 if (!(old_state & state))
1551 goto out;
Ingo Molnardd41f592007-07-09 18:51:59 +02001552 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 goto out_running;
1554
1555 this_cpu = smp_processor_id();
1556 cpu = task_cpu(p);
1557 }
1558
1559out_activate:
1560#endif /* CONFIG_SMP */
Ingo Molnar2daa3572007-08-09 11:16:51 +02001561 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02001562 activate_task(rq, p, 1);
Ingo Molnard79fc0f2005-09-10 00:26:12 -07001563 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 * Sync wakeups (i.e. those types of wakeups where the waker
1565 * has indicated that it will leave the CPU in short order)
1566 * don't trigger a preemption, if the woken up task will run on
1567 * this cpu. (in this case the 'I will reschedule' promise of
1568 * the waker guarantees that the freshly woken up task is going
1569 * to be considered on this CPU.)
1570 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001571 if (!sync || cpu != this_cpu)
1572 check_preempt_curr(rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 success = 1;
1574
1575out_running:
1576 p->state = TASK_RUNNING;
1577out:
1578 task_rq_unlock(rq, &flags);
1579
1580 return success;
1581}
1582
Ingo Molnar36c8b582006-07-03 00:25:41 -07001583int fastcall wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584{
1585 return try_to_wake_up(p, TASK_STOPPED | TASK_TRACED |
1586 TASK_INTERRUPTIBLE | TASK_UNINTERRUPTIBLE, 0);
1587}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588EXPORT_SYMBOL(wake_up_process);
1589
Ingo Molnar36c8b582006-07-03 00:25:41 -07001590int fastcall wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591{
1592 return try_to_wake_up(p, state, 0);
1593}
1594
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595/*
1596 * Perform scheduler related setup for a newly forked process p.
1597 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02001598 *
1599 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001601static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602{
Ingo Molnardd41f592007-07-09 18:51:59 +02001603 p->se.exec_start = 0;
1604 p->se.sum_exec_runtime = 0;
Ingo Molnarf6cf8912007-08-28 12:53:24 +02001605 p->se.prev_sum_exec_runtime = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001606
1607#ifdef CONFIG_SCHEDSTATS
1608 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001609 p->se.sum_sleep_runtime = 0;
1610 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001611 p->se.block_start = 0;
1612 p->se.sleep_max = 0;
1613 p->se.block_max = 0;
1614 p->se.exec_max = 0;
Ingo Molnareba1ed42007-10-15 17:00:02 +02001615 p->se.slice_max = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001616 p->se.wait_max = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001617#endif
Nick Piggin476d1392005-06-25 14:57:29 -07001618
Ingo Molnardd41f592007-07-09 18:51:59 +02001619 INIT_LIST_HEAD(&p->run_list);
1620 p->se.on_rq = 0;
Nick Piggin476d1392005-06-25 14:57:29 -07001621
Avi Kivitye107be32007-07-26 13:40:43 +02001622#ifdef CONFIG_PREEMPT_NOTIFIERS
1623 INIT_HLIST_HEAD(&p->preempt_notifiers);
1624#endif
1625
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 /*
1627 * We mark the process as running here, but have not actually
1628 * inserted it onto the runqueue yet. This guarantees that
1629 * nobody will actually run it, and a signal or other external
1630 * event cannot wake it up and insert it on the runqueue either.
1631 */
1632 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02001633}
1634
1635/*
1636 * fork()/clone()-time setup:
1637 */
1638void sched_fork(struct task_struct *p, int clone_flags)
1639{
1640 int cpu = get_cpu();
1641
1642 __sched_fork(p);
1643
1644#ifdef CONFIG_SMP
1645 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
1646#endif
1647 __set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07001648
1649 /*
1650 * Make sure we do not leak PI boosting priority to the child:
1651 */
1652 p->prio = current->normal_prio;
1653
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001654#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02001655 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001656 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08001658#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07001659 p->oncpu = 0;
1660#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07001662 /* Want to start with kernel preemption disabled. */
Al Viroa1261f52005-11-13 16:06:55 -08001663 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664#endif
Nick Piggin476d1392005-06-25 14:57:29 -07001665 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666}
1667
1668/*
1669 * wake_up_new_task - wake up a newly created task for the first time.
1670 *
1671 * This function will do some initial scheduler statistics housekeeping
1672 * that must be done for every newly created context, then puts the task
1673 * on the runqueue and wakes it.
1674 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001675void fastcall wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676{
1677 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001678 struct rq *rq;
1679 int this_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
1681 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnardd41f592007-07-09 18:51:59 +02001683 this_cpu = smp_processor_id(); /* parent's CPU */
Ingo Molnara8e504d2007-08-09 11:16:47 +02001684 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
1686 p->prio = effective_prio(p);
1687
Hiroshi Shimamoto9c95e732007-09-19 23:34:46 +02001688 if (rt_prio(p->prio))
1689 p->sched_class = &rt_sched_class;
1690 else
1691 p->sched_class = &fair_sched_class;
1692
Ingo Molnar44142fa2007-10-15 17:00:01 +02001693 if (task_cpu(p) != this_cpu || !p->sched_class->task_new ||
1694 !current->se.on_rq) {
Ingo Molnardd41f592007-07-09 18:51:59 +02001695 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02001698 * Let the scheduling class do new task startup
1699 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 */
Ingo Molnaree0827d2007-08-09 11:16:49 +02001701 p->sched_class->task_new(rq, p);
Ingo Molnare5fa2232007-08-09 11:16:49 +02001702 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 }
Ingo Molnardd41f592007-07-09 18:51:59 +02001704 check_preempt_curr(rq, p);
1705 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706}
1707
Avi Kivitye107be32007-07-26 13:40:43 +02001708#ifdef CONFIG_PREEMPT_NOTIFIERS
1709
1710/**
Randy Dunlap421cee22007-07-31 00:37:50 -07001711 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
1712 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02001713 */
1714void preempt_notifier_register(struct preempt_notifier *notifier)
1715{
1716 hlist_add_head(&notifier->link, &current->preempt_notifiers);
1717}
1718EXPORT_SYMBOL_GPL(preempt_notifier_register);
1719
1720/**
1721 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07001722 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02001723 *
1724 * This is safe to call from within a preemption notifier.
1725 */
1726void preempt_notifier_unregister(struct preempt_notifier *notifier)
1727{
1728 hlist_del(&notifier->link);
1729}
1730EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
1731
1732static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
1733{
1734 struct preempt_notifier *notifier;
1735 struct hlist_node *node;
1736
1737 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
1738 notifier->ops->sched_in(notifier, raw_smp_processor_id());
1739}
1740
1741static void
1742fire_sched_out_preempt_notifiers(struct task_struct *curr,
1743 struct task_struct *next)
1744{
1745 struct preempt_notifier *notifier;
1746 struct hlist_node *node;
1747
1748 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
1749 notifier->ops->sched_out(notifier, next);
1750}
1751
1752#else
1753
1754static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
1755{
1756}
1757
1758static void
1759fire_sched_out_preempt_notifiers(struct task_struct *curr,
1760 struct task_struct *next)
1761{
1762}
1763
1764#endif
1765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766/**
Nick Piggin4866cde2005-06-25 14:57:23 -07001767 * prepare_task_switch - prepare to switch tasks
1768 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07001769 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07001770 * @next: the task we are going to switch to.
1771 *
1772 * This is called with the rq lock held and interrupts off. It must
1773 * be paired with a subsequent finish_task_switch after the context
1774 * switch.
1775 *
1776 * prepare_task_switch sets up locking and calls architecture specific
1777 * hooks.
1778 */
Avi Kivitye107be32007-07-26 13:40:43 +02001779static inline void
1780prepare_task_switch(struct rq *rq, struct task_struct *prev,
1781 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07001782{
Avi Kivitye107be32007-07-26 13:40:43 +02001783 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07001784 prepare_lock_switch(rq, next);
1785 prepare_arch_switch(next);
1786}
1787
1788/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04001790 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 * @prev: the thread we just switched away from.
1792 *
Nick Piggin4866cde2005-06-25 14:57:23 -07001793 * finish_task_switch must be called after the context switch, paired
1794 * with a prepare_task_switch call before the context switch.
1795 * finish_task_switch will reconcile locking set up by prepare_task_switch,
1796 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 *
1798 * Note that we may have delayed dropping an mm in context_switch(). If
1799 * so, we finish that here outside of the runqueue lock. (Doing it
1800 * with the lock held can cause deadlocks; see schedule() for
1801 * details.)
1802 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001803static inline void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 __releases(rq->lock)
1805{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07001807 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
1809 rq->prev_mm = NULL;
1810
1811 /*
1812 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07001813 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07001814 * schedule one last time. The schedule call will never return, and
1815 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07001816 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 * still held, otherwise prev could be scheduled on another cpu, die
1818 * there before we look at prev->state, and then the reference would
1819 * be dropped twice.
1820 * Manfred Spraul <manfred@colorfullife.com>
1821 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07001822 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07001823 finish_arch_switch(prev);
1824 finish_lock_switch(rq, prev);
Avi Kivitye107be32007-07-26 13:40:43 +02001825 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 if (mm)
1827 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07001828 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08001829 /*
1830 * Remove function-return probe instances associated with this
1831 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02001832 */
bibo maoc6fd91f2006-03-26 01:38:20 -08001833 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08001835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836}
1837
1838/**
1839 * schedule_tail - first thing a freshly forked thread must call.
1840 * @prev: the thread we just switched away from.
1841 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001842asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 __releases(rq->lock)
1844{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001845 struct rq *rq = this_rq();
1846
Nick Piggin4866cde2005-06-25 14:57:23 -07001847 finish_task_switch(rq, prev);
1848#ifdef __ARCH_WANT_UNLOCKED_CTXSW
1849 /* In this case, finish_task_switch does not reenable preemption */
1850 preempt_enable();
1851#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 if (current->set_child_tid)
1853 put_user(current->pid, current->set_child_tid);
1854}
1855
1856/*
1857 * context_switch - switch to the new MM and the new
1858 * thread's register state.
1859 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001860static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07001861context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07001862 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863{
Ingo Molnardd41f592007-07-09 18:51:59 +02001864 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
Avi Kivitye107be32007-07-26 13:40:43 +02001866 prepare_task_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02001867 mm = next->mm;
1868 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01001869 /*
1870 * For paravirt, this is coupled with an exit in switch_to to
1871 * combine the page table reload and the switch backend into
1872 * one hypercall.
1873 */
1874 arch_enter_lazy_cpu_mode();
1875
Ingo Molnardd41f592007-07-09 18:51:59 +02001876 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 next->active_mm = oldmm;
1878 atomic_inc(&oldmm->mm_count);
1879 enter_lazy_tlb(oldmm, next);
1880 } else
1881 switch_mm(oldmm, mm, next);
1882
Ingo Molnardd41f592007-07-09 18:51:59 +02001883 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 rq->prev_mm = oldmm;
1886 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07001887 /*
1888 * Since the runqueue lock will be released by the next
1889 * task (which is an invalid locking op but in the case
1890 * of the scheduler it's an obvious special-case), so we
1891 * do an early lockdep release here:
1892 */
1893#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07001894 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07001895#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
1897 /* Here we just switch the register state and the stack. */
1898 switch_to(prev, next, prev);
1899
Ingo Molnardd41f592007-07-09 18:51:59 +02001900 barrier();
1901 /*
1902 * this_rq must be evaluated again because prev may have moved
1903 * CPUs since it called schedule(), thus the 'rq' on its stack
1904 * frame will be invalid.
1905 */
1906 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907}
1908
1909/*
1910 * nr_running, nr_uninterruptible and nr_context_switches:
1911 *
1912 * externally visible scheduler statistics: current number of runnable
1913 * threads, current number of uninterruptible-sleeping threads, total
1914 * number of context switches performed since bootup.
1915 */
1916unsigned long nr_running(void)
1917{
1918 unsigned long i, sum = 0;
1919
1920 for_each_online_cpu(i)
1921 sum += cpu_rq(i)->nr_running;
1922
1923 return sum;
1924}
1925
1926unsigned long nr_uninterruptible(void)
1927{
1928 unsigned long i, sum = 0;
1929
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001930 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 sum += cpu_rq(i)->nr_uninterruptible;
1932
1933 /*
1934 * Since we read the counters lockless, it might be slightly
1935 * inaccurate. Do not allow it to go below zero though:
1936 */
1937 if (unlikely((long)sum < 0))
1938 sum = 0;
1939
1940 return sum;
1941}
1942
1943unsigned long long nr_context_switches(void)
1944{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07001945 int i;
1946 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001948 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 sum += cpu_rq(i)->nr_switches;
1950
1951 return sum;
1952}
1953
1954unsigned long nr_iowait(void)
1955{
1956 unsigned long i, sum = 0;
1957
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001958 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 sum += atomic_read(&cpu_rq(i)->nr_iowait);
1960
1961 return sum;
1962}
1963
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08001964unsigned long nr_active(void)
1965{
1966 unsigned long i, running = 0, uninterruptible = 0;
1967
1968 for_each_online_cpu(i) {
1969 running += cpu_rq(i)->nr_running;
1970 uninterruptible += cpu_rq(i)->nr_uninterruptible;
1971 }
1972
1973 if (unlikely((long)uninterruptible < 0))
1974 uninterruptible = 0;
1975
1976 return running + uninterruptible;
1977}
1978
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001980 * Update rq->cpu_load[] statistics. This function is usually called every
1981 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07001982 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001983static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07001984{
Dmitry Adamushko495eca42007-10-15 17:00:06 +02001985 unsigned long this_load = this_rq->load.weight;
Ingo Molnardd41f592007-07-09 18:51:59 +02001986 int i, scale;
1987
1988 this_rq->nr_load_updates++;
Ingo Molnardd41f592007-07-09 18:51:59 +02001989
1990 /* Update our load: */
1991 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
1992 unsigned long old_load, new_load;
1993
1994 /* scale is effectively 1 << i now, and >> i divides by scale */
1995
1996 old_load = this_rq->cpu_load[i];
1997 new_load = this_load;
Ingo Molnara25707f2007-10-15 17:00:03 +02001998 /*
1999 * Round up the averaging division if load is increasing. This
2000 * prevents us from getting stuck on 9 if the load is 10, for
2001 * example.
2002 */
2003 if (new_load > old_load)
2004 new_load += scale-1;
Ingo Molnardd41f592007-07-09 18:51:59 +02002005 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2006 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002007}
2008
Ingo Molnardd41f592007-07-09 18:51:59 +02002009#ifdef CONFIG_SMP
2010
Ingo Molnar48f24c42006-07-03 00:25:40 -07002011/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 * double_rq_lock - safely lock two runqueues
2013 *
2014 * Note this does not disable interrupts like task_rq_lock,
2015 * you need to do so manually before calling.
2016 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002017static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 __acquires(rq1->lock)
2019 __acquires(rq2->lock)
2020{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002021 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 if (rq1 == rq2) {
2023 spin_lock(&rq1->lock);
2024 __acquire(rq2->lock); /* Fake it out ;) */
2025 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002026 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 spin_lock(&rq1->lock);
2028 spin_lock(&rq2->lock);
2029 } else {
2030 spin_lock(&rq2->lock);
2031 spin_lock(&rq1->lock);
2032 }
2033 }
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002034 update_rq_clock(rq1);
2035 update_rq_clock(rq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036}
2037
2038/*
2039 * double_rq_unlock - safely unlock two runqueues
2040 *
2041 * Note this does not restore interrupts like task_rq_unlock,
2042 * you need to do so manually after calling.
2043 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002044static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 __releases(rq1->lock)
2046 __releases(rq2->lock)
2047{
2048 spin_unlock(&rq1->lock);
2049 if (rq1 != rq2)
2050 spin_unlock(&rq2->lock);
2051 else
2052 __release(rq2->lock);
2053}
2054
2055/*
2056 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
2057 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002058static void double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 __releases(this_rq->lock)
2060 __acquires(busiest->lock)
2061 __acquires(this_rq->lock)
2062{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002063 if (unlikely(!irqs_disabled())) {
2064 /* printk() doesn't work good under rq->lock */
2065 spin_unlock(&this_rq->lock);
2066 BUG_ON(1);
2067 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002069 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 spin_unlock(&this_rq->lock);
2071 spin_lock(&busiest->lock);
2072 spin_lock(&this_rq->lock);
2073 } else
2074 spin_lock(&busiest->lock);
2075 }
2076}
2077
2078/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 * If dest_cpu is allowed for this process, migrate the task to it.
2080 * This is accomplished by forcing the cpu_allowed mask to only
2081 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
2082 * the cpu_allowed mask is restored.
2083 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002084static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002086 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002088 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
2090 rq = task_rq_lock(p, &flags);
2091 if (!cpu_isset(dest_cpu, p->cpus_allowed)
2092 || unlikely(cpu_is_offline(dest_cpu)))
2093 goto out;
2094
2095 /* force the process onto the specified CPU */
2096 if (migrate_task(p, dest_cpu, &req)) {
2097 /* Need to wait for migration thread (might exit: take ref). */
2098 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002099
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 get_task_struct(mt);
2101 task_rq_unlock(rq, &flags);
2102 wake_up_process(mt);
2103 put_task_struct(mt);
2104 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07002105
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 return;
2107 }
2108out:
2109 task_rq_unlock(rq, &flags);
2110}
2111
2112/*
Nick Piggin476d1392005-06-25 14:57:29 -07002113 * sched_exec - execve() is a valuable balancing opportunity, because at
2114 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 */
2116void sched_exec(void)
2117{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002119 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002121 if (new_cpu != this_cpu)
2122 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123}
2124
2125/*
2126 * pull_task - move a task from a remote runqueue to the local runqueue.
2127 * Both runqueues must be locked.
2128 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002129static void pull_task(struct rq *src_rq, struct task_struct *p,
2130 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131{
Ingo Molnar2e1cb742007-08-09 11:16:49 +02002132 deactivate_task(src_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002134 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 /*
2136 * Note that idle threads have a prio of MAX_PRIO, for this test
2137 * to be always true for them.
2138 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002139 check_preempt_curr(this_rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140}
2141
2142/*
2143 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
2144 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002145static
Ingo Molnar70b97a72006-07-03 00:25:42 -07002146int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002147 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002148 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149{
2150 /*
2151 * We do not migrate tasks that are:
2152 * 1) running (obviously), or
2153 * 2) cannot be migrated to this CPU due to cpus_allowed, or
2154 * 3) are cache-hot on their current CPU.
2155 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 if (!cpu_isset(this_cpu, p->cpus_allowed))
2157 return 0;
Nick Piggin81026792005-06-25 14:57:07 -07002158 *all_pinned = 0;
2159
2160 if (task_running(rq, p))
2161 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 return 1;
2164}
2165
Ingo Molnardd41f592007-07-09 18:51:59 +02002166static int balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
2167 unsigned long max_nr_move, unsigned long max_load_move,
2168 struct sched_domain *sd, enum cpu_idle_type idle,
2169 int *all_pinned, unsigned long *load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002170 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02002171{
2172 int pulled = 0, pinned = 0, skip_for_load;
2173 struct task_struct *p;
2174 long rem_load_move = max_load_move;
2175
2176 if (max_nr_move == 0 || max_load_move == 0)
2177 goto out;
2178
2179 pinned = 1;
2180
2181 /*
2182 * Start the load-balancing iterator:
2183 */
2184 p = iterator->start(iterator->arg);
2185next:
2186 if (!p)
2187 goto out;
2188 /*
2189 * To help distribute high priority tasks accross CPUs we don't
2190 * skip a task if it will be the highest priority task (i.e. smallest
2191 * prio value) on its new queue regardless of its load weight
2192 */
2193 skip_for_load = (p->se.load.weight >> 1) > rem_load_move +
2194 SCHED_LOAD_SCALE_FUZZ;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002195 if ((skip_for_load && p->prio >= *this_best_prio) ||
Ingo Molnardd41f592007-07-09 18:51:59 +02002196 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002197 p = iterator->next(iterator->arg);
2198 goto next;
2199 }
2200
2201 pull_task(busiest, p, this_rq, this_cpu);
2202 pulled++;
2203 rem_load_move -= p->se.load.weight;
2204
2205 /*
2206 * We only want to steal up to the prescribed number of tasks
2207 * and the prescribed amount of weighted load.
2208 */
2209 if (pulled < max_nr_move && rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002210 if (p->prio < *this_best_prio)
2211 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02002212 p = iterator->next(iterator->arg);
2213 goto next;
2214 }
2215out:
2216 /*
2217 * Right now, this is the only place pull_task() is called,
2218 * so we can safely collect pull_task() stats here rather than
2219 * inside pull_task().
2220 */
2221 schedstat_add(sd, lb_gained[idle], pulled);
2222
2223 if (all_pinned)
2224 *all_pinned = pinned;
2225 *load_moved = max_load_move - rem_load_move;
2226 return pulled;
2227}
Ingo Molnar48f24c42006-07-03 00:25:40 -07002228
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229/*
Peter Williams43010652007-08-09 11:16:46 +02002230 * move_tasks tries to move up to max_load_move weighted load from busiest to
2231 * this_rq, as part of a balancing operation within domain "sd".
2232 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 *
2234 * Called with both runqueues locked.
2235 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002236static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02002237 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002238 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07002239 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240{
Ingo Molnardd41f592007-07-09 18:51:59 +02002241 struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02002242 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002243 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
Ingo Molnardd41f592007-07-09 18:51:59 +02002245 do {
Peter Williams43010652007-08-09 11:16:46 +02002246 total_load_moved +=
2247 class->load_balance(this_rq, this_cpu, busiest,
2248 ULONG_MAX, max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002249 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02002250 class = class->next;
Peter Williams43010652007-08-09 11:16:46 +02002251 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
Peter Williams43010652007-08-09 11:16:46 +02002253 return total_load_moved > 0;
2254}
2255
2256/*
2257 * move_one_task tries to move exactly one task from busiest to this_rq, as
2258 * part of active balancing operations within "domain".
2259 * Returns 1 if successful and 0 otherwise.
2260 *
2261 * Called with both runqueues locked.
2262 */
2263static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2264 struct sched_domain *sd, enum cpu_idle_type idle)
2265{
2266 struct sched_class *class;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002267 int this_best_prio = MAX_PRIO;
Peter Williams43010652007-08-09 11:16:46 +02002268
2269 for (class = sched_class_highest; class; class = class->next)
2270 if (class->load_balance(this_rq, this_cpu, busiest,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002271 1, ULONG_MAX, sd, idle, NULL,
2272 &this_best_prio))
Peter Williams43010652007-08-09 11:16:46 +02002273 return 1;
2274
2275 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276}
2277
2278/*
2279 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07002280 * domain. It calculates and returns the amount of weighted load which
2281 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 */
2283static struct sched_group *
2284find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02002285 unsigned long *imbalance, enum cpu_idle_type idle,
2286 int *sd_idle, cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287{
2288 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
2289 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002290 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07002291 unsigned long busiest_load_per_task, busiest_nr_running;
2292 unsigned long this_load_per_task, this_nr_running;
Nick Piggin78979862005-06-25 14:57:13 -07002293 int load_idx;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002294#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2295 int power_savings_balance = 1;
2296 unsigned long leader_nr_running = 0, min_load_per_task = 0;
2297 unsigned long min_nr_running = ULONG_MAX;
2298 struct sched_group *group_min = NULL, *group_leader = NULL;
2299#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
2301 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002302 busiest_load_per_task = busiest_nr_running = 0;
2303 this_load_per_task = this_nr_running = 0;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002304 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002305 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002306 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002307 load_idx = sd->newidle_idx;
2308 else
2309 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
2311 do {
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002312 unsigned long load, group_capacity;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 int local_group;
2314 int i;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002315 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002316 unsigned long sum_nr_running, sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
2318 local_group = cpu_isset(this_cpu, group->cpumask);
2319
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002320 if (local_group)
2321 balance_cpu = first_cpu(group->cpumask);
2322
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07002324 sum_weighted_load = sum_nr_running = avg_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325
2326 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002327 struct rq *rq;
2328
2329 if (!cpu_isset(i, *cpus))
2330 continue;
2331
2332 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07002333
Suresh Siddha9439aab2007-07-19 21:28:35 +02002334 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07002335 *sd_idle = 0;
2336
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002338 if (local_group) {
2339 if (idle_cpu(i) && !first_idle_cpu) {
2340 first_idle_cpu = 1;
2341 balance_cpu = i;
2342 }
2343
Nick Piggina2000572006-02-10 01:51:02 -08002344 load = target_load(i, load_idx);
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002345 } else
Nick Piggina2000572006-02-10 01:51:02 -08002346 load = source_load(i, load_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347
2348 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07002349 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002350 sum_weighted_load += weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 }
2352
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002353 /*
2354 * First idle cpu or the first cpu(busiest) in this sched group
2355 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02002356 * domains. In the newly idle case, we will allow all the cpu's
2357 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002358 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02002359 if (idle != CPU_NEWLY_IDLE && local_group &&
2360 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002361 *balance = 0;
2362 goto ret;
2363 }
2364
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07002366 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
2368 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002369 avg_load = sg_div_cpu_power(group,
2370 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371
Eric Dumazet5517d862007-05-08 00:32:57 -07002372 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002373
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 if (local_group) {
2375 this_load = avg_load;
2376 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002377 this_nr_running = sum_nr_running;
2378 this_load_per_task = sum_weighted_load;
2379 } else if (avg_load > max_load &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002380 sum_nr_running > group_capacity) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 max_load = avg_load;
2382 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002383 busiest_nr_running = sum_nr_running;
2384 busiest_load_per_task = sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002386
2387#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2388 /*
2389 * Busy processors will not participate in power savings
2390 * balance.
2391 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002392 if (idle == CPU_NOT_IDLE ||
2393 !(sd->flags & SD_POWERSAVINGS_BALANCE))
2394 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002395
2396 /*
2397 * If the local group is idle or completely loaded
2398 * no need to do power savings balance at this domain
2399 */
2400 if (local_group && (this_nr_running >= group_capacity ||
2401 !this_nr_running))
2402 power_savings_balance = 0;
2403
Ingo Molnardd41f592007-07-09 18:51:59 +02002404 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002405 * If a group is already running at full capacity or idle,
2406 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02002407 */
2408 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002409 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02002410 goto group_next;
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 has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002414 * This is the group from where we need to pick up the load
2415 * for saving power
2416 */
2417 if ((sum_nr_running < min_nr_running) ||
2418 (sum_nr_running == min_nr_running &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002419 first_cpu(group->cpumask) <
2420 first_cpu(group_min->cpumask))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002421 group_min = group;
2422 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002423 min_load_per_task = sum_weighted_load /
2424 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002425 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002426
Ingo Molnardd41f592007-07-09 18:51:59 +02002427 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002428 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02002429 * capacity but still has some space to pick up some load
2430 * from other group and save more power
2431 */
2432 if (sum_nr_running <= group_capacity - 1) {
2433 if (sum_nr_running > leader_nr_running ||
2434 (sum_nr_running == leader_nr_running &&
2435 first_cpu(group->cpumask) >
2436 first_cpu(group_leader->cpumask))) {
2437 group_leader = group;
2438 leader_nr_running = sum_nr_running;
2439 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002440 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002441group_next:
2442#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 group = group->next;
2444 } while (group != sd->groups);
2445
Peter Williams2dd73a42006-06-27 02:54:34 -07002446 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 goto out_balanced;
2448
2449 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
2450
2451 if (this_load >= avg_load ||
2452 100*max_load <= sd->imbalance_pct*this_load)
2453 goto out_balanced;
2454
Peter Williams2dd73a42006-06-27 02:54:34 -07002455 busiest_load_per_task /= busiest_nr_running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 /*
2457 * We're trying to get all the cpus to the average_load, so we don't
2458 * want to push ourselves above the average load, nor do we wish to
2459 * reduce the max loaded cpu below the average load, as either of these
2460 * actions would just result in more rebalancing later, and ping-pong
2461 * tasks around. Thus we look for the minimum possible imbalance.
2462 * Negative imbalances (*we* are more loaded than anyone else) will
2463 * be counted as no imbalance for these purposes -- we can't fix that
2464 * by pulling tasks to us. Be careful of negative numbers as they'll
2465 * appear as very large values with unsigned longs.
2466 */
Peter Williams2dd73a42006-06-27 02:54:34 -07002467 if (max_load <= busiest_load_per_task)
2468 goto out_balanced;
2469
2470 /*
2471 * In the presence of smp nice balancing, certain scenarios can have
2472 * max load less than avg load(as we skip the groups at or below
2473 * its cpu_power, while calculating max_load..)
2474 */
2475 if (max_load < avg_load) {
2476 *imbalance = 0;
2477 goto small_imbalance;
2478 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002479
2480 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07002481 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002482
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07002484 *imbalance = min(max_pull * busiest->__cpu_power,
2485 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 / SCHED_LOAD_SCALE;
2487
Peter Williams2dd73a42006-06-27 02:54:34 -07002488 /*
2489 * if *imbalance is less than the average load per runnable task
2490 * there is no gaurantee that any tasks will be moved so we'll have
2491 * a think about bumping its value to force at least one task to be
2492 * moved
2493 */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02002494 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07002495 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07002496 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497
Peter Williams2dd73a42006-06-27 02:54:34 -07002498small_imbalance:
2499 pwr_move = pwr_now = 0;
2500 imbn = 2;
2501 if (this_nr_running) {
2502 this_load_per_task /= this_nr_running;
2503 if (busiest_load_per_task > this_load_per_task)
2504 imbn = 1;
2505 } else
2506 this_load_per_task = SCHED_LOAD_SCALE;
2507
Ingo Molnardd41f592007-07-09 18:51:59 +02002508 if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >=
2509 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07002510 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 return busiest;
2512 }
2513
2514 /*
2515 * OK, we don't have enough imbalance to justify moving tasks,
2516 * however we may be able to increase total CPU power used by
2517 * moving them.
2518 */
2519
Eric Dumazet5517d862007-05-08 00:32:57 -07002520 pwr_now += busiest->__cpu_power *
2521 min(busiest_load_per_task, max_load);
2522 pwr_now += this->__cpu_power *
2523 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 pwr_now /= SCHED_LOAD_SCALE;
2525
2526 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07002527 tmp = sg_div_cpu_power(busiest,
2528 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07002530 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07002531 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532
2533 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07002534 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08002535 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07002536 tmp = sg_div_cpu_power(this,
2537 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 else
Eric Dumazet5517d862007-05-08 00:32:57 -07002539 tmp = sg_div_cpu_power(this,
2540 busiest_load_per_task * SCHED_LOAD_SCALE);
2541 pwr_move += this->__cpu_power *
2542 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 pwr_move /= SCHED_LOAD_SCALE;
2544
2545 /* Move if we gain throughput */
Suresh Siddha7fd0d2d2007-09-05 14:32:48 +02002546 if (pwr_move > pwr_now)
2547 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 }
2549
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 return busiest;
2551
2552out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002553#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002554 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002555 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002557 if (this == group_leader && group_leader != group_min) {
2558 *imbalance = min_load_per_task;
2559 return group_min;
2560 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002561#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002562ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 *imbalance = 0;
2564 return NULL;
2565}
2566
2567/*
2568 * find_busiest_queue - find the busiest runqueue among the cpus in group.
2569 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002570static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002571find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002572 unsigned long imbalance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002574 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07002575 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 int i;
2577
2578 for_each_cpu_mask(i, group->cpumask) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002579 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002580
2581 if (!cpu_isset(i, *cpus))
2582 continue;
2583
Ingo Molnar48f24c42006-07-03 00:25:40 -07002584 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02002585 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586
Ingo Molnardd41f592007-07-09 18:51:59 +02002587 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07002588 continue;
2589
Ingo Molnardd41f592007-07-09 18:51:59 +02002590 if (wl > max_load) {
2591 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002592 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 }
2594 }
2595
2596 return busiest;
2597}
2598
2599/*
Nick Piggin77391d72005-06-25 14:57:30 -07002600 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
2601 * so long as it is large enough.
2602 */
2603#define MAX_PINNED_INTERVAL 512
2604
2605/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 * Check this_cpu to ensure it is balanced within domain. Attempt to move
2607 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002609static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002610 struct sched_domain *sd, enum cpu_idle_type idle,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002611 int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612{
Peter Williams43010652007-08-09 11:16:46 +02002613 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002616 struct rq *busiest;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002617 cpumask_t cpus = CPU_MASK_ALL;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002618 unsigned long flags;
Nick Piggin5969fe02005-09-10 00:26:19 -07002619
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002620 /*
2621 * When power savings policy is enabled for the parent domain, idle
2622 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02002623 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002624 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002625 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002626 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002627 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002628 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 schedstat_inc(sd, lb_cnt[idle]);
2631
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002632redo:
2633 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002634 &cpus, balance);
2635
Chen, Kenneth W06066712006-12-10 02:20:35 -08002636 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002637 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002638
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 if (!group) {
2640 schedstat_inc(sd, lb_nobusyg[idle]);
2641 goto out_balanced;
2642 }
2643
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002644 busiest = find_busiest_queue(group, idle, imbalance, &cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 if (!busiest) {
2646 schedstat_inc(sd, lb_nobusyq[idle]);
2647 goto out_balanced;
2648 }
2649
Nick Piggindb935db2005-06-25 14:57:11 -07002650 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651
2652 schedstat_add(sd, lb_imbalance[idle], imbalance);
2653
Peter Williams43010652007-08-09 11:16:46 +02002654 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 if (busiest->nr_running > 1) {
2656 /*
2657 * Attempt to move tasks. If find_busiest_group has found
2658 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02002659 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 * correctly treated as an imbalance.
2661 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002662 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07002663 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02002664 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07002665 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07002666 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002667 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07002668
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07002669 /*
2670 * some other cpu did the load balance for us.
2671 */
Peter Williams43010652007-08-09 11:16:46 +02002672 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07002673 resched_cpu(this_cpu);
2674
Nick Piggin81026792005-06-25 14:57:07 -07002675 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002676 if (unlikely(all_pinned)) {
2677 cpu_clear(cpu_of(busiest), cpus);
2678 if (!cpus_empty(cpus))
2679 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07002680 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 }
Nick Piggin81026792005-06-25 14:57:07 -07002683
Peter Williams43010652007-08-09 11:16:46 +02002684 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 schedstat_inc(sd, lb_failed[idle]);
2686 sd->nr_balance_failed++;
2687
2688 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002690 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07002691
2692 /* don't kick the migration_thread, if the curr
2693 * task on busiest cpu can't be moved to this_cpu
2694 */
2695 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002696 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07002697 all_pinned = 1;
2698 goto out_one_pinned;
2699 }
2700
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 if (!busiest->active_balance) {
2702 busiest->active_balance = 1;
2703 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07002704 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002706 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07002707 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 wake_up_process(busiest->migration_thread);
2709
2710 /*
2711 * We've kicked active balancing, reset the failure
2712 * counter.
2713 */
Nick Piggin39507452005-06-25 14:57:09 -07002714 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 }
Nick Piggin81026792005-06-25 14:57:07 -07002716 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 sd->nr_balance_failed = 0;
2718
Nick Piggin81026792005-06-25 14:57:07 -07002719 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 /* We were unbalanced, so reset the balancing interval */
2721 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07002722 } else {
2723 /*
2724 * If we've begun active balancing, start to back off. This
2725 * case may not be covered by the all_pinned logic if there
2726 * is only 1 task on the busy runqueue (because we don't call
2727 * move_tasks).
2728 */
2729 if (sd->balance_interval < sd->max_interval)
2730 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 }
2732
Peter Williams43010652007-08-09 11:16:46 +02002733 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002734 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002735 return -1;
Peter Williams43010652007-08-09 11:16:46 +02002736 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737
2738out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 schedstat_inc(sd, lb_balanced[idle]);
2740
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002741 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07002742
2743out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07002745 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
2746 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 sd->balance_interval *= 2;
2748
Ingo Molnar48f24c42006-07-03 00:25:40 -07002749 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002750 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002751 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 return 0;
2753}
2754
2755/*
2756 * Check this_cpu to ensure it is balanced within domain. Attempt to move
2757 * tasks if there is an imbalance.
2758 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002759 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 * this_rq is locked.
2761 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07002762static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07002763load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764{
2765 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002766 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02002768 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07002769 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02002770 int all_pinned = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002771 cpumask_t cpus = CPU_MASK_ALL;
Nick Piggin5969fe02005-09-10 00:26:19 -07002772
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002773 /*
2774 * When power savings policy is enabled for the parent domain, idle
2775 * sibling can pick up load irrespective of busy siblings. In this case,
2776 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002777 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002778 */
2779 if (sd->flags & SD_SHARE_CPUPOWER &&
2780 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002781 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002783 schedstat_inc(sd, lb_cnt[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002784redo:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002785 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002786 &sd_idle, &cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002788 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002789 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 }
2791
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002792 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002793 &cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07002794 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002795 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002796 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 }
2798
Nick Piggindb935db2005-06-25 14:57:11 -07002799 BUG_ON(busiest == this_rq);
2800
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002801 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07002802
Peter Williams43010652007-08-09 11:16:46 +02002803 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07002804 if (busiest->nr_running > 1) {
2805 /* Attempt to move tasks */
2806 double_lock_balance(this_rq, busiest);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002807 /* this_rq->clock is already updated */
2808 update_rq_clock(busiest);
Peter Williams43010652007-08-09 11:16:46 +02002809 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02002810 imbalance, sd, CPU_NEWLY_IDLE,
2811 &all_pinned);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07002812 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002813
Suresh Siddha969bb4e2007-07-19 21:28:35 +02002814 if (unlikely(all_pinned)) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002815 cpu_clear(cpu_of(busiest), cpus);
2816 if (!cpus_empty(cpus))
2817 goto redo;
2818 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07002819 }
2820
Peter Williams43010652007-08-09 11:16:46 +02002821 if (!ld_moved) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002822 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002823 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
2824 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002825 return -1;
2826 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002827 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828
Peter Williams43010652007-08-09 11:16:46 +02002829 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002830
2831out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002832 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07002833 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002834 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002835 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002836 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002837
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002838 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839}
2840
2841/*
2842 * idle_balance is called by schedule() if this_cpu is about to become
2843 * idle. Attempts to pull tasks from other CPUs.
2844 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002845static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846{
2847 struct sched_domain *sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02002848 int pulled_task = -1;
2849 unsigned long next_balance = jiffies + HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850
2851 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07002852 unsigned long interval;
2853
2854 if (!(sd->flags & SD_LOAD_BALANCE))
2855 continue;
2856
2857 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002858 /* If we've pulled tasks over stop searching: */
Christoph Lameter1bd77f22006-12-10 02:20:27 -08002859 pulled_task = load_balance_newidle(this_cpu,
Christoph Lameter92c4ca52007-06-23 17:16:33 -07002860 this_rq, sd);
2861
2862 interval = msecs_to_jiffies(sd->balance_interval);
2863 if (time_after(next_balance, sd->last_balance + interval))
2864 next_balance = sd->last_balance + interval;
2865 if (pulled_task)
2866 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002868 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08002869 /*
2870 * We are going idle. next_balance may be set based on
2871 * a busy processor. So reset next_balance.
2872 */
2873 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02002874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875}
2876
2877/*
2878 * active_load_balance is run by migration threads. It pushes running tasks
2879 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
2880 * running on each physical CPU where possible, and avoids physical /
2881 * logical imbalances.
2882 *
2883 * Called with busiest_rq locked.
2884 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002885static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886{
Nick Piggin39507452005-06-25 14:57:09 -07002887 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002888 struct sched_domain *sd;
2889 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07002890
Ingo Molnar48f24c42006-07-03 00:25:40 -07002891 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07002892 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07002893 return;
2894
2895 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896
2897 /*
Nick Piggin39507452005-06-25 14:57:09 -07002898 * This condition is "impossible", if it occurs
2899 * we need to fix it. Originally reported by
2900 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 */
Nick Piggin39507452005-06-25 14:57:09 -07002902 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903
Nick Piggin39507452005-06-25 14:57:09 -07002904 /* move a task from busiest_rq to target_rq */
2905 double_lock_balance(busiest_rq, target_rq);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02002906 update_rq_clock(busiest_rq);
2907 update_rq_clock(target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908
Nick Piggin39507452005-06-25 14:57:09 -07002909 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002910 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07002911 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07002912 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07002913 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915
Ingo Molnar48f24c42006-07-03 00:25:40 -07002916 if (likely(sd)) {
2917 schedstat_inc(sd, alb_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918
Peter Williams43010652007-08-09 11:16:46 +02002919 if (move_one_task(target_rq, target_cpu, busiest_rq,
2920 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07002921 schedstat_inc(sd, alb_pushed);
2922 else
2923 schedstat_inc(sd, alb_failed);
2924 }
Nick Piggin39507452005-06-25 14:57:09 -07002925 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926}
2927
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07002928#ifdef CONFIG_NO_HZ
2929static struct {
2930 atomic_t load_balancer;
2931 cpumask_t cpu_mask;
2932} nohz ____cacheline_aligned = {
2933 .load_balancer = ATOMIC_INIT(-1),
2934 .cpu_mask = CPU_MASK_NONE,
2935};
2936
Christoph Lameter7835b982006-12-10 02:20:22 -08002937/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07002938 * This routine will try to nominate the ilb (idle load balancing)
2939 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
2940 * load balancing on behalf of all those cpus. If all the cpus in the system
2941 * go into this tickless mode, then there will be no ilb owner (as there is
2942 * no need for one) and all the cpus will sleep till the next wakeup event
2943 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08002944 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07002945 * For the ilb owner, tick is not stopped. And this tick will be used
2946 * for idle load balancing. ilb owner will still be part of
2947 * nohz.cpu_mask..
2948 *
2949 * While stopping the tick, this cpu will become the ilb owner if there
2950 * is no other owner. And will be the owner till that cpu becomes busy
2951 * or if all cpus in the system stop their ticks at which point
2952 * there is no need for ilb owner.
2953 *
2954 * When the ilb owner becomes busy, it nominates another owner, during the
2955 * next busy scheduler_tick()
2956 */
2957int select_nohz_load_balancer(int stop_tick)
2958{
2959 int cpu = smp_processor_id();
2960
2961 if (stop_tick) {
2962 cpu_set(cpu, nohz.cpu_mask);
2963 cpu_rq(cpu)->in_nohz_recently = 1;
2964
2965 /*
2966 * If we are going offline and still the leader, give up!
2967 */
2968 if (cpu_is_offline(cpu) &&
2969 atomic_read(&nohz.load_balancer) == cpu) {
2970 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
2971 BUG();
2972 return 0;
2973 }
2974
2975 /* time for ilb owner also to sleep */
2976 if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
2977 if (atomic_read(&nohz.load_balancer) == cpu)
2978 atomic_set(&nohz.load_balancer, -1);
2979 return 0;
2980 }
2981
2982 if (atomic_read(&nohz.load_balancer) == -1) {
2983 /* make me the ilb owner */
2984 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
2985 return 1;
2986 } else if (atomic_read(&nohz.load_balancer) == cpu)
2987 return 1;
2988 } else {
2989 if (!cpu_isset(cpu, nohz.cpu_mask))
2990 return 0;
2991
2992 cpu_clear(cpu, nohz.cpu_mask);
2993
2994 if (atomic_read(&nohz.load_balancer) == cpu)
2995 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
2996 BUG();
2997 }
2998 return 0;
2999}
3000#endif
3001
3002static DEFINE_SPINLOCK(balancing);
3003
3004/*
Christoph Lameter7835b982006-12-10 02:20:22 -08003005 * It checks each scheduling domain to see if it is due to be balanced,
3006 * and initiates a balancing operation if so.
3007 *
3008 * Balancing parameters are set up in arch_init_sched_domains.
3009 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003010static inline void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08003011{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003012 int balance = 1;
3013 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08003014 unsigned long interval;
3015 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003016 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08003017 unsigned long next_balance = jiffies + 60*HZ;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003018 int update_next_balance = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003020 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 if (!(sd->flags & SD_LOAD_BALANCE))
3022 continue;
3023
3024 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003025 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 interval *= sd->busy_factor;
3027
3028 /* scale ms to jiffies */
3029 interval = msecs_to_jiffies(interval);
3030 if (unlikely(!interval))
3031 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02003032 if (interval > HZ*NR_CPUS/10)
3033 interval = HZ*NR_CPUS/10;
3034
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035
Christoph Lameter08c183f2006-12-10 02:20:29 -08003036 if (sd->flags & SD_SERIALIZE) {
3037 if (!spin_trylock(&balancing))
3038 goto out;
3039 }
3040
Christoph Lameterc9819f42006-12-10 02:20:25 -08003041 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003042 if (load_balance(cpu, rq, sd, idle, &balance)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003043 /*
3044 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07003045 * longer idle, or one of our SMT siblings is
3046 * not idle.
3047 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003048 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003050 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 }
Christoph Lameter08c183f2006-12-10 02:20:29 -08003052 if (sd->flags & SD_SERIALIZE)
3053 spin_unlock(&balancing);
3054out:
Suresh Siddhaf549da82007-08-23 15:18:02 +02003055 if (time_after(next_balance, sd->last_balance + interval)) {
Christoph Lameterc9819f42006-12-10 02:20:25 -08003056 next_balance = sd->last_balance + interval;
Suresh Siddhaf549da82007-08-23 15:18:02 +02003057 update_next_balance = 1;
3058 }
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003059
3060 /*
3061 * Stop the load balance at this level. There is another
3062 * CPU in our sched group which is doing load balancing more
3063 * actively.
3064 */
3065 if (!balance)
3066 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 }
Suresh Siddhaf549da82007-08-23 15:18:02 +02003068
3069 /*
3070 * next_balance will be updated only when there is a need.
3071 * When the cpu is attached to null domain for ex, it will not be
3072 * updated.
3073 */
3074 if (likely(update_next_balance))
3075 rq->next_balance = next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003076}
3077
3078/*
3079 * run_rebalance_domains is triggered when needed from the scheduler tick.
3080 * In CONFIG_NO_HZ case, the idle load balance owner will do the
3081 * rebalancing for all the cpus for whom scheduler ticks are stopped.
3082 */
3083static void run_rebalance_domains(struct softirq_action *h)
3084{
Ingo Molnardd41f592007-07-09 18:51:59 +02003085 int this_cpu = smp_processor_id();
3086 struct rq *this_rq = cpu_rq(this_cpu);
3087 enum cpu_idle_type idle = this_rq->idle_at_tick ?
3088 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003089
Ingo Molnardd41f592007-07-09 18:51:59 +02003090 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003091
3092#ifdef CONFIG_NO_HZ
3093 /*
3094 * If this cpu is the owner for idle load balancing, then do the
3095 * balancing on behalf of the other idle cpus whose ticks are
3096 * stopped.
3097 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003098 if (this_rq->idle_at_tick &&
3099 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003100 cpumask_t cpus = nohz.cpu_mask;
3101 struct rq *rq;
3102 int balance_cpu;
3103
Ingo Molnardd41f592007-07-09 18:51:59 +02003104 cpu_clear(this_cpu, cpus);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003105 for_each_cpu_mask(balance_cpu, cpus) {
3106 /*
3107 * If this cpu gets work to do, stop the load balancing
3108 * work being done for other cpus. Next load
3109 * balancing owner will pick it up.
3110 */
3111 if (need_resched())
3112 break;
3113
Oleg Nesterovde0cf892007-08-12 18:08:19 +02003114 rebalance_domains(balance_cpu, CPU_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003115
3116 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003117 if (time_after(this_rq->next_balance, rq->next_balance))
3118 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003119 }
3120 }
3121#endif
3122}
3123
3124/*
3125 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
3126 *
3127 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
3128 * idle load balancing owner or decide to stop the periodic load balancing,
3129 * if the whole system is idle.
3130 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003131static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003132{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003133#ifdef CONFIG_NO_HZ
3134 /*
3135 * If we were in the nohz mode recently and busy at the current
3136 * scheduler tick, then check if we need to nominate new idle
3137 * load balancer.
3138 */
3139 if (rq->in_nohz_recently && !rq->idle_at_tick) {
3140 rq->in_nohz_recently = 0;
3141
3142 if (atomic_read(&nohz.load_balancer) == cpu) {
3143 cpu_clear(cpu, nohz.cpu_mask);
3144 atomic_set(&nohz.load_balancer, -1);
3145 }
3146
3147 if (atomic_read(&nohz.load_balancer) == -1) {
3148 /*
3149 * simple selection for now: Nominate the
3150 * first cpu in the nohz list to be the next
3151 * ilb owner.
3152 *
3153 * TBD: Traverse the sched domains and nominate
3154 * the nearest cpu in the nohz.cpu_mask.
3155 */
3156 int ilb = first_cpu(nohz.cpu_mask);
3157
3158 if (ilb != NR_CPUS)
3159 resched_cpu(ilb);
3160 }
3161 }
3162
3163 /*
3164 * If this cpu is idle and doing idle load balancing for all the
3165 * cpus with ticks stopped, is it time for that to stop?
3166 */
3167 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
3168 cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3169 resched_cpu(cpu);
3170 return;
3171 }
3172
3173 /*
3174 * If this cpu is idle and the idle load balancing is done by
3175 * someone else, then no need raise the SCHED_SOFTIRQ
3176 */
3177 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
3178 cpu_isset(cpu, nohz.cpu_mask))
3179 return;
3180#endif
3181 if (time_after_eq(jiffies, rq->next_balance))
3182 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183}
Ingo Molnardd41f592007-07-09 18:51:59 +02003184
3185#else /* CONFIG_SMP */
3186
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187/*
3188 * on UP we do not need to balance between CPUs:
3189 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003190static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191{
3192}
Ingo Molnardd41f592007-07-09 18:51:59 +02003193
3194/* Avoid "used but not defined" warning on UP */
3195static int balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
3196 unsigned long max_nr_move, unsigned long max_load_move,
3197 struct sched_domain *sd, enum cpu_idle_type idle,
3198 int *all_pinned, unsigned long *load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003199 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02003200{
3201 *load_moved = 0;
3202
3203 return 0;
3204}
3205
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206#endif
3207
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208DEFINE_PER_CPU(struct kernel_stat, kstat);
3209
3210EXPORT_PER_CPU_SYMBOL(kstat);
3211
3212/*
Ingo Molnar41b86e92007-07-09 18:51:58 +02003213 * Return p->sum_exec_runtime plus any more ns on the sched_clock
3214 * that have not yet been banked in case the task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 */
Ingo Molnar41b86e92007-07-09 18:51:58 +02003216unsigned long long task_sched_runtime(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003219 u64 ns, delta_exec;
3220 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003221
Ingo Molnar41b86e92007-07-09 18:51:58 +02003222 rq = task_rq_lock(p, &flags);
3223 ns = p->se.sum_exec_runtime;
3224 if (rq->curr == p) {
Ingo Molnara8e504d2007-08-09 11:16:47 +02003225 update_rq_clock(rq);
3226 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003227 if ((s64)delta_exec > 0)
3228 ns += delta_exec;
3229 }
3230 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003231
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 return ns;
3233}
3234
3235/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 * Account user cpu time to a process.
3237 * @p: the process that the cpu time gets accounted to
3238 * @hardirq_offset: the offset to subtract from hardirq_count()
3239 * @cputime: the cpu time spent in user space since the last update
3240 */
3241void account_user_time(struct task_struct *p, cputime_t cputime)
3242{
3243 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3244 cputime64_t tmp;
3245
3246 p->utime = cputime_add(p->utime, cputime);
3247
3248 /* Add user time to cpustat. */
3249 tmp = cputime_to_cputime64(cputime);
3250 if (TASK_NICE(p) > 0)
3251 cpustat->nice = cputime64_add(cpustat->nice, tmp);
3252 else
3253 cpustat->user = cputime64_add(cpustat->user, tmp);
3254}
3255
3256/*
3257 * Account system cpu time to a process.
3258 * @p: the process that the cpu time gets accounted to
3259 * @hardirq_offset: the offset to subtract from hardirq_count()
3260 * @cputime: the cpu time spent in kernel space since the last update
3261 */
3262void account_system_time(struct task_struct *p, int hardirq_offset,
3263 cputime_t cputime)
3264{
3265 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003266 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 cputime64_t tmp;
3268
3269 p->stime = cputime_add(p->stime, cputime);
3270
3271 /* Add system time to cpustat. */
3272 tmp = cputime_to_cputime64(cputime);
3273 if (hardirq_count() - hardirq_offset)
3274 cpustat->irq = cputime64_add(cpustat->irq, tmp);
3275 else if (softirq_count())
3276 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
3277 else if (p != rq->idle)
3278 cpustat->system = cputime64_add(cpustat->system, tmp);
3279 else if (atomic_read(&rq->nr_iowait) > 0)
3280 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3281 else
3282 cpustat->idle = cputime64_add(cpustat->idle, tmp);
3283 /* Account for system time used */
3284 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285}
3286
3287/*
3288 * Account for involuntary wait time.
3289 * @p: the process from which the cpu time has been stolen
3290 * @steal: the cpu time spent in involuntary wait
3291 */
3292void account_steal_time(struct task_struct *p, cputime_t steal)
3293{
3294 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3295 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07003296 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297
3298 if (p == rq->idle) {
3299 p->stime = cputime_add(p->stime, steal);
3300 if (atomic_read(&rq->nr_iowait) > 0)
3301 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3302 else
3303 cpustat->idle = cputime64_add(cpustat->idle, tmp);
3304 } else
3305 cpustat->steal = cputime64_add(cpustat->steal, tmp);
3306}
3307
Christoph Lameter7835b982006-12-10 02:20:22 -08003308/*
3309 * This function gets called by the timer code, with HZ frequency.
3310 * We call it with interrupts disabled.
3311 *
3312 * It also gets called by the fork code, when changing the parent's
3313 * timeslices.
3314 */
3315void scheduler_tick(void)
3316{
Christoph Lameter7835b982006-12-10 02:20:22 -08003317 int cpu = smp_processor_id();
3318 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003319 struct task_struct *curr = rq->curr;
Ingo Molnar529c7722007-08-10 23:05:11 +02003320 u64 next_tick = rq->tick_timestamp + TICK_NSEC;
Christoph Lameter7835b982006-12-10 02:20:22 -08003321
Ingo Molnardd41f592007-07-09 18:51:59 +02003322 spin_lock(&rq->lock);
Ingo Molnar546fe3c2007-08-09 11:16:51 +02003323 __update_rq_clock(rq);
Ingo Molnar529c7722007-08-10 23:05:11 +02003324 /*
3325 * Let rq->clock advance by at least TICK_NSEC:
3326 */
3327 if (unlikely(rq->clock < next_tick))
3328 rq->clock = next_tick;
3329 rq->tick_timestamp = rq->clock;
Ingo Molnarf1a438d2007-08-09 11:16:45 +02003330 update_cpu_load(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003331 if (curr != rq->idle) /* FIXME: needed? */
3332 curr->sched_class->task_tick(rq, curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02003333 spin_unlock(&rq->lock);
3334
Christoph Lametere418e1c2006-12-10 02:20:23 -08003335#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02003336 rq->idle_at_tick = idle_cpu(cpu);
3337 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08003338#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339}
3340
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341#if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
3342
3343void fastcall add_preempt_count(int val)
3344{
3345 /*
3346 * Underflow?
3347 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003348 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
3349 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350 preempt_count() += val;
3351 /*
3352 * Spinlock count overflowing soon?
3353 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003354 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
3355 PREEMPT_MASK - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356}
3357EXPORT_SYMBOL(add_preempt_count);
3358
3359void fastcall sub_preempt_count(int val)
3360{
3361 /*
3362 * Underflow?
3363 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003364 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
3365 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 /*
3367 * Is the spinlock portion underflowing?
3368 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003369 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
3370 !(preempt_count() & PREEMPT_MASK)))
3371 return;
3372
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 preempt_count() -= val;
3374}
3375EXPORT_SYMBOL(sub_preempt_count);
3376
3377#endif
3378
3379/*
Ingo Molnardd41f592007-07-09 18:51:59 +02003380 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003382static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383{
Ingo Molnardd41f592007-07-09 18:51:59 +02003384 printk(KERN_ERR "BUG: scheduling while atomic: %s/0x%08x/%d\n",
3385 prev->comm, preempt_count(), prev->pid);
3386 debug_show_held_locks(prev);
3387 if (irqs_disabled())
3388 print_irqtrace_events(prev);
3389 dump_stack();
3390}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391
Ingo Molnardd41f592007-07-09 18:51:59 +02003392/*
3393 * Various schedule()-time debugging checks and statistics:
3394 */
3395static inline void schedule_debug(struct task_struct *prev)
3396{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 /*
3398 * Test if we are atomic. Since do_exit() needs to call into
3399 * schedule() atomically, we ignore that path for now.
3400 * Otherwise, whine if we are scheduling when we should not be.
3401 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003402 if (unlikely(in_atomic_preempt_off()) && unlikely(!prev->exit_state))
3403 __schedule_bug(prev);
3404
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
3406
Ingo Molnardd41f592007-07-09 18:51:59 +02003407 schedstat_inc(this_rq(), sched_cnt);
3408}
3409
3410/*
3411 * Pick up the highest-prio task:
3412 */
3413static inline struct task_struct *
Ingo Molnarff95f3d2007-08-09 11:16:49 +02003414pick_next_task(struct rq *rq, struct task_struct *prev)
Ingo Molnardd41f592007-07-09 18:51:59 +02003415{
3416 struct sched_class *class;
3417 struct task_struct *p;
3418
3419 /*
3420 * Optimization: we know that if all tasks are in
3421 * the fair class we can call that function directly:
3422 */
3423 if (likely(rq->nr_running == rq->cfs.nr_running)) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02003424 p = fair_sched_class.pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003425 if (likely(p))
3426 return p;
3427 }
3428
3429 class = sched_class_highest;
3430 for ( ; ; ) {
Ingo Molnarfb8d4722007-08-09 11:16:48 +02003431 p = class->pick_next_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003432 if (p)
3433 return p;
3434 /*
3435 * Will never be NULL as the idle class always
3436 * returns a non-NULL p:
3437 */
3438 class = class->next;
3439 }
3440}
3441
3442/*
3443 * schedule() is the main scheduler function.
3444 */
3445asmlinkage void __sched schedule(void)
3446{
3447 struct task_struct *prev, *next;
3448 long *switch_count;
3449 struct rq *rq;
Ingo Molnardd41f592007-07-09 18:51:59 +02003450 int cpu;
3451
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452need_resched:
3453 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02003454 cpu = smp_processor_id();
3455 rq = cpu_rq(cpu);
3456 rcu_qsctr_inc(cpu);
3457 prev = rq->curr;
3458 switch_count = &prev->nivcsw;
3459
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 release_kernel_lock(prev);
3461need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462
Ingo Molnardd41f592007-07-09 18:51:59 +02003463 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464
3465 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466 clear_tsk_need_resched(prev);
Ingo Molnarc1b3da32007-08-09 11:16:47 +02003467 __update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468
Ingo Molnardd41f592007-07-09 18:51:59 +02003469 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
3470 if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
3471 unlikely(signal_pending(prev)))) {
3472 prev->state = TASK_RUNNING;
3473 } else {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02003474 deactivate_task(rq, prev, 1);
Ingo Molnardd41f592007-07-09 18:51:59 +02003475 }
3476 switch_count = &prev->nvcsw;
3477 }
3478
3479 if (unlikely(!rq->nr_running))
3480 idle_balance(cpu, rq);
3481
Ingo Molnar31ee5292007-08-09 11:16:49 +02003482 prev->sched_class->put_prev_task(rq, prev);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02003483 next = pick_next_task(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484
3485 sched_info_switch(prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02003486
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 if (likely(prev != next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 rq->nr_switches++;
3489 rq->curr = next;
3490 ++*switch_count;
3491
Ingo Molnardd41f592007-07-09 18:51:59 +02003492 context_switch(rq, prev, next); /* unlocks the rq */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 } else
3494 spin_unlock_irq(&rq->lock);
3495
Ingo Molnardd41f592007-07-09 18:51:59 +02003496 if (unlikely(reacquire_kernel_lock(current) < 0)) {
3497 cpu = smp_processor_id();
3498 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 goto need_resched_nonpreemptible;
Ingo Molnardd41f592007-07-09 18:51:59 +02003500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501 preempt_enable_no_resched();
3502 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3503 goto need_resched;
3504}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505EXPORT_SYMBOL(schedule);
3506
3507#ifdef CONFIG_PREEMPT
3508/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003509 * this is the entry point to schedule() from in-kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 * off of preempt_enable. Kernel preemptions off return from interrupt
3511 * occur there and call schedule directly.
3512 */
3513asmlinkage void __sched preempt_schedule(void)
3514{
3515 struct thread_info *ti = current_thread_info();
3516#ifdef CONFIG_PREEMPT_BKL
3517 struct task_struct *task = current;
3518 int saved_lock_depth;
3519#endif
3520 /*
3521 * If there is a non-zero preempt_count or interrupts are disabled,
3522 * we do not want to preempt the current task. Just return..
3523 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07003524 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525 return;
3526
3527need_resched:
3528 add_preempt_count(PREEMPT_ACTIVE);
3529 /*
3530 * We keep the big kernel semaphore locked, but we
3531 * clear ->lock_depth so that schedule() doesnt
3532 * auto-release the semaphore:
3533 */
3534#ifdef CONFIG_PREEMPT_BKL
3535 saved_lock_depth = task->lock_depth;
3536 task->lock_depth = -1;
3537#endif
3538 schedule();
3539#ifdef CONFIG_PREEMPT_BKL
3540 task->lock_depth = saved_lock_depth;
3541#endif
3542 sub_preempt_count(PREEMPT_ACTIVE);
3543
3544 /* we could miss a preemption opportunity between schedule and now */
3545 barrier();
3546 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3547 goto need_resched;
3548}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549EXPORT_SYMBOL(preempt_schedule);
3550
3551/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003552 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553 * off of irq context.
3554 * Note, that this is called and return with irqs disabled. This will
3555 * protect us against recursive calling from irq.
3556 */
3557asmlinkage void __sched preempt_schedule_irq(void)
3558{
3559 struct thread_info *ti = current_thread_info();
3560#ifdef CONFIG_PREEMPT_BKL
3561 struct task_struct *task = current;
3562 int saved_lock_depth;
3563#endif
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003564 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565 BUG_ON(ti->preempt_count || !irqs_disabled());
3566
3567need_resched:
3568 add_preempt_count(PREEMPT_ACTIVE);
3569 /*
3570 * We keep the big kernel semaphore locked, but we
3571 * clear ->lock_depth so that schedule() doesnt
3572 * auto-release the semaphore:
3573 */
3574#ifdef CONFIG_PREEMPT_BKL
3575 saved_lock_depth = task->lock_depth;
3576 task->lock_depth = -1;
3577#endif
3578 local_irq_enable();
3579 schedule();
3580 local_irq_disable();
3581#ifdef CONFIG_PREEMPT_BKL
3582 task->lock_depth = saved_lock_depth;
3583#endif
3584 sub_preempt_count(PREEMPT_ACTIVE);
3585
3586 /* we could miss a preemption opportunity between schedule and now */
3587 barrier();
3588 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3589 goto need_resched;
3590}
3591
3592#endif /* CONFIG_PREEMPT */
3593
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003594int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
3595 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596{
Ingo Molnar48f24c42006-07-03 00:25:40 -07003597 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599EXPORT_SYMBOL(default_wake_function);
3600
3601/*
3602 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
3603 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
3604 * number) then we wake all the non-exclusive tasks and one exclusive task.
3605 *
3606 * There are circumstances in which we can try to wake a task which has already
3607 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
3608 * zero in this (rare) case, and we handle it by continuing to scan the queue.
3609 */
3610static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
3611 int nr_exclusive, int sync, void *key)
3612{
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02003613 wait_queue_t *curr, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614
Matthias Kaehlcke2e458742007-10-15 17:00:02 +02003615 list_for_each_entry_safe(curr, next, &q->task_list, task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07003616 unsigned flags = curr->flags;
3617
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003619 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 break;
3621 }
3622}
3623
3624/**
3625 * __wake_up - wake up threads blocked on a waitqueue.
3626 * @q: the waitqueue
3627 * @mode: which threads
3628 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07003629 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 */
3631void fastcall __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003632 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633{
3634 unsigned long flags;
3635
3636 spin_lock_irqsave(&q->lock, flags);
3637 __wake_up_common(q, mode, nr_exclusive, 0, key);
3638 spin_unlock_irqrestore(&q->lock, flags);
3639}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640EXPORT_SYMBOL(__wake_up);
3641
3642/*
3643 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
3644 */
3645void fastcall __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
3646{
3647 __wake_up_common(q, mode, 1, 0, NULL);
3648}
3649
3650/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07003651 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 * @q: the waitqueue
3653 * @mode: which threads
3654 * @nr_exclusive: how many wake-one or wake-many threads to wake up
3655 *
3656 * The sync wakeup differs that the waker knows that it will schedule
3657 * away soon, so while the target thread will be woken up, it will not
3658 * be migrated to another CPU - ie. the two threads are 'synchronized'
3659 * with each other. This can prevent needless bouncing between CPUs.
3660 *
3661 * On UP it can prevent extra preemption.
3662 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003663void fastcall
3664__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665{
3666 unsigned long flags;
3667 int sync = 1;
3668
3669 if (unlikely(!q))
3670 return;
3671
3672 if (unlikely(!nr_exclusive))
3673 sync = 0;
3674
3675 spin_lock_irqsave(&q->lock, flags);
3676 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
3677 spin_unlock_irqrestore(&q->lock, flags);
3678}
3679EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
3680
3681void fastcall complete(struct completion *x)
3682{
3683 unsigned long flags;
3684
3685 spin_lock_irqsave(&x->wait.lock, flags);
3686 x->done++;
3687 __wake_up_common(&x->wait, TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE,
3688 1, 0, NULL);
3689 spin_unlock_irqrestore(&x->wait.lock, flags);
3690}
3691EXPORT_SYMBOL(complete);
3692
3693void fastcall complete_all(struct completion *x)
3694{
3695 unsigned long flags;
3696
3697 spin_lock_irqsave(&x->wait.lock, flags);
3698 x->done += UINT_MAX/2;
3699 __wake_up_common(&x->wait, TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE,
3700 0, 0, NULL);
3701 spin_unlock_irqrestore(&x->wait.lock, flags);
3702}
3703EXPORT_SYMBOL(complete_all);
3704
3705void fastcall __sched wait_for_completion(struct completion *x)
3706{
3707 might_sleep();
Ingo Molnar48f24c42006-07-03 00:25:40 -07003708
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709 spin_lock_irq(&x->wait.lock);
3710 if (!x->done) {
3711 DECLARE_WAITQUEUE(wait, current);
3712
3713 wait.flags |= WQ_FLAG_EXCLUSIVE;
3714 __add_wait_queue_tail(&x->wait, &wait);
3715 do {
3716 __set_current_state(TASK_UNINTERRUPTIBLE);
3717 spin_unlock_irq(&x->wait.lock);
3718 schedule();
3719 spin_lock_irq(&x->wait.lock);
3720 } while (!x->done);
3721 __remove_wait_queue(&x->wait, &wait);
3722 }
3723 x->done--;
3724 spin_unlock_irq(&x->wait.lock);
3725}
3726EXPORT_SYMBOL(wait_for_completion);
3727
3728unsigned long fastcall __sched
3729wait_for_completion_timeout(struct completion *x, unsigned long timeout)
3730{
3731 might_sleep();
3732
3733 spin_lock_irq(&x->wait.lock);
3734 if (!x->done) {
3735 DECLARE_WAITQUEUE(wait, current);
3736
3737 wait.flags |= WQ_FLAG_EXCLUSIVE;
3738 __add_wait_queue_tail(&x->wait, &wait);
3739 do {
3740 __set_current_state(TASK_UNINTERRUPTIBLE);
3741 spin_unlock_irq(&x->wait.lock);
3742 timeout = schedule_timeout(timeout);
3743 spin_lock_irq(&x->wait.lock);
3744 if (!timeout) {
3745 __remove_wait_queue(&x->wait, &wait);
3746 goto out;
3747 }
3748 } while (!x->done);
3749 __remove_wait_queue(&x->wait, &wait);
3750 }
3751 x->done--;
3752out:
3753 spin_unlock_irq(&x->wait.lock);
3754 return timeout;
3755}
3756EXPORT_SYMBOL(wait_for_completion_timeout);
3757
3758int fastcall __sched wait_for_completion_interruptible(struct completion *x)
3759{
3760 int ret = 0;
3761
3762 might_sleep();
3763
3764 spin_lock_irq(&x->wait.lock);
3765 if (!x->done) {
3766 DECLARE_WAITQUEUE(wait, current);
3767
3768 wait.flags |= WQ_FLAG_EXCLUSIVE;
3769 __add_wait_queue_tail(&x->wait, &wait);
3770 do {
3771 if (signal_pending(current)) {
3772 ret = -ERESTARTSYS;
3773 __remove_wait_queue(&x->wait, &wait);
3774 goto out;
3775 }
3776 __set_current_state(TASK_INTERRUPTIBLE);
3777 spin_unlock_irq(&x->wait.lock);
3778 schedule();
3779 spin_lock_irq(&x->wait.lock);
3780 } while (!x->done);
3781 __remove_wait_queue(&x->wait, &wait);
3782 }
3783 x->done--;
3784out:
3785 spin_unlock_irq(&x->wait.lock);
3786
3787 return ret;
3788}
3789EXPORT_SYMBOL(wait_for_completion_interruptible);
3790
3791unsigned long fastcall __sched
3792wait_for_completion_interruptible_timeout(struct completion *x,
3793 unsigned long timeout)
3794{
3795 might_sleep();
3796
3797 spin_lock_irq(&x->wait.lock);
3798 if (!x->done) {
3799 DECLARE_WAITQUEUE(wait, current);
3800
3801 wait.flags |= WQ_FLAG_EXCLUSIVE;
3802 __add_wait_queue_tail(&x->wait, &wait);
3803 do {
3804 if (signal_pending(current)) {
3805 timeout = -ERESTARTSYS;
3806 __remove_wait_queue(&x->wait, &wait);
3807 goto out;
3808 }
3809 __set_current_state(TASK_INTERRUPTIBLE);
3810 spin_unlock_irq(&x->wait.lock);
3811 timeout = schedule_timeout(timeout);
3812 spin_lock_irq(&x->wait.lock);
3813 if (!timeout) {
3814 __remove_wait_queue(&x->wait, &wait);
3815 goto out;
3816 }
3817 } while (!x->done);
3818 __remove_wait_queue(&x->wait, &wait);
3819 }
3820 x->done--;
3821out:
3822 spin_unlock_irq(&x->wait.lock);
3823 return timeout;
3824}
3825EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
3826
Ingo Molnar0fec1712007-07-09 18:52:01 +02003827static inline void
3828sleep_on_head(wait_queue_head_t *q, wait_queue_t *wait, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829{
Ingo Molnar0fec1712007-07-09 18:52:01 +02003830 spin_lock_irqsave(&q->lock, *flags);
3831 __add_wait_queue(q, wait);
3832 spin_unlock(&q->lock);
3833}
3834
3835static inline void
3836sleep_on_tail(wait_queue_head_t *q, wait_queue_t *wait, unsigned long *flags)
3837{
3838 spin_lock_irq(&q->lock);
3839 __remove_wait_queue(q, wait);
3840 spin_unlock_irqrestore(&q->lock, *flags);
3841}
3842
3843void __sched interruptible_sleep_on(wait_queue_head_t *q)
3844{
3845 unsigned long flags;
3846 wait_queue_t wait;
3847
3848 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849
3850 current->state = TASK_INTERRUPTIBLE;
3851
Ingo Molnar0fec1712007-07-09 18:52:01 +02003852 sleep_on_head(q, &wait, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 schedule();
Ingo Molnar0fec1712007-07-09 18:52:01 +02003854 sleep_on_tail(q, &wait, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856EXPORT_SYMBOL(interruptible_sleep_on);
3857
Ingo Molnar0fec1712007-07-09 18:52:01 +02003858long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003859interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860{
Ingo Molnar0fec1712007-07-09 18:52:01 +02003861 unsigned long flags;
3862 wait_queue_t wait;
3863
3864 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865
3866 current->state = TASK_INTERRUPTIBLE;
3867
Ingo Molnar0fec1712007-07-09 18:52:01 +02003868 sleep_on_head(q, &wait, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869 timeout = schedule_timeout(timeout);
Ingo Molnar0fec1712007-07-09 18:52:01 +02003870 sleep_on_tail(q, &wait, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871
3872 return timeout;
3873}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874EXPORT_SYMBOL(interruptible_sleep_on_timeout);
3875
Ingo Molnar0fec1712007-07-09 18:52:01 +02003876void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877{
Ingo Molnar0fec1712007-07-09 18:52:01 +02003878 unsigned long flags;
3879 wait_queue_t wait;
3880
3881 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882
3883 current->state = TASK_UNINTERRUPTIBLE;
3884
Ingo Molnar0fec1712007-07-09 18:52:01 +02003885 sleep_on_head(q, &wait, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886 schedule();
Ingo Molnar0fec1712007-07-09 18:52:01 +02003887 sleep_on_tail(q, &wait, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889EXPORT_SYMBOL(sleep_on);
3890
Ingo Molnar0fec1712007-07-09 18:52:01 +02003891long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892{
Ingo Molnar0fec1712007-07-09 18:52:01 +02003893 unsigned long flags;
3894 wait_queue_t wait;
3895
3896 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897
3898 current->state = TASK_UNINTERRUPTIBLE;
3899
Ingo Molnar0fec1712007-07-09 18:52:01 +02003900 sleep_on_head(q, &wait, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901 timeout = schedule_timeout(timeout);
Ingo Molnar0fec1712007-07-09 18:52:01 +02003902 sleep_on_tail(q, &wait, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903
3904 return timeout;
3905}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906EXPORT_SYMBOL(sleep_on_timeout);
3907
Ingo Molnarb29739f2006-06-27 02:54:51 -07003908#ifdef CONFIG_RT_MUTEXES
3909
3910/*
3911 * rt_mutex_setprio - set the current priority of a task
3912 * @p: task
3913 * @prio: prio value (kernel-internal form)
3914 *
3915 * This function changes the 'effective' priority of a task. It does
3916 * not touch ->normal_prio like __setscheduler().
3917 *
3918 * Used by the rt_mutex code to implement priority inheritance logic.
3919 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003920void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07003921{
3922 unsigned long flags;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02003923 int oldprio, on_rq, running;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003924 struct rq *rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -07003925
3926 BUG_ON(prio < 0 || prio > MAX_PRIO);
3927
3928 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02003929 update_rq_clock(rq);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003930
Andrew Mortond5f9f942007-05-08 20:27:06 -07003931 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02003932 on_rq = p->se.on_rq;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02003933 running = task_running(rq, p);
3934 if (on_rq) {
Ingo Molnar69be72c2007-08-09 11:16:49 +02003935 dequeue_task(rq, p, 0);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02003936 if (running)
3937 p->sched_class->put_prev_task(rq, p);
3938 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003939
3940 if (rt_prio(prio))
3941 p->sched_class = &rt_sched_class;
3942 else
3943 p->sched_class = &fair_sched_class;
3944
Ingo Molnarb29739f2006-06-27 02:54:51 -07003945 p->prio = prio;
3946
Ingo Molnardd41f592007-07-09 18:51:59 +02003947 if (on_rq) {
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02003948 if (running)
3949 p->sched_class->set_curr_task(rq);
Ingo Molnar8159f872007-08-09 11:16:49 +02003950 enqueue_task(rq, p, 0);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003951 /*
3952 * Reschedule if we are currently running on this runqueue and
Andrew Mortond5f9f942007-05-08 20:27:06 -07003953 * our priority decreased, or if we are not currently running on
3954 * this runqueue and our priority is higher than the current's
Ingo Molnarb29739f2006-06-27 02:54:51 -07003955 */
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02003956 if (running) {
Andrew Mortond5f9f942007-05-08 20:27:06 -07003957 if (p->prio > oldprio)
3958 resched_task(rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02003959 } else {
3960 check_preempt_curr(rq, p);
3961 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07003962 }
3963 task_rq_unlock(rq, &flags);
3964}
3965
3966#endif
3967
Ingo Molnar36c8b582006-07-03 00:25:41 -07003968void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969{
Ingo Molnardd41f592007-07-09 18:51:59 +02003970 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003972 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973
3974 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
3975 return;
3976 /*
3977 * We have to be careful, if called from sys_setpriority(),
3978 * the task might be in the middle of scheduling on another CPU.
3979 */
3980 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02003981 update_rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982 /*
3983 * The RT priorities are set via sched_setscheduler(), but we still
3984 * allow the 'normal' nice value to be set - but as expected
3985 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02003986 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 */
Ingo Molnare05606d2007-07-09 18:51:59 +02003988 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989 p->static_prio = NICE_TO_PRIO(nice);
3990 goto out_unlock;
3991 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003992 on_rq = p->se.on_rq;
3993 if (on_rq) {
Ingo Molnar69be72c2007-08-09 11:16:49 +02003994 dequeue_task(rq, p, 0);
Ingo Molnar79b5ddd2007-08-09 11:16:49 +02003995 dec_load(rq, p);
Peter Williams2dd73a42006-06-27 02:54:34 -07003996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07003999 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004000 old_prio = p->prio;
4001 p->prio = effective_prio(p);
4002 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003
Ingo Molnardd41f592007-07-09 18:51:59 +02004004 if (on_rq) {
Ingo Molnar8159f872007-08-09 11:16:49 +02004005 enqueue_task(rq, p, 0);
Ingo Molnar29b4b622007-08-09 11:16:49 +02004006 inc_load(rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07004008 * If the task increased its priority or is running and
4009 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07004011 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012 resched_task(rq->curr);
4013 }
4014out_unlock:
4015 task_rq_unlock(rq, &flags);
4016}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017EXPORT_SYMBOL(set_user_nice);
4018
Matt Mackalle43379f2005-05-01 08:59:00 -07004019/*
4020 * can_nice - check if a task can reduce its nice value
4021 * @p: task
4022 * @nice: nice value
4023 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004024int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07004025{
Matt Mackall024f4742005-08-18 11:24:19 -07004026 /* convert nice value [19,-20] to rlimit style value [1,40] */
4027 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004028
Matt Mackalle43379f2005-05-01 08:59:00 -07004029 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
4030 capable(CAP_SYS_NICE));
4031}
4032
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033#ifdef __ARCH_WANT_SYS_NICE
4034
4035/*
4036 * sys_nice - change the priority of the current process.
4037 * @increment: priority increment
4038 *
4039 * sys_setpriority is a more generic, but much slower function that
4040 * does similar things.
4041 */
4042asmlinkage long sys_nice(int increment)
4043{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004044 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045
4046 /*
4047 * Setpriority might change our priority at the same moment.
4048 * We don't have to worry. Conceptually one call occurs first
4049 * and we have a single winner.
4050 */
Matt Mackalle43379f2005-05-01 08:59:00 -07004051 if (increment < -40)
4052 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053 if (increment > 40)
4054 increment = 40;
4055
4056 nice = PRIO_TO_NICE(current->static_prio) + increment;
4057 if (nice < -20)
4058 nice = -20;
4059 if (nice > 19)
4060 nice = 19;
4061
Matt Mackalle43379f2005-05-01 08:59:00 -07004062 if (increment < 0 && !can_nice(current, nice))
4063 return -EPERM;
4064
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065 retval = security_task_setnice(current, nice);
4066 if (retval)
4067 return retval;
4068
4069 set_user_nice(current, nice);
4070 return 0;
4071}
4072
4073#endif
4074
4075/**
4076 * task_prio - return the priority value of a given task.
4077 * @p: the task in question.
4078 *
4079 * This is the priority value as seen by users in /proc.
4080 * RT tasks are offset by -200. Normal tasks are centered
4081 * around 0, value goes from -16 to +15.
4082 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004083int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084{
4085 return p->prio - MAX_RT_PRIO;
4086}
4087
4088/**
4089 * task_nice - return the nice value of a given task.
4090 * @p: the task in question.
4091 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004092int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093{
4094 return TASK_NICE(p);
4095}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096EXPORT_SYMBOL_GPL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097
4098/**
4099 * idle_cpu - is a given cpu idle currently?
4100 * @cpu: the processor in question.
4101 */
4102int idle_cpu(int cpu)
4103{
4104 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
4105}
4106
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107/**
4108 * idle_task - return the idle task for a given cpu.
4109 * @cpu: the processor in question.
4110 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004111struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112{
4113 return cpu_rq(cpu)->idle;
4114}
4115
4116/**
4117 * find_process_by_pid - find a process with a matching PID value.
4118 * @pid: the pid in question.
4119 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004120static inline struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121{
4122 return pid ? find_task_by_pid(pid) : current;
4123}
4124
4125/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02004126static void
4127__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128{
Ingo Molnardd41f592007-07-09 18:51:59 +02004129 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004130
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02004132 switch (p->policy) {
4133 case SCHED_NORMAL:
4134 case SCHED_BATCH:
4135 case SCHED_IDLE:
4136 p->sched_class = &fair_sched_class;
4137 break;
4138 case SCHED_FIFO:
4139 case SCHED_RR:
4140 p->sched_class = &rt_sched_class;
4141 break;
4142 }
4143
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004145 p->normal_prio = normal_prio(p);
4146 /* we are holding p->pi_lock already */
4147 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07004148 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149}
4150
4151/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004152 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153 * @p: the task in question.
4154 * @policy: new policy.
4155 * @param: structure containing the new RT priority.
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004156 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004157 * NOTE that the task may be already dead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004159int sched_setscheduler(struct task_struct *p, int policy,
4160 struct sched_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161{
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004162 int retval, oldprio, oldpolicy = -1, on_rq, running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004164 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165
Steven Rostedt66e53932006-06-27 02:54:44 -07004166 /* may grab non-irq protected spin_locks */
4167 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168recheck:
4169 /* double check policy once rq lock held */
4170 if (policy < 0)
4171 policy = oldpolicy = p->policy;
4172 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02004173 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
4174 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08004175 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176 /*
4177 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02004178 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
4179 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180 */
4181 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004182 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04004183 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02004185 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186 return -EINVAL;
4187
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004188 /*
4189 * Allow unprivileged RT tasks to decrease priority:
4190 */
4191 if (!capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02004192 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004193 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004194
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004195 if (!lock_task_sighand(p, &flags))
4196 return -ESRCH;
4197 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
4198 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004199
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004200 /* can't set/change the rt policy */
4201 if (policy != p->policy && !rlim_rtprio)
4202 return -EPERM;
4203
4204 /* can't increase priority */
4205 if (param->sched_priority > p->rt_priority &&
4206 param->sched_priority > rlim_rtprio)
4207 return -EPERM;
4208 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004209 /*
4210 * Like positive nice levels, dont allow tasks to
4211 * move out of SCHED_IDLE either:
4212 */
4213 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
4214 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004215
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004216 /* can't change other user's priorities */
4217 if ((current->euid != p->euid) &&
4218 (current->euid != p->uid))
4219 return -EPERM;
4220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221
4222 retval = security_task_setscheduler(p, policy, param);
4223 if (retval)
4224 return retval;
4225 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07004226 * make sure no PI-waiters arrive (or leave) while we are
4227 * changing the priority of the task:
4228 */
4229 spin_lock_irqsave(&p->pi_lock, flags);
4230 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231 * To be able to change p->policy safely, the apropriate
4232 * runqueue lock must be held.
4233 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07004234 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235 /* recheck policy now with rq lock held */
4236 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
4237 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004238 __task_rq_unlock(rq);
4239 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240 goto recheck;
4241 }
Ingo Molnar2daa3572007-08-09 11:16:51 +02004242 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004243 on_rq = p->se.on_rq;
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004244 running = task_running(rq, p);
4245 if (on_rq) {
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004246 deactivate_task(rq, p, 0);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004247 if (running)
4248 p->sched_class->put_prev_task(rq, p);
4249 }
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02004250
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004252 __setscheduler(rq, p, policy, param->sched_priority);
Dmitry Adamushkof6b53202007-10-15 17:00:08 +02004253
Ingo Molnardd41f592007-07-09 18:51:59 +02004254 if (on_rq) {
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004255 if (running)
4256 p->sched_class->set_curr_task(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02004257 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258 /*
4259 * Reschedule if we are currently running on this runqueue and
Andrew Mortond5f9f942007-05-08 20:27:06 -07004260 * our priority decreased, or if we are not currently running on
4261 * this runqueue and our priority is higher than the current's
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262 */
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02004263 if (running) {
Andrew Mortond5f9f942007-05-08 20:27:06 -07004264 if (p->prio > oldprio)
4265 resched_task(rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02004266 } else {
4267 check_preempt_curr(rq, p);
4268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07004270 __task_rq_unlock(rq);
4271 spin_unlock_irqrestore(&p->pi_lock, flags);
4272
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07004273 rt_mutex_adjust_pi(p);
4274
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275 return 0;
4276}
4277EXPORT_SYMBOL_GPL(sched_setscheduler);
4278
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004279static int
4280do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282 struct sched_param lparam;
4283 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004284 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285
4286 if (!param || pid < 0)
4287 return -EINVAL;
4288 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
4289 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004290
4291 rcu_read_lock();
4292 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004294 if (p != NULL)
4295 retval = sched_setscheduler(p, policy, &lparam);
4296 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07004297
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298 return retval;
4299}
4300
4301/**
4302 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
4303 * @pid: the pid in question.
4304 * @policy: new policy.
4305 * @param: structure containing the new RT priority.
4306 */
4307asmlinkage long sys_sched_setscheduler(pid_t pid, int policy,
4308 struct sched_param __user *param)
4309{
Jason Baronc21761f2006-01-18 17:43:03 -08004310 /* negative values for policy are not valid */
4311 if (policy < 0)
4312 return -EINVAL;
4313
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314 return do_sched_setscheduler(pid, policy, param);
4315}
4316
4317/**
4318 * sys_sched_setparam - set/change the RT priority of a thread
4319 * @pid: the pid in question.
4320 * @param: structure containing the new RT priority.
4321 */
4322asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
4323{
4324 return do_sched_setscheduler(pid, -1, param);
4325}
4326
4327/**
4328 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
4329 * @pid: the pid in question.
4330 */
4331asmlinkage long sys_sched_getscheduler(pid_t pid)
4332{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004333 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335
4336 if (pid < 0)
4337 goto out_nounlock;
4338
4339 retval = -ESRCH;
4340 read_lock(&tasklist_lock);
4341 p = find_process_by_pid(pid);
4342 if (p) {
4343 retval = security_task_getscheduler(p);
4344 if (!retval)
4345 retval = p->policy;
4346 }
4347 read_unlock(&tasklist_lock);
4348
4349out_nounlock:
4350 return retval;
4351}
4352
4353/**
4354 * sys_sched_getscheduler - get the RT priority of a thread
4355 * @pid: the pid in question.
4356 * @param: structure containing the RT priority.
4357 */
4358asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
4359{
4360 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004361 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363
4364 if (!param || pid < 0)
4365 goto out_nounlock;
4366
4367 read_lock(&tasklist_lock);
4368 p = find_process_by_pid(pid);
4369 retval = -ESRCH;
4370 if (!p)
4371 goto out_unlock;
4372
4373 retval = security_task_getscheduler(p);
4374 if (retval)
4375 goto out_unlock;
4376
4377 lp.sched_priority = p->rt_priority;
4378 read_unlock(&tasklist_lock);
4379
4380 /*
4381 * This one might sleep, we cannot do it with a spinlock held ...
4382 */
4383 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
4384
4385out_nounlock:
4386 return retval;
4387
4388out_unlock:
4389 read_unlock(&tasklist_lock);
4390 return retval;
4391}
4392
4393long sched_setaffinity(pid_t pid, cpumask_t new_mask)
4394{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395 cpumask_t cpus_allowed;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004396 struct task_struct *p;
4397 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398
Gautham R Shenoy5be93612007-05-09 02:34:04 -07004399 mutex_lock(&sched_hotcpu_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400 read_lock(&tasklist_lock);
4401
4402 p = find_process_by_pid(pid);
4403 if (!p) {
4404 read_unlock(&tasklist_lock);
Gautham R Shenoy5be93612007-05-09 02:34:04 -07004405 mutex_unlock(&sched_hotcpu_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406 return -ESRCH;
4407 }
4408
4409 /*
4410 * It is not safe to call set_cpus_allowed with the
4411 * tasklist_lock held. We will bump the task_struct's
4412 * usage count and then drop tasklist_lock.
4413 */
4414 get_task_struct(p);
4415 read_unlock(&tasklist_lock);
4416
4417 retval = -EPERM;
4418 if ((current->euid != p->euid) && (current->euid != p->uid) &&
4419 !capable(CAP_SYS_NICE))
4420 goto out_unlock;
4421
David Quigleye7834f82006-06-23 02:03:59 -07004422 retval = security_task_setscheduler(p, 0, NULL);
4423 if (retval)
4424 goto out_unlock;
4425
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426 cpus_allowed = cpuset_cpus_allowed(p);
4427 cpus_and(new_mask, new_mask, cpus_allowed);
4428 retval = set_cpus_allowed(p, new_mask);
4429
4430out_unlock:
4431 put_task_struct(p);
Gautham R Shenoy5be93612007-05-09 02:34:04 -07004432 mutex_unlock(&sched_hotcpu_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433 return retval;
4434}
4435
4436static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
4437 cpumask_t *new_mask)
4438{
4439 if (len < sizeof(cpumask_t)) {
4440 memset(new_mask, 0, sizeof(cpumask_t));
4441 } else if (len > sizeof(cpumask_t)) {
4442 len = sizeof(cpumask_t);
4443 }
4444 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
4445}
4446
4447/**
4448 * sys_sched_setaffinity - set the cpu affinity of a process
4449 * @pid: pid of the process
4450 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4451 * @user_mask_ptr: user-space pointer to the new cpu mask
4452 */
4453asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
4454 unsigned long __user *user_mask_ptr)
4455{
4456 cpumask_t new_mask;
4457 int retval;
4458
4459 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
4460 if (retval)
4461 return retval;
4462
4463 return sched_setaffinity(pid, new_mask);
4464}
4465
4466/*
4467 * Represents all cpu's present in the system
4468 * In systems capable of hotplug, this map could dynamically grow
4469 * as new cpu's are detected in the system via any platform specific
4470 * method, such as ACPI for e.g.
4471 */
4472
Andi Kleen4cef0c62006-01-11 22:44:57 +01004473cpumask_t cpu_present_map __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474EXPORT_SYMBOL(cpu_present_map);
4475
4476#ifndef CONFIG_SMP
Andi Kleen4cef0c62006-01-11 22:44:57 +01004477cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004478EXPORT_SYMBOL(cpu_online_map);
4479
Andi Kleen4cef0c62006-01-11 22:44:57 +01004480cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004481EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482#endif
4483
4484long sched_getaffinity(pid_t pid, cpumask_t *mask)
4485{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004486 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488
Gautham R Shenoy5be93612007-05-09 02:34:04 -07004489 mutex_lock(&sched_hotcpu_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490 read_lock(&tasklist_lock);
4491
4492 retval = -ESRCH;
4493 p = find_process_by_pid(pid);
4494 if (!p)
4495 goto out_unlock;
4496
David Quigleye7834f82006-06-23 02:03:59 -07004497 retval = security_task_getscheduler(p);
4498 if (retval)
4499 goto out_unlock;
4500
Jack Steiner2f7016d2006-02-01 03:05:18 -08004501 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502
4503out_unlock:
4504 read_unlock(&tasklist_lock);
Gautham R Shenoy5be93612007-05-09 02:34:04 -07004505 mutex_unlock(&sched_hotcpu_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506
Ulrich Drepper9531b622007-08-09 11:16:46 +02004507 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508}
4509
4510/**
4511 * sys_sched_getaffinity - get the cpu affinity of a process
4512 * @pid: pid of the process
4513 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4514 * @user_mask_ptr: user-space pointer to hold the current cpu mask
4515 */
4516asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
4517 unsigned long __user *user_mask_ptr)
4518{
4519 int ret;
4520 cpumask_t mask;
4521
4522 if (len < sizeof(cpumask_t))
4523 return -EINVAL;
4524
4525 ret = sched_getaffinity(pid, &mask);
4526 if (ret < 0)
4527 return ret;
4528
4529 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
4530 return -EFAULT;
4531
4532 return sizeof(cpumask_t);
4533}
4534
4535/**
4536 * sys_sched_yield - yield the current processor to other threads.
4537 *
Ingo Molnardd41f592007-07-09 18:51:59 +02004538 * This function yields the current CPU to other tasks. If there are no
4539 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540 */
4541asmlinkage long sys_sched_yield(void)
4542{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004543 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544
4545 schedstat_inc(rq, yld_cnt);
Dmitry Adamushko4530d7a2007-10-15 17:00:08 +02004546 current->sched_class->yield_task(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547
4548 /*
4549 * Since we are going to call schedule() anyway, there's
4550 * no need to preempt or enable interrupts:
4551 */
4552 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004553 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554 _raw_spin_unlock(&rq->lock);
4555 preempt_enable_no_resched();
4556
4557 schedule();
4558
4559 return 0;
4560}
4561
Andrew Mortone7b38402006-06-30 01:56:00 -07004562static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07004564#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
4565 __might_sleep(__FILE__, __LINE__);
4566#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07004567 /*
4568 * The BKS might be reacquired before we have dropped
4569 * PREEMPT_ACTIVE, which could trigger a second
4570 * cond_resched() call.
4571 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572 do {
4573 add_preempt_count(PREEMPT_ACTIVE);
4574 schedule();
4575 sub_preempt_count(PREEMPT_ACTIVE);
4576 } while (need_resched());
4577}
4578
4579int __sched cond_resched(void)
4580{
Ingo Molnar94142322006-12-29 16:48:13 -08004581 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
4582 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583 __cond_resched();
4584 return 1;
4585 }
4586 return 0;
4587}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588EXPORT_SYMBOL(cond_resched);
4589
4590/*
4591 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
4592 * call schedule, and on return reacquire the lock.
4593 *
4594 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
4595 * operations here to prevent schedule() from being called twice (once via
4596 * spin_unlock(), once by hand).
4597 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004598int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599{
Jan Kara6df3cec2005-06-13 15:52:32 -07004600 int ret = 0;
4601
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602 if (need_lockbreak(lock)) {
4603 spin_unlock(lock);
4604 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07004605 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606 spin_lock(lock);
4607 }
Ingo Molnar94142322006-12-29 16:48:13 -08004608 if (need_resched() && system_state == SYSTEM_RUNNING) {
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004609 spin_release(&lock->dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610 _raw_spin_unlock(lock);
4611 preempt_enable_no_resched();
4612 __cond_resched();
Jan Kara6df3cec2005-06-13 15:52:32 -07004613 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615 }
Jan Kara6df3cec2005-06-13 15:52:32 -07004616 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004617}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618EXPORT_SYMBOL(cond_resched_lock);
4619
4620int __sched cond_resched_softirq(void)
4621{
4622 BUG_ON(!in_softirq());
4623
Ingo Molnar94142322006-12-29 16:48:13 -08004624 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d825672007-05-23 13:58:18 -07004625 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626 __cond_resched();
4627 local_bh_disable();
4628 return 1;
4629 }
4630 return 0;
4631}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632EXPORT_SYMBOL(cond_resched_softirq);
4633
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634/**
4635 * yield - yield the current processor to other threads.
4636 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004637 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638 * thread runnable and calls sys_sched_yield().
4639 */
4640void __sched yield(void)
4641{
4642 set_current_state(TASK_RUNNING);
4643 sys_sched_yield();
4644}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645EXPORT_SYMBOL(yield);
4646
4647/*
4648 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
4649 * that process accounting knows that this is a task in IO wait state.
4650 *
4651 * But don't do that if it is a deliberate, throttling IO wait (this task
4652 * has set its backing_dev_info: the queue against which it should throttle)
4653 */
4654void __sched io_schedule(void)
4655{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004656 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004658 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659 atomic_inc(&rq->nr_iowait);
4660 schedule();
4661 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004662 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664EXPORT_SYMBOL(io_schedule);
4665
4666long __sched io_schedule_timeout(long timeout)
4667{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004668 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669 long ret;
4670
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004671 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672 atomic_inc(&rq->nr_iowait);
4673 ret = schedule_timeout(timeout);
4674 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004675 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676 return ret;
4677}
4678
4679/**
4680 * sys_sched_get_priority_max - return maximum RT priority.
4681 * @policy: scheduling class.
4682 *
4683 * this syscall returns the maximum rt_priority that can be used
4684 * by a given scheduling class.
4685 */
4686asmlinkage long sys_sched_get_priority_max(int policy)
4687{
4688 int ret = -EINVAL;
4689
4690 switch (policy) {
4691 case SCHED_FIFO:
4692 case SCHED_RR:
4693 ret = MAX_USER_RT_PRIO-1;
4694 break;
4695 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08004696 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02004697 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698 ret = 0;
4699 break;
4700 }
4701 return ret;
4702}
4703
4704/**
4705 * sys_sched_get_priority_min - return minimum RT priority.
4706 * @policy: scheduling class.
4707 *
4708 * this syscall returns the minimum rt_priority that can be used
4709 * by a given scheduling class.
4710 */
4711asmlinkage long sys_sched_get_priority_min(int policy)
4712{
4713 int ret = -EINVAL;
4714
4715 switch (policy) {
4716 case SCHED_FIFO:
4717 case SCHED_RR:
4718 ret = 1;
4719 break;
4720 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08004721 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02004722 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723 ret = 0;
4724 }
4725 return ret;
4726}
4727
4728/**
4729 * sys_sched_rr_get_interval - return the default timeslice of a process.
4730 * @pid: pid of the process.
4731 * @interval: userspace pointer to the timeslice value.
4732 *
4733 * this syscall writes the default timeslice value of a given process
4734 * into the user-space timespec buffer. A value of '0' means infinity.
4735 */
4736asmlinkage
4737long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
4738{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004739 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740 int retval = -EINVAL;
4741 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742
4743 if (pid < 0)
4744 goto out_nounlock;
4745
4746 retval = -ESRCH;
4747 read_lock(&tasklist_lock);
4748 p = find_process_by_pid(pid);
4749 if (!p)
4750 goto out_unlock;
4751
4752 retval = security_task_getscheduler(p);
4753 if (retval)
4754 goto out_unlock;
4755
Peter Williamsb78709c2006-06-26 16:58:00 +10004756 jiffies_to_timespec(p->policy == SCHED_FIFO ?
Ingo Molnardd41f592007-07-09 18:51:59 +02004757 0 : static_prio_timeslice(p->static_prio), &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758 read_unlock(&tasklist_lock);
4759 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
4760out_nounlock:
4761 return retval;
4762out_unlock:
4763 read_unlock(&tasklist_lock);
4764 return retval;
4765}
4766
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004767static const char stat_nam[] = "RSDTtZX";
Ingo Molnar36c8b582006-07-03 00:25:41 -07004768
4769static void show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004771 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004772 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774 state = p->state ? __ffs(p->state) + 1 : 0;
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004775 printk("%-13.13s %c", p->comm,
4776 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02004777#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004778 if (state == TASK_RUNNING)
Ingo Molnar4bd77322007-07-11 21:21:47 +02004779 printk(" running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780 else
Ingo Molnar4bd77322007-07-11 21:21:47 +02004781 printk(" %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004782#else
4783 if (state == TASK_RUNNING)
Ingo Molnar4bd77322007-07-11 21:21:47 +02004784 printk(" running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785 else
4786 printk(" %016lx ", thread_saved_pc(p));
4787#endif
4788#ifdef CONFIG_DEBUG_STACK_USAGE
4789 {
Al Viro10ebffd2005-11-13 16:06:56 -08004790 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791 while (!*n)
4792 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08004793 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794 }
4795#endif
Ingo Molnar4bd77322007-07-11 21:21:47 +02004796 printk("%5lu %5d %6d\n", free, p->pid, p->parent->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004797
4798 if (state != TASK_RUNNING)
4799 show_stack(p, NULL);
4800}
4801
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004802void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004804 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805
Ingo Molnar4bd77322007-07-11 21:21:47 +02004806#if BITS_PER_LONG == 32
4807 printk(KERN_INFO
4808 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02004810 printk(KERN_INFO
4811 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004812#endif
4813 read_lock(&tasklist_lock);
4814 do_each_thread(g, p) {
4815 /*
4816 * reset the NMI-timeout, listing all files on a slow
4817 * console might take alot of time:
4818 */
4819 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07004820 if (!state_filter || (p->state & state_filter))
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004821 show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822 } while_each_thread(g, p);
4823
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07004824 touch_all_softlockup_watchdogs();
4825
Ingo Molnardd41f592007-07-09 18:51:59 +02004826#ifdef CONFIG_SCHED_DEBUG
4827 sysrq_sched_debug_show();
4828#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004830 /*
4831 * Only show locks if all tasks are dumped:
4832 */
4833 if (state_filter == -1)
4834 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835}
4836
Ingo Molnar1df21052007-07-09 18:51:58 +02004837void __cpuinit init_idle_bootup_task(struct task_struct *idle)
4838{
Ingo Molnardd41f592007-07-09 18:51:59 +02004839 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02004840}
4841
Ingo Molnarf340c0d2005-06-28 16:40:42 +02004842/**
4843 * init_idle - set up an idle thread for a given CPU
4844 * @idle: task in question
4845 * @cpu: cpu the idle task belongs to
4846 *
4847 * NOTE: this function does not set the idle thread's NEED_RESCHED
4848 * flag, to make booting more robust.
4849 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07004850void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004851{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004852 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853 unsigned long flags;
4854
Ingo Molnardd41f592007-07-09 18:51:59 +02004855 __sched_fork(idle);
4856 idle->se.exec_start = sched_clock();
4857
Ingo Molnarb29739f2006-06-27 02:54:51 -07004858 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859 idle->cpus_allowed = cpumask_of_cpu(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004860 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004861
4862 spin_lock_irqsave(&rq->lock, flags);
4863 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07004864#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
4865 idle->oncpu = 1;
4866#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867 spin_unlock_irqrestore(&rq->lock, flags);
4868
4869 /* Set the preempt count _outside_ the spinlocks! */
4870#if defined(CONFIG_PREEMPT) && !defined(CONFIG_PREEMPT_BKL)
Al Viroa1261f52005-11-13 16:06:55 -08004871 task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872#else
Al Viroa1261f52005-11-13 16:06:55 -08004873 task_thread_info(idle)->preempt_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02004875 /*
4876 * The idle tasks have their own, simple scheduling class:
4877 */
4878 idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879}
4880
4881/*
4882 * In a system that switches off the HZ timer nohz_cpu_mask
4883 * indicates which cpus entered this state. This is used
4884 * in the rcu update to wait only for active cpus. For system
4885 * which do not switch off the HZ timer nohz_cpu_mask should
4886 * always be CPU_MASK_NONE.
4887 */
4888cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
4889
4890#ifdef CONFIG_SMP
4891/*
4892 * This is how migration works:
4893 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07004894 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895 * runqueue and wake up that CPU's migration thread.
4896 * 2) we down() the locked semaphore => thread blocks.
4897 * 3) migration thread wakes up (implicitly it forces the migrated
4898 * thread off the CPU)
4899 * 4) it gets the migration request and checks whether the migrated
4900 * task is still in the wrong runqueue.
4901 * 5) if it's in the wrong runqueue then the migration thread removes
4902 * it and puts it into the right queue.
4903 * 6) migration thread up()s the semaphore.
4904 * 7) we wake up and the migration is done.
4905 */
4906
4907/*
4908 * Change a given task's CPU affinity. Migrate the thread to a
4909 * proper CPU and schedule it away if the CPU it's executing on
4910 * is removed from the allowed bitmask.
4911 *
4912 * NOTE: the caller must have a valid reference to the task, the
4913 * task must not exit() & deallocate itself prematurely. The
4914 * call is not atomic; no spinlocks may be held.
4915 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004916int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004918 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004920 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004921 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004922
4923 rq = task_rq_lock(p, &flags);
4924 if (!cpus_intersects(new_mask, cpu_online_map)) {
4925 ret = -EINVAL;
4926 goto out;
4927 }
4928
4929 p->cpus_allowed = new_mask;
4930 /* Can the task run on the task's current CPU? If so, we're done */
4931 if (cpu_isset(task_cpu(p), new_mask))
4932 goto out;
4933
4934 if (migrate_task(p, any_online_cpu(new_mask), &req)) {
4935 /* Need help from migration thread: drop lock and wait. */
4936 task_rq_unlock(rq, &flags);
4937 wake_up_process(rq->migration_thread);
4938 wait_for_completion(&req.done);
4939 tlb_migrate_finish(p->mm);
4940 return 0;
4941 }
4942out:
4943 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004944
Linus Torvalds1da177e2005-04-16 15:20:36 -07004945 return ret;
4946}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947EXPORT_SYMBOL_GPL(set_cpus_allowed);
4948
4949/*
4950 * Move (not current) task off this cpu, onto dest cpu. We're doing
4951 * this because either it can't run here any more (set_cpus_allowed()
4952 * away from this CPU, or CPU going down), or because we're
4953 * attempting to rebalance this task on exec (sched_exec).
4954 *
4955 * So we race with normal scheduler movements, but that's OK, as long
4956 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07004957 *
4958 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07004960static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004962 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02004963 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964
4965 if (unlikely(cpu_is_offline(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07004966 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967
4968 rq_src = cpu_rq(src_cpu);
4969 rq_dest = cpu_rq(dest_cpu);
4970
4971 double_rq_lock(rq_src, rq_dest);
4972 /* Already moved. */
4973 if (task_cpu(p) != src_cpu)
4974 goto out;
4975 /* Affinity changed (again). */
4976 if (!cpu_isset(dest_cpu, p->cpus_allowed))
4977 goto out;
4978
Ingo Molnardd41f592007-07-09 18:51:59 +02004979 on_rq = p->se.on_rq;
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02004980 if (on_rq)
Ingo Molnar2e1cb742007-08-09 11:16:49 +02004981 deactivate_task(rq_src, p, 0);
Ingo Molnar6e82a3b2007-08-09 11:16:51 +02004982
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004984 if (on_rq) {
4985 activate_task(rq_dest, p, 0);
4986 check_preempt_curr(rq_dest, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987 }
Kirill Korotaevefc30812006-06-27 02:54:32 -07004988 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004989out:
4990 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07004991 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004992}
4993
4994/*
4995 * migration_thread - this is a highprio system thread that performs
4996 * thread migration by bumping thread off CPU then 'pushing' onto
4997 * another runqueue.
4998 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004999static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005000{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005002 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005003
5004 rq = cpu_rq(cpu);
5005 BUG_ON(rq->migration_thread != current);
5006
5007 set_current_state(TASK_INTERRUPTIBLE);
5008 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005009 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011
Linus Torvalds1da177e2005-04-16 15:20:36 -07005012 spin_lock_irq(&rq->lock);
5013
5014 if (cpu_is_offline(cpu)) {
5015 spin_unlock_irq(&rq->lock);
5016 goto wait_to_die;
5017 }
5018
5019 if (rq->active_balance) {
5020 active_load_balance(rq, cpu);
5021 rq->active_balance = 0;
5022 }
5023
5024 head = &rq->migration_queue;
5025
5026 if (list_empty(head)) {
5027 spin_unlock_irq(&rq->lock);
5028 schedule();
5029 set_current_state(TASK_INTERRUPTIBLE);
5030 continue;
5031 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07005032 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033 list_del_init(head->next);
5034
Nick Piggin674311d2005-06-25 14:57:27 -07005035 spin_unlock(&rq->lock);
5036 __migrate_task(req->task, cpu, req->dest_cpu);
5037 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005038
5039 complete(&req->done);
5040 }
5041 __set_current_state(TASK_RUNNING);
5042 return 0;
5043
5044wait_to_die:
5045 /* Wait for kthread_stop */
5046 set_current_state(TASK_INTERRUPTIBLE);
5047 while (!kthread_should_stop()) {
5048 schedule();
5049 set_current_state(TASK_INTERRUPTIBLE);
5050 }
5051 __set_current_state(TASK_RUNNING);
5052 return 0;
5053}
5054
5055#ifdef CONFIG_HOTPLUG_CPU
Kirill Korotaev054b9102006-12-10 02:20:11 -08005056/*
5057 * Figure out where task on dead CPU should go, use force if neccessary.
5058 * NOTE: interrupts should be disabled by the caller
5059 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005060static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061{
Kirill Korotaevefc30812006-06-27 02:54:32 -07005062 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005064 struct rq *rq;
5065 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005066
Kirill Korotaevefc30812006-06-27 02:54:32 -07005067restart:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005068 /* On same node? */
5069 mask = node_to_cpumask(cpu_to_node(dead_cpu));
Ingo Molnar48f24c42006-07-03 00:25:40 -07005070 cpus_and(mask, mask, p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005071 dest_cpu = any_online_cpu(mask);
5072
5073 /* On any allowed CPU? */
5074 if (dest_cpu == NR_CPUS)
Ingo Molnar48f24c42006-07-03 00:25:40 -07005075 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005076
5077 /* No more Mr. Nice Guy. */
5078 if (dest_cpu == NR_CPUS) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07005079 rq = task_rq_lock(p, &flags);
5080 cpus_setall(p->cpus_allowed);
5081 dest_cpu = any_online_cpu(p->cpus_allowed);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005082 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083
5084 /*
5085 * Don't tell them about moving exiting tasks or
5086 * kernel threads (both mm NULL), since they never
5087 * leave kernel.
5088 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005089 if (p->mm && printk_ratelimit())
Linus Torvalds1da177e2005-04-16 15:20:36 -07005090 printk(KERN_INFO "process %d (%s) no "
5091 "longer affine to cpu%d\n",
Ingo Molnar48f24c42006-07-03 00:25:40 -07005092 p->pid, p->comm, dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005093 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07005094 if (!__migrate_task(p, dead_cpu, dest_cpu))
Kirill Korotaevefc30812006-06-27 02:54:32 -07005095 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005096}
5097
5098/*
5099 * While a dead CPU has no uninterruptible tasks queued at this point,
5100 * it might still have a nonzero ->nr_uninterruptible counter, because
5101 * for performance reasons the counter is not stricly tracking tasks to
5102 * their home CPUs. So we just add the counter to another CPU's counter,
5103 * to keep the global sum constant after CPU-down:
5104 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07005105static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005107 struct rq *rq_dest = cpu_rq(any_online_cpu(CPU_MASK_ALL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005108 unsigned long flags;
5109
5110 local_irq_save(flags);
5111 double_rq_lock(rq_src, rq_dest);
5112 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
5113 rq_src->nr_uninterruptible = 0;
5114 double_rq_unlock(rq_src, rq_dest);
5115 local_irq_restore(flags);
5116}
5117
5118/* Run through task list and migrate tasks from the dead cpu. */
5119static void migrate_live_tasks(int src_cpu)
5120{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005121 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122
5123 write_lock_irq(&tasklist_lock);
5124
Ingo Molnar48f24c42006-07-03 00:25:40 -07005125 do_each_thread(t, p) {
5126 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005127 continue;
5128
Ingo Molnar48f24c42006-07-03 00:25:40 -07005129 if (task_cpu(p) == src_cpu)
5130 move_task_off_dead_cpu(src_cpu, p);
5131 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132
5133 write_unlock_irq(&tasklist_lock);
5134}
5135
Ingo Molnardd41f592007-07-09 18:51:59 +02005136/*
5137 * Schedules idle task to be the next runnable task on current CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005138 * It does so by boosting its priority to highest possible and adding it to
Ingo Molnar48f24c42006-07-03 00:25:40 -07005139 * the _front_ of the runqueue. Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005140 */
5141void sched_idle_next(void)
5142{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005143 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07005144 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145 struct task_struct *p = rq->idle;
5146 unsigned long flags;
5147
5148 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005149 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150
Ingo Molnar48f24c42006-07-03 00:25:40 -07005151 /*
5152 * Strictly not necessary since rest of the CPUs are stopped by now
5153 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154 */
5155 spin_lock_irqsave(&rq->lock, flags);
5156
Ingo Molnardd41f592007-07-09 18:51:59 +02005157 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005158
5159 /* Add idle task to the _front_ of its priority queue: */
Ingo Molnardd41f592007-07-09 18:51:59 +02005160 activate_idle_task(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161
5162 spin_unlock_irqrestore(&rq->lock, flags);
5163}
5164
Ingo Molnar48f24c42006-07-03 00:25:40 -07005165/*
5166 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167 * offline.
5168 */
5169void idle_task_exit(void)
5170{
5171 struct mm_struct *mm = current->active_mm;
5172
5173 BUG_ON(cpu_online(smp_processor_id()));
5174
5175 if (mm != &init_mm)
5176 switch_mm(mm, &init_mm, current);
5177 mmdrop(mm);
5178}
5179
Kirill Korotaev054b9102006-12-10 02:20:11 -08005180/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005181static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005183 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005184
5185 /* Must be exiting, otherwise would be on tasklist. */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005186 BUG_ON(p->exit_state != EXIT_ZOMBIE && p->exit_state != EXIT_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187
5188 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07005189 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190
Ingo Molnar48f24c42006-07-03 00:25:40 -07005191 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192
5193 /*
5194 * Drop lock around migration; if someone else moves it,
5195 * that's OK. No task can be added to this CPU, so iteration is
5196 * fine.
Kirill Korotaev054b9102006-12-10 02:20:11 -08005197 * NOTE: interrupts should be left disabled --dev@
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198 */
Kirill Korotaev054b9102006-12-10 02:20:11 -08005199 spin_unlock(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005200 move_task_off_dead_cpu(dead_cpu, p);
Kirill Korotaev054b9102006-12-10 02:20:11 -08005201 spin_lock(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202
Ingo Molnar48f24c42006-07-03 00:25:40 -07005203 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204}
5205
5206/* release_task() removes task from tasklist, so we won't find dead tasks. */
5207static void migrate_dead_tasks(unsigned int dead_cpu)
5208{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005209 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005210 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211
Ingo Molnardd41f592007-07-09 18:51:59 +02005212 for ( ; ; ) {
5213 if (!rq->nr_running)
5214 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02005215 update_rq_clock(rq);
Ingo Molnarff95f3d2007-08-09 11:16:49 +02005216 next = pick_next_task(rq, rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02005217 if (!next)
5218 break;
5219 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02005220
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221 }
5222}
5223#endif /* CONFIG_HOTPLUG_CPU */
5224
Nick Piggine692ab52007-07-26 13:40:43 +02005225#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
5226
5227static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005228 {
5229 .procname = "sched_domain",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005230 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005231 },
Nick Piggine692ab52007-07-26 13:40:43 +02005232 {0,},
5233};
5234
5235static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005236 {
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005237 .ctl_name = CTL_KERN,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005238 .procname = "kernel",
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005239 .mode = 0555,
Alexey Dobriyane0361852007-08-09 11:16:46 +02005240 .child = sd_ctl_dir,
5241 },
Nick Piggine692ab52007-07-26 13:40:43 +02005242 {0,},
5243};
5244
5245static struct ctl_table *sd_alloc_ctl_entry(int n)
5246{
5247 struct ctl_table *entry =
5248 kmalloc(n * sizeof(struct ctl_table), GFP_KERNEL);
5249
5250 BUG_ON(!entry);
5251 memset(entry, 0, n * sizeof(struct ctl_table));
5252
5253 return entry;
5254}
5255
5256static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02005257set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02005258 const char *procname, void *data, int maxlen,
5259 mode_t mode, proc_handler *proc_handler)
5260{
Nick Piggine692ab52007-07-26 13:40:43 +02005261 entry->procname = procname;
5262 entry->data = data;
5263 entry->maxlen = maxlen;
5264 entry->mode = mode;
5265 entry->proc_handler = proc_handler;
5266}
5267
5268static struct ctl_table *
5269sd_alloc_ctl_domain_table(struct sched_domain *sd)
5270{
5271 struct ctl_table *table = sd_alloc_ctl_entry(14);
5272
Alexey Dobriyane0361852007-08-09 11:16:46 +02005273 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005274 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005275 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005276 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005277 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005278 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005279 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005280 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005281 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005282 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005283 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005284 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005285 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005286 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005287 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02005288 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005289 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02005290 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005291 set_table_entry(&table[10], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02005292 &sd->cache_nice_tries,
5293 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005294 set_table_entry(&table[12], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02005295 sizeof(int), 0644, proc_dointvec_minmax);
5296
5297 return table;
5298}
5299
5300static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
5301{
5302 struct ctl_table *entry, *table;
5303 struct sched_domain *sd;
5304 int domain_num = 0, i;
5305 char buf[32];
5306
5307 for_each_domain(cpu, sd)
5308 domain_num++;
5309 entry = table = sd_alloc_ctl_entry(domain_num + 1);
5310
5311 i = 0;
5312 for_each_domain(cpu, sd) {
5313 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005314 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005315 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005316 entry->child = sd_alloc_ctl_domain_table(sd);
5317 entry++;
5318 i++;
5319 }
5320 return table;
5321}
5322
5323static struct ctl_table_header *sd_sysctl_header;
5324static void init_sched_domain_sysctl(void)
5325{
5326 int i, cpu_num = num_online_cpus();
5327 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
5328 char buf[32];
5329
5330 sd_ctl_dir[0].child = entry;
5331
5332 for (i = 0; i < cpu_num; i++, entry++) {
5333 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005334 entry->procname = kstrdup(buf, GFP_KERNEL);
Eric W. Biedermanc57baf12007-08-23 15:18:02 +02005335 entry->mode = 0555;
Nick Piggine692ab52007-07-26 13:40:43 +02005336 entry->child = sd_alloc_ctl_cpu_table(i);
5337 }
5338 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
5339}
5340#else
5341static void init_sched_domain_sysctl(void)
5342{
5343}
5344#endif
5345
Linus Torvalds1da177e2005-04-16 15:20:36 -07005346/*
5347 * migration_call - callback that gets triggered when a CPU is added.
5348 * Here we can start up the necessary migration thread for the new CPU.
5349 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005350static int __cpuinit
5351migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005353 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005354 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005356 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357
5358 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07005359 case CPU_LOCK_ACQUIRE:
5360 mutex_lock(&sched_hotcpu_mutex);
5361 break;
5362
Linus Torvalds1da177e2005-04-16 15:20:36 -07005363 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005364 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02005365 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005366 if (IS_ERR(p))
5367 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005368 kthread_bind(p, cpu);
5369 /* Must be high prio: stop_machine expects to yield to it. */
5370 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02005371 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372 task_rq_unlock(rq, &flags);
5373 cpu_rq(cpu)->migration_thread = p;
5374 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005375
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005377 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005378 /* Strictly unneccessary, as first user will wake it. */
5379 wake_up_process(cpu_rq(cpu)->migration_thread);
5380 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005381
Linus Torvalds1da177e2005-04-16 15:20:36 -07005382#ifdef CONFIG_HOTPLUG_CPU
5383 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005384 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07005385 if (!cpu_rq(cpu)->migration_thread)
5386 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005387 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08005388 kthread_bind(cpu_rq(cpu)->migration_thread,
5389 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005390 kthread_stop(cpu_rq(cpu)->migration_thread);
5391 cpu_rq(cpu)->migration_thread = NULL;
5392 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005393
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005395 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396 migrate_live_tasks(cpu);
5397 rq = cpu_rq(cpu);
5398 kthread_stop(rq->migration_thread);
5399 rq->migration_thread = NULL;
5400 /* Idle task back to normal (off runqueue, low prio) */
5401 rq = task_rq_lock(rq->idle, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02005402 update_rq_clock(rq);
Ingo Molnar2e1cb742007-08-09 11:16:49 +02005403 deactivate_task(rq, rq->idle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005404 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02005405 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
5406 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005407 migrate_dead_tasks(cpu);
5408 task_rq_unlock(rq, &flags);
5409 migrate_nr_uninterruptible(rq);
5410 BUG_ON(rq->nr_running != 0);
5411
5412 /* No need to migrate the tasks: it was best-effort if
Gautham R Shenoy5be93612007-05-09 02:34:04 -07005413 * they didn't take sched_hotcpu_mutex. Just wake up
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414 * the requestors. */
5415 spin_lock_irq(&rq->lock);
5416 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005417 struct migration_req *req;
5418
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07005420 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421 list_del_init(&req->list);
5422 complete(&req->done);
5423 }
5424 spin_unlock_irq(&rq->lock);
5425 break;
5426#endif
Gautham R Shenoy5be93612007-05-09 02:34:04 -07005427 case CPU_LOCK_RELEASE:
5428 mutex_unlock(&sched_hotcpu_mutex);
5429 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005430 }
5431 return NOTIFY_OK;
5432}
5433
5434/* Register at highest priority so that task migration (migrate_all_tasks)
5435 * happens before everything else.
5436 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07005437static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005438 .notifier_call = migration_call,
5439 .priority = 10
5440};
5441
5442int __init migration_init(void)
5443{
5444 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07005445 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005446
5447 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07005448 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
5449 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005450 migration_call(&migration_notifier, CPU_ONLINE, cpu);
5451 register_cpu_notifier(&migration_notifier);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005452
Linus Torvalds1da177e2005-04-16 15:20:36 -07005453 return 0;
5454}
5455#endif
5456
5457#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07005458
5459/* Number of possible processor ids */
5460int nr_cpu_ids __read_mostly = NR_CPUS;
5461EXPORT_SYMBOL(nr_cpu_ids);
5462
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07005463#undef SCHED_DOMAIN_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464#ifdef SCHED_DOMAIN_DEBUG
5465static void sched_domain_debug(struct sched_domain *sd, int cpu)
5466{
5467 int level = 0;
5468
Nick Piggin41c7ce92005-06-25 14:57:24 -07005469 if (!sd) {
5470 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
5471 return;
5472 }
5473
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
5475
5476 do {
5477 int i;
5478 char str[NR_CPUS];
5479 struct sched_group *group = sd->groups;
5480 cpumask_t groupmask;
5481
5482 cpumask_scnprintf(str, NR_CPUS, sd->span);
5483 cpus_clear(groupmask);
5484
5485 printk(KERN_DEBUG);
5486 for (i = 0; i < level + 1; i++)
5487 printk(" ");
5488 printk("domain %d: ", level);
5489
5490 if (!(sd->flags & SD_LOAD_BALANCE)) {
5491 printk("does not load-balance\n");
5492 if (sd->parent)
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005493 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
5494 " has parent");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005495 break;
5496 }
5497
5498 printk("span %s\n", str);
5499
5500 if (!cpu_isset(cpu, sd->span))
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005501 printk(KERN_ERR "ERROR: domain->span does not contain "
5502 "CPU%d\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503 if (!cpu_isset(cpu, group->cpumask))
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005504 printk(KERN_ERR "ERROR: domain->groups does not contain"
5505 " CPU%d\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005506
5507 printk(KERN_DEBUG);
5508 for (i = 0; i < level + 2; i++)
5509 printk(" ");
5510 printk("groups:");
5511 do {
5512 if (!group) {
5513 printk("\n");
5514 printk(KERN_ERR "ERROR: group is NULL\n");
5515 break;
5516 }
5517
Eric Dumazet5517d862007-05-08 00:32:57 -07005518 if (!group->__cpu_power) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005519 printk("\n");
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005520 printk(KERN_ERR "ERROR: domain->cpu_power not "
5521 "set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005522 }
5523
5524 if (!cpus_weight(group->cpumask)) {
5525 printk("\n");
5526 printk(KERN_ERR "ERROR: empty group\n");
5527 }
5528
5529 if (cpus_intersects(groupmask, group->cpumask)) {
5530 printk("\n");
5531 printk(KERN_ERR "ERROR: repeated CPUs\n");
5532 }
5533
5534 cpus_or(groupmask, groupmask, group->cpumask);
5535
5536 cpumask_scnprintf(str, NR_CPUS, group->cpumask);
5537 printk(" %s", str);
5538
5539 group = group->next;
5540 } while (group != sd->groups);
5541 printk("\n");
5542
5543 if (!cpus_equal(sd->span, groupmask))
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005544 printk(KERN_ERR "ERROR: groups don't span "
5545 "domain->span\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005546
5547 level++;
5548 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005549 if (!sd)
5550 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005551
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005552 if (!cpus_subset(groupmask, sd->span))
5553 printk(KERN_ERR "ERROR: parent span is not a superset "
5554 "of domain->span\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005555
5556 } while (sd);
5557}
5558#else
Ingo Molnar48f24c42006-07-03 00:25:40 -07005559# define sched_domain_debug(sd, cpu) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005560#endif
5561
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07005562static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005563{
5564 if (cpus_weight(sd->span) == 1)
5565 return 1;
5566
5567 /* Following flags need at least 2 groups */
5568 if (sd->flags & (SD_LOAD_BALANCE |
5569 SD_BALANCE_NEWIDLE |
5570 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005571 SD_BALANCE_EXEC |
5572 SD_SHARE_CPUPOWER |
5573 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005574 if (sd->groups != sd->groups->next)
5575 return 0;
5576 }
5577
5578 /* Following flags don't use groups */
5579 if (sd->flags & (SD_WAKE_IDLE |
5580 SD_WAKE_AFFINE |
5581 SD_WAKE_BALANCE))
5582 return 0;
5583
5584 return 1;
5585}
5586
Ingo Molnar48f24c42006-07-03 00:25:40 -07005587static int
5588sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005589{
5590 unsigned long cflags = sd->flags, pflags = parent->flags;
5591
5592 if (sd_degenerate(parent))
5593 return 1;
5594
5595 if (!cpus_equal(sd->span, parent->span))
5596 return 0;
5597
5598 /* Does parent contain flags not in child? */
5599 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
5600 if (cflags & SD_WAKE_AFFINE)
5601 pflags &= ~SD_WAKE_BALANCE;
5602 /* Flags needing groups don't count if only 1 group in parent */
5603 if (parent->groups == parent->groups->next) {
5604 pflags &= ~(SD_LOAD_BALANCE |
5605 SD_BALANCE_NEWIDLE |
5606 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005607 SD_BALANCE_EXEC |
5608 SD_SHARE_CPUPOWER |
5609 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07005610 }
5611 if (~cflags & pflags)
5612 return 0;
5613
5614 return 1;
5615}
5616
Linus Torvalds1da177e2005-04-16 15:20:36 -07005617/*
5618 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
5619 * hold the hotplug lock.
5620 */
John Hawkes9c1cfda2005-09-06 15:18:14 -07005621static void cpu_attach_domain(struct sched_domain *sd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005622{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005623 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07005624 struct sched_domain *tmp;
5625
5626 /* Remove the sched domains which do not contribute to scheduling. */
5627 for (tmp = sd; tmp; tmp = tmp->parent) {
5628 struct sched_domain *parent = tmp->parent;
5629 if (!parent)
5630 break;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005631 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005632 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005633 if (parent->parent)
5634 parent->parent->child = tmp;
5635 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07005636 }
5637
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005638 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005639 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005640 if (sd)
5641 sd->child = NULL;
5642 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005643
5644 sched_domain_debug(sd, cpu);
5645
Nick Piggin674311d2005-06-25 14:57:27 -07005646 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005647}
5648
5649/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08005650static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005651
5652/* Setup the mask of cpus configured for isolated domains */
5653static int __init isolated_cpu_setup(char *str)
5654{
5655 int ints[NR_CPUS], i;
5656
5657 str = get_options(str, ARRAY_SIZE(ints), ints);
5658 cpus_clear(cpu_isolated_map);
5659 for (i = 1; i <= ints[0]; i++)
5660 if (ints[i] < NR_CPUS)
5661 cpu_set(ints[i], cpu_isolated_map);
5662 return 1;
5663}
5664
5665__setup ("isolcpus=", isolated_cpu_setup);
5666
5667/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005668 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
5669 * to a function which identifies what group(along with sched group) a CPU
5670 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
5671 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005672 *
5673 * init_sched_build_groups will build a circular linked list of the groups
5674 * covered by the given span, and will set each group's ->cpumask correctly,
5675 * and ->cpu_power to 0.
5676 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07005677static void
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005678init_sched_build_groups(cpumask_t span, const cpumask_t *cpu_map,
5679 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
5680 struct sched_group **sg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005681{
5682 struct sched_group *first = NULL, *last = NULL;
5683 cpumask_t covered = CPU_MASK_NONE;
5684 int i;
5685
5686 for_each_cpu_mask(i, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005687 struct sched_group *sg;
5688 int group = group_fn(i, cpu_map, &sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005689 int j;
5690
5691 if (cpu_isset(i, covered))
5692 continue;
5693
5694 sg->cpumask = CPU_MASK_NONE;
Eric Dumazet5517d862007-05-08 00:32:57 -07005695 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005696
5697 for_each_cpu_mask(j, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005698 if (group_fn(j, cpu_map, NULL) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005699 continue;
5700
5701 cpu_set(j, covered);
5702 cpu_set(j, sg->cpumask);
5703 }
5704 if (!first)
5705 first = sg;
5706 if (last)
5707 last->next = sg;
5708 last = sg;
5709 }
5710 last->next = first;
5711}
5712
John Hawkes9c1cfda2005-09-06 15:18:14 -07005713#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07005714
John Hawkes9c1cfda2005-09-06 15:18:14 -07005715#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005716
John Hawkes9c1cfda2005-09-06 15:18:14 -07005717/**
5718 * find_next_best_node - find the next node to include in a sched_domain
5719 * @node: node whose sched_domain we're building
5720 * @used_nodes: nodes already in the sched_domain
5721 *
5722 * Find the next node to include in a given scheduling domain. Simply
5723 * finds the closest node not already in the @used_nodes map.
5724 *
5725 * Should use nodemask_t.
5726 */
5727static int find_next_best_node(int node, unsigned long *used_nodes)
5728{
5729 int i, n, val, min_val, best_node = 0;
5730
5731 min_val = INT_MAX;
5732
5733 for (i = 0; i < MAX_NUMNODES; i++) {
5734 /* Start at @node */
5735 n = (node + i) % MAX_NUMNODES;
5736
5737 if (!nr_cpus_node(n))
5738 continue;
5739
5740 /* Skip already used nodes */
5741 if (test_bit(n, used_nodes))
5742 continue;
5743
5744 /* Simple min distance search */
5745 val = node_distance(node, n);
5746
5747 if (val < min_val) {
5748 min_val = val;
5749 best_node = n;
5750 }
5751 }
5752
5753 set_bit(best_node, used_nodes);
5754 return best_node;
5755}
5756
5757/**
5758 * sched_domain_node_span - get a cpumask for a node's sched_domain
5759 * @node: node whose cpumask we're constructing
5760 * @size: number of nodes to include in this span
5761 *
5762 * Given a node, construct a good cpumask for its sched_domain to span. It
5763 * should be one that prevents unnecessary balancing, but also spreads tasks
5764 * out optimally.
5765 */
5766static cpumask_t sched_domain_node_span(int node)
5767{
John Hawkes9c1cfda2005-09-06 15:18:14 -07005768 DECLARE_BITMAP(used_nodes, MAX_NUMNODES);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005769 cpumask_t span, nodemask;
5770 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07005771
5772 cpus_clear(span);
5773 bitmap_zero(used_nodes, MAX_NUMNODES);
5774
5775 nodemask = node_to_cpumask(node);
5776 cpus_or(span, span, nodemask);
5777 set_bit(node, used_nodes);
5778
5779 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
5780 int next_node = find_next_best_node(node, used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005781
John Hawkes9c1cfda2005-09-06 15:18:14 -07005782 nodemask = node_to_cpumask(next_node);
5783 cpus_or(span, span, nodemask);
5784 }
5785
5786 return span;
5787}
5788#endif
5789
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07005790int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005791
John Hawkes9c1cfda2005-09-06 15:18:14 -07005792/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07005793 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07005794 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005795#ifdef CONFIG_SCHED_SMT
5796static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005797static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005798
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005799static int cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map,
5800 struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005801{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005802 if (sg)
5803 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005804 return cpu;
5805}
5806#endif
5807
Ingo Molnar48f24c42006-07-03 00:25:40 -07005808/*
5809 * multi-core sched-domains:
5810 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005811#ifdef CONFIG_SCHED_MC
5812static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005813static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005814#endif
5815
5816#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005817static int cpu_to_core_group(int cpu, const cpumask_t *cpu_map,
5818 struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005819{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005820 int group;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07005821 cpumask_t mask = cpu_sibling_map[cpu];
5822 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005823 group = first_cpu(mask);
5824 if (sg)
5825 *sg = &per_cpu(sched_group_core, group);
5826 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005827}
5828#elif defined(CONFIG_SCHED_MC)
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005829static int cpu_to_core_group(int cpu, const cpumask_t *cpu_map,
5830 struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005831{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005832 if (sg)
5833 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005834 return cpu;
5835}
5836#endif
5837
Linus Torvalds1da177e2005-04-16 15:20:36 -07005838static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005839static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005840
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005841static int cpu_to_phys_group(int cpu, const cpumask_t *cpu_map,
5842 struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005843{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005844 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005845#ifdef CONFIG_SCHED_MC
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005846 cpumask_t mask = cpu_coregroup_map(cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07005847 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005848 group = first_cpu(mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005849#elif defined(CONFIG_SCHED_SMT)
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07005850 cpumask_t mask = cpu_sibling_map[cpu];
5851 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005852 group = first_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005853#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005854 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005855#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005856 if (sg)
5857 *sg = &per_cpu(sched_group_phys, group);
5858 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005859}
5860
5861#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07005862/*
5863 * The init_sched_build_groups can't handle what we want to do with node
5864 * groups, so roll our own. Now each node has its own list of groups which
5865 * gets dynamically allocated.
5866 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005867static DEFINE_PER_CPU(struct sched_domain, node_domains);
John Hawkesd1b55132005-09-06 15:18:14 -07005868static struct sched_group **sched_group_nodes_bycpu[NR_CPUS];
John Hawkes9c1cfda2005-09-06 15:18:14 -07005869
5870static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005871static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07005872
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005873static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
5874 struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005876 cpumask_t nodemask = node_to_cpumask(cpu_to_node(cpu));
5877 int group;
5878
5879 cpus_and(nodemask, nodemask, *cpu_map);
5880 group = first_cpu(nodemask);
5881
5882 if (sg)
5883 *sg = &per_cpu(sched_group_allnodes, group);
5884 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005885}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005886
Siddha, Suresh B08069032006-03-27 01:15:23 -08005887static void init_numa_sched_groups_power(struct sched_group *group_head)
5888{
5889 struct sched_group *sg = group_head;
5890 int j;
5891
5892 if (!sg)
5893 return;
5894next_sg:
5895 for_each_cpu_mask(j, sg->cpumask) {
5896 struct sched_domain *sd;
5897
5898 sd = &per_cpu(phys_domains, j);
5899 if (j != first_cpu(sd->groups->cpumask)) {
5900 /*
5901 * Only add "power" once for each
5902 * physical package.
5903 */
5904 continue;
5905 }
5906
Eric Dumazet5517d862007-05-08 00:32:57 -07005907 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08005908 }
5909 sg = sg->next;
5910 if (sg != group_head)
5911 goto next_sg;
5912}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005913#endif
5914
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07005915#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07005916/* Free memory allocated for various sched_group structures */
5917static void free_sched_groups(const cpumask_t *cpu_map)
5918{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07005919 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07005920
5921 for_each_cpu_mask(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07005922 struct sched_group **sched_group_nodes
5923 = sched_group_nodes_bycpu[cpu];
5924
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07005925 if (!sched_group_nodes)
5926 continue;
5927
5928 for (i = 0; i < MAX_NUMNODES; i++) {
5929 cpumask_t nodemask = node_to_cpumask(i);
5930 struct sched_group *oldsg, *sg = sched_group_nodes[i];
5931
5932 cpus_and(nodemask, nodemask, *cpu_map);
5933 if (cpus_empty(nodemask))
5934 continue;
5935
5936 if (sg == NULL)
5937 continue;
5938 sg = sg->next;
5939next_sg:
5940 oldsg = sg;
5941 sg = sg->next;
5942 kfree(oldsg);
5943 if (oldsg != sched_group_nodes[i])
5944 goto next_sg;
5945 }
5946 kfree(sched_group_nodes);
5947 sched_group_nodes_bycpu[cpu] = NULL;
5948 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07005949}
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07005950#else
5951static void free_sched_groups(const cpumask_t *cpu_map)
5952{
5953}
5954#endif
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07005955
Linus Torvalds1da177e2005-04-16 15:20:36 -07005956/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005957 * Initialize sched groups cpu_power.
5958 *
5959 * cpu_power indicates the capacity of sched group, which is used while
5960 * distributing the load between different sched groups in a sched domain.
5961 * Typically cpu_power for all the groups in a sched domain will be same unless
5962 * there are asymmetries in the topology. If there are asymmetries, group
5963 * having more cpu_power will pickup more load compared to the group having
5964 * less cpu_power.
5965 *
5966 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
5967 * the maximum number of tasks a group can handle in the presence of other idle
5968 * or lightly loaded groups in the same sched domain.
5969 */
5970static void init_sched_groups_power(int cpu, struct sched_domain *sd)
5971{
5972 struct sched_domain *child;
5973 struct sched_group *group;
5974
5975 WARN_ON(!sd || !sd->groups);
5976
5977 if (cpu != first_cpu(sd->groups->cpumask))
5978 return;
5979
5980 child = sd->child;
5981
Eric Dumazet5517d862007-05-08 00:32:57 -07005982 sd->groups->__cpu_power = 0;
5983
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005984 /*
5985 * For perf policy, if the groups in child domain share resources
5986 * (for example cores sharing some portions of the cache hierarchy
5987 * or SMT), then set this domain groups cpu_power such that each group
5988 * can handle only one task, when there are other idle groups in the
5989 * same sched domain.
5990 */
5991 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
5992 (child->flags &
5993 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07005994 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005995 return;
5996 }
5997
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005998 /*
5999 * add cpu_power of each child group to this groups cpu_power
6000 */
6001 group = child->groups;
6002 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07006003 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006004 group = group->next;
6005 } while (group != child->groups);
6006}
6007
6008/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006009 * Build sched domains for a given set of cpus and attach the sched domains
6010 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07006011 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006012static int build_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006013{
6014 int i;
John Hawkesd1b55132005-09-06 15:18:14 -07006015#ifdef CONFIG_NUMA
6016 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006017 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07006018
6019 /*
6020 * Allocate the per-node list of sched groups
6021 */
Ingo Molnardd41f592007-07-09 18:51:59 +02006022 sched_group_nodes = kzalloc(sizeof(struct sched_group *)*MAX_NUMNODES,
Srivatsa Vaddagirid3a5aa92006-06-27 02:54:39 -07006023 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07006024 if (!sched_group_nodes) {
6025 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006026 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07006027 }
6028 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
6029#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006030
6031 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006032 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006033 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006034 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006035 struct sched_domain *sd = NULL, *p;
6036 cpumask_t nodemask = node_to_cpumask(cpu_to_node(i));
6037
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006038 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006039
6040#ifdef CONFIG_NUMA
Ingo Molnardd41f592007-07-09 18:51:59 +02006041 if (cpus_weight(*cpu_map) >
6042 SD_NODES_PER_DOMAIN*cpus_weight(nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07006043 sd = &per_cpu(allnodes_domains, i);
6044 *sd = SD_ALLNODES_INIT;
6045 sd->span = *cpu_map;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006046 cpu_to_allnodes_group(i, cpu_map, &sd->groups);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006047 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006048 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006049 } else
6050 p = NULL;
6051
Linus Torvalds1da177e2005-04-16 15:20:36 -07006052 sd = &per_cpu(node_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006053 *sd = SD_NODE_INIT;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006054 sd->span = sched_domain_node_span(cpu_to_node(i));
6055 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006056 if (p)
6057 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006058 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006059#endif
6060
6061 p = sd;
6062 sd = &per_cpu(phys_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006063 *sd = SD_CPU_INIT;
6064 sd->span = nodemask;
6065 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006066 if (p)
6067 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006068 cpu_to_phys_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006069
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006070#ifdef CONFIG_SCHED_MC
6071 p = sd;
6072 sd = &per_cpu(core_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006073 *sd = SD_MC_INIT;
6074 sd->span = cpu_coregroup_map(i);
6075 cpus_and(sd->span, sd->span, *cpu_map);
6076 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006077 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006078 cpu_to_core_group(i, cpu_map, &sd->groups);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006079#endif
6080
Linus Torvalds1da177e2005-04-16 15:20:36 -07006081#ifdef CONFIG_SCHED_SMT
6082 p = sd;
6083 sd = &per_cpu(cpu_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006084 *sd = SD_SIBLING_INIT;
6085 sd->span = cpu_sibling_map[i];
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006086 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006087 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006088 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006089 cpu_to_cpu_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006090#endif
6091 }
6092
6093#ifdef CONFIG_SCHED_SMT
6094 /* Set up CPU (sibling) groups */
John Hawkes9c1cfda2005-09-06 15:18:14 -07006095 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006096 cpumask_t this_sibling_map = cpu_sibling_map[i];
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006097 cpus_and(this_sibling_map, this_sibling_map, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006098 if (i != first_cpu(this_sibling_map))
6099 continue;
6100
Ingo Molnardd41f592007-07-09 18:51:59 +02006101 init_sched_build_groups(this_sibling_map, cpu_map,
6102 &cpu_to_cpu_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006103 }
6104#endif
6105
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006106#ifdef CONFIG_SCHED_MC
6107 /* Set up multi-core groups */
6108 for_each_cpu_mask(i, *cpu_map) {
6109 cpumask_t this_core_map = cpu_coregroup_map(i);
6110 cpus_and(this_core_map, this_core_map, *cpu_map);
6111 if (i != first_cpu(this_core_map))
6112 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02006113 init_sched_build_groups(this_core_map, cpu_map,
6114 &cpu_to_core_group);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006115 }
6116#endif
6117
Linus Torvalds1da177e2005-04-16 15:20:36 -07006118 /* Set up physical groups */
6119 for (i = 0; i < MAX_NUMNODES; i++) {
6120 cpumask_t nodemask = node_to_cpumask(i);
6121
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006122 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006123 if (cpus_empty(nodemask))
6124 continue;
6125
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006126 init_sched_build_groups(nodemask, cpu_map, &cpu_to_phys_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006127 }
6128
6129#ifdef CONFIG_NUMA
6130 /* Set up node groups */
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006131 if (sd_allnodes)
Ingo Molnardd41f592007-07-09 18:51:59 +02006132 init_sched_build_groups(*cpu_map, cpu_map,
6133 &cpu_to_allnodes_group);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006134
6135 for (i = 0; i < MAX_NUMNODES; i++) {
6136 /* Set up node groups */
6137 struct sched_group *sg, *prev;
6138 cpumask_t nodemask = node_to_cpumask(i);
6139 cpumask_t domainspan;
6140 cpumask_t covered = CPU_MASK_NONE;
6141 int j;
6142
6143 cpus_and(nodemask, nodemask, *cpu_map);
John Hawkesd1b55132005-09-06 15:18:14 -07006144 if (cpus_empty(nodemask)) {
6145 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006146 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07006147 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006148
6149 domainspan = sched_domain_node_span(i);
6150 cpus_and(domainspan, domainspan, *cpu_map);
6151
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006152 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006153 if (!sg) {
6154 printk(KERN_WARNING "Can not alloc domain group for "
6155 "node %d\n", i);
6156 goto error;
6157 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006158 sched_group_nodes[i] = sg;
6159 for_each_cpu_mask(j, nodemask) {
6160 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02006161
John Hawkes9c1cfda2005-09-06 15:18:14 -07006162 sd = &per_cpu(node_domains, j);
6163 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006164 }
Eric Dumazet5517d862007-05-08 00:32:57 -07006165 sg->__cpu_power = 0;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006166 sg->cpumask = nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006167 sg->next = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006168 cpus_or(covered, covered, nodemask);
6169 prev = sg;
6170
6171 for (j = 0; j < MAX_NUMNODES; j++) {
6172 cpumask_t tmp, notcovered;
6173 int n = (i + j) % MAX_NUMNODES;
6174
6175 cpus_complement(notcovered, covered);
6176 cpus_and(tmp, notcovered, *cpu_map);
6177 cpus_and(tmp, tmp, domainspan);
6178 if (cpus_empty(tmp))
6179 break;
6180
6181 nodemask = node_to_cpumask(n);
6182 cpus_and(tmp, tmp, nodemask);
6183 if (cpus_empty(tmp))
6184 continue;
6185
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006186 sg = kmalloc_node(sizeof(struct sched_group),
6187 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006188 if (!sg) {
6189 printk(KERN_WARNING
6190 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006191 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006192 }
Eric Dumazet5517d862007-05-08 00:32:57 -07006193 sg->__cpu_power = 0;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006194 sg->cpumask = tmp;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006195 sg->next = prev->next;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006196 cpus_or(covered, covered, tmp);
6197 prev->next = sg;
6198 prev = sg;
6199 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201#endif
6202
6203 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006204#ifdef CONFIG_SCHED_SMT
6205 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006206 struct sched_domain *sd = &per_cpu(cpu_domains, i);
6207
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006208 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006209 }
6210#endif
6211#ifdef CONFIG_SCHED_MC
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006212 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006213 struct sched_domain *sd = &per_cpu(core_domains, i);
6214
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006215 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006216 }
6217#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006218
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006219 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006220 struct sched_domain *sd = &per_cpu(phys_domains, i);
6221
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006222 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006223 }
6224
John Hawkes9c1cfda2005-09-06 15:18:14 -07006225#ifdef CONFIG_NUMA
Siddha, Suresh B08069032006-03-27 01:15:23 -08006226 for (i = 0; i < MAX_NUMNODES; i++)
6227 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006228
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006229 if (sd_allnodes) {
6230 struct sched_group *sg;
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07006231
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006232 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg);
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07006233 init_numa_sched_groups_power(sg);
6234 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006235#endif
6236
Linus Torvalds1da177e2005-04-16 15:20:36 -07006237 /* Attach the domains */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006238 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006239 struct sched_domain *sd;
6240#ifdef CONFIG_SCHED_SMT
6241 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006242#elif defined(CONFIG_SCHED_MC)
6243 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006244#else
6245 sd = &per_cpu(phys_domains, i);
6246#endif
6247 cpu_attach_domain(sd, i);
6248 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006249
6250 return 0;
6251
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006252#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006253error:
6254 free_sched_groups(cpu_map);
6255 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006256#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006257}
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006258/*
6259 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
6260 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006261static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006262{
6263 cpumask_t cpu_default_map;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006264 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006265
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006266 /*
6267 * Setup mask for cpus without special case scheduling requirements.
6268 * For now this just excludes isolated cpus, but could be used to
6269 * exclude other special cases in the future.
6270 */
6271 cpus_andnot(cpu_default_map, *cpu_map, cpu_isolated_map);
6272
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006273 err = build_sched_domains(&cpu_default_map);
6274
6275 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006276}
6277
6278static void arch_destroy_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006279{
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006280 free_sched_groups(cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006281}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006282
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006283/*
6284 * Detach sched domains from a group of cpus specified in cpu_map
6285 * These cpus will now be attached to the NULL domain
6286 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08006287static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006288{
6289 int i;
6290
6291 for_each_cpu_mask(i, *cpu_map)
6292 cpu_attach_domain(NULL, i);
6293 synchronize_sched();
6294 arch_destroy_sched_domains(cpu_map);
6295}
6296
6297/*
6298 * Partition sched domains as specified by the cpumasks below.
6299 * This attaches all cpus from the cpumasks to the NULL domain,
6300 * waits for a RCU quiescent period, recalculates sched
6301 * domain information and then attaches them back to the
6302 * correct sched domains
6303 * Call with hotplug lock held
6304 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006305int partition_sched_domains(cpumask_t *partition1, cpumask_t *partition2)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006306{
6307 cpumask_t change_map;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006308 int err = 0;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006309
6310 cpus_and(*partition1, *partition1, cpu_online_map);
6311 cpus_and(*partition2, *partition2, cpu_online_map);
6312 cpus_or(change_map, *partition1, *partition2);
6313
6314 /* Detach sched domains from all of the affected cpus */
6315 detach_destroy_domains(&change_map);
6316 if (!cpus_empty(*partition1))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006317 err = build_sched_domains(partition1);
6318 if (!err && !cpus_empty(*partition2))
6319 err = build_sched_domains(partition2);
6320
6321 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006322}
6323
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006324#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Adrian Bunk6707de002007-08-12 18:08:19 +02006325static int arch_reinit_sched_domains(void)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006326{
6327 int err;
6328
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006329 mutex_lock(&sched_hotcpu_mutex);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006330 detach_destroy_domains(&cpu_online_map);
6331 err = arch_init_sched_domains(&cpu_online_map);
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006332 mutex_unlock(&sched_hotcpu_mutex);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006333
6334 return err;
6335}
6336
6337static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
6338{
6339 int ret;
6340
6341 if (buf[0] != '0' && buf[0] != '1')
6342 return -EINVAL;
6343
6344 if (smt)
6345 sched_smt_power_savings = (buf[0] == '1');
6346 else
6347 sched_mc_power_savings = (buf[0] == '1');
6348
6349 ret = arch_reinit_sched_domains();
6350
6351 return ret ? ret : count;
6352}
6353
Adrian Bunk6707de002007-08-12 18:08:19 +02006354#ifdef CONFIG_SCHED_MC
6355static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
6356{
6357 return sprintf(page, "%u\n", sched_mc_power_savings);
6358}
6359static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
6360 const char *buf, size_t count)
6361{
6362 return sched_power_savings_store(buf, count, 0);
6363}
6364static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
6365 sched_mc_power_savings_store);
6366#endif
6367
6368#ifdef CONFIG_SCHED_SMT
6369static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
6370{
6371 return sprintf(page, "%u\n", sched_smt_power_savings);
6372}
6373static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
6374 const char *buf, size_t count)
6375{
6376 return sched_power_savings_store(buf, count, 1);
6377}
6378static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
6379 sched_smt_power_savings_store);
6380#endif
6381
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006382int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
6383{
6384 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006385
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006386#ifdef CONFIG_SCHED_SMT
6387 if (smt_capable())
6388 err = sysfs_create_file(&cls->kset.kobj,
6389 &attr_sched_smt_power_savings.attr);
6390#endif
6391#ifdef CONFIG_SCHED_MC
6392 if (!err && mc_capable())
6393 err = sysfs_create_file(&cls->kset.kobj,
6394 &attr_sched_mc_power_savings.attr);
6395#endif
6396 return err;
6397}
6398#endif
6399
Linus Torvalds1da177e2005-04-16 15:20:36 -07006400/*
6401 * Force a reinitialization of the sched domains hierarchy. The domains
6402 * and groups cannot be updated in place without racing with the balancing
Nick Piggin41c7ce92005-06-25 14:57:24 -07006403 * code, so we temporarily attach all running cpus to the NULL domain
Linus Torvalds1da177e2005-04-16 15:20:36 -07006404 * which will prevent rebalancing while the sched domains are recalculated.
6405 */
6406static int update_sched_domains(struct notifier_block *nfb,
6407 unsigned long action, void *hcpu)
6408{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006409 switch (action) {
6410 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006411 case CPU_UP_PREPARE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006412 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006413 case CPU_DOWN_PREPARE_FROZEN:
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006414 detach_destroy_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006415 return NOTIFY_OK;
6416
6417 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006418 case CPU_UP_CANCELED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006419 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006420 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006421 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006422 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006423 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006424 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006425 /*
6426 * Fall through and re-initialise the domains.
6427 */
6428 break;
6429 default:
6430 return NOTIFY_DONE;
6431 }
6432
6433 /* The hotplug lock is already held by cpu_up/cpu_down */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006434 arch_init_sched_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006435
6436 return NOTIFY_OK;
6437}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006438
6439void __init sched_init_smp(void)
6440{
Nick Piggin5c1e1762006-10-03 01:14:04 -07006441 cpumask_t non_isolated_cpus;
6442
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006443 mutex_lock(&sched_hotcpu_mutex);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006444 arch_init_sched_domains(&cpu_online_map);
Nathan Lynche5e56732007-01-10 23:15:28 -08006445 cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07006446 if (cpus_empty(non_isolated_cpus))
6447 cpu_set(smp_processor_id(), non_isolated_cpus);
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006448 mutex_unlock(&sched_hotcpu_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006449 /* XXX: Theoretical race here - CPU may be hotplugged now */
6450 hotcpu_notifier(update_sched_domains, 0);
Nick Piggin5c1e1762006-10-03 01:14:04 -07006451
Nick Piggine692ab52007-07-26 13:40:43 +02006452 init_sched_domain_sysctl();
6453
Nick Piggin5c1e1762006-10-03 01:14:04 -07006454 /* Move init over to a non-isolated CPU */
6455 if (set_cpus_allowed(current, non_isolated_cpus) < 0)
6456 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006457}
6458#else
6459void __init sched_init_smp(void)
6460{
6461}
6462#endif /* CONFIG_SMP */
6463
6464int in_sched_functions(unsigned long addr)
6465{
6466 /* Linker adds these: start and end of __sched functions */
6467 extern char __sched_text_start[], __sched_text_end[];
Ingo Molnar48f24c42006-07-03 00:25:40 -07006468
Linus Torvalds1da177e2005-04-16 15:20:36 -07006469 return in_lock_functions(addr) ||
6470 (addr >= (unsigned long)__sched_text_start
6471 && addr < (unsigned long)__sched_text_end);
6472}
6473
Ingo Molnardd41f592007-07-09 18:51:59 +02006474static inline void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
6475{
6476 cfs_rq->tasks_timeline = RB_ROOT;
Ingo Molnardd41f592007-07-09 18:51:59 +02006477#ifdef CONFIG_FAIR_GROUP_SCHED
6478 cfs_rq->rq = rq;
6479#endif
6480}
6481
Linus Torvalds1da177e2005-04-16 15:20:36 -07006482void __init sched_init(void)
6483{
Christoph Lameter476f3532007-05-06 14:48:58 -07006484 int highest_cpu = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02006485 int i, j;
6486
6487 /*
6488 * Link up the scheduling class hierarchy:
6489 */
6490 rt_sched_class.next = &fair_sched_class;
6491 fair_sched_class.next = &idle_sched_class;
6492 idle_sched_class.next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006493
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08006494 for_each_possible_cpu(i) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006495 struct rt_prio_array *array;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006496 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006497
6498 rq = cpu_rq(i);
6499 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07006500 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07006501 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02006502 rq->clock = 1;
6503 init_cfs_rq(&rq->cfs, rq);
6504#ifdef CONFIG_FAIR_GROUP_SCHED
6505 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006506 {
6507 struct cfs_rq *cfs_rq = &per_cpu(init_cfs_rq, i);
6508 struct sched_entity *se =
6509 &per_cpu(init_sched_entity, i);
6510
6511 init_cfs_rq_p[i] = cfs_rq;
6512 init_cfs_rq(cfs_rq, rq);
6513 cfs_rq->tg = &init_task_grp;
6514 list_add(&cfs_rq->leaf_cfs_rq_list,
6515 &rq->leaf_cfs_rq_list);
6516
6517 init_sched_entity_p[i] = se;
6518 se->cfs_rq = &rq->cfs;
6519 se->my_q = cfs_rq;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006520 se->load.weight = init_task_grp_load;
6521 se->load.inv_weight =
6522 div64_64(1ULL<<32, init_task_grp_load);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006523 se->parent = NULL;
6524 }
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006525 init_task_grp.shares = init_task_grp_load;
Ingo Molnardd41f592007-07-09 18:51:59 +02006526#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006527
Ingo Molnardd41f592007-07-09 18:51:59 +02006528 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
6529 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006530#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07006531 rq->sd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006532 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02006533 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006534 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07006535 rq->cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006536 rq->migration_thread = NULL;
6537 INIT_LIST_HEAD(&rq->migration_queue);
6538#endif
6539 atomic_set(&rq->nr_iowait, 0);
6540
Ingo Molnardd41f592007-07-09 18:51:59 +02006541 array = &rq->rt.active;
6542 for (j = 0; j < MAX_RT_PRIO; j++) {
6543 INIT_LIST_HEAD(array->queue + j);
6544 __clear_bit(j, array->bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006545 }
Christoph Lameter476f3532007-05-06 14:48:58 -07006546 highest_cpu = i;
Ingo Molnardd41f592007-07-09 18:51:59 +02006547 /* delimiter for bitsearch: */
6548 __set_bit(MAX_RT_PRIO, array->bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006549 }
6550
Peter Williams2dd73a42006-06-27 02:54:34 -07006551 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07006552
Avi Kivitye107be32007-07-26 13:40:43 +02006553#ifdef CONFIG_PREEMPT_NOTIFIERS
6554 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
6555#endif
6556
Christoph Lameterc9819f42006-12-10 02:20:25 -08006557#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07006558 nr_cpu_ids = highest_cpu + 1;
Christoph Lameterc9819f42006-12-10 02:20:25 -08006559 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL);
6560#endif
6561
Heiko Carstensb50f60c2006-07-30 03:03:52 -07006562#ifdef CONFIG_RT_MUTEXES
6563 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
6564#endif
6565
Linus Torvalds1da177e2005-04-16 15:20:36 -07006566 /*
6567 * The boot idle thread does lazy MMU switching as well:
6568 */
6569 atomic_inc(&init_mm.mm_count);
6570 enter_lazy_tlb(&init_mm, current);
6571
6572 /*
6573 * Make us the idle thread. Technically, schedule() should not be
6574 * called from this thread, however somewhere below it might be,
6575 * but because we are the idle thread, we just pick up running again
6576 * when this runqueue becomes "idle".
6577 */
6578 init_idle(current, smp_processor_id());
Ingo Molnardd41f592007-07-09 18:51:59 +02006579 /*
6580 * During early bootup we pretend to be a normal task:
6581 */
6582 current->sched_class = &fair_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006583}
6584
6585#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
6586void __might_sleep(char *file, int line)
6587{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006588#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07006589 static unsigned long prev_jiffy; /* ratelimiting */
6590
6591 if ((in_atomic() || irqs_disabled()) &&
6592 system_state == SYSTEM_RUNNING && !oops_in_progress) {
6593 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
6594 return;
6595 prev_jiffy = jiffies;
Ingo Molnar91368d72006-03-23 03:00:54 -08006596 printk(KERN_ERR "BUG: sleeping function called from invalid"
Linus Torvalds1da177e2005-04-16 15:20:36 -07006597 " context at %s:%d\n", file, line);
6598 printk("in_atomic():%d, irqs_disabled():%d\n",
6599 in_atomic(), irqs_disabled());
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08006600 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08006601 if (irqs_disabled())
6602 print_irqtrace_events(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006603 dump_stack();
6604 }
6605#endif
6606}
6607EXPORT_SYMBOL(__might_sleep);
6608#endif
6609
6610#ifdef CONFIG_MAGIC_SYSRQ
6611void normalize_rt_tasks(void)
6612{
Ingo Molnara0f98a12007-06-17 18:37:45 +02006613 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006614 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006615 struct rq *rq;
Ingo Molnardd41f592007-07-09 18:51:59 +02006616 int on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006617
6618 read_lock_irq(&tasklist_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02006619 do_each_thread(g, p) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006620 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02006621#ifdef CONFIG_SCHEDSTATS
6622 p->se.wait_start = 0;
6623 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02006624 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02006625#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02006626 task_rq(p)->clock = 0;
6627
6628 if (!rt_task(p)) {
6629 /*
6630 * Renice negative nice level userspace
6631 * tasks back to 0:
6632 */
6633 if (TASK_NICE(p) < 0 && p->mm)
6634 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006635 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02006636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006637
Ingo Molnarb29739f2006-06-27 02:54:51 -07006638 spin_lock_irqsave(&p->pi_lock, flags);
6639 rq = __task_rq_lock(p);
Ingo Molnardd41f592007-07-09 18:51:59 +02006640#ifdef CONFIG_SMP
6641 /*
6642 * Do not touch the migration thread:
6643 */
6644 if (p == rq->migration_thread)
6645 goto out_unlock;
6646#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006647
Ingo Molnar2daa3572007-08-09 11:16:51 +02006648 update_rq_clock(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02006649 on_rq = p->se.on_rq;
Ingo Molnar2daa3572007-08-09 11:16:51 +02006650 if (on_rq)
6651 deactivate_task(rq, p, 0);
Ingo Molnardd41f592007-07-09 18:51:59 +02006652 __setscheduler(rq, p, SCHED_NORMAL, 0);
6653 if (on_rq) {
Ingo Molnar2daa3572007-08-09 11:16:51 +02006654 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006655 resched_task(rq->curr);
6656 }
Ingo Molnardd41f592007-07-09 18:51:59 +02006657#ifdef CONFIG_SMP
6658 out_unlock:
6659#endif
Ingo Molnarb29739f2006-06-27 02:54:51 -07006660 __task_rq_unlock(rq);
6661 spin_unlock_irqrestore(&p->pi_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02006662 } while_each_thread(g, p);
6663
Linus Torvalds1da177e2005-04-16 15:20:36 -07006664 read_unlock_irq(&tasklist_lock);
6665}
6666
6667#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07006668
6669#ifdef CONFIG_IA64
6670/*
6671 * These functions are only useful for the IA64 MCA handling.
6672 *
6673 * They can only be called when the whole system has been
6674 * stopped - every CPU needs to be quiescent, and no scheduling
6675 * activity can take place. Using them for anything else would
6676 * be a serious bug, and as a result, they aren't even visible
6677 * under any other configuration.
6678 */
6679
6680/**
6681 * curr_task - return the current task for a given cpu.
6682 * @cpu: the processor in question.
6683 *
6684 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
6685 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006686struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07006687{
6688 return cpu_curr(cpu);
6689}
6690
6691/**
6692 * set_curr_task - set the current task for a given cpu.
6693 * @cpu: the processor in question.
6694 * @p: the task pointer to set.
6695 *
6696 * Description: This function must only be used when non-maskable interrupts
6697 * are serviced on a separate stack. It allows the architecture to switch the
6698 * notion of the current task on a cpu in a non-blocking manner. This function
6699 * must be called with all CPU's synchronized, and interrupts disabled, the
6700 * and caller must save the original value of the current task (see
6701 * curr_task() above) and restore that value before reenabling interrupts and
6702 * re-starting the system.
6703 *
6704 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
6705 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006706void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07006707{
6708 cpu_curr(cpu) = p;
6709}
6710
6711#endif
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006712
6713#ifdef CONFIG_FAIR_GROUP_SCHED
6714
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006715/* allocate runqueue etc for a new task group */
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006716struct task_grp *sched_create_group(void)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006717{
6718 struct task_grp *tg;
6719 struct cfs_rq *cfs_rq;
6720 struct sched_entity *se;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006721 struct rq *rq;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006722 int i;
6723
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006724 tg = kzalloc(sizeof(*tg), GFP_KERNEL);
6725 if (!tg)
6726 return ERR_PTR(-ENOMEM);
6727
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006728 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * NR_CPUS, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006729 if (!tg->cfs_rq)
6730 goto err;
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006731 tg->se = kzalloc(sizeof(se) * NR_CPUS, GFP_KERNEL);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006732 if (!tg->se)
6733 goto err;
6734
6735 for_each_possible_cpu(i) {
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006736 rq = cpu_rq(i);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006737
6738 cfs_rq = kmalloc_node(sizeof(struct cfs_rq), GFP_KERNEL,
6739 cpu_to_node(i));
6740 if (!cfs_rq)
6741 goto err;
6742
6743 se = kmalloc_node(sizeof(struct sched_entity), GFP_KERNEL,
6744 cpu_to_node(i));
6745 if (!se)
6746 goto err;
6747
6748 memset(cfs_rq, 0, sizeof(struct cfs_rq));
6749 memset(se, 0, sizeof(struct sched_entity));
6750
6751 tg->cfs_rq[i] = cfs_rq;
6752 init_cfs_rq(cfs_rq, rq);
6753 cfs_rq->tg = tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006754
6755 tg->se[i] = se;
6756 se->cfs_rq = &rq->cfs;
6757 se->my_q = cfs_rq;
6758 se->load.weight = NICE_0_LOAD;
6759 se->load.inv_weight = div64_64(1ULL<<32, NICE_0_LOAD);
6760 se->parent = NULL;
6761 }
6762
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006763 for_each_possible_cpu(i) {
6764 rq = cpu_rq(i);
6765 cfs_rq = tg->cfs_rq[i];
6766 list_add_rcu(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
6767 }
6768
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006769 tg->shares = NICE_0_LOAD;
6770
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006771 return tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006772
6773err:
6774 for_each_possible_cpu(i) {
6775 if (tg->cfs_rq && tg->cfs_rq[i])
6776 kfree(tg->cfs_rq[i]);
6777 if (tg->se && tg->se[i])
6778 kfree(tg->se[i]);
6779 }
6780 if (tg->cfs_rq)
6781 kfree(tg->cfs_rq);
6782 if (tg->se)
6783 kfree(tg->se);
6784 if (tg)
6785 kfree(tg);
6786
6787 return ERR_PTR(-ENOMEM);
6788}
6789
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006790/* rcu callback to free various structures associated with a task group */
6791static void free_sched_group(struct rcu_head *rhp)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006792{
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006793 struct cfs_rq *cfs_rq = container_of(rhp, struct cfs_rq, rcu);
6794 struct task_grp *tg = cfs_rq->tg;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006795 struct sched_entity *se;
6796 int i;
6797
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006798 /* now it should be safe to free those cfs_rqs */
6799 for_each_possible_cpu(i) {
6800 cfs_rq = tg->cfs_rq[i];
6801 kfree(cfs_rq);
6802
6803 se = tg->se[i];
6804 kfree(se);
6805 }
6806
6807 kfree(tg->cfs_rq);
6808 kfree(tg->se);
6809 kfree(tg);
6810}
6811
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006812/* Destroy runqueue etc associated with a task group */
6813void sched_destroy_group(struct task_grp *tg)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006814{
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006815 struct cfs_rq *cfs_rq;
6816 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006817
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006818 for_each_possible_cpu(i) {
6819 cfs_rq = tg->cfs_rq[i];
6820 list_del_rcu(&cfs_rq->leaf_cfs_rq_list);
6821 }
6822
6823 cfs_rq = tg->cfs_rq[0];
6824
6825 /* wait for possible concurrent references to cfs_rqs complete */
6826 call_rcu(&cfs_rq->rcu, free_sched_group);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006827}
6828
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006829/* change task's runqueue when it moves between groups.
6830 * The caller of this function should have put the task in its new group
6831 * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to
6832 * reflect its new group.
6833 */
6834void sched_move_task(struct task_struct *tsk)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006835{
6836 int on_rq, running;
6837 unsigned long flags;
6838 struct rq *rq;
6839
6840 rq = task_rq_lock(tsk, &flags);
6841
6842 if (tsk->sched_class != &fair_sched_class)
6843 goto done;
6844
6845 update_rq_clock(rq);
6846
6847 running = task_running(rq, tsk);
6848 on_rq = tsk->se.on_rq;
6849
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02006850 if (on_rq) {
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006851 dequeue_task(rq, tsk, 0);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02006852 if (unlikely(running))
6853 tsk->sched_class->put_prev_task(rq, tsk);
6854 }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006855
6856 set_task_cfs_rq(tsk);
6857
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02006858 if (on_rq) {
6859 if (unlikely(running))
6860 tsk->sched_class->set_curr_task(rq);
Dmitry Adamushko7074bad2007-10-15 17:00:07 +02006861 enqueue_task(rq, tsk, 0);
Srivatsa Vaddagiri83b699e2007-10-15 17:00:08 +02006862 }
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006863
6864done:
6865 task_rq_unlock(rq, &flags);
6866}
6867
6868static void set_se_shares(struct sched_entity *se, unsigned long shares)
6869{
6870 struct cfs_rq *cfs_rq = se->cfs_rq;
6871 struct rq *rq = cfs_rq->rq;
6872 int on_rq;
6873
6874 spin_lock_irq(&rq->lock);
6875
6876 on_rq = se->on_rq;
6877 if (on_rq)
6878 dequeue_entity(cfs_rq, se, 0);
6879
6880 se->load.weight = shares;
6881 se->load.inv_weight = div64_64((1ULL<<32), shares);
6882
6883 if (on_rq)
6884 enqueue_entity(cfs_rq, se, 0);
6885
6886 spin_unlock_irq(&rq->lock);
6887}
6888
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006889int sched_group_set_shares(struct task_grp *tg, unsigned long shares)
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006890{
6891 int i;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006892
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006893 if (tg->shares == shares)
6894 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006895
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006896 /* return -EINVAL if the new value is not sane */
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006897
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006898 tg->shares = shares;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006899 for_each_possible_cpu(i)
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006900 set_se_shares(tg->se[i], shares);
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006901
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006902 return 0;
Srivatsa Vaddagiri29f59db2007-10-15 17:00:07 +02006903}
6904
Srivatsa Vaddagiri9b5b7752007-10-15 17:00:09 +02006905#endif /* CONFIG_FAIR_GROUP_SCHED */