blob: 893211054790698a418aae9541528a2dd57fb1ed [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 Molnar9a11b492006-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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Eric Dumazet5517d862007-05-08 00:32:57 -070065#include <asm/tlb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67/*
Alexey Dobriyanb035b6d2007-02-10 01:45:10 -080068 * Scheduler clock - returns current time in nanosec units.
69 * This is default implementation.
70 * Architectures and sub-architectures can override this.
71 */
72unsigned long long __attribute__((weak)) sched_clock(void)
73{
74 return (unsigned long long)jiffies * (1000000000 / HZ);
75}
76
77/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 * Convert user-nice values [ -20 ... 0 ... 19 ]
79 * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ],
80 * and back.
81 */
82#define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20)
83#define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20)
84#define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio)
85
86/*
87 * 'User priority' is the nice value converted to something we
88 * can work with better when scaling various scheduler parameters,
89 * it's a [ 0 ... 39 ] range.
90 */
91#define USER_PRIO(p) ((p)-MAX_RT_PRIO)
92#define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio)
93#define MAX_USER_PRIO (USER_PRIO(MAX_PRIO))
94
95/*
96 * Some helpers for converting nanosecond timing to jiffy resolution
97 */
98#define NS_TO_JIFFIES(TIME) ((TIME) / (1000000000 / HZ))
99#define JIFFIES_TO_NS(TIME) ((TIME) * (1000000000 / HZ))
100
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200101#define NICE_0_LOAD SCHED_LOAD_SCALE
102#define NICE_0_SHIFT SCHED_LOAD_SHIFT
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104/*
105 * These are the 'tuning knobs' of the scheduler:
106 *
107 * Minimum timeslice is 5 msecs (or 1 jiffy, whichever is larger),
108 * default timeslice is 100 msecs, maximum timeslice is 800 msecs.
109 * Timeslices get refilled after they expire.
110 */
111#define MIN_TIMESLICE max(5 * HZ / 1000, 1)
112#define DEF_TIMESLICE (100 * HZ / 1000)
Peter Williams2dd73a42006-06-27 02:54:34 -0700113
Eric Dumazet5517d862007-05-08 00:32:57 -0700114#ifdef CONFIG_SMP
115/*
116 * Divide a load by a sched group cpu_power : (load / sg->__cpu_power)
117 * Since cpu_power is a 'constant', we can use a reciprocal divide.
118 */
119static inline u32 sg_div_cpu_power(const struct sched_group *sg, u32 load)
120{
121 return reciprocal_divide(load, sg->reciprocal_cpu_power);
122}
123
124/*
125 * Each time a sched group cpu_power is changed,
126 * we must compute its reciprocal value
127 */
128static inline void sg_inc_cpu_power(struct sched_group *sg, u32 val)
129{
130 sg->__cpu_power += val;
131 sg->reciprocal_cpu_power = reciprocal_value(sg->__cpu_power);
132}
133#endif
134
Ingo Molnar634fa8c2007-07-09 18:52:00 +0200135#define SCALE_PRIO(x, prio) \
136 max(x * (MAX_PRIO - prio) / (MAX_USER_PRIO / 2), MIN_TIMESLICE)
Borislav Petkov91fcdd42006-10-19 23:28:29 -0700137
Ingo Molnar634fa8c2007-07-09 18:52:00 +0200138/*
139 * static_prio_timeslice() scales user-nice values [ -20 ... 0 ... 19 ]
140 * to time slice values: [800ms ... 100ms ... 5ms]
141 */
142static unsigned int static_prio_timeslice(int static_prio)
Peter Williams2dd73a42006-06-27 02:54:34 -0700143{
Ingo Molnar634fa8c2007-07-09 18:52:00 +0200144 if (static_prio == NICE_TO_PRIO(19))
145 return 1;
146
147 if (static_prio < NICE_TO_PRIO(0))
148 return SCALE_PRIO(DEF_TIMESLICE * 4, static_prio);
149 else
150 return SCALE_PRIO(DEF_TIMESLICE, static_prio);
Peter Williams2dd73a42006-06-27 02:54:34 -0700151}
152
Ingo Molnare05606d2007-07-09 18:51:59 +0200153static inline int rt_policy(int policy)
154{
155 if (unlikely(policy == SCHED_FIFO) || unlikely(policy == SCHED_RR))
156 return 1;
157 return 0;
158}
159
160static inline int task_has_rt_policy(struct task_struct *p)
161{
162 return rt_policy(p->policy);
163}
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165/*
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200166 * This is the priority-queue data structure of the RT scheduling class:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 */
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200168struct rt_prio_array {
169 DECLARE_BITMAP(bitmap, MAX_RT_PRIO+1); /* include 1 bit for delimiter */
170 struct list_head queue[MAX_RT_PRIO];
171};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200173struct load_stat {
174 struct load_weight load;
175 u64 load_update_start, load_update_last;
176 unsigned long delta_fair, delta_exec, delta_stat;
177};
178
179/* CFS-related fields in a runqueue */
180struct cfs_rq {
181 struct load_weight load;
182 unsigned long nr_running;
183
184 s64 fair_clock;
185 u64 exec_clock;
186 s64 wait_runtime;
187 u64 sleeper_bonus;
188 unsigned long wait_runtime_overruns, wait_runtime_underruns;
189
190 struct rb_root tasks_timeline;
191 struct rb_node *rb_leftmost;
192 struct rb_node *rb_load_balance_curr;
193#ifdef CONFIG_FAIR_GROUP_SCHED
194 /* 'curr' points to currently running entity on this cfs_rq.
195 * It is set to NULL otherwise (i.e when none are currently running).
196 */
197 struct sched_entity *curr;
198 struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */
199
200 /* leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
201 * a hierarchy). Non-leaf lrqs hold other higher schedulable entities
202 * (like users, containers etc.)
203 *
204 * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This
205 * list is used during load balance.
206 */
207 struct list_head leaf_cfs_rq_list; /* Better name : task_cfs_rq_list? */
208#endif
209};
210
211/* Real-Time classes' related field in a runqueue: */
212struct rt_rq {
213 struct rt_prio_array active;
214 int rt_load_balance_idx;
215 struct list_head *rt_load_balance_head, *rt_load_balance_curr;
216};
217
218/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 * This is the main, per-CPU runqueue data structure.
220 *
221 * Locking rule: those places that want to lock multiple runqueues
222 * (such as the load balancing or the thread migration code), lock
223 * acquire operations must be ordered by ascending &runqueue.
224 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700225struct rq {
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200226 spinlock_t lock; /* runqueue lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 /*
229 * nr_running and cpu_load should be in the same cacheline because
230 * remote CPUs use both these fields when doing load calculation.
231 */
232 unsigned long nr_running;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200233 #define CPU_LOAD_IDX_MAX 5
234 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
Siddha, Suresh Bbdecea32007-05-08 00:32:48 -0700235 unsigned char idle_at_tick;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -0700236#ifdef CONFIG_NO_HZ
237 unsigned char in_nohz_recently;
238#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200239 struct load_stat ls; /* capture load from *all* tasks on this cpu */
240 unsigned long nr_load_updates;
241 u64 nr_switches;
242
243 struct cfs_rq cfs;
244#ifdef CONFIG_FAIR_GROUP_SCHED
245 struct list_head leaf_cfs_rq_list; /* list of leaf cfs_rq on this cpu */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246#endif
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200247 struct rt_rq rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 /*
250 * This is part of a global counter where only the total sum
251 * over all CPUs matters. A task can increase this counter on
252 * one CPU and if it got migrated afterwards it may decrease
253 * it on another CPU. Always updated under the runqueue lock:
254 */
255 unsigned long nr_uninterruptible;
256
Ingo Molnar36c8b582006-07-03 00:25:41 -0700257 struct task_struct *curr, *idle;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800258 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 struct mm_struct *prev_mm;
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200260
Ingo Molnar6aa645e2007-07-09 18:51:58 +0200261 u64 clock, prev_clock_raw;
262 s64 clock_max_delta;
263
264 unsigned int clock_warps, clock_overflows;
265 unsigned int clock_unstable_events;
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 atomic_t nr_iowait;
268
269#ifdef CONFIG_SMP
270 struct sched_domain *sd;
271
272 /* For active balancing */
273 int active_balance;
274 int push_cpu;
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700275 int cpu; /* cpu of this runqueue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Ingo Molnar36c8b582006-07-03 00:25:41 -0700277 struct task_struct *migration_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 struct list_head migration_queue;
279#endif
280
281#ifdef CONFIG_SCHEDSTATS
282 /* latency stats */
283 struct sched_info rq_sched_info;
284
285 /* sys_sched_yield() stats */
286 unsigned long yld_exp_empty;
287 unsigned long yld_act_empty;
288 unsigned long yld_both_empty;
289 unsigned long yld_cnt;
290
291 /* schedule() stats */
292 unsigned long sched_switch;
293 unsigned long sched_cnt;
294 unsigned long sched_goidle;
295
296 /* try_to_wake_up() stats */
297 unsigned long ttwu_cnt;
298 unsigned long ttwu_local;
299#endif
Ingo Molnarfcb99372006-07-03 00:25:10 -0700300 struct lock_class_key rq_lock_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301};
302
Fenghua Yuf34e3b62007-07-19 01:48:13 -0700303static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues);
Gautham R Shenoy5be93612007-05-09 02:34:04 -0700304static DEFINE_MUTEX(sched_hotcpu_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Ingo Molnardd41f592007-07-09 18:51:59 +0200306static inline void check_preempt_curr(struct rq *rq, struct task_struct *p)
307{
308 rq->curr->sched_class->check_preempt_curr(rq, p);
309}
310
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700311static inline int cpu_of(struct rq *rq)
312{
313#ifdef CONFIG_SMP
314 return rq->cpu;
315#else
316 return 0;
317#endif
318}
319
Nick Piggin674311d2005-06-25 14:57:27 -0700320/*
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200321 * Update the per-runqueue clock, as finegrained as the platform can give
322 * us, but without assuming monotonicity, etc.:
Ingo Molnar20d315d2007-07-09 18:51:58 +0200323 */
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200324static void __update_rq_clock(struct rq *rq)
Ingo Molnar20d315d2007-07-09 18:51:58 +0200325{
326 u64 prev_raw = rq->prev_clock_raw;
327 u64 now = sched_clock();
328 s64 delta = now - prev_raw;
329 u64 clock = rq->clock;
330
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200331#ifdef CONFIG_SCHED_DEBUG
332 WARN_ON_ONCE(cpu_of(rq) != smp_processor_id());
333#endif
Ingo Molnar20d315d2007-07-09 18:51:58 +0200334 /*
335 * Protect against sched_clock() occasionally going backwards:
336 */
337 if (unlikely(delta < 0)) {
338 clock++;
339 rq->clock_warps++;
340 } else {
341 /*
342 * Catch too large forward jumps too:
343 */
344 if (unlikely(delta > 2*TICK_NSEC)) {
345 clock++;
346 rq->clock_overflows++;
347 } else {
348 if (unlikely(delta > rq->clock_max_delta))
349 rq->clock_max_delta = delta;
350 clock += delta;
351 }
352 }
353
354 rq->prev_clock_raw = now;
355 rq->clock = clock;
Ingo Molnar20d315d2007-07-09 18:51:58 +0200356}
357
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200358static void update_rq_clock(struct rq *rq)
Ingo Molnar20d315d2007-07-09 18:51:58 +0200359{
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200360 if (likely(smp_processor_id() == cpu_of(rq)))
361 __update_rq_clock(rq);
362}
Ingo Molnar20d315d2007-07-09 18:51:58 +0200363
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200364static u64 __rq_clock(struct rq *rq)
365{
366 __update_rq_clock(rq);
Ingo Molnar20d315d2007-07-09 18:51:58 +0200367
368 return rq->clock;
369}
370
371/*
Nick Piggin674311d2005-06-25 14:57:27 -0700372 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700373 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700374 *
375 * The domain tree of any CPU may only be accessed from within
376 * preempt-disabled sections.
377 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700378#define for_each_domain(cpu, __sd) \
379 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
382#define this_rq() (&__get_cpu_var(runqueues))
383#define task_rq(p) cpu_rq(task_cpu(p))
384#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
385
Ingo Molnare436d802007-07-19 21:28:35 +0200386/*
387 * For kernel-internal use: high-speed (but slightly incorrect) per-cpu
388 * clock constructed from sched_clock():
389 */
390unsigned long long cpu_clock(int cpu)
391{
Ingo Molnare436d802007-07-19 21:28:35 +0200392 unsigned long long now;
393 unsigned long flags;
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200394 struct rq *rq;
Ingo Molnare436d802007-07-19 21:28:35 +0200395
Ingo Molnar2cd4d0e2007-07-26 13:40:43 +0200396 local_irq_save(flags);
Ingo Molnarb04a0f42007-08-09 11:16:46 +0200397 rq = cpu_rq(cpu);
398 update_rq_clock(rq);
399 now = rq->clock;
Ingo Molnar2cd4d0e2007-07-26 13:40:43 +0200400 local_irq_restore(flags);
Ingo Molnare436d802007-07-19 21:28:35 +0200401
402 return now;
403}
404
Ingo Molnar138a8ae2007-07-09 18:51:58 +0200405#ifdef CONFIG_FAIR_GROUP_SCHED
406/* Change a task's ->cfs_rq if it moves across CPUs */
407static inline void set_task_cfs_rq(struct task_struct *p)
408{
409 p->se.cfs_rq = &task_rq(p)->cfs;
410}
411#else
412static inline void set_task_cfs_rq(struct task_struct *p)
413{
414}
415#endif
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700418# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700420#ifndef finish_arch_switch
421# define finish_arch_switch(prev) do { } while (0)
422#endif
423
424#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700425static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700426{
427 return rq->curr == p;
428}
429
Ingo Molnar70b97a72006-07-03 00:25:42 -0700430static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700431{
432}
433
Ingo Molnar70b97a72006-07-03 00:25:42 -0700434static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700435{
Ingo Molnarda04c032005-09-13 11:17:59 +0200436#ifdef CONFIG_DEBUG_SPINLOCK
437 /* this is a valid case when another task releases the spinlock */
438 rq->lock.owner = current;
439#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700440 /*
441 * If we are tracking spinlock dependencies then we have to
442 * fix up the runqueue lock - which gets 'carried over' from
443 * prev into current:
444 */
445 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
446
Nick Piggin4866cde2005-06-25 14:57:23 -0700447 spin_unlock_irq(&rq->lock);
448}
449
450#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700451static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700452{
453#ifdef CONFIG_SMP
454 return p->oncpu;
455#else
456 return rq->curr == p;
457#endif
458}
459
Ingo Molnar70b97a72006-07-03 00:25:42 -0700460static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700461{
462#ifdef CONFIG_SMP
463 /*
464 * We can optimise this out completely for !SMP, because the
465 * SMP rebalancing from interrupt is the only thing that cares
466 * here.
467 */
468 next->oncpu = 1;
469#endif
470#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
471 spin_unlock_irq(&rq->lock);
472#else
473 spin_unlock(&rq->lock);
474#endif
475}
476
Ingo Molnar70b97a72006-07-03 00:25:42 -0700477static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700478{
479#ifdef CONFIG_SMP
480 /*
481 * After ->oncpu is cleared, the task can be moved to a different CPU.
482 * We must ensure this doesn't happen until the switch is completely
483 * finished.
484 */
485 smp_wmb();
486 prev->oncpu = 0;
487#endif
488#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
489 local_irq_enable();
490#endif
491}
492#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700495 * __task_rq_lock - lock the runqueue a given task resides on.
496 * Must be called interrupts disabled.
497 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700498static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700499 __acquires(rq->lock)
500{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700501 struct rq *rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -0700502
503repeat_lock_task:
504 rq = task_rq(p);
505 spin_lock(&rq->lock);
506 if (unlikely(rq != task_rq(p))) {
507 spin_unlock(&rq->lock);
508 goto repeat_lock_task;
509 }
510 return rq;
511}
512
513/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 * task_rq_lock - lock the runqueue a given task resides on and disable
515 * interrupts. Note the ordering: we can safely lookup the task_rq without
516 * explicitly disabling preemption.
517 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700518static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 __acquires(rq->lock)
520{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700521 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523repeat_lock_task:
524 local_irq_save(*flags);
525 rq = task_rq(p);
526 spin_lock(&rq->lock);
527 if (unlikely(rq != task_rq(p))) {
528 spin_unlock_irqrestore(&rq->lock, *flags);
529 goto repeat_lock_task;
530 }
531 return rq;
532}
533
Ingo Molnar70b97a72006-07-03 00:25:42 -0700534static inline void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700535 __releases(rq->lock)
536{
537 spin_unlock(&rq->lock);
538}
539
Ingo Molnar70b97a72006-07-03 00:25:42 -0700540static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 __releases(rq->lock)
542{
543 spin_unlock_irqrestore(&rq->lock, *flags);
544}
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -0800547 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700549static inline struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 __acquires(rq->lock)
551{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700552 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554 local_irq_disable();
555 rq = this_rq();
556 spin_lock(&rq->lock);
557
558 return rq;
559}
560
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200561/*
Ingo Molnar1b9f19c2007-07-09 18:51:59 +0200562 * CPU frequency is/was unstable - start new by setting prev_clock_raw:
563 */
564void sched_clock_unstable_event(void)
565{
566 unsigned long flags;
567 struct rq *rq;
568
569 rq = task_rq_lock(current, &flags);
570 rq->prev_clock_raw = sched_clock();
571 rq->clock_unstable_events++;
572 task_rq_unlock(rq, &flags);
573}
574
575/*
Ingo Molnarc24d20d2007-07-09 18:51:59 +0200576 * resched_task - mark a task 'to be rescheduled now'.
577 *
578 * On UP this means the setting of the need_resched flag, on SMP it
579 * might also involve a cross-CPU call to trigger the scheduler on
580 * the target CPU.
581 */
582#ifdef CONFIG_SMP
583
584#ifndef tsk_is_polling
585#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
586#endif
587
588static void resched_task(struct task_struct *p)
589{
590 int cpu;
591
592 assert_spin_locked(&task_rq(p)->lock);
593
594 if (unlikely(test_tsk_thread_flag(p, TIF_NEED_RESCHED)))
595 return;
596
597 set_tsk_thread_flag(p, TIF_NEED_RESCHED);
598
599 cpu = task_cpu(p);
600 if (cpu == smp_processor_id())
601 return;
602
603 /* NEED_RESCHED must be visible before we test polling */
604 smp_mb();
605 if (!tsk_is_polling(p))
606 smp_send_reschedule(cpu);
607}
608
609static void resched_cpu(int cpu)
610{
611 struct rq *rq = cpu_rq(cpu);
612 unsigned long flags;
613
614 if (!spin_trylock_irqsave(&rq->lock, flags))
615 return;
616 resched_task(cpu_curr(cpu));
617 spin_unlock_irqrestore(&rq->lock, flags);
618}
619#else
620static inline void resched_task(struct task_struct *p)
621{
622 assert_spin_locked(&task_rq(p)->lock);
623 set_tsk_need_resched(p);
624}
625#endif
626
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200627static u64 div64_likely32(u64 divident, unsigned long divisor)
628{
629#if BITS_PER_LONG == 32
630 if (likely(divident <= 0xffffffffULL))
631 return (u32)divident / divisor;
632 do_div(divident, divisor);
633
634 return divident;
635#else
636 return divident / divisor;
637#endif
638}
639
640#if BITS_PER_LONG == 32
641# define WMULT_CONST (~0UL)
642#else
643# define WMULT_CONST (1UL << 32)
644#endif
645
646#define WMULT_SHIFT 32
647
Ingo Molnarcb1c4fc2007-08-02 17:41:40 +0200648static unsigned long
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200649calc_delta_mine(unsigned long delta_exec, unsigned long weight,
650 struct load_weight *lw)
651{
652 u64 tmp;
653
654 if (unlikely(!lw->inv_weight))
655 lw->inv_weight = WMULT_CONST / lw->weight;
656
657 tmp = (u64)delta_exec * weight;
658 /*
659 * Check whether we'd overflow the 64-bit multiplication:
660 */
661 if (unlikely(tmp > WMULT_CONST)) {
662 tmp = ((tmp >> WMULT_SHIFT/2) * lw->inv_weight)
663 >> (WMULT_SHIFT/2);
664 } else {
665 tmp = (tmp * lw->inv_weight) >> WMULT_SHIFT;
666 }
667
Ingo Molnarecf691d2007-08-02 17:41:40 +0200668 return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX);
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200669}
670
671static inline unsigned long
672calc_delta_fair(unsigned long delta_exec, struct load_weight *lw)
673{
674 return calc_delta_mine(delta_exec, NICE_0_LOAD, lw);
675}
676
677static void update_load_add(struct load_weight *lw, unsigned long inc)
678{
679 lw->weight += inc;
680 lw->inv_weight = 0;
681}
682
683static void update_load_sub(struct load_weight *lw, unsigned long dec)
684{
685 lw->weight -= dec;
686 lw->inv_weight = 0;
687}
688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689/*
Peter Williams2dd73a42006-06-27 02:54:34 -0700690 * To aid in avoiding the subversion of "niceness" due to uneven distribution
691 * of tasks with abnormal "nice" values across CPUs the contribution that
692 * each task makes to its run queue's load is weighted according to its
693 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
694 * scaled version of the new time slice allocation that they receive on time
695 * slice expiry etc.
696 */
697
Ingo Molnardd41f592007-07-09 18:51:59 +0200698#define WEIGHT_IDLEPRIO 2
699#define WMULT_IDLEPRIO (1 << 31)
700
701/*
702 * Nice levels are multiplicative, with a gentle 10% change for every
703 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
704 * nice 1, it will get ~10% less CPU time than another CPU-bound task
705 * that remained on nice 0.
706 *
707 * The "10% effect" is relative and cumulative: from _any_ nice level,
708 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
Ingo Molnarf9153ee2007-07-16 09:46:30 +0200709 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
710 * If a task goes up by ~10% and another task goes down by ~10% then
711 * the relative distance between them is ~25%.)
Ingo Molnardd41f592007-07-09 18:51:59 +0200712 */
713static const int prio_to_weight[40] = {
714/* -20 */ 88818, 71054, 56843, 45475, 36380, 29104, 23283, 18626, 14901, 11921,
715/* -10 */ 9537, 7629, 6103, 4883, 3906, 3125, 2500, 2000, 1600, 1280,
716/* 0 */ NICE_0_LOAD /* 1024 */,
717/* 1 */ 819, 655, 524, 419, 336, 268, 215, 172, 137,
718/* 10 */ 110, 87, 70, 56, 45, 36, 29, 23, 18, 15,
719};
720
Ingo Molnar5714d2d2007-07-16 09:46:31 +0200721/*
722 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
723 *
724 * In cases where the weight does not change often, we can use the
725 * precalculated inverse to speed up arithmetics by turning divisions
726 * into multiplications:
727 */
Ingo Molnardd41f592007-07-09 18:51:59 +0200728static const u32 prio_to_wmult[40] = {
Ingo Molnare4af30b2007-07-16 09:46:31 +0200729/* -20 */ 48356, 60446, 75558, 94446, 118058,
730/* -15 */ 147573, 184467, 230589, 288233, 360285,
731/* -10 */ 450347, 562979, 703746, 879575, 1099582,
732/* -5 */ 1374389, 1717986, 2147483, 2684354, 3355443,
733/* 0 */ 4194304, 5244160, 6557201, 8196502, 10250518,
734/* 5 */ 12782640, 16025997, 19976592, 24970740, 31350126,
735/* 10 */ 39045157, 49367440, 61356675, 76695844, 95443717,
736/* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
Ingo Molnardd41f592007-07-09 18:51:59 +0200737};
Peter Williams2dd73a42006-06-27 02:54:34 -0700738
Ingo Molnardd41f592007-07-09 18:51:59 +0200739static void activate_task(struct rq *rq, struct task_struct *p, int wakeup);
740
741/*
742 * runqueue iterator, to support SMP load-balancing between different
743 * scheduling classes, without having to expose their internal data
744 * structures to the load-balancing proper:
745 */
746struct rq_iterator {
747 void *arg;
748 struct task_struct *(*start)(void *);
749 struct task_struct *(*next)(void *);
750};
751
752static int balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
753 unsigned long max_nr_move, unsigned long max_load_move,
754 struct sched_domain *sd, enum cpu_idle_type idle,
755 int *all_pinned, unsigned long *load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +0200756 int *this_best_prio, struct rq_iterator *iterator);
Ingo Molnardd41f592007-07-09 18:51:59 +0200757
758#include "sched_stats.h"
759#include "sched_rt.c"
760#include "sched_fair.c"
761#include "sched_idletask.c"
762#ifdef CONFIG_SCHED_DEBUG
763# include "sched_debug.c"
764#endif
765
766#define sched_class_highest (&rt_sched_class)
767
Ingo Molnar9c217242007-08-02 17:41:40 +0200768static void __update_curr_load(struct rq *rq, struct load_stat *ls)
769{
770 if (rq->curr != rq->idle && ls->load.weight) {
771 ls->delta_exec += ls->delta_stat;
772 ls->delta_fair += calc_delta_fair(ls->delta_stat, &ls->load);
773 ls->delta_stat = 0;
774 }
775}
776
777/*
778 * Update delta_exec, delta_fair fields for rq.
779 *
780 * delta_fair clock advances at a rate inversely proportional to
781 * total load (rq->ls.load.weight) on the runqueue, while
782 * delta_exec advances at the same rate as wall-clock (provided
783 * cpu is not idle).
784 *
785 * delta_exec / delta_fair is a measure of the (smoothened) load on this
786 * runqueue over any given interval. This (smoothened) load is used
787 * during load balance.
788 *
789 * This function is called /before/ updating rq->ls.load
790 * and when switching tasks.
791 */
792static void update_curr_load(struct rq *rq, u64 now)
793{
794 struct load_stat *ls = &rq->ls;
795 u64 start;
796
797 start = ls->load_update_start;
798 ls->load_update_start = now;
799 ls->delta_stat += now - start;
800 /*
801 * Stagger updates to ls->delta_fair. Very frequent updates
802 * can be expensive.
803 */
804 if (ls->delta_stat >= sysctl_sched_stat_granularity)
805 __update_curr_load(rq, ls);
806}
807
808static inline void
809inc_load(struct rq *rq, const struct task_struct *p, u64 now)
810{
811 update_curr_load(rq, now);
812 update_load_add(&rq->ls.load, p->se.load.weight);
813}
814
815static inline void
816dec_load(struct rq *rq, const struct task_struct *p, u64 now)
817{
818 update_curr_load(rq, now);
819 update_load_sub(&rq->ls.load, p->se.load.weight);
820}
821
822static void inc_nr_running(struct task_struct *p, struct rq *rq, u64 now)
823{
824 rq->nr_running++;
825 inc_load(rq, p, now);
826}
827
828static void dec_nr_running(struct task_struct *p, struct rq *rq, u64 now)
829{
830 rq->nr_running--;
831 dec_load(rq, p, now);
832}
833
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200834static void set_load_weight(struct task_struct *p)
835{
Ingo Molnardd41f592007-07-09 18:51:59 +0200836 task_rq(p)->cfs.wait_runtime -= p->se.wait_runtime;
837 p->se.wait_runtime = 0;
838
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200839 if (task_has_rt_policy(p)) {
Ingo Molnardd41f592007-07-09 18:51:59 +0200840 p->se.load.weight = prio_to_weight[0] * 2;
841 p->se.load.inv_weight = prio_to_wmult[0] >> 1;
842 return;
843 }
844
845 /*
846 * SCHED_IDLE tasks get minimal weight:
847 */
848 if (p->policy == SCHED_IDLE) {
849 p->se.load.weight = WEIGHT_IDLEPRIO;
850 p->se.load.inv_weight = WMULT_IDLEPRIO;
851 return;
852 }
853
854 p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO];
855 p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO];
Ingo Molnar45bf76d2007-07-09 18:51:59 +0200856}
857
Ingo Molnardd41f592007-07-09 18:51:59 +0200858static void
859enqueue_task(struct rq *rq, struct task_struct *p, int wakeup, u64 now)
Ingo Molnar71f8bd42007-07-09 18:51:59 +0200860{
861 sched_info_queued(p);
Ingo Molnardd41f592007-07-09 18:51:59 +0200862 p->sched_class->enqueue_task(rq, p, wakeup, now);
863 p->se.on_rq = 1;
864}
865
866static void
867dequeue_task(struct rq *rq, struct task_struct *p, int sleep, u64 now)
868{
869 p->sched_class->dequeue_task(rq, p, sleep, now);
870 p->se.on_rq = 0;
Ingo Molnar71f8bd42007-07-09 18:51:59 +0200871}
872
873/*
Ingo Molnardd41f592007-07-09 18:51:59 +0200874 * __normal_prio - return the priority that is based on the static prio
Ingo Molnar71f8bd42007-07-09 18:51:59 +0200875 */
Ingo Molnar14531182007-07-09 18:51:59 +0200876static inline int __normal_prio(struct task_struct *p)
877{
Ingo Molnardd41f592007-07-09 18:51:59 +0200878 return p->static_prio;
Ingo Molnar14531182007-07-09 18:51:59 +0200879}
880
881/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700882 * Calculate the expected normal priority: i.e. priority
883 * without taking RT-inheritance into account. Might be
884 * boosted by interactivity modifiers. Changes upon fork,
885 * setprio syscalls, and whenever the interactivity
886 * estimator recalculates.
887 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700888static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700889{
890 int prio;
891
Ingo Molnare05606d2007-07-09 18:51:59 +0200892 if (task_has_rt_policy(p))
Ingo Molnarb29739f2006-06-27 02:54:51 -0700893 prio = MAX_RT_PRIO-1 - p->rt_priority;
894 else
895 prio = __normal_prio(p);
896 return prio;
897}
898
899/*
900 * Calculate the current priority, i.e. the priority
901 * taken into account by the scheduler. This value might
902 * be boosted by RT tasks, or might be boosted by
903 * interactivity modifiers. Will be RT if the task got
904 * RT-boosted. If not then it returns p->normal_prio.
905 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700906static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700907{
908 p->normal_prio = normal_prio(p);
909 /*
910 * If we are RT tasks or we were boosted to RT priority,
911 * keep the priority unchanged. Otherwise, update priority
912 * to the normal priority:
913 */
914 if (!rt_prio(p->prio))
915 return p->normal_prio;
916 return p->prio;
917}
918
919/*
Ingo Molnardd41f592007-07-09 18:51:59 +0200920 * activate_task - move a task to the runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 */
Ingo Molnardd41f592007-07-09 18:51:59 +0200922static void activate_task(struct rq *rq, struct task_struct *p, int wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
Ingo Molnara8e504d2007-08-09 11:16:47 +0200924 u64 now;
925
926 update_rq_clock(rq);
927 now = rq->clock;
Con Kolivasd425b272006-03-31 02:31:29 -0800928
Ingo Molnardd41f592007-07-09 18:51:59 +0200929 if (p->state == TASK_UNINTERRUPTIBLE)
930 rq->nr_uninterruptible--;
931
932 enqueue_task(rq, p, wakeup, now);
933 inc_nr_running(p, rq, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934}
935
936/*
Ingo Molnardd41f592007-07-09 18:51:59 +0200937 * activate_idle_task - move idle task to the _front_ of runqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 */
Ingo Molnardd41f592007-07-09 18:51:59 +0200939static inline void activate_idle_task(struct task_struct *p, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940{
Ingo Molnara8e504d2007-08-09 11:16:47 +0200941 u64 now;
942
943 update_rq_clock(rq);
944 now = rq->clock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Ingo Molnardd41f592007-07-09 18:51:59 +0200946 if (p->state == TASK_UNINTERRUPTIBLE)
947 rq->nr_uninterruptible--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
Ingo Molnardd41f592007-07-09 18:51:59 +0200949 enqueue_task(rq, p, 0, now);
950 inc_nr_running(p, rq, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
952
953/*
954 * deactivate_task - remove a task from the runqueue.
955 */
Ingo Molnar8e717b12007-08-09 11:16:46 +0200956static void
957deactivate_task(struct rq *rq, struct task_struct *p, int sleep, u64 now)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
Ingo Molnardd41f592007-07-09 18:51:59 +0200959 if (p->state == TASK_UNINTERRUPTIBLE)
960 rq->nr_uninterruptible++;
961
962 dequeue_task(rq, p, sleep, now);
963 dec_nr_running(p, rq, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964}
965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966/**
967 * task_curr - is this task currently executing on a CPU?
968 * @p: the task in question.
969 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700970inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
972 return cpu_curr(task_cpu(p)) == p;
973}
974
Peter Williams2dd73a42006-06-27 02:54:34 -0700975/* Used instead of source_load when we know the type == 0 */
976unsigned long weighted_cpuload(const int cpu)
977{
Ingo Molnardd41f592007-07-09 18:51:59 +0200978 return cpu_rq(cpu)->ls.load.weight;
979}
980
981static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
982{
983#ifdef CONFIG_SMP
984 task_thread_info(p)->cpu = cpu;
985 set_task_cfs_rq(p);
986#endif
Peter Williams2dd73a42006-06-27 02:54:34 -0700987}
988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989#ifdef CONFIG_SMP
Ingo Molnarc65cc872007-07-09 18:51:58 +0200990
Ingo Molnardd41f592007-07-09 18:51:59 +0200991void set_task_cpu(struct task_struct *p, unsigned int new_cpu)
Ingo Molnarc65cc872007-07-09 18:51:58 +0200992{
Ingo Molnardd41f592007-07-09 18:51:59 +0200993 int old_cpu = task_cpu(p);
994 struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu);
995 u64 clock_offset, fair_clock_offset;
996
997 clock_offset = old_rq->clock - new_rq->clock;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +0200998 fair_clock_offset = old_rq->cfs.fair_clock - new_rq->cfs.fair_clock;
999
Ingo Molnardd41f592007-07-09 18:51:59 +02001000 if (p->se.wait_start_fair)
1001 p->se.wait_start_fair -= fair_clock_offset;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001002 if (p->se.sleep_start_fair)
1003 p->se.sleep_start_fair -= fair_clock_offset;
1004
1005#ifdef CONFIG_SCHEDSTATS
1006 if (p->se.wait_start)
1007 p->se.wait_start -= clock_offset;
Ingo Molnardd41f592007-07-09 18:51:59 +02001008 if (p->se.sleep_start)
1009 p->se.sleep_start -= clock_offset;
1010 if (p->se.block_start)
1011 p->se.block_start -= clock_offset;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001012#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02001013
1014 __set_task_cpu(p, new_cpu);
Ingo Molnarc65cc872007-07-09 18:51:58 +02001015}
1016
Ingo Molnar70b97a72006-07-03 00:25:42 -07001017struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Ingo Molnar36c8b582006-07-03 00:25:41 -07001020 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 int dest_cpu;
1022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001024};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026/*
1027 * The task's runqueue lock must be held.
1028 * Returns true if you have to wait for migration thread.
1029 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001030static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07001031migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001033 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
1035 /*
1036 * If the task is not on a runqueue (and not running), then
1037 * it is sufficient to simply update the task's cpu field.
1038 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001039 if (!p->se.on_rq && !task_running(rq, p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 set_task_cpu(p, dest_cpu);
1041 return 0;
1042 }
1043
1044 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 req->task = p;
1046 req->dest_cpu = dest_cpu;
1047 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07001048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 return 1;
1050}
1051
1052/*
1053 * wait_task_inactive - wait for a thread to unschedule.
1054 *
1055 * The caller must ensure that the task *will* unschedule sometime soon,
1056 * else this function might spin for a *long* time. This function can't
1057 * be called with interrupts off, or it may introduce deadlock with
1058 * smp_call_function() if an IPI is sent by the same process we are
1059 * waiting to become inactive.
1060 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001061void wait_task_inactive(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
1063 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001064 int running, on_rq;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001065 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
1067repeat:
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001068 /*
1069 * We do the initial early heuristics without holding
1070 * any task-queue locks at all. We'll only try to get
1071 * the runqueue lock when things look like they will
1072 * work out!
1073 */
1074 rq = task_rq(p);
1075
1076 /*
1077 * If the task is actively running on another CPU
1078 * still, just relax and busy-wait without holding
1079 * any locks.
1080 *
1081 * NOTE! Since we don't hold any locks, it's not
1082 * even sure that "rq" stays as the right runqueue!
1083 * But we don't care, since "task_running()" will
1084 * return false if the runqueue has changed and p
1085 * is actually now running somewhere else!
1086 */
1087 while (task_running(rq, p))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 cpu_relax();
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001089
1090 /*
1091 * Ok, time to look more closely! We need the rq
1092 * lock now, to be *sure*. If we're wrong, we'll
1093 * just go back and repeat.
1094 */
1095 rq = task_rq_lock(p, &flags);
1096 running = task_running(rq, p);
Ingo Molnardd41f592007-07-09 18:51:59 +02001097 on_rq = p->se.on_rq;
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001098 task_rq_unlock(rq, &flags);
1099
1100 /*
1101 * Was it really running after all now that we
1102 * checked with the proper locks actually held?
1103 *
1104 * Oops. Go back and try again..
1105 */
1106 if (unlikely(running)) {
1107 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 goto repeat;
1109 }
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001110
1111 /*
1112 * It's not enough that it's not actively running,
1113 * it must be off the runqueue _entirely_, and not
1114 * preempted!
1115 *
1116 * So if it wa still runnable (but just not actively
1117 * running right now), it's preempted, and we should
1118 * yield - it could be a while.
1119 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001120 if (unlikely(on_rq)) {
Linus Torvaldsfa490cf2007-06-18 09:34:40 -07001121 yield();
1122 goto repeat;
1123 }
1124
1125 /*
1126 * Ahh, all good. It wasn't running, and it wasn't
1127 * runnable, which means that it will never become
1128 * running in the future either. We're all done!
1129 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
1131
1132/***
1133 * kick_process - kick a running thread to enter/exit the kernel
1134 * @p: the to-be-kicked thread
1135 *
1136 * Cause a process which is running on another CPU to enter
1137 * kernel-mode, without any delay. (to get signals handled.)
1138 *
1139 * NOTE: this function doesnt have to take the runqueue lock,
1140 * because all it wants to ensure is that the remote task enters
1141 * the kernel. If the IPI races and the task has been migrated
1142 * to another CPU then no harm is done and the purpose has been
1143 * achieved as well.
1144 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001145void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146{
1147 int cpu;
1148
1149 preempt_disable();
1150 cpu = task_cpu(p);
1151 if ((cpu != smp_processor_id()) && task_curr(p))
1152 smp_send_reschedule(cpu);
1153 preempt_enable();
1154}
1155
1156/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001157 * Return a low guess at the load of a migration-source cpu weighted
1158 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 *
1160 * We want to under-estimate the load of migration sources, to
1161 * balance conservatively.
1162 */
Con Kolivasb9104722005-11-08 21:38:55 -08001163static inline unsigned long source_load(int cpu, int type)
1164{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001165 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001166 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001167
Peter Williams2dd73a42006-06-27 02:54:34 -07001168 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001169 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001170
Ingo Molnardd41f592007-07-09 18:51:59 +02001171 return min(rq->cpu_load[type-1], total);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172}
1173
1174/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001175 * Return a high guess at the load of a migration-target cpu weighted
1176 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 */
Con Kolivasb9104722005-11-08 21:38:55 -08001178static inline unsigned long target_load(int cpu, int type)
1179{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001180 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001181 unsigned long total = weighted_cpuload(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001182
Peter Williams2dd73a42006-06-27 02:54:34 -07001183 if (type == 0)
Ingo Molnardd41f592007-07-09 18:51:59 +02001184 return total;
Peter Williams2dd73a42006-06-27 02:54:34 -07001185
Ingo Molnardd41f592007-07-09 18:51:59 +02001186 return max(rq->cpu_load[type-1], total);
Peter Williams2dd73a42006-06-27 02:54:34 -07001187}
1188
1189/*
1190 * Return the average load per task on the cpu's run queue
1191 */
1192static inline unsigned long cpu_avg_load_per_task(int cpu)
1193{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001194 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02001195 unsigned long total = weighted_cpuload(cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07001196 unsigned long n = rq->nr_running;
1197
Ingo Molnardd41f592007-07-09 18:51:59 +02001198 return n ? total / n : SCHED_LOAD_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199}
1200
Nick Piggin147cbb42005-06-25 14:57:19 -07001201/*
1202 * find_idlest_group finds and returns the least busy CPU group within the
1203 * domain.
1204 */
1205static struct sched_group *
1206find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
1207{
1208 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
1209 unsigned long min_load = ULONG_MAX, this_load = 0;
1210 int load_idx = sd->forkexec_idx;
1211 int imbalance = 100 + (sd->imbalance_pct-100)/2;
1212
1213 do {
1214 unsigned long load, avg_load;
1215 int local_group;
1216 int i;
1217
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001218 /* Skip over this group if it has no CPUs allowed */
1219 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
1220 goto nextgroup;
1221
Nick Piggin147cbb42005-06-25 14:57:19 -07001222 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07001223
1224 /* Tally up the load of all CPUs in the group */
1225 avg_load = 0;
1226
1227 for_each_cpu_mask(i, group->cpumask) {
1228 /* Bias balancing toward cpus of our domain */
1229 if (local_group)
1230 load = source_load(i, load_idx);
1231 else
1232 load = target_load(i, load_idx);
1233
1234 avg_load += load;
1235 }
1236
1237 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07001238 avg_load = sg_div_cpu_power(group,
1239 avg_load * SCHED_LOAD_SCALE);
Nick Piggin147cbb42005-06-25 14:57:19 -07001240
1241 if (local_group) {
1242 this_load = avg_load;
1243 this = group;
1244 } else if (avg_load < min_load) {
1245 min_load = avg_load;
1246 idlest = group;
1247 }
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001248nextgroup:
Nick Piggin147cbb42005-06-25 14:57:19 -07001249 group = group->next;
1250 } while (group != sd->groups);
1251
1252 if (!idlest || 100*this_load < imbalance*min_load)
1253 return NULL;
1254 return idlest;
1255}
1256
1257/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07001258 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07001259 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07001260static int
1261find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu)
Nick Piggin147cbb42005-06-25 14:57:19 -07001262{
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001263 cpumask_t tmp;
Nick Piggin147cbb42005-06-25 14:57:19 -07001264 unsigned long load, min_load = ULONG_MAX;
1265 int idlest = -1;
1266 int i;
1267
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001268 /* Traverse only the allowed CPUs */
1269 cpus_and(tmp, group->cpumask, p->cpus_allowed);
1270
1271 for_each_cpu_mask(i, tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07001272 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07001273
1274 if (load < min_load || (load == min_load && i == this_cpu)) {
1275 min_load = load;
1276 idlest = i;
1277 }
1278 }
1279
1280 return idlest;
1281}
1282
Nick Piggin476d1392005-06-25 14:57:29 -07001283/*
1284 * sched_balance_self: balance the current task (running on cpu) in domains
1285 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
1286 * SD_BALANCE_EXEC.
1287 *
1288 * Balance, ie. select the least loaded group.
1289 *
1290 * Returns the target CPU number, or the same CPU if no balancing is needed.
1291 *
1292 * preempt must be disabled.
1293 */
1294static int sched_balance_self(int cpu, int flag)
1295{
1296 struct task_struct *t = current;
1297 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07001298
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001299 for_each_domain(cpu, tmp) {
Ingo Molnar9761eea2007-07-09 18:52:00 +02001300 /*
1301 * If power savings logic is enabled for a domain, stop there.
1302 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07001303 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
1304 break;
Nick Piggin476d1392005-06-25 14:57:29 -07001305 if (tmp->flags & flag)
1306 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001307 }
Nick Piggin476d1392005-06-25 14:57:29 -07001308
1309 while (sd) {
1310 cpumask_t span;
1311 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001312 int new_cpu, weight;
1313
1314 if (!(sd->flags & flag)) {
1315 sd = sd->child;
1316 continue;
1317 }
Nick Piggin476d1392005-06-25 14:57:29 -07001318
1319 span = sd->span;
1320 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001321 if (!group) {
1322 sd = sd->child;
1323 continue;
1324 }
Nick Piggin476d1392005-06-25 14:57:29 -07001325
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001326 new_cpu = find_idlest_cpu(group, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001327 if (new_cpu == -1 || new_cpu == cpu) {
1328 /* Now try balancing at a lower domain level of cpu */
1329 sd = sd->child;
1330 continue;
1331 }
Nick Piggin476d1392005-06-25 14:57:29 -07001332
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001333 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07001334 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07001335 sd = NULL;
1336 weight = cpus_weight(span);
1337 for_each_domain(cpu, tmp) {
1338 if (weight <= cpus_weight(tmp->span))
1339 break;
1340 if (tmp->flags & flag)
1341 sd = tmp;
1342 }
1343 /* while loop will break here if sd == NULL */
1344 }
1345
1346 return cpu;
1347}
1348
1349#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
1351/*
1352 * wake_idle() will wake a task on an idle cpu if task->cpu is
1353 * not idle and an idle cpu is available. The span of cpus to
1354 * search starts with cpus closest then further out as needed,
1355 * so we always favor a closer, idle cpu.
1356 *
1357 * Returns the CPU we should wake onto.
1358 */
1359#if defined(ARCH_HAS_SCHED_WAKE_IDLE)
Ingo Molnar36c8b582006-07-03 00:25:41 -07001360static int wake_idle(int cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361{
1362 cpumask_t tmp;
1363 struct sched_domain *sd;
1364 int i;
1365
Siddha, Suresh B49531982007-05-08 00:33:01 -07001366 /*
1367 * If it is idle, then it is the best cpu to run this task.
1368 *
1369 * This cpu is also the best, if it has more than one task already.
1370 * Siblings must be also busy(in most cases) as they didn't already
1371 * pickup the extra load from this cpu and hence we need not check
1372 * sibling runqueue info. This will avoid the checks and cache miss
1373 * penalities associated with that.
1374 */
1375 if (idle_cpu(cpu) || cpu_rq(cpu)->nr_running > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 return cpu;
1377
1378 for_each_domain(cpu, sd) {
1379 if (sd->flags & SD_WAKE_IDLE) {
Nick Piggine0f364f2005-06-25 14:57:06 -07001380 cpus_and(tmp, sd->span, p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 for_each_cpu_mask(i, tmp) {
1382 if (idle_cpu(i))
1383 return i;
1384 }
Ingo Molnar9761eea2007-07-09 18:52:00 +02001385 } else {
Nick Piggine0f364f2005-06-25 14:57:06 -07001386 break;
Ingo Molnar9761eea2007-07-09 18:52:00 +02001387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 }
1389 return cpu;
1390}
1391#else
Ingo Molnar36c8b582006-07-03 00:25:41 -07001392static inline int wake_idle(int cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393{
1394 return cpu;
1395}
1396#endif
1397
1398/***
1399 * try_to_wake_up - wake up a thread
1400 * @p: the to-be-woken-up thread
1401 * @state: the mask of task states that can be woken
1402 * @sync: do a synchronous wakeup?
1403 *
1404 * Put it on the run-queue if it's not already there. The "current"
1405 * thread is always on the run-queue (except when the actual
1406 * re-schedule is in progress), and as such you're allowed to do
1407 * the simpler "current->state = TASK_RUNNING" to mark yourself
1408 * runnable without the overhead of this.
1409 *
1410 * returns failure only if the task is already active.
1411 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001412static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413{
1414 int cpu, this_cpu, success = 0;
1415 unsigned long flags;
1416 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001417 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418#ifdef CONFIG_SMP
Nick Piggin78979862005-06-25 14:57:13 -07001419 struct sched_domain *sd, *this_sd = NULL;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001420 unsigned long load, this_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 int new_cpu;
1422#endif
1423
1424 rq = task_rq_lock(p, &flags);
1425 old_state = p->state;
1426 if (!(old_state & state))
1427 goto out;
1428
Ingo Molnardd41f592007-07-09 18:51:59 +02001429 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 goto out_running;
1431
1432 cpu = task_cpu(p);
1433 this_cpu = smp_processor_id();
1434
1435#ifdef CONFIG_SMP
1436 if (unlikely(task_running(rq, p)))
1437 goto out_activate;
1438
Nick Piggin78979862005-06-25 14:57:13 -07001439 new_cpu = cpu;
1440
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 schedstat_inc(rq, ttwu_cnt);
1442 if (cpu == this_cpu) {
1443 schedstat_inc(rq, ttwu_local);
Nick Piggin78979862005-06-25 14:57:13 -07001444 goto out_set_cpu;
1445 }
1446
1447 for_each_domain(this_cpu, sd) {
1448 if (cpu_isset(cpu, sd->span)) {
1449 schedstat_inc(sd, ttwu_wake_remote);
1450 this_sd = sd;
1451 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 }
1453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Nick Piggin78979862005-06-25 14:57:13 -07001455 if (unlikely(!cpu_isset(this_cpu, p->cpus_allowed)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 goto out_set_cpu;
1457
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 /*
Nick Piggin78979862005-06-25 14:57:13 -07001459 * Check for affine wakeup and passive balancing possibilities.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 */
Nick Piggin78979862005-06-25 14:57:13 -07001461 if (this_sd) {
1462 int idx = this_sd->wake_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 unsigned int imbalance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Nick Piggina3f21bc2005-06-25 14:57:15 -07001465 imbalance = 100 + (this_sd->imbalance_pct - 100) / 2;
1466
Nick Piggin78979862005-06-25 14:57:13 -07001467 load = source_load(cpu, idx);
1468 this_load = target_load(this_cpu, idx);
1469
Nick Piggin78979862005-06-25 14:57:13 -07001470 new_cpu = this_cpu; /* Wake to this CPU if we can */
1471
Nick Piggina3f21bc2005-06-25 14:57:15 -07001472 if (this_sd->flags & SD_WAKE_AFFINE) {
1473 unsigned long tl = this_load;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08001474 unsigned long tl_per_task;
1475
1476 tl_per_task = cpu_avg_load_per_task(this_cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07001477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 /*
Nick Piggina3f21bc2005-06-25 14:57:15 -07001479 * If sync wakeup then subtract the (maximum possible)
1480 * effect of the currently running task from the load
1481 * of the current CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 */
Nick Piggina3f21bc2005-06-25 14:57:15 -07001483 if (sync)
Ingo Molnardd41f592007-07-09 18:51:59 +02001484 tl -= current->se.load.weight;
Nick Piggina3f21bc2005-06-25 14:57:15 -07001485
1486 if ((tl <= load &&
Peter Williams2dd73a42006-06-27 02:54:34 -07001487 tl + target_load(cpu, idx) <= tl_per_task) ||
Ingo Molnardd41f592007-07-09 18:51:59 +02001488 100*(tl + p->se.load.weight) <= imbalance*load) {
Nick Piggina3f21bc2005-06-25 14:57:15 -07001489 /*
1490 * This domain has SD_WAKE_AFFINE and
1491 * p is cache cold in this domain, and
1492 * there is no bad imbalance.
1493 */
1494 schedstat_inc(this_sd, ttwu_move_affine);
1495 goto out_set_cpu;
1496 }
1497 }
1498
1499 /*
1500 * Start passive balancing when half the imbalance_pct
1501 * limit is reached.
1502 */
1503 if (this_sd->flags & SD_WAKE_BALANCE) {
1504 if (imbalance*this_load <= 100*load) {
1505 schedstat_inc(this_sd, ttwu_move_balance);
1506 goto out_set_cpu;
1507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 }
1509 }
1510
1511 new_cpu = cpu; /* Could not wake to this_cpu. Wake to cpu instead */
1512out_set_cpu:
1513 new_cpu = wake_idle(new_cpu, p);
1514 if (new_cpu != cpu) {
1515 set_task_cpu(p, new_cpu);
1516 task_rq_unlock(rq, &flags);
1517 /* might preempt at this point */
1518 rq = task_rq_lock(p, &flags);
1519 old_state = p->state;
1520 if (!(old_state & state))
1521 goto out;
Ingo Molnardd41f592007-07-09 18:51:59 +02001522 if (p->se.on_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 goto out_running;
1524
1525 this_cpu = smp_processor_id();
1526 cpu = task_cpu(p);
1527 }
1528
1529out_activate:
1530#endif /* CONFIG_SMP */
Ingo Molnardd41f592007-07-09 18:51:59 +02001531 activate_task(rq, p, 1);
Ingo Molnard79fc0f2005-09-10 00:26:12 -07001532 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 * Sync wakeups (i.e. those types of wakeups where the waker
1534 * has indicated that it will leave the CPU in short order)
1535 * don't trigger a preemption, if the woken up task will run on
1536 * this cpu. (in this case the 'I will reschedule' promise of
1537 * the waker guarantees that the freshly woken up task is going
1538 * to be considered on this CPU.)
1539 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001540 if (!sync || cpu != this_cpu)
1541 check_preempt_curr(rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 success = 1;
1543
1544out_running:
1545 p->state = TASK_RUNNING;
1546out:
1547 task_rq_unlock(rq, &flags);
1548
1549 return success;
1550}
1551
Ingo Molnar36c8b582006-07-03 00:25:41 -07001552int fastcall wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553{
1554 return try_to_wake_up(p, TASK_STOPPED | TASK_TRACED |
1555 TASK_INTERRUPTIBLE | TASK_UNINTERRUPTIBLE, 0);
1556}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557EXPORT_SYMBOL(wake_up_process);
1558
Ingo Molnar36c8b582006-07-03 00:25:41 -07001559int fastcall wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560{
1561 return try_to_wake_up(p, state, 0);
1562}
1563
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564/*
1565 * Perform scheduler related setup for a newly forked process p.
1566 * p is forked by current.
Ingo Molnardd41f592007-07-09 18:51:59 +02001567 *
1568 * __sched_fork() is basic setup used by init_idle() too:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001570static void __sched_fork(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
Ingo Molnardd41f592007-07-09 18:51:59 +02001572 p->se.wait_start_fair = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001573 p->se.exec_start = 0;
1574 p->se.sum_exec_runtime = 0;
1575 p->se.delta_exec = 0;
1576 p->se.delta_fair_run = 0;
1577 p->se.delta_fair_sleep = 0;
1578 p->se.wait_runtime = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001579 p->se.sleep_start_fair = 0;
1580
1581#ifdef CONFIG_SCHEDSTATS
1582 p->se.wait_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001583 p->se.sum_wait_runtime = 0;
1584 p->se.sum_sleep_runtime = 0;
1585 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02001586 p->se.block_start = 0;
1587 p->se.sleep_max = 0;
1588 p->se.block_max = 0;
1589 p->se.exec_max = 0;
1590 p->se.wait_max = 0;
1591 p->se.wait_runtime_overruns = 0;
1592 p->se.wait_runtime_underruns = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02001593#endif
Nick Piggin476d1392005-06-25 14:57:29 -07001594
Ingo Molnardd41f592007-07-09 18:51:59 +02001595 INIT_LIST_HEAD(&p->run_list);
1596 p->se.on_rq = 0;
Nick Piggin476d1392005-06-25 14:57:29 -07001597
Avi Kivitye107be32007-07-26 13:40:43 +02001598#ifdef CONFIG_PREEMPT_NOTIFIERS
1599 INIT_HLIST_HEAD(&p->preempt_notifiers);
1600#endif
1601
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 /*
1603 * We mark the process as running here, but have not actually
1604 * inserted it onto the runqueue yet. This guarantees that
1605 * nobody will actually run it, and a signal or other external
1606 * event cannot wake it up and insert it on the runqueue either.
1607 */
1608 p->state = TASK_RUNNING;
Ingo Molnardd41f592007-07-09 18:51:59 +02001609}
1610
1611/*
1612 * fork()/clone()-time setup:
1613 */
1614void sched_fork(struct task_struct *p, int clone_flags)
1615{
1616 int cpu = get_cpu();
1617
1618 __sched_fork(p);
1619
1620#ifdef CONFIG_SMP
1621 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
1622#endif
1623 __set_task_cpu(p, cpu);
Ingo Molnarb29739f2006-06-27 02:54:51 -07001624
1625 /*
1626 * Make sure we do not leak PI boosting priority to the child:
1627 */
1628 p->prio = current->normal_prio;
1629
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001630#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Ingo Molnardd41f592007-07-09 18:51:59 +02001631 if (likely(sched_info_on()))
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001632 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08001634#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07001635 p->oncpu = 0;
1636#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07001638 /* Want to start with kernel preemption disabled. */
Al Viroa1261f52005-11-13 16:06:55 -08001639 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640#endif
Nick Piggin476d1392005-06-25 14:57:29 -07001641 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642}
1643
1644/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001645 * After fork, child runs first. (default) If set to 0 then
1646 * parent will (try to) run first.
1647 */
1648unsigned int __read_mostly sysctl_sched_child_runs_first = 1;
1649
1650/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 * wake_up_new_task - wake up a newly created task for the first time.
1652 *
1653 * This function will do some initial scheduler statistics housekeeping
1654 * that must be done for every newly created context, then puts the task
1655 * on the runqueue and wakes it.
1656 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001657void fastcall wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658{
1659 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02001660 struct rq *rq;
1661 int this_cpu;
Ingo Molnarcad60d92007-08-02 17:41:40 +02001662 u64 now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
1664 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 BUG_ON(p->state != TASK_RUNNING);
Ingo Molnardd41f592007-07-09 18:51:59 +02001666 this_cpu = smp_processor_id(); /* parent's CPU */
Ingo Molnara8e504d2007-08-09 11:16:47 +02001667 update_rq_clock(rq);
1668 now = rq->clock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
1670 p->prio = effective_prio(p);
1671
Ingo Molnarcad60d92007-08-02 17:41:40 +02001672 if (!p->sched_class->task_new || !sysctl_sched_child_runs_first ||
1673 (clone_flags & CLONE_VM) || task_cpu(p) != this_cpu ||
1674 !current->se.on_rq) {
1675
Ingo Molnardd41f592007-07-09 18:51:59 +02001676 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02001679 * Let the scheduling class do new task startup
1680 * management (if any):
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 */
Ingo Molnarcad60d92007-08-02 17:41:40 +02001682 p->sched_class->task_new(rq, p, now);
1683 inc_nr_running(p, rq, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 }
Ingo Molnardd41f592007-07-09 18:51:59 +02001685 check_preempt_curr(rq, p);
1686 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687}
1688
Avi Kivitye107be32007-07-26 13:40:43 +02001689#ifdef CONFIG_PREEMPT_NOTIFIERS
1690
1691/**
Randy Dunlap421cee22007-07-31 00:37:50 -07001692 * preempt_notifier_register - tell me when current is being being preempted & rescheduled
1693 * @notifier: notifier struct to register
Avi Kivitye107be32007-07-26 13:40:43 +02001694 */
1695void preempt_notifier_register(struct preempt_notifier *notifier)
1696{
1697 hlist_add_head(&notifier->link, &current->preempt_notifiers);
1698}
1699EXPORT_SYMBOL_GPL(preempt_notifier_register);
1700
1701/**
1702 * preempt_notifier_unregister - no longer interested in preemption notifications
Randy Dunlap421cee22007-07-31 00:37:50 -07001703 * @notifier: notifier struct to unregister
Avi Kivitye107be32007-07-26 13:40:43 +02001704 *
1705 * This is safe to call from within a preemption notifier.
1706 */
1707void preempt_notifier_unregister(struct preempt_notifier *notifier)
1708{
1709 hlist_del(&notifier->link);
1710}
1711EXPORT_SYMBOL_GPL(preempt_notifier_unregister);
1712
1713static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
1714{
1715 struct preempt_notifier *notifier;
1716 struct hlist_node *node;
1717
1718 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
1719 notifier->ops->sched_in(notifier, raw_smp_processor_id());
1720}
1721
1722static void
1723fire_sched_out_preempt_notifiers(struct task_struct *curr,
1724 struct task_struct *next)
1725{
1726 struct preempt_notifier *notifier;
1727 struct hlist_node *node;
1728
1729 hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link)
1730 notifier->ops->sched_out(notifier, next);
1731}
1732
1733#else
1734
1735static void fire_sched_in_preempt_notifiers(struct task_struct *curr)
1736{
1737}
1738
1739static void
1740fire_sched_out_preempt_notifiers(struct task_struct *curr,
1741 struct task_struct *next)
1742{
1743}
1744
1745#endif
1746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747/**
Nick Piggin4866cde2005-06-25 14:57:23 -07001748 * prepare_task_switch - prepare to switch tasks
1749 * @rq: the runqueue preparing to switch
Randy Dunlap421cee22007-07-31 00:37:50 -07001750 * @prev: the current task that is being switched out
Nick Piggin4866cde2005-06-25 14:57:23 -07001751 * @next: the task we are going to switch to.
1752 *
1753 * This is called with the rq lock held and interrupts off. It must
1754 * be paired with a subsequent finish_task_switch after the context
1755 * switch.
1756 *
1757 * prepare_task_switch sets up locking and calls architecture specific
1758 * hooks.
1759 */
Avi Kivitye107be32007-07-26 13:40:43 +02001760static inline void
1761prepare_task_switch(struct rq *rq, struct task_struct *prev,
1762 struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07001763{
Avi Kivitye107be32007-07-26 13:40:43 +02001764 fire_sched_out_preempt_notifiers(prev, next);
Nick Piggin4866cde2005-06-25 14:57:23 -07001765 prepare_lock_switch(rq, next);
1766 prepare_arch_switch(next);
1767}
1768
1769/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04001771 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 * @prev: the thread we just switched away from.
1773 *
Nick Piggin4866cde2005-06-25 14:57:23 -07001774 * finish_task_switch must be called after the context switch, paired
1775 * with a prepare_task_switch call before the context switch.
1776 * finish_task_switch will reconcile locking set up by prepare_task_switch,
1777 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 *
1779 * Note that we may have delayed dropping an mm in context_switch(). If
1780 * so, we finish that here outside of the runqueue lock. (Doing it
1781 * with the lock held can cause deadlocks; see schedule() for
1782 * details.)
1783 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001784static inline void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 __releases(rq->lock)
1786{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07001788 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
1790 rq->prev_mm = NULL;
1791
1792 /*
1793 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07001794 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07001795 * schedule one last time. The schedule call will never return, and
1796 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07001797 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 * still held, otherwise prev could be scheduled on another cpu, die
1799 * there before we look at prev->state, and then the reference would
1800 * be dropped twice.
1801 * Manfred Spraul <manfred@colorfullife.com>
1802 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07001803 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07001804 finish_arch_switch(prev);
1805 finish_lock_switch(rq, prev);
Avi Kivitye107be32007-07-26 13:40:43 +02001806 fire_sched_in_preempt_notifiers(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 if (mm)
1808 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07001809 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08001810 /*
1811 * Remove function-return probe instances associated with this
1812 * task and put them back on the free list.
Ingo Molnar9761eea2007-07-09 18:52:00 +02001813 */
bibo maoc6fd91f2006-03-26 01:38:20 -08001814 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08001816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817}
1818
1819/**
1820 * schedule_tail - first thing a freshly forked thread must call.
1821 * @prev: the thread we just switched away from.
1822 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001823asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 __releases(rq->lock)
1825{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001826 struct rq *rq = this_rq();
1827
Nick Piggin4866cde2005-06-25 14:57:23 -07001828 finish_task_switch(rq, prev);
1829#ifdef __ARCH_WANT_UNLOCKED_CTXSW
1830 /* In this case, finish_task_switch does not reenable preemption */
1831 preempt_enable();
1832#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 if (current->set_child_tid)
1834 put_user(current->pid, current->set_child_tid);
1835}
1836
1837/*
1838 * context_switch - switch to the new MM and the new
1839 * thread's register state.
1840 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001841static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07001842context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07001843 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844{
Ingo Molnardd41f592007-07-09 18:51:59 +02001845 struct mm_struct *mm, *oldmm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
Avi Kivitye107be32007-07-26 13:40:43 +02001847 prepare_task_switch(rq, prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02001848 mm = next->mm;
1849 oldmm = prev->active_mm;
Zachary Amsden9226d122007-02-13 13:26:21 +01001850 /*
1851 * For paravirt, this is coupled with an exit in switch_to to
1852 * combine the page table reload and the switch backend into
1853 * one hypercall.
1854 */
1855 arch_enter_lazy_cpu_mode();
1856
Ingo Molnardd41f592007-07-09 18:51:59 +02001857 if (unlikely(!mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 next->active_mm = oldmm;
1859 atomic_inc(&oldmm->mm_count);
1860 enter_lazy_tlb(oldmm, next);
1861 } else
1862 switch_mm(oldmm, mm, next);
1863
Ingo Molnardd41f592007-07-09 18:51:59 +02001864 if (unlikely(!prev->mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 prev->active_mm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 rq->prev_mm = oldmm;
1867 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07001868 /*
1869 * Since the runqueue lock will be released by the next
1870 * task (which is an invalid locking op but in the case
1871 * of the scheduler it's an obvious special-case), so we
1872 * do an early lockdep release here:
1873 */
1874#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07001875 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07001876#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
1878 /* Here we just switch the register state and the stack. */
1879 switch_to(prev, next, prev);
1880
Ingo Molnardd41f592007-07-09 18:51:59 +02001881 barrier();
1882 /*
1883 * this_rq must be evaluated again because prev may have moved
1884 * CPUs since it called schedule(), thus the 'rq' on its stack
1885 * frame will be invalid.
1886 */
1887 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888}
1889
1890/*
1891 * nr_running, nr_uninterruptible and nr_context_switches:
1892 *
1893 * externally visible scheduler statistics: current number of runnable
1894 * threads, current number of uninterruptible-sleeping threads, total
1895 * number of context switches performed since bootup.
1896 */
1897unsigned long nr_running(void)
1898{
1899 unsigned long i, sum = 0;
1900
1901 for_each_online_cpu(i)
1902 sum += cpu_rq(i)->nr_running;
1903
1904 return sum;
1905}
1906
1907unsigned long nr_uninterruptible(void)
1908{
1909 unsigned long i, sum = 0;
1910
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001911 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 sum += cpu_rq(i)->nr_uninterruptible;
1913
1914 /*
1915 * Since we read the counters lockless, it might be slightly
1916 * inaccurate. Do not allow it to go below zero though:
1917 */
1918 if (unlikely((long)sum < 0))
1919 sum = 0;
1920
1921 return sum;
1922}
1923
1924unsigned long long nr_context_switches(void)
1925{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07001926 int i;
1927 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001929 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 sum += cpu_rq(i)->nr_switches;
1931
1932 return sum;
1933}
1934
1935unsigned long nr_iowait(void)
1936{
1937 unsigned long i, sum = 0;
1938
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001939 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 sum += atomic_read(&cpu_rq(i)->nr_iowait);
1941
1942 return sum;
1943}
1944
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08001945unsigned long nr_active(void)
1946{
1947 unsigned long i, running = 0, uninterruptible = 0;
1948
1949 for_each_online_cpu(i) {
1950 running += cpu_rq(i)->nr_running;
1951 uninterruptible += cpu_rq(i)->nr_uninterruptible;
1952 }
1953
1954 if (unlikely((long)uninterruptible < 0))
1955 uninterruptible = 0;
1956
1957 return running + uninterruptible;
1958}
1959
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960/*
Ingo Molnardd41f592007-07-09 18:51:59 +02001961 * Update rq->cpu_load[] statistics. This function is usually called every
1962 * scheduler tick (TICK_NSEC).
Ingo Molnar48f24c42006-07-03 00:25:40 -07001963 */
Ingo Molnardd41f592007-07-09 18:51:59 +02001964static void update_cpu_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07001965{
Ingo Molnardd41f592007-07-09 18:51:59 +02001966 u64 fair_delta64, exec_delta64, idle_delta64, sample_interval64, tmp64;
1967 unsigned long total_load = this_rq->ls.load.weight;
1968 unsigned long this_load = total_load;
1969 struct load_stat *ls = &this_rq->ls;
1970 u64 now = __rq_clock(this_rq);
1971 int i, scale;
1972
1973 this_rq->nr_load_updates++;
1974 if (unlikely(!(sysctl_sched_features & SCHED_FEAT_PRECISE_CPU_LOAD)))
1975 goto do_avg;
1976
1977 /* Update delta_fair/delta_exec fields first */
1978 update_curr_load(this_rq, now);
1979
1980 fair_delta64 = ls->delta_fair + 1;
1981 ls->delta_fair = 0;
1982
1983 exec_delta64 = ls->delta_exec + 1;
1984 ls->delta_exec = 0;
1985
1986 sample_interval64 = now - ls->load_update_last;
1987 ls->load_update_last = now;
1988
1989 if ((s64)sample_interval64 < (s64)TICK_NSEC)
1990 sample_interval64 = TICK_NSEC;
1991
1992 if (exec_delta64 > sample_interval64)
1993 exec_delta64 = sample_interval64;
1994
1995 idle_delta64 = sample_interval64 - exec_delta64;
1996
1997 tmp64 = div64_64(SCHED_LOAD_SCALE * exec_delta64, fair_delta64);
1998 tmp64 = div64_64(tmp64 * exec_delta64, sample_interval64);
1999
2000 this_load = (unsigned long)tmp64;
2001
2002do_avg:
2003
2004 /* Update our load: */
2005 for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) {
2006 unsigned long old_load, new_load;
2007
2008 /* scale is effectively 1 << i now, and >> i divides by scale */
2009
2010 old_load = this_rq->cpu_load[i];
2011 new_load = this_load;
2012
2013 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i;
2014 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002015}
2016
Ingo Molnardd41f592007-07-09 18:51:59 +02002017#ifdef CONFIG_SMP
2018
Ingo Molnar48f24c42006-07-03 00:25:40 -07002019/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 * double_rq_lock - safely lock two runqueues
2021 *
2022 * Note this does not disable interrupts like task_rq_lock,
2023 * you need to do so manually before calling.
2024 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002025static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 __acquires(rq1->lock)
2027 __acquires(rq2->lock)
2028{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002029 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 if (rq1 == rq2) {
2031 spin_lock(&rq1->lock);
2032 __acquire(rq2->lock); /* Fake it out ;) */
2033 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002034 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 spin_lock(&rq1->lock);
2036 spin_lock(&rq2->lock);
2037 } else {
2038 spin_lock(&rq2->lock);
2039 spin_lock(&rq1->lock);
2040 }
2041 }
2042}
2043
2044/*
2045 * double_rq_unlock - safely unlock two runqueues
2046 *
2047 * Note this does not restore interrupts like task_rq_unlock,
2048 * you need to do so manually after calling.
2049 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002050static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 __releases(rq1->lock)
2052 __releases(rq2->lock)
2053{
2054 spin_unlock(&rq1->lock);
2055 if (rq1 != rq2)
2056 spin_unlock(&rq2->lock);
2057 else
2058 __release(rq2->lock);
2059}
2060
2061/*
2062 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
2063 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002064static void double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 __releases(this_rq->lock)
2066 __acquires(busiest->lock)
2067 __acquires(this_rq->lock)
2068{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002069 if (unlikely(!irqs_disabled())) {
2070 /* printk() doesn't work good under rq->lock */
2071 spin_unlock(&this_rq->lock);
2072 BUG_ON(1);
2073 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002075 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 spin_unlock(&this_rq->lock);
2077 spin_lock(&busiest->lock);
2078 spin_lock(&this_rq->lock);
2079 } else
2080 spin_lock(&busiest->lock);
2081 }
2082}
2083
2084/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 * If dest_cpu is allowed for this process, migrate the task to it.
2086 * This is accomplished by forcing the cpu_allowed mask to only
2087 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
2088 * the cpu_allowed mask is restored.
2089 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002090static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002092 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002094 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
2096 rq = task_rq_lock(p, &flags);
2097 if (!cpu_isset(dest_cpu, p->cpus_allowed)
2098 || unlikely(cpu_is_offline(dest_cpu)))
2099 goto out;
2100
2101 /* force the process onto the specified CPU */
2102 if (migrate_task(p, dest_cpu, &req)) {
2103 /* Need to wait for migration thread (might exit: take ref). */
2104 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002105
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 get_task_struct(mt);
2107 task_rq_unlock(rq, &flags);
2108 wake_up_process(mt);
2109 put_task_struct(mt);
2110 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07002111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 return;
2113 }
2114out:
2115 task_rq_unlock(rq, &flags);
2116}
2117
2118/*
Nick Piggin476d1392005-06-25 14:57:29 -07002119 * sched_exec - execve() is a valuable balancing opportunity, because at
2120 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 */
2122void sched_exec(void)
2123{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002125 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002127 if (new_cpu != this_cpu)
2128 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129}
2130
2131/*
2132 * pull_task - move a task from a remote runqueue to the local runqueue.
2133 * Both runqueues must be locked.
2134 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002135static void pull_task(struct rq *src_rq, struct task_struct *p,
2136 struct rq *this_rq, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137{
Ingo Molnara8e504d2007-08-09 11:16:47 +02002138 update_rq_clock(src_rq);
2139 deactivate_task(src_rq, p, 0, src_rq->clock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 set_task_cpu(p, this_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02002141 activate_task(this_rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 /*
2143 * Note that idle threads have a prio of MAX_PRIO, for this test
2144 * to be always true for them.
2145 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002146 check_preempt_curr(this_rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147}
2148
2149/*
2150 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
2151 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002152static
Ingo Molnar70b97a72006-07-03 00:25:42 -07002153int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002154 struct sched_domain *sd, enum cpu_idle_type idle,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002155 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156{
2157 /*
2158 * We do not migrate tasks that are:
2159 * 1) running (obviously), or
2160 * 2) cannot be migrated to this CPU due to cpus_allowed, or
2161 * 3) are cache-hot on their current CPU.
2162 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 if (!cpu_isset(this_cpu, p->cpus_allowed))
2164 return 0;
Nick Piggin81026792005-06-25 14:57:07 -07002165 *all_pinned = 0;
2166
2167 if (task_running(rq, p))
2168 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
2170 /*
Ingo Molnardd41f592007-07-09 18:51:59 +02002171 * Aggressive migration if too many balance attempts have failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002173 if (sd->nr_balance_failed > sd->cache_nice_tries)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 return 1;
2175
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 return 1;
2177}
2178
Ingo Molnardd41f592007-07-09 18:51:59 +02002179static int balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
2180 unsigned long max_nr_move, unsigned long max_load_move,
2181 struct sched_domain *sd, enum cpu_idle_type idle,
2182 int *all_pinned, unsigned long *load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002183 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02002184{
2185 int pulled = 0, pinned = 0, skip_for_load;
2186 struct task_struct *p;
2187 long rem_load_move = max_load_move;
2188
2189 if (max_nr_move == 0 || max_load_move == 0)
2190 goto out;
2191
2192 pinned = 1;
2193
2194 /*
2195 * Start the load-balancing iterator:
2196 */
2197 p = iterator->start(iterator->arg);
2198next:
2199 if (!p)
2200 goto out;
2201 /*
2202 * To help distribute high priority tasks accross CPUs we don't
2203 * skip a task if it will be the highest priority task (i.e. smallest
2204 * prio value) on its new queue regardless of its load weight
2205 */
2206 skip_for_load = (p->se.load.weight >> 1) > rem_load_move +
2207 SCHED_LOAD_SCALE_FUZZ;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002208 if ((skip_for_load && p->prio >= *this_best_prio) ||
Ingo Molnardd41f592007-07-09 18:51:59 +02002209 !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002210 p = iterator->next(iterator->arg);
2211 goto next;
2212 }
2213
2214 pull_task(busiest, p, this_rq, this_cpu);
2215 pulled++;
2216 rem_load_move -= p->se.load.weight;
2217
2218 /*
2219 * We only want to steal up to the prescribed number of tasks
2220 * and the prescribed amount of weighted load.
2221 */
2222 if (pulled < max_nr_move && rem_load_move > 0) {
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002223 if (p->prio < *this_best_prio)
2224 *this_best_prio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02002225 p = iterator->next(iterator->arg);
2226 goto next;
2227 }
2228out:
2229 /*
2230 * Right now, this is the only place pull_task() is called,
2231 * so we can safely collect pull_task() stats here rather than
2232 * inside pull_task().
2233 */
2234 schedstat_add(sd, lb_gained[idle], pulled);
2235
2236 if (all_pinned)
2237 *all_pinned = pinned;
2238 *load_moved = max_load_move - rem_load_move;
2239 return pulled;
2240}
Ingo Molnar48f24c42006-07-03 00:25:40 -07002241
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242/*
Peter Williams43010652007-08-09 11:16:46 +02002243 * move_tasks tries to move up to max_load_move weighted load from busiest to
2244 * this_rq, as part of a balancing operation within domain "sd".
2245 * Returns 1 if successful and 0 otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 *
2247 * Called with both runqueues locked.
2248 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002249static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams43010652007-08-09 11:16:46 +02002250 unsigned long max_load_move,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002251 struct sched_domain *sd, enum cpu_idle_type idle,
Peter Williams2dd73a42006-06-27 02:54:34 -07002252 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253{
Ingo Molnardd41f592007-07-09 18:51:59 +02002254 struct sched_class *class = sched_class_highest;
Peter Williams43010652007-08-09 11:16:46 +02002255 unsigned long total_load_moved = 0;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002256 int this_best_prio = this_rq->curr->prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
Ingo Molnardd41f592007-07-09 18:51:59 +02002258 do {
Peter Williams43010652007-08-09 11:16:46 +02002259 total_load_moved +=
2260 class->load_balance(this_rq, this_cpu, busiest,
2261 ULONG_MAX, max_load_move - total_load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002262 sd, idle, all_pinned, &this_best_prio);
Ingo Molnardd41f592007-07-09 18:51:59 +02002263 class = class->next;
Peter Williams43010652007-08-09 11:16:46 +02002264 } while (class && max_load_move > total_load_moved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
Peter Williams43010652007-08-09 11:16:46 +02002266 return total_load_moved > 0;
2267}
2268
2269/*
2270 * move_one_task tries to move exactly one task from busiest to this_rq, as
2271 * part of active balancing operations within "domain".
2272 * Returns 1 if successful and 0 otherwise.
2273 *
2274 * Called with both runqueues locked.
2275 */
2276static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest,
2277 struct sched_domain *sd, enum cpu_idle_type idle)
2278{
2279 struct sched_class *class;
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002280 int this_best_prio = MAX_PRIO;
Peter Williams43010652007-08-09 11:16:46 +02002281
2282 for (class = sched_class_highest; class; class = class->next)
2283 if (class->load_balance(this_rq, this_cpu, busiest,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02002284 1, ULONG_MAX, sd, idle, NULL,
2285 &this_best_prio))
Peter Williams43010652007-08-09 11:16:46 +02002286 return 1;
2287
2288 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289}
2290
2291/*
2292 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07002293 * domain. It calculates and returns the amount of weighted load which
2294 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 */
2296static struct sched_group *
2297find_busiest_group(struct sched_domain *sd, int this_cpu,
Ingo Molnardd41f592007-07-09 18:51:59 +02002298 unsigned long *imbalance, enum cpu_idle_type idle,
2299 int *sd_idle, cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300{
2301 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
2302 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002303 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07002304 unsigned long busiest_load_per_task, busiest_nr_running;
2305 unsigned long this_load_per_task, this_nr_running;
Nick Piggin78979862005-06-25 14:57:13 -07002306 int load_idx;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002307#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2308 int power_savings_balance = 1;
2309 unsigned long leader_nr_running = 0, min_load_per_task = 0;
2310 unsigned long min_nr_running = ULONG_MAX;
2311 struct sched_group *group_min = NULL, *group_leader = NULL;
2312#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
2314 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002315 busiest_load_per_task = busiest_nr_running = 0;
2316 this_load_per_task = this_nr_running = 0;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002317 if (idle == CPU_NOT_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002318 load_idx = sd->busy_idx;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002319 else if (idle == CPU_NEWLY_IDLE)
Nick Piggin78979862005-06-25 14:57:13 -07002320 load_idx = sd->newidle_idx;
2321 else
2322 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
2324 do {
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002325 unsigned long load, group_capacity;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 int local_group;
2327 int i;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002328 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002329 unsigned long sum_nr_running, sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330
2331 local_group = cpu_isset(this_cpu, group->cpumask);
2332
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002333 if (local_group)
2334 balance_cpu = first_cpu(group->cpumask);
2335
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07002337 sum_weighted_load = sum_nr_running = avg_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338
2339 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002340 struct rq *rq;
2341
2342 if (!cpu_isset(i, *cpus))
2343 continue;
2344
2345 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07002346
Suresh Siddha9439aab2007-07-19 21:28:35 +02002347 if (*sd_idle && rq->nr_running)
Nick Piggin5969fe02005-09-10 00:26:19 -07002348 *sd_idle = 0;
2349
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002351 if (local_group) {
2352 if (idle_cpu(i) && !first_idle_cpu) {
2353 first_idle_cpu = 1;
2354 balance_cpu = i;
2355 }
2356
Nick Piggina2000572006-02-10 01:51:02 -08002357 load = target_load(i, load_idx);
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002358 } else
Nick Piggina2000572006-02-10 01:51:02 -08002359 load = source_load(i, load_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
2361 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07002362 sum_nr_running += rq->nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002363 sum_weighted_load += weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 }
2365
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002366 /*
2367 * First idle cpu or the first cpu(busiest) in this sched group
2368 * is eligible for doing load balancing at this and above
Suresh Siddha9439aab2007-07-19 21:28:35 +02002369 * domains. In the newly idle case, we will allow all the cpu's
2370 * to do the newly idle load balance.
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002371 */
Suresh Siddha9439aab2007-07-19 21:28:35 +02002372 if (idle != CPU_NEWLY_IDLE && local_group &&
2373 balance_cpu != this_cpu && balance) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002374 *balance = 0;
2375 goto ret;
2376 }
2377
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 total_load += avg_load;
Eric Dumazet5517d862007-05-08 00:32:57 -07002379 total_pwr += group->__cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380
2381 /* Adjust by relative CPU power of the group */
Eric Dumazet5517d862007-05-08 00:32:57 -07002382 avg_load = sg_div_cpu_power(group,
2383 avg_load * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384
Eric Dumazet5517d862007-05-08 00:32:57 -07002385 group_capacity = group->__cpu_power / SCHED_LOAD_SCALE;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002386
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 if (local_group) {
2388 this_load = avg_load;
2389 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002390 this_nr_running = sum_nr_running;
2391 this_load_per_task = sum_weighted_load;
2392 } else if (avg_load > max_load &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002393 sum_nr_running > group_capacity) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 max_load = avg_load;
2395 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002396 busiest_nr_running = sum_nr_running;
2397 busiest_load_per_task = sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002399
2400#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2401 /*
2402 * Busy processors will not participate in power savings
2403 * balance.
2404 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002405 if (idle == CPU_NOT_IDLE ||
2406 !(sd->flags & SD_POWERSAVINGS_BALANCE))
2407 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002408
2409 /*
2410 * If the local group is idle or completely loaded
2411 * no need to do power savings balance at this domain
2412 */
2413 if (local_group && (this_nr_running >= group_capacity ||
2414 !this_nr_running))
2415 power_savings_balance = 0;
2416
Ingo Molnardd41f592007-07-09 18:51:59 +02002417 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002418 * If a group is already running at full capacity or idle,
2419 * don't include that group in power savings calculations
Ingo Molnardd41f592007-07-09 18:51:59 +02002420 */
2421 if (!power_savings_balance || sum_nr_running >= group_capacity
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002422 || !sum_nr_running)
Ingo Molnardd41f592007-07-09 18:51:59 +02002423 goto group_next;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002424
Ingo Molnardd41f592007-07-09 18:51:59 +02002425 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002426 * Calculate the group which has the least non-idle load.
Ingo Molnardd41f592007-07-09 18:51:59 +02002427 * This is the group from where we need to pick up the load
2428 * for saving power
2429 */
2430 if ((sum_nr_running < min_nr_running) ||
2431 (sum_nr_running == min_nr_running &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002432 first_cpu(group->cpumask) <
2433 first_cpu(group_min->cpumask))) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002434 group_min = group;
2435 min_nr_running = sum_nr_running;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002436 min_load_per_task = sum_weighted_load /
2437 sum_nr_running;
Ingo Molnardd41f592007-07-09 18:51:59 +02002438 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002439
Ingo Molnardd41f592007-07-09 18:51:59 +02002440 /*
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002441 * Calculate the group which is almost near its
Ingo Molnardd41f592007-07-09 18:51:59 +02002442 * capacity but still has some space to pick up some load
2443 * from other group and save more power
2444 */
2445 if (sum_nr_running <= group_capacity - 1) {
2446 if (sum_nr_running > leader_nr_running ||
2447 (sum_nr_running == leader_nr_running &&
2448 first_cpu(group->cpumask) >
2449 first_cpu(group_leader->cpumask))) {
2450 group_leader = group;
2451 leader_nr_running = sum_nr_running;
2452 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002453 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002454group_next:
2455#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 group = group->next;
2457 } while (group != sd->groups);
2458
Peter Williams2dd73a42006-06-27 02:54:34 -07002459 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 goto out_balanced;
2461
2462 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
2463
2464 if (this_load >= avg_load ||
2465 100*max_load <= sd->imbalance_pct*this_load)
2466 goto out_balanced;
2467
Peter Williams2dd73a42006-06-27 02:54:34 -07002468 busiest_load_per_task /= busiest_nr_running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 /*
2470 * We're trying to get all the cpus to the average_load, so we don't
2471 * want to push ourselves above the average load, nor do we wish to
2472 * reduce the max loaded cpu below the average load, as either of these
2473 * actions would just result in more rebalancing later, and ping-pong
2474 * tasks around. Thus we look for the minimum possible imbalance.
2475 * Negative imbalances (*we* are more loaded than anyone else) will
2476 * be counted as no imbalance for these purposes -- we can't fix that
2477 * by pulling tasks to us. Be careful of negative numbers as they'll
2478 * appear as very large values with unsigned longs.
2479 */
Peter Williams2dd73a42006-06-27 02:54:34 -07002480 if (max_load <= busiest_load_per_task)
2481 goto out_balanced;
2482
2483 /*
2484 * In the presence of smp nice balancing, certain scenarios can have
2485 * max load less than avg load(as we skip the groups at or below
2486 * its cpu_power, while calculating max_load..)
2487 */
2488 if (max_load < avg_load) {
2489 *imbalance = 0;
2490 goto small_imbalance;
2491 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002492
2493 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07002494 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002495
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 /* How much load to actually move to equalise the imbalance */
Eric Dumazet5517d862007-05-08 00:32:57 -07002497 *imbalance = min(max_pull * busiest->__cpu_power,
2498 (avg_load - this_load) * this->__cpu_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 / SCHED_LOAD_SCALE;
2500
Peter Williams2dd73a42006-06-27 02:54:34 -07002501 /*
2502 * if *imbalance is less than the average load per runnable task
2503 * there is no gaurantee that any tasks will be moved so we'll have
2504 * a think about bumping its value to force at least one task to be
2505 * moved
2506 */
Ingo Molnardd41f592007-07-09 18:51:59 +02002507 if (*imbalance + SCHED_LOAD_SCALE_FUZZ < busiest_load_per_task/2) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07002508 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07002509 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510
Peter Williams2dd73a42006-06-27 02:54:34 -07002511small_imbalance:
2512 pwr_move = pwr_now = 0;
2513 imbn = 2;
2514 if (this_nr_running) {
2515 this_load_per_task /= this_nr_running;
2516 if (busiest_load_per_task > this_load_per_task)
2517 imbn = 1;
2518 } else
2519 this_load_per_task = SCHED_LOAD_SCALE;
2520
Ingo Molnardd41f592007-07-09 18:51:59 +02002521 if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >=
2522 busiest_load_per_task * imbn) {
Peter Williams2dd73a42006-06-27 02:54:34 -07002523 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 return busiest;
2525 }
2526
2527 /*
2528 * OK, we don't have enough imbalance to justify moving tasks,
2529 * however we may be able to increase total CPU power used by
2530 * moving them.
2531 */
2532
Eric Dumazet5517d862007-05-08 00:32:57 -07002533 pwr_now += busiest->__cpu_power *
2534 min(busiest_load_per_task, max_load);
2535 pwr_now += this->__cpu_power *
2536 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 pwr_now /= SCHED_LOAD_SCALE;
2538
2539 /* Amount of load we'd subtract */
Eric Dumazet5517d862007-05-08 00:32:57 -07002540 tmp = sg_div_cpu_power(busiest,
2541 busiest_load_per_task * SCHED_LOAD_SCALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 if (max_load > tmp)
Eric Dumazet5517d862007-05-08 00:32:57 -07002543 pwr_move += busiest->__cpu_power *
Peter Williams2dd73a42006-06-27 02:54:34 -07002544 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545
2546 /* Amount of load we'd add */
Eric Dumazet5517d862007-05-08 00:32:57 -07002547 if (max_load * busiest->__cpu_power <
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08002548 busiest_load_per_task * SCHED_LOAD_SCALE)
Eric Dumazet5517d862007-05-08 00:32:57 -07002549 tmp = sg_div_cpu_power(this,
2550 max_load * busiest->__cpu_power);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 else
Eric Dumazet5517d862007-05-08 00:32:57 -07002552 tmp = sg_div_cpu_power(this,
2553 busiest_load_per_task * SCHED_LOAD_SCALE);
2554 pwr_move += this->__cpu_power *
2555 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 pwr_move /= SCHED_LOAD_SCALE;
2557
2558 /* Move if we gain throughput */
2559 if (pwr_move <= pwr_now)
2560 goto out_balanced;
2561
Peter Williams2dd73a42006-06-27 02:54:34 -07002562 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 }
2564
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 return busiest;
2566
2567out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002568#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002569 if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002570 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002572 if (this == group_leader && group_leader != group_min) {
2573 *imbalance = min_load_per_task;
2574 return group_min;
2575 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002576#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002577ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 *imbalance = 0;
2579 return NULL;
2580}
2581
2582/*
2583 * find_busiest_queue - find the busiest runqueue among the cpus in group.
2584 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002585static struct rq *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002586find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002587 unsigned long imbalance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002589 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07002590 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 int i;
2592
2593 for_each_cpu_mask(i, group->cpumask) {
Ingo Molnardd41f592007-07-09 18:51:59 +02002594 unsigned long wl;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002595
2596 if (!cpu_isset(i, *cpus))
2597 continue;
2598
Ingo Molnar48f24c42006-07-03 00:25:40 -07002599 rq = cpu_rq(i);
Ingo Molnardd41f592007-07-09 18:51:59 +02002600 wl = weighted_cpuload(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601
Ingo Molnardd41f592007-07-09 18:51:59 +02002602 if (rq->nr_running == 1 && wl > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07002603 continue;
2604
Ingo Molnardd41f592007-07-09 18:51:59 +02002605 if (wl > max_load) {
2606 max_load = wl;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002607 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 }
2609 }
2610
2611 return busiest;
2612}
2613
2614/*
Nick Piggin77391d72005-06-25 14:57:30 -07002615 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
2616 * so long as it is large enough.
2617 */
2618#define MAX_PINNED_INTERVAL 512
2619
2620/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 * Check this_cpu to ensure it is balanced within domain. Attempt to move
2622 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002624static int load_balance(int this_cpu, struct rq *this_rq,
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002625 struct sched_domain *sd, enum cpu_idle_type idle,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002626 int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627{
Peter Williams43010652007-08-09 11:16:46 +02002628 int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002631 struct rq *busiest;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002632 cpumask_t cpus = CPU_MASK_ALL;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002633 unsigned long flags;
Nick Piggin5969fe02005-09-10 00:26:19 -07002634
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002635 /*
2636 * When power savings policy is enabled for the parent domain, idle
2637 * sibling can pick up load irrespective of busy siblings. In this case,
Ingo Molnardd41f592007-07-09 18:51:59 +02002638 * let the state of idle sibling percolate up as CPU_IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002639 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002640 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002641 if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002642 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002643 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 schedstat_inc(sd, lb_cnt[idle]);
2646
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002647redo:
2648 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002649 &cpus, balance);
2650
Chen, Kenneth W06066712006-12-10 02:20:35 -08002651 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002652 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002653
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 if (!group) {
2655 schedstat_inc(sd, lb_nobusyg[idle]);
2656 goto out_balanced;
2657 }
2658
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002659 busiest = find_busiest_queue(group, idle, imbalance, &cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 if (!busiest) {
2661 schedstat_inc(sd, lb_nobusyq[idle]);
2662 goto out_balanced;
2663 }
2664
Nick Piggindb935db2005-06-25 14:57:11 -07002665 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666
2667 schedstat_add(sd, lb_imbalance[idle], imbalance);
2668
Peter Williams43010652007-08-09 11:16:46 +02002669 ld_moved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 if (busiest->nr_running > 1) {
2671 /*
2672 * Attempt to move tasks. If find_busiest_group has found
2673 * an imbalance but busiest->nr_running <= 1, the group is
Peter Williams43010652007-08-09 11:16:46 +02002674 * still unbalanced. ld_moved simply stays zero, so it is
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 * correctly treated as an imbalance.
2676 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002677 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07002678 double_rq_lock(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02002679 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07002680 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07002681 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002682 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07002683
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07002684 /*
2685 * some other cpu did the load balance for us.
2686 */
Peter Williams43010652007-08-09 11:16:46 +02002687 if (ld_moved && this_cpu != smp_processor_id())
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07002688 resched_cpu(this_cpu);
2689
Nick Piggin81026792005-06-25 14:57:07 -07002690 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002691 if (unlikely(all_pinned)) {
2692 cpu_clear(cpu_of(busiest), cpus);
2693 if (!cpus_empty(cpus))
2694 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07002695 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002696 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 }
Nick Piggin81026792005-06-25 14:57:07 -07002698
Peter Williams43010652007-08-09 11:16:46 +02002699 if (!ld_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 schedstat_inc(sd, lb_failed[idle]);
2701 sd->nr_balance_failed++;
2702
2703 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002705 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07002706
2707 /* don't kick the migration_thread, if the curr
2708 * task on busiest cpu can't be moved to this_cpu
2709 */
2710 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002711 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07002712 all_pinned = 1;
2713 goto out_one_pinned;
2714 }
2715
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 if (!busiest->active_balance) {
2717 busiest->active_balance = 1;
2718 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07002719 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002721 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07002722 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 wake_up_process(busiest->migration_thread);
2724
2725 /*
2726 * We've kicked active balancing, reset the failure
2727 * counter.
2728 */
Nick Piggin39507452005-06-25 14:57:09 -07002729 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 }
Nick Piggin81026792005-06-25 14:57:07 -07002731 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 sd->nr_balance_failed = 0;
2733
Nick Piggin81026792005-06-25 14:57:07 -07002734 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 /* We were unbalanced, so reset the balancing interval */
2736 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07002737 } else {
2738 /*
2739 * If we've begun active balancing, start to back off. This
2740 * case may not be covered by the all_pinned logic if there
2741 * is only 1 task on the busy runqueue (because we don't call
2742 * move_tasks).
2743 */
2744 if (sd->balance_interval < sd->max_interval)
2745 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 }
2747
Peter Williams43010652007-08-09 11:16:46 +02002748 if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002749 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002750 return -1;
Peter Williams43010652007-08-09 11:16:46 +02002751 return ld_moved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752
2753out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 schedstat_inc(sd, lb_balanced[idle]);
2755
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002756 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07002757
2758out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07002760 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
2761 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 sd->balance_interval *= 2;
2763
Ingo Molnar48f24c42006-07-03 00:25:40 -07002764 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002765 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002766 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 return 0;
2768}
2769
2770/*
2771 * Check this_cpu to ensure it is balanced within domain. Attempt to move
2772 * tasks if there is an imbalance.
2773 *
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002774 * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 * this_rq is locked.
2776 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07002777static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07002778load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779{
2780 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002781 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 unsigned long imbalance;
Peter Williams43010652007-08-09 11:16:46 +02002783 int ld_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07002784 int sd_idle = 0;
Suresh Siddha969bb4e2007-07-19 21:28:35 +02002785 int all_pinned = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002786 cpumask_t cpus = CPU_MASK_ALL;
Nick Piggin5969fe02005-09-10 00:26:19 -07002787
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002788 /*
2789 * When power savings policy is enabled for the parent domain, idle
2790 * sibling can pick up load irrespective of busy siblings. In this case,
2791 * let the state of idle sibling percolate up as IDLE, instead of
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002792 * portraying it as CPU_NOT_IDLE.
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002793 */
2794 if (sd->flags & SD_SHARE_CPUPOWER &&
2795 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002796 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002798 schedstat_inc(sd, lb_cnt[CPU_NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002799redo:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002800 group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002801 &sd_idle, &cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 if (!group) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002803 schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002804 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 }
2806
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002807 busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002808 &cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07002809 if (!busiest) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002810 schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002811 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 }
2813
Nick Piggindb935db2005-06-25 14:57:11 -07002814 BUG_ON(busiest == this_rq);
2815
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002816 schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07002817
Peter Williams43010652007-08-09 11:16:46 +02002818 ld_moved = 0;
Nick Piggind6d5cfa2005-09-10 00:26:16 -07002819 if (busiest->nr_running > 1) {
2820 /* Attempt to move tasks */
2821 double_lock_balance(this_rq, busiest);
Peter Williams43010652007-08-09 11:16:46 +02002822 ld_moved = move_tasks(this_rq, this_cpu, busiest,
Suresh Siddha969bb4e2007-07-19 21:28:35 +02002823 imbalance, sd, CPU_NEWLY_IDLE,
2824 &all_pinned);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07002825 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002826
Suresh Siddha969bb4e2007-07-19 21:28:35 +02002827 if (unlikely(all_pinned)) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002828 cpu_clear(cpu_of(busiest), cpus);
2829 if (!cpus_empty(cpus))
2830 goto redo;
2831 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07002832 }
2833
Peter Williams43010652007-08-09 11:16:46 +02002834 if (!ld_moved) {
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002835 schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002836 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
2837 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002838 return -1;
2839 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002840 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841
Peter Williams43010652007-08-09 11:16:46 +02002842 return ld_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002843
2844out_balanced:
Ingo Molnard15bcfd2007-07-09 18:51:57 +02002845 schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07002846 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002847 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002848 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002849 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002850
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002851 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852}
2853
2854/*
2855 * idle_balance is called by schedule() if this_cpu is about to become
2856 * idle. Attempts to pull tasks from other CPUs.
2857 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002858static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859{
2860 struct sched_domain *sd;
Ingo Molnardd41f592007-07-09 18:51:59 +02002861 int pulled_task = -1;
2862 unsigned long next_balance = jiffies + HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863
2864 for_each_domain(this_cpu, sd) {
Christoph Lameter92c4ca52007-06-23 17:16:33 -07002865 unsigned long interval;
2866
2867 if (!(sd->flags & SD_LOAD_BALANCE))
2868 continue;
2869
2870 if (sd->flags & SD_BALANCE_NEWIDLE)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002871 /* If we've pulled tasks over stop searching: */
Christoph Lameter1bd77f22006-12-10 02:20:27 -08002872 pulled_task = load_balance_newidle(this_cpu,
Christoph Lameter92c4ca52007-06-23 17:16:33 -07002873 this_rq, sd);
2874
2875 interval = msecs_to_jiffies(sd->balance_interval);
2876 if (time_after(next_balance, sd->last_balance + interval))
2877 next_balance = sd->last_balance + interval;
2878 if (pulled_task)
2879 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 }
Ingo Molnardd41f592007-07-09 18:51:59 +02002881 if (pulled_task || time_after(jiffies, this_rq->next_balance)) {
Christoph Lameter1bd77f22006-12-10 02:20:27 -08002882 /*
2883 * We are going idle. next_balance may be set based on
2884 * a busy processor. So reset next_balance.
2885 */
2886 this_rq->next_balance = next_balance;
Ingo Molnardd41f592007-07-09 18:51:59 +02002887 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888}
2889
2890/*
2891 * active_load_balance is run by migration threads. It pushes running tasks
2892 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
2893 * running on each physical CPU where possible, and avoids physical /
2894 * logical imbalances.
2895 *
2896 * Called with busiest_rq locked.
2897 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002898static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899{
Nick Piggin39507452005-06-25 14:57:09 -07002900 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002901 struct sched_domain *sd;
2902 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07002903
Ingo Molnar48f24c42006-07-03 00:25:40 -07002904 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07002905 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07002906 return;
2907
2908 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
2910 /*
Nick Piggin39507452005-06-25 14:57:09 -07002911 * This condition is "impossible", if it occurs
2912 * we need to fix it. Originally reported by
2913 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 */
Nick Piggin39507452005-06-25 14:57:09 -07002915 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916
Nick Piggin39507452005-06-25 14:57:09 -07002917 /* move a task from busiest_rq to target_rq */
2918 double_lock_balance(busiest_rq, target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919
Nick Piggin39507452005-06-25 14:57:09 -07002920 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002921 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07002922 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07002923 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07002924 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926
Ingo Molnar48f24c42006-07-03 00:25:40 -07002927 if (likely(sd)) {
2928 schedstat_inc(sd, alb_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929
Peter Williams43010652007-08-09 11:16:46 +02002930 if (move_one_task(target_rq, target_cpu, busiest_rq,
2931 sd, CPU_IDLE))
Ingo Molnar48f24c42006-07-03 00:25:40 -07002932 schedstat_inc(sd, alb_pushed);
2933 else
2934 schedstat_inc(sd, alb_failed);
2935 }
Nick Piggin39507452005-06-25 14:57:09 -07002936 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937}
2938
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07002939#ifdef CONFIG_NO_HZ
2940static struct {
2941 atomic_t load_balancer;
2942 cpumask_t cpu_mask;
2943} nohz ____cacheline_aligned = {
2944 .load_balancer = ATOMIC_INIT(-1),
2945 .cpu_mask = CPU_MASK_NONE,
2946};
2947
Christoph Lameter7835b982006-12-10 02:20:22 -08002948/*
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07002949 * This routine will try to nominate the ilb (idle load balancing)
2950 * owner among the cpus whose ticks are stopped. ilb owner will do the idle
2951 * load balancing on behalf of all those cpus. If all the cpus in the system
2952 * go into this tickless mode, then there will be no ilb owner (as there is
2953 * no need for one) and all the cpus will sleep till the next wakeup event
2954 * arrives...
Christoph Lameter7835b982006-12-10 02:20:22 -08002955 *
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07002956 * For the ilb owner, tick is not stopped. And this tick will be used
2957 * for idle load balancing. ilb owner will still be part of
2958 * nohz.cpu_mask..
2959 *
2960 * While stopping the tick, this cpu will become the ilb owner if there
2961 * is no other owner. And will be the owner till that cpu becomes busy
2962 * or if all cpus in the system stop their ticks at which point
2963 * there is no need for ilb owner.
2964 *
2965 * When the ilb owner becomes busy, it nominates another owner, during the
2966 * next busy scheduler_tick()
2967 */
2968int select_nohz_load_balancer(int stop_tick)
2969{
2970 int cpu = smp_processor_id();
2971
2972 if (stop_tick) {
2973 cpu_set(cpu, nohz.cpu_mask);
2974 cpu_rq(cpu)->in_nohz_recently = 1;
2975
2976 /*
2977 * If we are going offline and still the leader, give up!
2978 */
2979 if (cpu_is_offline(cpu) &&
2980 atomic_read(&nohz.load_balancer) == cpu) {
2981 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
2982 BUG();
2983 return 0;
2984 }
2985
2986 /* time for ilb owner also to sleep */
2987 if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
2988 if (atomic_read(&nohz.load_balancer) == cpu)
2989 atomic_set(&nohz.load_balancer, -1);
2990 return 0;
2991 }
2992
2993 if (atomic_read(&nohz.load_balancer) == -1) {
2994 /* make me the ilb owner */
2995 if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1)
2996 return 1;
2997 } else if (atomic_read(&nohz.load_balancer) == cpu)
2998 return 1;
2999 } else {
3000 if (!cpu_isset(cpu, nohz.cpu_mask))
3001 return 0;
3002
3003 cpu_clear(cpu, nohz.cpu_mask);
3004
3005 if (atomic_read(&nohz.load_balancer) == cpu)
3006 if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu)
3007 BUG();
3008 }
3009 return 0;
3010}
3011#endif
3012
3013static DEFINE_SPINLOCK(balancing);
3014
3015/*
Christoph Lameter7835b982006-12-10 02:20:22 -08003016 * It checks each scheduling domain to see if it is due to be balanced,
3017 * and initiates a balancing operation if so.
3018 *
3019 * Balancing parameters are set up in arch_init_sched_domains.
3020 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003021static inline void rebalance_domains(int cpu, enum cpu_idle_type idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08003022{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003023 int balance = 1;
3024 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08003025 unsigned long interval;
3026 struct sched_domain *sd;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003027 /* Earliest time when we have to do rebalance again */
Christoph Lameterc9819f42006-12-10 02:20:25 -08003028 unsigned long next_balance = jiffies + 60*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003030 for_each_domain(cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 if (!(sd->flags & SD_LOAD_BALANCE))
3032 continue;
3033
3034 interval = sd->balance_interval;
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003035 if (idle != CPU_IDLE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 interval *= sd->busy_factor;
3037
3038 /* scale ms to jiffies */
3039 interval = msecs_to_jiffies(interval);
3040 if (unlikely(!interval))
3041 interval = 1;
Ingo Molnardd41f592007-07-09 18:51:59 +02003042 if (interval > HZ*NR_CPUS/10)
3043 interval = HZ*NR_CPUS/10;
3044
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045
Christoph Lameter08c183f2006-12-10 02:20:29 -08003046 if (sd->flags & SD_SERIALIZE) {
3047 if (!spin_trylock(&balancing))
3048 goto out;
3049 }
3050
Christoph Lameterc9819f42006-12-10 02:20:25 -08003051 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003052 if (load_balance(cpu, rq, sd, idle, &balance)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07003053 /*
3054 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07003055 * longer idle, or one of our SMT siblings is
3056 * not idle.
3057 */
Ingo Molnard15bcfd2007-07-09 18:51:57 +02003058 idle = CPU_NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08003060 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 }
Christoph Lameter08c183f2006-12-10 02:20:29 -08003062 if (sd->flags & SD_SERIALIZE)
3063 spin_unlock(&balancing);
3064out:
Christoph Lameterc9819f42006-12-10 02:20:25 -08003065 if (time_after(next_balance, sd->last_balance + interval))
3066 next_balance = sd->last_balance + interval;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08003067
3068 /*
3069 * Stop the load balance at this level. There is another
3070 * CPU in our sched group which is doing load balancing more
3071 * actively.
3072 */
3073 if (!balance)
3074 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 }
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003076 rq->next_balance = next_balance;
3077}
3078
3079/*
3080 * run_rebalance_domains is triggered when needed from the scheduler tick.
3081 * In CONFIG_NO_HZ case, the idle load balance owner will do the
3082 * rebalancing for all the cpus for whom scheduler ticks are stopped.
3083 */
3084static void run_rebalance_domains(struct softirq_action *h)
3085{
Ingo Molnardd41f592007-07-09 18:51:59 +02003086 int this_cpu = smp_processor_id();
3087 struct rq *this_rq = cpu_rq(this_cpu);
3088 enum cpu_idle_type idle = this_rq->idle_at_tick ?
3089 CPU_IDLE : CPU_NOT_IDLE;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003090
Ingo Molnardd41f592007-07-09 18:51:59 +02003091 rebalance_domains(this_cpu, idle);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003092
3093#ifdef CONFIG_NO_HZ
3094 /*
3095 * If this cpu is the owner for idle load balancing, then do the
3096 * balancing on behalf of the other idle cpus whose ticks are
3097 * stopped.
3098 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003099 if (this_rq->idle_at_tick &&
3100 atomic_read(&nohz.load_balancer) == this_cpu) {
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003101 cpumask_t cpus = nohz.cpu_mask;
3102 struct rq *rq;
3103 int balance_cpu;
3104
Ingo Molnardd41f592007-07-09 18:51:59 +02003105 cpu_clear(this_cpu, cpus);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003106 for_each_cpu_mask(balance_cpu, cpus) {
3107 /*
3108 * If this cpu gets work to do, stop the load balancing
3109 * work being done for other cpus. Next load
3110 * balancing owner will pick it up.
3111 */
3112 if (need_resched())
3113 break;
3114
Ingo Molnardd41f592007-07-09 18:51:59 +02003115 rebalance_domains(balance_cpu, SCHED_IDLE);
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003116
3117 rq = cpu_rq(balance_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003118 if (time_after(this_rq->next_balance, rq->next_balance))
3119 this_rq->next_balance = rq->next_balance;
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003120 }
3121 }
3122#endif
3123}
3124
3125/*
3126 * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing.
3127 *
3128 * In case of CONFIG_NO_HZ, this is the place where we nominate a new
3129 * idle load balancing owner or decide to stop the periodic load balancing,
3130 * if the whole system is idle.
3131 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003132static inline void trigger_load_balance(struct rq *rq, int cpu)
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003133{
Siddha, Suresh B46cb4b72007-05-08 00:32:51 -07003134#ifdef CONFIG_NO_HZ
3135 /*
3136 * If we were in the nohz mode recently and busy at the current
3137 * scheduler tick, then check if we need to nominate new idle
3138 * load balancer.
3139 */
3140 if (rq->in_nohz_recently && !rq->idle_at_tick) {
3141 rq->in_nohz_recently = 0;
3142
3143 if (atomic_read(&nohz.load_balancer) == cpu) {
3144 cpu_clear(cpu, nohz.cpu_mask);
3145 atomic_set(&nohz.load_balancer, -1);
3146 }
3147
3148 if (atomic_read(&nohz.load_balancer) == -1) {
3149 /*
3150 * simple selection for now: Nominate the
3151 * first cpu in the nohz list to be the next
3152 * ilb owner.
3153 *
3154 * TBD: Traverse the sched domains and nominate
3155 * the nearest cpu in the nohz.cpu_mask.
3156 */
3157 int ilb = first_cpu(nohz.cpu_mask);
3158
3159 if (ilb != NR_CPUS)
3160 resched_cpu(ilb);
3161 }
3162 }
3163
3164 /*
3165 * If this cpu is idle and doing idle load balancing for all the
3166 * cpus with ticks stopped, is it time for that to stop?
3167 */
3168 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu &&
3169 cpus_weight(nohz.cpu_mask) == num_online_cpus()) {
3170 resched_cpu(cpu);
3171 return;
3172 }
3173
3174 /*
3175 * If this cpu is idle and the idle load balancing is done by
3176 * someone else, then no need raise the SCHED_SOFTIRQ
3177 */
3178 if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu &&
3179 cpu_isset(cpu, nohz.cpu_mask))
3180 return;
3181#endif
3182 if (time_after_eq(jiffies, rq->next_balance))
3183 raise_softirq(SCHED_SOFTIRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184}
Ingo Molnardd41f592007-07-09 18:51:59 +02003185
3186#else /* CONFIG_SMP */
3187
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188/*
3189 * on UP we do not need to balance between CPUs:
3190 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003191static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192{
3193}
Ingo Molnardd41f592007-07-09 18:51:59 +02003194
3195/* Avoid "used but not defined" warning on UP */
3196static int balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
3197 unsigned long max_nr_move, unsigned long max_load_move,
3198 struct sched_domain *sd, enum cpu_idle_type idle,
3199 int *all_pinned, unsigned long *load_moved,
Peter Williamsa4ac01c2007-08-09 11:16:46 +02003200 int *this_best_prio, struct rq_iterator *iterator)
Ingo Molnardd41f592007-07-09 18:51:59 +02003201{
3202 *load_moved = 0;
3203
3204 return 0;
3205}
3206
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207#endif
3208
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209DEFINE_PER_CPU(struct kernel_stat, kstat);
3210
3211EXPORT_PER_CPU_SYMBOL(kstat);
3212
3213/*
Ingo Molnar41b86e92007-07-09 18:51:58 +02003214 * Return p->sum_exec_runtime plus any more ns on the sched_clock
3215 * that have not yet been banked in case the task is currently running.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 */
Ingo Molnar41b86e92007-07-09 18:51:58 +02003217unsigned long long task_sched_runtime(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 unsigned long flags;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003220 u64 ns, delta_exec;
3221 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003222
Ingo Molnar41b86e92007-07-09 18:51:58 +02003223 rq = task_rq_lock(p, &flags);
3224 ns = p->se.sum_exec_runtime;
3225 if (rq->curr == p) {
Ingo Molnara8e504d2007-08-09 11:16:47 +02003226 update_rq_clock(rq);
3227 delta_exec = rq->clock - p->se.exec_start;
Ingo Molnar41b86e92007-07-09 18:51:58 +02003228 if ((s64)delta_exec > 0)
3229 ns += delta_exec;
3230 }
3231 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003232
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 return ns;
3234}
3235
3236/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 * Account user cpu time to a process.
3238 * @p: the process that the cpu time gets accounted to
3239 * @hardirq_offset: the offset to subtract from hardirq_count()
3240 * @cputime: the cpu time spent in user space since the last update
3241 */
3242void account_user_time(struct task_struct *p, cputime_t cputime)
3243{
3244 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3245 cputime64_t tmp;
3246
3247 p->utime = cputime_add(p->utime, cputime);
3248
3249 /* Add user time to cpustat. */
3250 tmp = cputime_to_cputime64(cputime);
3251 if (TASK_NICE(p) > 0)
3252 cpustat->nice = cputime64_add(cpustat->nice, tmp);
3253 else
3254 cpustat->user = cputime64_add(cpustat->user, tmp);
3255}
3256
3257/*
3258 * Account system cpu time to a process.
3259 * @p: the process that the cpu time gets accounted to
3260 * @hardirq_offset: the offset to subtract from hardirq_count()
3261 * @cputime: the cpu time spent in kernel space since the last update
3262 */
3263void account_system_time(struct task_struct *p, int hardirq_offset,
3264 cputime_t cputime)
3265{
3266 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003267 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 cputime64_t tmp;
3269
3270 p->stime = cputime_add(p->stime, cputime);
3271
3272 /* Add system time to cpustat. */
3273 tmp = cputime_to_cputime64(cputime);
3274 if (hardirq_count() - hardirq_offset)
3275 cpustat->irq = cputime64_add(cpustat->irq, tmp);
3276 else if (softirq_count())
3277 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
3278 else if (p != rq->idle)
3279 cpustat->system = cputime64_add(cpustat->system, tmp);
3280 else if (atomic_read(&rq->nr_iowait) > 0)
3281 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3282 else
3283 cpustat->idle = cputime64_add(cpustat->idle, tmp);
3284 /* Account for system time used */
3285 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286}
3287
3288/*
3289 * Account for involuntary wait time.
3290 * @p: the process from which the cpu time has been stolen
3291 * @steal: the cpu time spent in involuntary wait
3292 */
3293void account_steal_time(struct task_struct *p, cputime_t steal)
3294{
3295 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3296 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07003297 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298
3299 if (p == rq->idle) {
3300 p->stime = cputime_add(p->stime, steal);
3301 if (atomic_read(&rq->nr_iowait) > 0)
3302 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3303 else
3304 cpustat->idle = cputime64_add(cpustat->idle, tmp);
3305 } else
3306 cpustat->steal = cputime64_add(cpustat->steal, tmp);
3307}
3308
Christoph Lameter7835b982006-12-10 02:20:22 -08003309/*
3310 * This function gets called by the timer code, with HZ frequency.
3311 * We call it with interrupts disabled.
3312 *
3313 * It also gets called by the fork code, when changing the parent's
3314 * timeslices.
3315 */
3316void scheduler_tick(void)
3317{
Christoph Lameter7835b982006-12-10 02:20:22 -08003318 int cpu = smp_processor_id();
3319 struct rq *rq = cpu_rq(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02003320 struct task_struct *curr = rq->curr;
Christoph Lameter7835b982006-12-10 02:20:22 -08003321
Ingo Molnardd41f592007-07-09 18:51:59 +02003322 spin_lock(&rq->lock);
Ingo Molnarf1a438d2007-08-09 11:16:45 +02003323 update_cpu_load(rq);
Ingo Molnardd41f592007-07-09 18:51:59 +02003324 if (curr != rq->idle) /* FIXME: needed? */
3325 curr->sched_class->task_tick(rq, curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02003326 spin_unlock(&rq->lock);
3327
Christoph Lametere418e1c2006-12-10 02:20:23 -08003328#ifdef CONFIG_SMP
Ingo Molnardd41f592007-07-09 18:51:59 +02003329 rq->idle_at_tick = idle_cpu(cpu);
3330 trigger_load_balance(rq, cpu);
Christoph Lametere418e1c2006-12-10 02:20:23 -08003331#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332}
3333
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334#if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
3335
3336void fastcall add_preempt_count(int val)
3337{
3338 /*
3339 * Underflow?
3340 */
Ingo Molnar9a11b492006-07-03 00:24:33 -07003341 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
3342 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 preempt_count() += val;
3344 /*
3345 * Spinlock count overflowing soon?
3346 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003347 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
3348 PREEMPT_MASK - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349}
3350EXPORT_SYMBOL(add_preempt_count);
3351
3352void fastcall sub_preempt_count(int val)
3353{
3354 /*
3355 * Underflow?
3356 */
Ingo Molnar9a11b492006-07-03 00:24:33 -07003357 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
3358 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359 /*
3360 * Is the spinlock portion underflowing?
3361 */
Ingo Molnar9a11b492006-07-03 00:24:33 -07003362 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
3363 !(preempt_count() & PREEMPT_MASK)))
3364 return;
3365
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 preempt_count() -= val;
3367}
3368EXPORT_SYMBOL(sub_preempt_count);
3369
3370#endif
3371
3372/*
Ingo Molnardd41f592007-07-09 18:51:59 +02003373 * Print scheduling while atomic bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003375static noinline void __schedule_bug(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376{
Ingo Molnardd41f592007-07-09 18:51:59 +02003377 printk(KERN_ERR "BUG: scheduling while atomic: %s/0x%08x/%d\n",
3378 prev->comm, preempt_count(), prev->pid);
3379 debug_show_held_locks(prev);
3380 if (irqs_disabled())
3381 print_irqtrace_events(prev);
3382 dump_stack();
3383}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384
Ingo Molnardd41f592007-07-09 18:51:59 +02003385/*
3386 * Various schedule()-time debugging checks and statistics:
3387 */
3388static inline void schedule_debug(struct task_struct *prev)
3389{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390 /*
3391 * Test if we are atomic. Since do_exit() needs to call into
3392 * schedule() atomically, we ignore that path for now.
3393 * Otherwise, whine if we are scheduling when we should not be.
3394 */
Ingo Molnardd41f592007-07-09 18:51:59 +02003395 if (unlikely(in_atomic_preempt_off()) && unlikely(!prev->exit_state))
3396 __schedule_bug(prev);
3397
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
3399
Ingo Molnardd41f592007-07-09 18:51:59 +02003400 schedstat_inc(this_rq(), sched_cnt);
3401}
3402
3403/*
3404 * Pick up the highest-prio task:
3405 */
3406static inline struct task_struct *
3407pick_next_task(struct rq *rq, struct task_struct *prev, u64 now)
3408{
3409 struct sched_class *class;
3410 struct task_struct *p;
3411
3412 /*
3413 * Optimization: we know that if all tasks are in
3414 * the fair class we can call that function directly:
3415 */
3416 if (likely(rq->nr_running == rq->cfs.nr_running)) {
3417 p = fair_sched_class.pick_next_task(rq, now);
3418 if (likely(p))
3419 return p;
3420 }
3421
3422 class = sched_class_highest;
3423 for ( ; ; ) {
3424 p = class->pick_next_task(rq, now);
3425 if (p)
3426 return p;
3427 /*
3428 * Will never be NULL as the idle class always
3429 * returns a non-NULL p:
3430 */
3431 class = class->next;
3432 }
3433}
3434
3435/*
3436 * schedule() is the main scheduler function.
3437 */
3438asmlinkage void __sched schedule(void)
3439{
3440 struct task_struct *prev, *next;
3441 long *switch_count;
3442 struct rq *rq;
3443 u64 now;
3444 int cpu;
3445
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446need_resched:
3447 preempt_disable();
Ingo Molnardd41f592007-07-09 18:51:59 +02003448 cpu = smp_processor_id();
3449 rq = cpu_rq(cpu);
3450 rcu_qsctr_inc(cpu);
3451 prev = rq->curr;
3452 switch_count = &prev->nivcsw;
3453
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454 release_kernel_lock(prev);
3455need_resched_nonpreemptible:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456
Ingo Molnardd41f592007-07-09 18:51:59 +02003457 schedule_debug(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458
3459 spin_lock_irq(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 clear_tsk_need_resched(prev);
Ingo Molnar8e717b12007-08-09 11:16:46 +02003461 now = __rq_clock(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462
Ingo Molnardd41f592007-07-09 18:51:59 +02003463 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
3464 if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
3465 unlikely(signal_pending(prev)))) {
3466 prev->state = TASK_RUNNING;
3467 } else {
Ingo Molnar8e717b12007-08-09 11:16:46 +02003468 deactivate_task(rq, prev, 1, now);
Ingo Molnardd41f592007-07-09 18:51:59 +02003469 }
3470 switch_count = &prev->nvcsw;
3471 }
3472
3473 if (unlikely(!rq->nr_running))
3474 idle_balance(cpu, rq);
3475
Ingo Molnardd41f592007-07-09 18:51:59 +02003476 prev->sched_class->put_prev_task(rq, prev, now);
3477 next = pick_next_task(rq, prev, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478
3479 sched_info_switch(prev, next);
Ingo Molnardd41f592007-07-09 18:51:59 +02003480
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481 if (likely(prev != next)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482 rq->nr_switches++;
3483 rq->curr = next;
3484 ++*switch_count;
3485
Ingo Molnardd41f592007-07-09 18:51:59 +02003486 context_switch(rq, prev, next); /* unlocks the rq */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 } else
3488 spin_unlock_irq(&rq->lock);
3489
Ingo Molnardd41f592007-07-09 18:51:59 +02003490 if (unlikely(reacquire_kernel_lock(current) < 0)) {
3491 cpu = smp_processor_id();
3492 rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 goto need_resched_nonpreemptible;
Ingo Molnardd41f592007-07-09 18:51:59 +02003494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495 preempt_enable_no_resched();
3496 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3497 goto need_resched;
3498}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499EXPORT_SYMBOL(schedule);
3500
3501#ifdef CONFIG_PREEMPT
3502/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003503 * this is the entry point to schedule() from in-kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 * off of preempt_enable. Kernel preemptions off return from interrupt
3505 * occur there and call schedule directly.
3506 */
3507asmlinkage void __sched preempt_schedule(void)
3508{
3509 struct thread_info *ti = current_thread_info();
3510#ifdef CONFIG_PREEMPT_BKL
3511 struct task_struct *task = current;
3512 int saved_lock_depth;
3513#endif
3514 /*
3515 * If there is a non-zero preempt_count or interrupts are disabled,
3516 * we do not want to preempt the current task. Just return..
3517 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07003518 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 return;
3520
3521need_resched:
3522 add_preempt_count(PREEMPT_ACTIVE);
3523 /*
3524 * We keep the big kernel semaphore locked, but we
3525 * clear ->lock_depth so that schedule() doesnt
3526 * auto-release the semaphore:
3527 */
3528#ifdef CONFIG_PREEMPT_BKL
3529 saved_lock_depth = task->lock_depth;
3530 task->lock_depth = -1;
3531#endif
3532 schedule();
3533#ifdef CONFIG_PREEMPT_BKL
3534 task->lock_depth = saved_lock_depth;
3535#endif
3536 sub_preempt_count(PREEMPT_ACTIVE);
3537
3538 /* we could miss a preemption opportunity between schedule and now */
3539 barrier();
3540 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3541 goto need_resched;
3542}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543EXPORT_SYMBOL(preempt_schedule);
3544
3545/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003546 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547 * off of irq context.
3548 * Note, that this is called and return with irqs disabled. This will
3549 * protect us against recursive calling from irq.
3550 */
3551asmlinkage void __sched preempt_schedule_irq(void)
3552{
3553 struct thread_info *ti = current_thread_info();
3554#ifdef CONFIG_PREEMPT_BKL
3555 struct task_struct *task = current;
3556 int saved_lock_depth;
3557#endif
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003558 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559 BUG_ON(ti->preempt_count || !irqs_disabled());
3560
3561need_resched:
3562 add_preempt_count(PREEMPT_ACTIVE);
3563 /*
3564 * We keep the big kernel semaphore locked, but we
3565 * clear ->lock_depth so that schedule() doesnt
3566 * auto-release the semaphore:
3567 */
3568#ifdef CONFIG_PREEMPT_BKL
3569 saved_lock_depth = task->lock_depth;
3570 task->lock_depth = -1;
3571#endif
3572 local_irq_enable();
3573 schedule();
3574 local_irq_disable();
3575#ifdef CONFIG_PREEMPT_BKL
3576 task->lock_depth = saved_lock_depth;
3577#endif
3578 sub_preempt_count(PREEMPT_ACTIVE);
3579
3580 /* we could miss a preemption opportunity between schedule and now */
3581 barrier();
3582 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3583 goto need_resched;
3584}
3585
3586#endif /* CONFIG_PREEMPT */
3587
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003588int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
3589 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590{
Ingo Molnar48f24c42006-07-03 00:25:40 -07003591 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593EXPORT_SYMBOL(default_wake_function);
3594
3595/*
3596 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
3597 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
3598 * number) then we wake all the non-exclusive tasks and one exclusive task.
3599 *
3600 * There are circumstances in which we can try to wake a task which has already
3601 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
3602 * zero in this (rare) case, and we handle it by continuing to scan the queue.
3603 */
3604static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
3605 int nr_exclusive, int sync, void *key)
3606{
3607 struct list_head *tmp, *next;
3608
3609 list_for_each_safe(tmp, next, &q->task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07003610 wait_queue_t *curr = list_entry(tmp, wait_queue_t, task_list);
3611 unsigned flags = curr->flags;
3612
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003614 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615 break;
3616 }
3617}
3618
3619/**
3620 * __wake_up - wake up threads blocked on a waitqueue.
3621 * @q: the waitqueue
3622 * @mode: which threads
3623 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07003624 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 */
3626void fastcall __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003627 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628{
3629 unsigned long flags;
3630
3631 spin_lock_irqsave(&q->lock, flags);
3632 __wake_up_common(q, mode, nr_exclusive, 0, key);
3633 spin_unlock_irqrestore(&q->lock, flags);
3634}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635EXPORT_SYMBOL(__wake_up);
3636
3637/*
3638 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
3639 */
3640void fastcall __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
3641{
3642 __wake_up_common(q, mode, 1, 0, NULL);
3643}
3644
3645/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07003646 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647 * @q: the waitqueue
3648 * @mode: which threads
3649 * @nr_exclusive: how many wake-one or wake-many threads to wake up
3650 *
3651 * The sync wakeup differs that the waker knows that it will schedule
3652 * away soon, so while the target thread will be woken up, it will not
3653 * be migrated to another CPU - ie. the two threads are 'synchronized'
3654 * with each other. This can prevent needless bouncing between CPUs.
3655 *
3656 * On UP it can prevent extra preemption.
3657 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003658void fastcall
3659__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660{
3661 unsigned long flags;
3662 int sync = 1;
3663
3664 if (unlikely(!q))
3665 return;
3666
3667 if (unlikely(!nr_exclusive))
3668 sync = 0;
3669
3670 spin_lock_irqsave(&q->lock, flags);
3671 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
3672 spin_unlock_irqrestore(&q->lock, flags);
3673}
3674EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
3675
3676void fastcall complete(struct completion *x)
3677{
3678 unsigned long flags;
3679
3680 spin_lock_irqsave(&x->wait.lock, flags);
3681 x->done++;
3682 __wake_up_common(&x->wait, TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE,
3683 1, 0, NULL);
3684 spin_unlock_irqrestore(&x->wait.lock, flags);
3685}
3686EXPORT_SYMBOL(complete);
3687
3688void fastcall complete_all(struct completion *x)
3689{
3690 unsigned long flags;
3691
3692 spin_lock_irqsave(&x->wait.lock, flags);
3693 x->done += UINT_MAX/2;
3694 __wake_up_common(&x->wait, TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE,
3695 0, 0, NULL);
3696 spin_unlock_irqrestore(&x->wait.lock, flags);
3697}
3698EXPORT_SYMBOL(complete_all);
3699
3700void fastcall __sched wait_for_completion(struct completion *x)
3701{
3702 might_sleep();
Ingo Molnar48f24c42006-07-03 00:25:40 -07003703
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704 spin_lock_irq(&x->wait.lock);
3705 if (!x->done) {
3706 DECLARE_WAITQUEUE(wait, current);
3707
3708 wait.flags |= WQ_FLAG_EXCLUSIVE;
3709 __add_wait_queue_tail(&x->wait, &wait);
3710 do {
3711 __set_current_state(TASK_UNINTERRUPTIBLE);
3712 spin_unlock_irq(&x->wait.lock);
3713 schedule();
3714 spin_lock_irq(&x->wait.lock);
3715 } while (!x->done);
3716 __remove_wait_queue(&x->wait, &wait);
3717 }
3718 x->done--;
3719 spin_unlock_irq(&x->wait.lock);
3720}
3721EXPORT_SYMBOL(wait_for_completion);
3722
3723unsigned long fastcall __sched
3724wait_for_completion_timeout(struct completion *x, unsigned long timeout)
3725{
3726 might_sleep();
3727
3728 spin_lock_irq(&x->wait.lock);
3729 if (!x->done) {
3730 DECLARE_WAITQUEUE(wait, current);
3731
3732 wait.flags |= WQ_FLAG_EXCLUSIVE;
3733 __add_wait_queue_tail(&x->wait, &wait);
3734 do {
3735 __set_current_state(TASK_UNINTERRUPTIBLE);
3736 spin_unlock_irq(&x->wait.lock);
3737 timeout = schedule_timeout(timeout);
3738 spin_lock_irq(&x->wait.lock);
3739 if (!timeout) {
3740 __remove_wait_queue(&x->wait, &wait);
3741 goto out;
3742 }
3743 } while (!x->done);
3744 __remove_wait_queue(&x->wait, &wait);
3745 }
3746 x->done--;
3747out:
3748 spin_unlock_irq(&x->wait.lock);
3749 return timeout;
3750}
3751EXPORT_SYMBOL(wait_for_completion_timeout);
3752
3753int fastcall __sched wait_for_completion_interruptible(struct completion *x)
3754{
3755 int ret = 0;
3756
3757 might_sleep();
3758
3759 spin_lock_irq(&x->wait.lock);
3760 if (!x->done) {
3761 DECLARE_WAITQUEUE(wait, current);
3762
3763 wait.flags |= WQ_FLAG_EXCLUSIVE;
3764 __add_wait_queue_tail(&x->wait, &wait);
3765 do {
3766 if (signal_pending(current)) {
3767 ret = -ERESTARTSYS;
3768 __remove_wait_queue(&x->wait, &wait);
3769 goto out;
3770 }
3771 __set_current_state(TASK_INTERRUPTIBLE);
3772 spin_unlock_irq(&x->wait.lock);
3773 schedule();
3774 spin_lock_irq(&x->wait.lock);
3775 } while (!x->done);
3776 __remove_wait_queue(&x->wait, &wait);
3777 }
3778 x->done--;
3779out:
3780 spin_unlock_irq(&x->wait.lock);
3781
3782 return ret;
3783}
3784EXPORT_SYMBOL(wait_for_completion_interruptible);
3785
3786unsigned long fastcall __sched
3787wait_for_completion_interruptible_timeout(struct completion *x,
3788 unsigned long timeout)
3789{
3790 might_sleep();
3791
3792 spin_lock_irq(&x->wait.lock);
3793 if (!x->done) {
3794 DECLARE_WAITQUEUE(wait, current);
3795
3796 wait.flags |= WQ_FLAG_EXCLUSIVE;
3797 __add_wait_queue_tail(&x->wait, &wait);
3798 do {
3799 if (signal_pending(current)) {
3800 timeout = -ERESTARTSYS;
3801 __remove_wait_queue(&x->wait, &wait);
3802 goto out;
3803 }
3804 __set_current_state(TASK_INTERRUPTIBLE);
3805 spin_unlock_irq(&x->wait.lock);
3806 timeout = schedule_timeout(timeout);
3807 spin_lock_irq(&x->wait.lock);
3808 if (!timeout) {
3809 __remove_wait_queue(&x->wait, &wait);
3810 goto out;
3811 }
3812 } while (!x->done);
3813 __remove_wait_queue(&x->wait, &wait);
3814 }
3815 x->done--;
3816out:
3817 spin_unlock_irq(&x->wait.lock);
3818 return timeout;
3819}
3820EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
3821
Ingo Molnar0fec1712007-07-09 18:52:01 +02003822static inline void
3823sleep_on_head(wait_queue_head_t *q, wait_queue_t *wait, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824{
Ingo Molnar0fec1712007-07-09 18:52:01 +02003825 spin_lock_irqsave(&q->lock, *flags);
3826 __add_wait_queue(q, wait);
3827 spin_unlock(&q->lock);
3828}
3829
3830static inline void
3831sleep_on_tail(wait_queue_head_t *q, wait_queue_t *wait, unsigned long *flags)
3832{
3833 spin_lock_irq(&q->lock);
3834 __remove_wait_queue(q, wait);
3835 spin_unlock_irqrestore(&q->lock, *flags);
3836}
3837
3838void __sched interruptible_sleep_on(wait_queue_head_t *q)
3839{
3840 unsigned long flags;
3841 wait_queue_t wait;
3842
3843 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844
3845 current->state = TASK_INTERRUPTIBLE;
3846
Ingo Molnar0fec1712007-07-09 18:52:01 +02003847 sleep_on_head(q, &wait, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848 schedule();
Ingo Molnar0fec1712007-07-09 18:52:01 +02003849 sleep_on_tail(q, &wait, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851EXPORT_SYMBOL(interruptible_sleep_on);
3852
Ingo Molnar0fec1712007-07-09 18:52:01 +02003853long __sched
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003854interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855{
Ingo Molnar0fec1712007-07-09 18:52:01 +02003856 unsigned long flags;
3857 wait_queue_t wait;
3858
3859 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860
3861 current->state = TASK_INTERRUPTIBLE;
3862
Ingo Molnar0fec1712007-07-09 18:52:01 +02003863 sleep_on_head(q, &wait, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864 timeout = schedule_timeout(timeout);
Ingo Molnar0fec1712007-07-09 18:52:01 +02003865 sleep_on_tail(q, &wait, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866
3867 return timeout;
3868}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869EXPORT_SYMBOL(interruptible_sleep_on_timeout);
3870
Ingo Molnar0fec1712007-07-09 18:52:01 +02003871void __sched sleep_on(wait_queue_head_t *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872{
Ingo Molnar0fec1712007-07-09 18:52:01 +02003873 unsigned long flags;
3874 wait_queue_t wait;
3875
3876 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877
3878 current->state = TASK_UNINTERRUPTIBLE;
3879
Ingo Molnar0fec1712007-07-09 18:52:01 +02003880 sleep_on_head(q, &wait, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881 schedule();
Ingo Molnar0fec1712007-07-09 18:52:01 +02003882 sleep_on_tail(q, &wait, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884EXPORT_SYMBOL(sleep_on);
3885
Ingo Molnar0fec1712007-07-09 18:52:01 +02003886long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887{
Ingo Molnar0fec1712007-07-09 18:52:01 +02003888 unsigned long flags;
3889 wait_queue_t wait;
3890
3891 init_waitqueue_entry(&wait, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892
3893 current->state = TASK_UNINTERRUPTIBLE;
3894
Ingo Molnar0fec1712007-07-09 18:52:01 +02003895 sleep_on_head(q, &wait, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896 timeout = schedule_timeout(timeout);
Ingo Molnar0fec1712007-07-09 18:52:01 +02003897 sleep_on_tail(q, &wait, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898
3899 return timeout;
3900}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901EXPORT_SYMBOL(sleep_on_timeout);
3902
Ingo Molnarb29739f2006-06-27 02:54:51 -07003903#ifdef CONFIG_RT_MUTEXES
3904
3905/*
3906 * rt_mutex_setprio - set the current priority of a task
3907 * @p: task
3908 * @prio: prio value (kernel-internal form)
3909 *
3910 * This function changes the 'effective' priority of a task. It does
3911 * not touch ->normal_prio like __setscheduler().
3912 *
3913 * Used by the rt_mutex code to implement priority inheritance logic.
3914 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003915void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07003916{
3917 unsigned long flags;
Ingo Molnardd41f592007-07-09 18:51:59 +02003918 int oldprio, on_rq;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003919 struct rq *rq;
Ingo Molnardd41f592007-07-09 18:51:59 +02003920 u64 now;
Ingo Molnarb29739f2006-06-27 02:54:51 -07003921
3922 BUG_ON(prio < 0 || prio > MAX_PRIO);
3923
3924 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02003925 update_rq_clock(rq);
3926 now = rq->clock;
Ingo Molnarb29739f2006-06-27 02:54:51 -07003927
Andrew Mortond5f9f942007-05-08 20:27:06 -07003928 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02003929 on_rq = p->se.on_rq;
3930 if (on_rq)
3931 dequeue_task(rq, p, 0, now);
3932
3933 if (rt_prio(prio))
3934 p->sched_class = &rt_sched_class;
3935 else
3936 p->sched_class = &fair_sched_class;
3937
Ingo Molnarb29739f2006-06-27 02:54:51 -07003938 p->prio = prio;
3939
Ingo Molnardd41f592007-07-09 18:51:59 +02003940 if (on_rq) {
3941 enqueue_task(rq, p, 0, now);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003942 /*
3943 * Reschedule if we are currently running on this runqueue and
Andrew Mortond5f9f942007-05-08 20:27:06 -07003944 * our priority decreased, or if we are not currently running on
3945 * this runqueue and our priority is higher than the current's
Ingo Molnarb29739f2006-06-27 02:54:51 -07003946 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07003947 if (task_running(rq, p)) {
3948 if (p->prio > oldprio)
3949 resched_task(rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02003950 } else {
3951 check_preempt_curr(rq, p);
3952 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07003953 }
3954 task_rq_unlock(rq, &flags);
3955}
3956
3957#endif
3958
Ingo Molnar36c8b582006-07-03 00:25:41 -07003959void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960{
Ingo Molnardd41f592007-07-09 18:51:59 +02003961 int old_prio, delta, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003963 struct rq *rq;
Ingo Molnardd41f592007-07-09 18:51:59 +02003964 u64 now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965
3966 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
3967 return;
3968 /*
3969 * We have to be careful, if called from sys_setpriority(),
3970 * the task might be in the middle of scheduling on another CPU.
3971 */
3972 rq = task_rq_lock(p, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02003973 update_rq_clock(rq);
3974 now = rq->clock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 /*
3976 * The RT priorities are set via sched_setscheduler(), but we still
3977 * allow the 'normal' nice value to be set - but as expected
3978 * it wont have any effect on scheduling until the task is
Ingo Molnardd41f592007-07-09 18:51:59 +02003979 * SCHED_FIFO/SCHED_RR:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980 */
Ingo Molnare05606d2007-07-09 18:51:59 +02003981 if (task_has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982 p->static_prio = NICE_TO_PRIO(nice);
3983 goto out_unlock;
3984 }
Ingo Molnardd41f592007-07-09 18:51:59 +02003985 on_rq = p->se.on_rq;
3986 if (on_rq) {
3987 dequeue_task(rq, p, 0, now);
3988 dec_load(rq, p, now);
Peter Williams2dd73a42006-06-27 02:54:34 -07003989 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07003992 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003993 old_prio = p->prio;
3994 p->prio = effective_prio(p);
3995 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996
Ingo Molnardd41f592007-07-09 18:51:59 +02003997 if (on_rq) {
3998 enqueue_task(rq, p, 0, now);
3999 inc_load(rq, p, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000 /*
Andrew Mortond5f9f942007-05-08 20:27:06 -07004001 * If the task increased its priority or is running and
4002 * lowered its priority, then reschedule its CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07004004 if (delta < 0 || (delta > 0 && task_running(rq, p)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005 resched_task(rq->curr);
4006 }
4007out_unlock:
4008 task_rq_unlock(rq, &flags);
4009}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010EXPORT_SYMBOL(set_user_nice);
4011
Matt Mackalle43379f2005-05-01 08:59:00 -07004012/*
4013 * can_nice - check if a task can reduce its nice value
4014 * @p: task
4015 * @nice: nice value
4016 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004017int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07004018{
Matt Mackall024f4742005-08-18 11:24:19 -07004019 /* convert nice value [19,-20] to rlimit style value [1,40] */
4020 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004021
Matt Mackalle43379f2005-05-01 08:59:00 -07004022 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
4023 capable(CAP_SYS_NICE));
4024}
4025
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026#ifdef __ARCH_WANT_SYS_NICE
4027
4028/*
4029 * sys_nice - change the priority of the current process.
4030 * @increment: priority increment
4031 *
4032 * sys_setpriority is a more generic, but much slower function that
4033 * does similar things.
4034 */
4035asmlinkage long sys_nice(int increment)
4036{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004037 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038
4039 /*
4040 * Setpriority might change our priority at the same moment.
4041 * We don't have to worry. Conceptually one call occurs first
4042 * and we have a single winner.
4043 */
Matt Mackalle43379f2005-05-01 08:59:00 -07004044 if (increment < -40)
4045 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046 if (increment > 40)
4047 increment = 40;
4048
4049 nice = PRIO_TO_NICE(current->static_prio) + increment;
4050 if (nice < -20)
4051 nice = -20;
4052 if (nice > 19)
4053 nice = 19;
4054
Matt Mackalle43379f2005-05-01 08:59:00 -07004055 if (increment < 0 && !can_nice(current, nice))
4056 return -EPERM;
4057
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058 retval = security_task_setnice(current, nice);
4059 if (retval)
4060 return retval;
4061
4062 set_user_nice(current, nice);
4063 return 0;
4064}
4065
4066#endif
4067
4068/**
4069 * task_prio - return the priority value of a given task.
4070 * @p: the task in question.
4071 *
4072 * This is the priority value as seen by users in /proc.
4073 * RT tasks are offset by -200. Normal tasks are centered
4074 * around 0, value goes from -16 to +15.
4075 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004076int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077{
4078 return p->prio - MAX_RT_PRIO;
4079}
4080
4081/**
4082 * task_nice - return the nice value of a given task.
4083 * @p: the task in question.
4084 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004085int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086{
4087 return TASK_NICE(p);
4088}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089EXPORT_SYMBOL_GPL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090
4091/**
4092 * idle_cpu - is a given cpu idle currently?
4093 * @cpu: the processor in question.
4094 */
4095int idle_cpu(int cpu)
4096{
4097 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
4098}
4099
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100/**
4101 * idle_task - return the idle task for a given cpu.
4102 * @cpu: the processor in question.
4103 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004104struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105{
4106 return cpu_rq(cpu)->idle;
4107}
4108
4109/**
4110 * find_process_by_pid - find a process with a matching PID value.
4111 * @pid: the pid in question.
4112 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004113static inline struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114{
4115 return pid ? find_task_by_pid(pid) : current;
4116}
4117
4118/* Actually do priority change: must hold rq lock. */
Ingo Molnardd41f592007-07-09 18:51:59 +02004119static void
4120__setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121{
Ingo Molnardd41f592007-07-09 18:51:59 +02004122 BUG_ON(p->se.on_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004123
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124 p->policy = policy;
Ingo Molnardd41f592007-07-09 18:51:59 +02004125 switch (p->policy) {
4126 case SCHED_NORMAL:
4127 case SCHED_BATCH:
4128 case SCHED_IDLE:
4129 p->sched_class = &fair_sched_class;
4130 break;
4131 case SCHED_FIFO:
4132 case SCHED_RR:
4133 p->sched_class = &rt_sched_class;
4134 break;
4135 }
4136
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004138 p->normal_prio = normal_prio(p);
4139 /* we are holding p->pi_lock already */
4140 p->prio = rt_mutex_getprio(p);
Peter Williams2dd73a42006-06-27 02:54:34 -07004141 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142}
4143
4144/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004145 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146 * @p: the task in question.
4147 * @policy: new policy.
4148 * @param: structure containing the new RT priority.
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004149 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004150 * NOTE that the task may be already dead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004152int sched_setscheduler(struct task_struct *p, int policy,
4153 struct sched_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154{
Ingo Molnardd41f592007-07-09 18:51:59 +02004155 int retval, oldprio, oldpolicy = -1, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004157 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158
Steven Rostedt66e53932006-06-27 02:54:44 -07004159 /* may grab non-irq protected spin_locks */
4160 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161recheck:
4162 /* double check policy once rq lock held */
4163 if (policy < 0)
4164 policy = oldpolicy = p->policy;
4165 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnardd41f592007-07-09 18:51:59 +02004166 policy != SCHED_NORMAL && policy != SCHED_BATCH &&
4167 policy != SCHED_IDLE)
Ingo Molnarb0a94992006-01-14 13:20:41 -08004168 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169 /*
4170 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnardd41f592007-07-09 18:51:59 +02004171 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL,
4172 * SCHED_BATCH and SCHED_IDLE is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173 */
4174 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004175 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04004176 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177 return -EINVAL;
Ingo Molnare05606d2007-07-09 18:51:59 +02004178 if (rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179 return -EINVAL;
4180
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004181 /*
4182 * Allow unprivileged RT tasks to decrease priority:
4183 */
4184 if (!capable(CAP_SYS_NICE)) {
Ingo Molnare05606d2007-07-09 18:51:59 +02004185 if (rt_policy(policy)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004186 unsigned long rlim_rtprio;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004187
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004188 if (!lock_task_sighand(p, &flags))
4189 return -ESRCH;
4190 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
4191 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004192
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004193 /* can't set/change the rt policy */
4194 if (policy != p->policy && !rlim_rtprio)
4195 return -EPERM;
4196
4197 /* can't increase priority */
4198 if (param->sched_priority > p->rt_priority &&
4199 param->sched_priority > rlim_rtprio)
4200 return -EPERM;
4201 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004202 /*
4203 * Like positive nice levels, dont allow tasks to
4204 * move out of SCHED_IDLE either:
4205 */
4206 if (p->policy == SCHED_IDLE && policy != SCHED_IDLE)
4207 return -EPERM;
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004208
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004209 /* can't change other user's priorities */
4210 if ((current->euid != p->euid) &&
4211 (current->euid != p->uid))
4212 return -EPERM;
4213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214
4215 retval = security_task_setscheduler(p, policy, param);
4216 if (retval)
4217 return retval;
4218 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07004219 * make sure no PI-waiters arrive (or leave) while we are
4220 * changing the priority of the task:
4221 */
4222 spin_lock_irqsave(&p->pi_lock, flags);
4223 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224 * To be able to change p->policy safely, the apropriate
4225 * runqueue lock must be held.
4226 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07004227 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228 /* recheck policy now with rq lock held */
4229 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
4230 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004231 __task_rq_unlock(rq);
4232 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233 goto recheck;
4234 }
Ingo Molnardd41f592007-07-09 18:51:59 +02004235 on_rq = p->se.on_rq;
Ingo Molnara8e504d2007-08-09 11:16:47 +02004236 if (on_rq) {
4237 update_rq_clock(rq);
4238 deactivate_task(rq, p, 0, rq->clock);
4239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240 oldprio = p->prio;
Ingo Molnardd41f592007-07-09 18:51:59 +02004241 __setscheduler(rq, p, policy, param->sched_priority);
4242 if (on_rq) {
4243 activate_task(rq, p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244 /*
4245 * Reschedule if we are currently running on this runqueue and
Andrew Mortond5f9f942007-05-08 20:27:06 -07004246 * our priority decreased, or if we are not currently running on
4247 * this runqueue and our priority is higher than the current's
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248 */
Andrew Mortond5f9f942007-05-08 20:27:06 -07004249 if (task_running(rq, p)) {
4250 if (p->prio > oldprio)
4251 resched_task(rq->curr);
Ingo Molnardd41f592007-07-09 18:51:59 +02004252 } else {
4253 check_preempt_curr(rq, p);
4254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07004256 __task_rq_unlock(rq);
4257 spin_unlock_irqrestore(&p->pi_lock, flags);
4258
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07004259 rt_mutex_adjust_pi(p);
4260
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 return 0;
4262}
4263EXPORT_SYMBOL_GPL(sched_setscheduler);
4264
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004265static int
4266do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268 struct sched_param lparam;
4269 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004270 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271
4272 if (!param || pid < 0)
4273 return -EINVAL;
4274 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
4275 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004276
4277 rcu_read_lock();
4278 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004280 if (p != NULL)
4281 retval = sched_setscheduler(p, policy, &lparam);
4282 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07004283
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284 return retval;
4285}
4286
4287/**
4288 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
4289 * @pid: the pid in question.
4290 * @policy: new policy.
4291 * @param: structure containing the new RT priority.
4292 */
4293asmlinkage long sys_sched_setscheduler(pid_t pid, int policy,
4294 struct sched_param __user *param)
4295{
Jason Baronc21761f2006-01-18 17:43:03 -08004296 /* negative values for policy are not valid */
4297 if (policy < 0)
4298 return -EINVAL;
4299
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300 return do_sched_setscheduler(pid, policy, param);
4301}
4302
4303/**
4304 * sys_sched_setparam - set/change the RT priority of a thread
4305 * @pid: the pid in question.
4306 * @param: structure containing the new RT priority.
4307 */
4308asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
4309{
4310 return do_sched_setscheduler(pid, -1, param);
4311}
4312
4313/**
4314 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
4315 * @pid: the pid in question.
4316 */
4317asmlinkage long sys_sched_getscheduler(pid_t pid)
4318{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004319 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321
4322 if (pid < 0)
4323 goto out_nounlock;
4324
4325 retval = -ESRCH;
4326 read_lock(&tasklist_lock);
4327 p = find_process_by_pid(pid);
4328 if (p) {
4329 retval = security_task_getscheduler(p);
4330 if (!retval)
4331 retval = p->policy;
4332 }
4333 read_unlock(&tasklist_lock);
4334
4335out_nounlock:
4336 return retval;
4337}
4338
4339/**
4340 * sys_sched_getscheduler - get the RT priority of a thread
4341 * @pid: the pid in question.
4342 * @param: structure containing the RT priority.
4343 */
4344asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
4345{
4346 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004347 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349
4350 if (!param || pid < 0)
4351 goto out_nounlock;
4352
4353 read_lock(&tasklist_lock);
4354 p = find_process_by_pid(pid);
4355 retval = -ESRCH;
4356 if (!p)
4357 goto out_unlock;
4358
4359 retval = security_task_getscheduler(p);
4360 if (retval)
4361 goto out_unlock;
4362
4363 lp.sched_priority = p->rt_priority;
4364 read_unlock(&tasklist_lock);
4365
4366 /*
4367 * This one might sleep, we cannot do it with a spinlock held ...
4368 */
4369 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
4370
4371out_nounlock:
4372 return retval;
4373
4374out_unlock:
4375 read_unlock(&tasklist_lock);
4376 return retval;
4377}
4378
4379long sched_setaffinity(pid_t pid, cpumask_t new_mask)
4380{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381 cpumask_t cpus_allowed;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004382 struct task_struct *p;
4383 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384
Gautham R Shenoy5be93612007-05-09 02:34:04 -07004385 mutex_lock(&sched_hotcpu_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386 read_lock(&tasklist_lock);
4387
4388 p = find_process_by_pid(pid);
4389 if (!p) {
4390 read_unlock(&tasklist_lock);
Gautham R Shenoy5be93612007-05-09 02:34:04 -07004391 mutex_unlock(&sched_hotcpu_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392 return -ESRCH;
4393 }
4394
4395 /*
4396 * It is not safe to call set_cpus_allowed with the
4397 * tasklist_lock held. We will bump the task_struct's
4398 * usage count and then drop tasklist_lock.
4399 */
4400 get_task_struct(p);
4401 read_unlock(&tasklist_lock);
4402
4403 retval = -EPERM;
4404 if ((current->euid != p->euid) && (current->euid != p->uid) &&
4405 !capable(CAP_SYS_NICE))
4406 goto out_unlock;
4407
David Quigleye7834f82006-06-23 02:03:59 -07004408 retval = security_task_setscheduler(p, 0, NULL);
4409 if (retval)
4410 goto out_unlock;
4411
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412 cpus_allowed = cpuset_cpus_allowed(p);
4413 cpus_and(new_mask, new_mask, cpus_allowed);
4414 retval = set_cpus_allowed(p, new_mask);
4415
4416out_unlock:
4417 put_task_struct(p);
Gautham R Shenoy5be93612007-05-09 02:34:04 -07004418 mutex_unlock(&sched_hotcpu_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419 return retval;
4420}
4421
4422static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
4423 cpumask_t *new_mask)
4424{
4425 if (len < sizeof(cpumask_t)) {
4426 memset(new_mask, 0, sizeof(cpumask_t));
4427 } else if (len > sizeof(cpumask_t)) {
4428 len = sizeof(cpumask_t);
4429 }
4430 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
4431}
4432
4433/**
4434 * sys_sched_setaffinity - set the cpu affinity of a process
4435 * @pid: pid of the process
4436 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4437 * @user_mask_ptr: user-space pointer to the new cpu mask
4438 */
4439asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
4440 unsigned long __user *user_mask_ptr)
4441{
4442 cpumask_t new_mask;
4443 int retval;
4444
4445 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
4446 if (retval)
4447 return retval;
4448
4449 return sched_setaffinity(pid, new_mask);
4450}
4451
4452/*
4453 * Represents all cpu's present in the system
4454 * In systems capable of hotplug, this map could dynamically grow
4455 * as new cpu's are detected in the system via any platform specific
4456 * method, such as ACPI for e.g.
4457 */
4458
Andi Kleen4cef0c62006-01-11 22:44:57 +01004459cpumask_t cpu_present_map __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460EXPORT_SYMBOL(cpu_present_map);
4461
4462#ifndef CONFIG_SMP
Andi Kleen4cef0c62006-01-11 22:44:57 +01004463cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004464EXPORT_SYMBOL(cpu_online_map);
4465
Andi Kleen4cef0c62006-01-11 22:44:57 +01004466cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004467EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468#endif
4469
4470long sched_getaffinity(pid_t pid, cpumask_t *mask)
4471{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004472 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474
Gautham R Shenoy5be93612007-05-09 02:34:04 -07004475 mutex_lock(&sched_hotcpu_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476 read_lock(&tasklist_lock);
4477
4478 retval = -ESRCH;
4479 p = find_process_by_pid(pid);
4480 if (!p)
4481 goto out_unlock;
4482
David Quigleye7834f82006-06-23 02:03:59 -07004483 retval = security_task_getscheduler(p);
4484 if (retval)
4485 goto out_unlock;
4486
Jack Steiner2f7016d2006-02-01 03:05:18 -08004487 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488
4489out_unlock:
4490 read_unlock(&tasklist_lock);
Gautham R Shenoy5be93612007-05-09 02:34:04 -07004491 mutex_unlock(&sched_hotcpu_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492
Ulrich Drepper9531b622007-08-09 11:16:46 +02004493 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494}
4495
4496/**
4497 * sys_sched_getaffinity - get the cpu affinity of a process
4498 * @pid: pid of the process
4499 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4500 * @user_mask_ptr: user-space pointer to hold the current cpu mask
4501 */
4502asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
4503 unsigned long __user *user_mask_ptr)
4504{
4505 int ret;
4506 cpumask_t mask;
4507
4508 if (len < sizeof(cpumask_t))
4509 return -EINVAL;
4510
4511 ret = sched_getaffinity(pid, &mask);
4512 if (ret < 0)
4513 return ret;
4514
4515 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
4516 return -EFAULT;
4517
4518 return sizeof(cpumask_t);
4519}
4520
4521/**
4522 * sys_sched_yield - yield the current processor to other threads.
4523 *
Ingo Molnardd41f592007-07-09 18:51:59 +02004524 * This function yields the current CPU to other tasks. If there are no
4525 * other threads running on this CPU then this function will return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526 */
4527asmlinkage long sys_sched_yield(void)
4528{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004529 struct rq *rq = this_rq_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530
4531 schedstat_inc(rq, yld_cnt);
Ingo Molnardd41f592007-07-09 18:51:59 +02004532 if (unlikely(rq->nr_running == 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533 schedstat_inc(rq, yld_act_empty);
Ingo Molnardd41f592007-07-09 18:51:59 +02004534 else
4535 current->sched_class->yield_task(rq, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536
4537 /*
4538 * Since we are going to call schedule() anyway, there's
4539 * no need to preempt or enable interrupts:
4540 */
4541 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004542 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543 _raw_spin_unlock(&rq->lock);
4544 preempt_enable_no_resched();
4545
4546 schedule();
4547
4548 return 0;
4549}
4550
Andrew Mortone7b38402006-06-30 01:56:00 -07004551static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07004553#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
4554 __might_sleep(__FILE__, __LINE__);
4555#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07004556 /*
4557 * The BKS might be reacquired before we have dropped
4558 * PREEMPT_ACTIVE, which could trigger a second
4559 * cond_resched() call.
4560 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561 do {
4562 add_preempt_count(PREEMPT_ACTIVE);
4563 schedule();
4564 sub_preempt_count(PREEMPT_ACTIVE);
4565 } while (need_resched());
4566}
4567
4568int __sched cond_resched(void)
4569{
Ingo Molnar94142322006-12-29 16:48:13 -08004570 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
4571 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572 __cond_resched();
4573 return 1;
4574 }
4575 return 0;
4576}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577EXPORT_SYMBOL(cond_resched);
4578
4579/*
4580 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
4581 * call schedule, and on return reacquire the lock.
4582 *
4583 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
4584 * operations here to prevent schedule() from being called twice (once via
4585 * spin_unlock(), once by hand).
4586 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004587int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588{
Jan Kara6df3cec2005-06-13 15:52:32 -07004589 int ret = 0;
4590
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591 if (need_lockbreak(lock)) {
4592 spin_unlock(lock);
4593 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07004594 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595 spin_lock(lock);
4596 }
Ingo Molnar94142322006-12-29 16:48:13 -08004597 if (need_resched() && system_state == SYSTEM_RUNNING) {
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004598 spin_release(&lock->dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599 _raw_spin_unlock(lock);
4600 preempt_enable_no_resched();
4601 __cond_resched();
Jan Kara6df3cec2005-06-13 15:52:32 -07004602 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604 }
Jan Kara6df3cec2005-06-13 15:52:32 -07004605 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607EXPORT_SYMBOL(cond_resched_lock);
4608
4609int __sched cond_resched_softirq(void)
4610{
4611 BUG_ON(!in_softirq());
4612
Ingo Molnar94142322006-12-29 16:48:13 -08004613 if (need_resched() && system_state == SYSTEM_RUNNING) {
Thomas Gleixner98d82562007-05-23 13:58:18 -07004614 local_bh_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615 __cond_resched();
4616 local_bh_disable();
4617 return 1;
4618 }
4619 return 0;
4620}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621EXPORT_SYMBOL(cond_resched_softirq);
4622
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623/**
4624 * yield - yield the current processor to other threads.
4625 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004626 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627 * thread runnable and calls sys_sched_yield().
4628 */
4629void __sched yield(void)
4630{
4631 set_current_state(TASK_RUNNING);
4632 sys_sched_yield();
4633}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634EXPORT_SYMBOL(yield);
4635
4636/*
4637 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
4638 * that process accounting knows that this is a task in IO wait state.
4639 *
4640 * But don't do that if it is a deliberate, throttling IO wait (this task
4641 * has set its backing_dev_info: the queue against which it should throttle)
4642 */
4643void __sched io_schedule(void)
4644{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004645 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004647 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648 atomic_inc(&rq->nr_iowait);
4649 schedule();
4650 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004651 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653EXPORT_SYMBOL(io_schedule);
4654
4655long __sched io_schedule_timeout(long timeout)
4656{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004657 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658 long ret;
4659
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004660 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661 atomic_inc(&rq->nr_iowait);
4662 ret = schedule_timeout(timeout);
4663 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004664 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665 return ret;
4666}
4667
4668/**
4669 * sys_sched_get_priority_max - return maximum RT priority.
4670 * @policy: scheduling class.
4671 *
4672 * this syscall returns the maximum rt_priority that can be used
4673 * by a given scheduling class.
4674 */
4675asmlinkage long sys_sched_get_priority_max(int policy)
4676{
4677 int ret = -EINVAL;
4678
4679 switch (policy) {
4680 case SCHED_FIFO:
4681 case SCHED_RR:
4682 ret = MAX_USER_RT_PRIO-1;
4683 break;
4684 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08004685 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02004686 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687 ret = 0;
4688 break;
4689 }
4690 return ret;
4691}
4692
4693/**
4694 * sys_sched_get_priority_min - return minimum RT priority.
4695 * @policy: scheduling class.
4696 *
4697 * this syscall returns the minimum rt_priority that can be used
4698 * by a given scheduling class.
4699 */
4700asmlinkage long sys_sched_get_priority_min(int policy)
4701{
4702 int ret = -EINVAL;
4703
4704 switch (policy) {
4705 case SCHED_FIFO:
4706 case SCHED_RR:
4707 ret = 1;
4708 break;
4709 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08004710 case SCHED_BATCH:
Ingo Molnardd41f592007-07-09 18:51:59 +02004711 case SCHED_IDLE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712 ret = 0;
4713 }
4714 return ret;
4715}
4716
4717/**
4718 * sys_sched_rr_get_interval - return the default timeslice of a process.
4719 * @pid: pid of the process.
4720 * @interval: userspace pointer to the timeslice value.
4721 *
4722 * this syscall writes the default timeslice value of a given process
4723 * into the user-space timespec buffer. A value of '0' means infinity.
4724 */
4725asmlinkage
4726long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
4727{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004728 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729 int retval = -EINVAL;
4730 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731
4732 if (pid < 0)
4733 goto out_nounlock;
4734
4735 retval = -ESRCH;
4736 read_lock(&tasklist_lock);
4737 p = find_process_by_pid(pid);
4738 if (!p)
4739 goto out_unlock;
4740
4741 retval = security_task_getscheduler(p);
4742 if (retval)
4743 goto out_unlock;
4744
Peter Williamsb78709c2006-06-26 16:58:00 +10004745 jiffies_to_timespec(p->policy == SCHED_FIFO ?
Ingo Molnardd41f592007-07-09 18:51:59 +02004746 0 : static_prio_timeslice(p->static_prio), &t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747 read_unlock(&tasklist_lock);
4748 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
4749out_nounlock:
4750 return retval;
4751out_unlock:
4752 read_unlock(&tasklist_lock);
4753 return retval;
4754}
4755
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004756static const char stat_nam[] = "RSDTtZX";
Ingo Molnar36c8b582006-07-03 00:25:41 -07004757
4758static void show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004760 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004761 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762
Linus Torvalds1da177e2005-04-16 15:20:36 -07004763 state = p->state ? __ffs(p->state) + 1 : 0;
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004764 printk("%-13.13s %c", p->comm,
4765 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Ingo Molnar4bd77322007-07-11 21:21:47 +02004766#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767 if (state == TASK_RUNNING)
Ingo Molnar4bd77322007-07-11 21:21:47 +02004768 printk(" running ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004769 else
Ingo Molnar4bd77322007-07-11 21:21:47 +02004770 printk(" %08lx ", thread_saved_pc(p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004771#else
4772 if (state == TASK_RUNNING)
Ingo Molnar4bd77322007-07-11 21:21:47 +02004773 printk(" running task ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774 else
4775 printk(" %016lx ", thread_saved_pc(p));
4776#endif
4777#ifdef CONFIG_DEBUG_STACK_USAGE
4778 {
Al Viro10ebffd2005-11-13 16:06:56 -08004779 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780 while (!*n)
4781 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08004782 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783 }
4784#endif
Ingo Molnar4bd77322007-07-11 21:21:47 +02004785 printk("%5lu %5d %6d\n", free, p->pid, p->parent->pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786
4787 if (state != TASK_RUNNING)
4788 show_stack(p, NULL);
4789}
4790
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004791void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004793 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794
Ingo Molnar4bd77322007-07-11 21:21:47 +02004795#if BITS_PER_LONG == 32
4796 printk(KERN_INFO
4797 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798#else
Ingo Molnar4bd77322007-07-11 21:21:47 +02004799 printk(KERN_INFO
4800 " task PC stack pid father\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801#endif
4802 read_lock(&tasklist_lock);
4803 do_each_thread(g, p) {
4804 /*
4805 * reset the NMI-timeout, listing all files on a slow
4806 * console might take alot of time:
4807 */
4808 touch_nmi_watchdog();
Ingo Molnar39bc89f2007-04-25 20:50:03 -07004809 if (!state_filter || (p->state & state_filter))
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004810 show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811 } while_each_thread(g, p);
4812
Jeremy Fitzhardinge04c91672007-05-08 00:28:05 -07004813 touch_all_softlockup_watchdogs();
4814
Ingo Molnardd41f592007-07-09 18:51:59 +02004815#ifdef CONFIG_SCHED_DEBUG
4816 sysrq_sched_debug_show();
4817#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004819 /*
4820 * Only show locks if all tasks are dumped:
4821 */
4822 if (state_filter == -1)
4823 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824}
4825
Ingo Molnar1df21052007-07-09 18:51:58 +02004826void __cpuinit init_idle_bootup_task(struct task_struct *idle)
4827{
Ingo Molnardd41f592007-07-09 18:51:59 +02004828 idle->sched_class = &idle_sched_class;
Ingo Molnar1df21052007-07-09 18:51:58 +02004829}
4830
Ingo Molnarf340c0d2005-06-28 16:40:42 +02004831/**
4832 * init_idle - set up an idle thread for a given CPU
4833 * @idle: task in question
4834 * @cpu: cpu the idle task belongs to
4835 *
4836 * NOTE: this function does not set the idle thread's NEED_RESCHED
4837 * flag, to make booting more robust.
4838 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07004839void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004841 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842 unsigned long flags;
4843
Ingo Molnardd41f592007-07-09 18:51:59 +02004844 __sched_fork(idle);
4845 idle->se.exec_start = sched_clock();
4846
Ingo Molnarb29739f2006-06-27 02:54:51 -07004847 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848 idle->cpus_allowed = cpumask_of_cpu(cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004849 __set_task_cpu(idle, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850
4851 spin_lock_irqsave(&rq->lock, flags);
4852 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07004853#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
4854 idle->oncpu = 1;
4855#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856 spin_unlock_irqrestore(&rq->lock, flags);
4857
4858 /* Set the preempt count _outside_ the spinlocks! */
4859#if defined(CONFIG_PREEMPT) && !defined(CONFIG_PREEMPT_BKL)
Al Viroa1261f52005-11-13 16:06:55 -08004860 task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004861#else
Al Viroa1261f52005-11-13 16:06:55 -08004862 task_thread_info(idle)->preempt_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02004864 /*
4865 * The idle tasks have their own, simple scheduling class:
4866 */
4867 idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868}
4869
4870/*
4871 * In a system that switches off the HZ timer nohz_cpu_mask
4872 * indicates which cpus entered this state. This is used
4873 * in the rcu update to wait only for active cpus. For system
4874 * which do not switch off the HZ timer nohz_cpu_mask should
4875 * always be CPU_MASK_NONE.
4876 */
4877cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
4878
Ingo Molnardd41f592007-07-09 18:51:59 +02004879/*
4880 * Increase the granularity value when there are more CPUs,
4881 * because with more CPUs the 'effective latency' as visible
4882 * to users decreases. But the relationship is not linear,
4883 * so pick a second-best guess by going with the log2 of the
4884 * number of CPUs.
4885 *
4886 * This idea comes from the SD scheduler of Con Kolivas:
4887 */
4888static inline void sched_init_granularity(void)
4889{
4890 unsigned int factor = 1 + ilog2(num_online_cpus());
Ingo Molnara5968df2007-07-11 21:21:47 +02004891 const unsigned long gran_limit = 100000000;
Ingo Molnardd41f592007-07-09 18:51:59 +02004892
4893 sysctl_sched_granularity *= factor;
4894 if (sysctl_sched_granularity > gran_limit)
4895 sysctl_sched_granularity = gran_limit;
4896
4897 sysctl_sched_runtime_limit = sysctl_sched_granularity * 4;
4898 sysctl_sched_wakeup_granularity = sysctl_sched_granularity / 2;
4899}
4900
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901#ifdef CONFIG_SMP
4902/*
4903 * This is how migration works:
4904 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07004905 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906 * runqueue and wake up that CPU's migration thread.
4907 * 2) we down() the locked semaphore => thread blocks.
4908 * 3) migration thread wakes up (implicitly it forces the migrated
4909 * thread off the CPU)
4910 * 4) it gets the migration request and checks whether the migrated
4911 * task is still in the wrong runqueue.
4912 * 5) if it's in the wrong runqueue then the migration thread removes
4913 * it and puts it into the right queue.
4914 * 6) migration thread up()s the semaphore.
4915 * 7) we wake up and the migration is done.
4916 */
4917
4918/*
4919 * Change a given task's CPU affinity. Migrate the thread to a
4920 * proper CPU and schedule it away if the CPU it's executing on
4921 * is removed from the allowed bitmask.
4922 *
4923 * NOTE: the caller must have a valid reference to the task, the
4924 * task must not exit() & deallocate itself prematurely. The
4925 * call is not atomic; no spinlocks may be held.
4926 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004927int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004929 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004931 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004932 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933
4934 rq = task_rq_lock(p, &flags);
4935 if (!cpus_intersects(new_mask, cpu_online_map)) {
4936 ret = -EINVAL;
4937 goto out;
4938 }
4939
4940 p->cpus_allowed = new_mask;
4941 /* Can the task run on the task's current CPU? If so, we're done */
4942 if (cpu_isset(task_cpu(p), new_mask))
4943 goto out;
4944
4945 if (migrate_task(p, any_online_cpu(new_mask), &req)) {
4946 /* Need help from migration thread: drop lock and wait. */
4947 task_rq_unlock(rq, &flags);
4948 wake_up_process(rq->migration_thread);
4949 wait_for_completion(&req.done);
4950 tlb_migrate_finish(p->mm);
4951 return 0;
4952 }
4953out:
4954 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004955
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956 return ret;
4957}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958EXPORT_SYMBOL_GPL(set_cpus_allowed);
4959
4960/*
4961 * Move (not current) task off this cpu, onto dest cpu. We're doing
4962 * this because either it can't run here any more (set_cpus_allowed()
4963 * away from this CPU, or CPU going down), or because we're
4964 * attempting to rebalance this task on exec (sched_exec).
4965 *
4966 * So we race with normal scheduler movements, but that's OK, as long
4967 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07004968 *
4969 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07004971static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004972{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004973 struct rq *rq_dest, *rq_src;
Ingo Molnardd41f592007-07-09 18:51:59 +02004974 int ret = 0, on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004975
4976 if (unlikely(cpu_is_offline(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07004977 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978
4979 rq_src = cpu_rq(src_cpu);
4980 rq_dest = cpu_rq(dest_cpu);
4981
4982 double_rq_lock(rq_src, rq_dest);
4983 /* Already moved. */
4984 if (task_cpu(p) != src_cpu)
4985 goto out;
4986 /* Affinity changed (again). */
4987 if (!cpu_isset(dest_cpu, p->cpus_allowed))
4988 goto out;
4989
Ingo Molnardd41f592007-07-09 18:51:59 +02004990 on_rq = p->se.on_rq;
Ingo Molnara8e504d2007-08-09 11:16:47 +02004991 if (on_rq) {
4992 update_rq_clock(rq_src);
4993 deactivate_task(rq_src, p, 0, rq_src->clock);
4994 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995 set_task_cpu(p, dest_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02004996 if (on_rq) {
4997 activate_task(rq_dest, p, 0);
4998 check_preempt_curr(rq_dest, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004999 }
Kirill Korotaevefc30812006-06-27 02:54:32 -07005000 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001out:
5002 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005003 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004}
5005
5006/*
5007 * migration_thread - this is a highprio system thread that performs
5008 * thread migration by bumping thread off CPU then 'pushing' onto
5009 * another runqueue.
5010 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005011static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005012{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005014 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015
5016 rq = cpu_rq(cpu);
5017 BUG_ON(rq->migration_thread != current);
5018
5019 set_current_state(TASK_INTERRUPTIBLE);
5020 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005021 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023
Linus Torvalds1da177e2005-04-16 15:20:36 -07005024 spin_lock_irq(&rq->lock);
5025
5026 if (cpu_is_offline(cpu)) {
5027 spin_unlock_irq(&rq->lock);
5028 goto wait_to_die;
5029 }
5030
5031 if (rq->active_balance) {
5032 active_load_balance(rq, cpu);
5033 rq->active_balance = 0;
5034 }
5035
5036 head = &rq->migration_queue;
5037
5038 if (list_empty(head)) {
5039 spin_unlock_irq(&rq->lock);
5040 schedule();
5041 set_current_state(TASK_INTERRUPTIBLE);
5042 continue;
5043 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07005044 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045 list_del_init(head->next);
5046
Nick Piggin674311d2005-06-25 14:57:27 -07005047 spin_unlock(&rq->lock);
5048 __migrate_task(req->task, cpu, req->dest_cpu);
5049 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005050
5051 complete(&req->done);
5052 }
5053 __set_current_state(TASK_RUNNING);
5054 return 0;
5055
5056wait_to_die:
5057 /* Wait for kthread_stop */
5058 set_current_state(TASK_INTERRUPTIBLE);
5059 while (!kthread_should_stop()) {
5060 schedule();
5061 set_current_state(TASK_INTERRUPTIBLE);
5062 }
5063 __set_current_state(TASK_RUNNING);
5064 return 0;
5065}
5066
5067#ifdef CONFIG_HOTPLUG_CPU
Kirill Korotaev054b9102006-12-10 02:20:11 -08005068/*
5069 * Figure out where task on dead CPU should go, use force if neccessary.
5070 * NOTE: interrupts should be disabled by the caller
5071 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005072static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005073{
Kirill Korotaevefc30812006-06-27 02:54:32 -07005074 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005075 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005076 struct rq *rq;
5077 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078
Kirill Korotaevefc30812006-06-27 02:54:32 -07005079restart:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080 /* On same node? */
5081 mask = node_to_cpumask(cpu_to_node(dead_cpu));
Ingo Molnar48f24c42006-07-03 00:25:40 -07005082 cpus_and(mask, mask, p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083 dest_cpu = any_online_cpu(mask);
5084
5085 /* On any allowed CPU? */
5086 if (dest_cpu == NR_CPUS)
Ingo Molnar48f24c42006-07-03 00:25:40 -07005087 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088
5089 /* No more Mr. Nice Guy. */
5090 if (dest_cpu == NR_CPUS) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07005091 rq = task_rq_lock(p, &flags);
5092 cpus_setall(p->cpus_allowed);
5093 dest_cpu = any_online_cpu(p->cpus_allowed);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005094 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005095
5096 /*
5097 * Don't tell them about moving exiting tasks or
5098 * kernel threads (both mm NULL), since they never
5099 * leave kernel.
5100 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005101 if (p->mm && printk_ratelimit())
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102 printk(KERN_INFO "process %d (%s) no "
5103 "longer affine to cpu%d\n",
Ingo Molnar48f24c42006-07-03 00:25:40 -07005104 p->pid, p->comm, dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07005106 if (!__migrate_task(p, dead_cpu, dest_cpu))
Kirill Korotaevefc30812006-06-27 02:54:32 -07005107 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005108}
5109
5110/*
5111 * While a dead CPU has no uninterruptible tasks queued at this point,
5112 * it might still have a nonzero ->nr_uninterruptible counter, because
5113 * for performance reasons the counter is not stricly tracking tasks to
5114 * their home CPUs. So we just add the counter to another CPU's counter,
5115 * to keep the global sum constant after CPU-down:
5116 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07005117static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005119 struct rq *rq_dest = cpu_rq(any_online_cpu(CPU_MASK_ALL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005120 unsigned long flags;
5121
5122 local_irq_save(flags);
5123 double_rq_lock(rq_src, rq_dest);
5124 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
5125 rq_src->nr_uninterruptible = 0;
5126 double_rq_unlock(rq_src, rq_dest);
5127 local_irq_restore(flags);
5128}
5129
5130/* Run through task list and migrate tasks from the dead cpu. */
5131static void migrate_live_tasks(int src_cpu)
5132{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005133 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005134
5135 write_lock_irq(&tasklist_lock);
5136
Ingo Molnar48f24c42006-07-03 00:25:40 -07005137 do_each_thread(t, p) {
5138 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139 continue;
5140
Ingo Molnar48f24c42006-07-03 00:25:40 -07005141 if (task_cpu(p) == src_cpu)
5142 move_task_off_dead_cpu(src_cpu, p);
5143 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144
5145 write_unlock_irq(&tasklist_lock);
5146}
5147
Ingo Molnardd41f592007-07-09 18:51:59 +02005148/*
5149 * Schedules idle task to be the next runnable task on current CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150 * It does so by boosting its priority to highest possible and adding it to
Ingo Molnar48f24c42006-07-03 00:25:40 -07005151 * the _front_ of the runqueue. Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152 */
5153void sched_idle_next(void)
5154{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005155 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07005156 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157 struct task_struct *p = rq->idle;
5158 unsigned long flags;
5159
5160 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005161 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162
Ingo Molnar48f24c42006-07-03 00:25:40 -07005163 /*
5164 * Strictly not necessary since rest of the CPUs are stopped by now
5165 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005166 */
5167 spin_lock_irqsave(&rq->lock, flags);
5168
Ingo Molnardd41f592007-07-09 18:51:59 +02005169 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005170
5171 /* Add idle task to the _front_ of its priority queue: */
Ingo Molnardd41f592007-07-09 18:51:59 +02005172 activate_idle_task(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005173
5174 spin_unlock_irqrestore(&rq->lock, flags);
5175}
5176
Ingo Molnar48f24c42006-07-03 00:25:40 -07005177/*
5178 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179 * offline.
5180 */
5181void idle_task_exit(void)
5182{
5183 struct mm_struct *mm = current->active_mm;
5184
5185 BUG_ON(cpu_online(smp_processor_id()));
5186
5187 if (mm != &init_mm)
5188 switch_mm(mm, &init_mm, current);
5189 mmdrop(mm);
5190}
5191
Kirill Korotaev054b9102006-12-10 02:20:11 -08005192/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005193static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005194{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005195 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005196
5197 /* Must be exiting, otherwise would be on tasklist. */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005198 BUG_ON(p->exit_state != EXIT_ZOMBIE && p->exit_state != EXIT_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199
5200 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07005201 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202
Ingo Molnar48f24c42006-07-03 00:25:40 -07005203 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204
5205 /*
5206 * Drop lock around migration; if someone else moves it,
5207 * that's OK. No task can be added to this CPU, so iteration is
5208 * fine.
Kirill Korotaev054b9102006-12-10 02:20:11 -08005209 * NOTE: interrupts should be left disabled --dev@
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210 */
Kirill Korotaev054b9102006-12-10 02:20:11 -08005211 spin_unlock(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005212 move_task_off_dead_cpu(dead_cpu, p);
Kirill Korotaev054b9102006-12-10 02:20:11 -08005213 spin_lock(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005214
Ingo Molnar48f24c42006-07-03 00:25:40 -07005215 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216}
5217
5218/* release_task() removes task from tasklist, so we won't find dead tasks. */
5219static void migrate_dead_tasks(unsigned int dead_cpu)
5220{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005221 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnardd41f592007-07-09 18:51:59 +02005222 struct task_struct *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223
Ingo Molnardd41f592007-07-09 18:51:59 +02005224 for ( ; ; ) {
5225 if (!rq->nr_running)
5226 break;
Ingo Molnara8e504d2007-08-09 11:16:47 +02005227 update_rq_clock(rq);
5228 next = pick_next_task(rq, rq->curr, rq->clock);
Ingo Molnardd41f592007-07-09 18:51:59 +02005229 if (!next)
5230 break;
5231 migrate_dead(dead_cpu, next);
Nick Piggine692ab52007-07-26 13:40:43 +02005232
Linus Torvalds1da177e2005-04-16 15:20:36 -07005233 }
5234}
5235#endif /* CONFIG_HOTPLUG_CPU */
5236
Nick Piggine692ab52007-07-26 13:40:43 +02005237#if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL)
5238
5239static struct ctl_table sd_ctl_dir[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005240 {
5241 .procname = "sched_domain",
5242 .mode = 0755,
5243 },
Nick Piggine692ab52007-07-26 13:40:43 +02005244 {0,},
5245};
5246
5247static struct ctl_table sd_ctl_root[] = {
Alexey Dobriyane0361852007-08-09 11:16:46 +02005248 {
5249 .procname = "kernel",
5250 .mode = 0755,
5251 .child = sd_ctl_dir,
5252 },
Nick Piggine692ab52007-07-26 13:40:43 +02005253 {0,},
5254};
5255
5256static struct ctl_table *sd_alloc_ctl_entry(int n)
5257{
5258 struct ctl_table *entry =
5259 kmalloc(n * sizeof(struct ctl_table), GFP_KERNEL);
5260
5261 BUG_ON(!entry);
5262 memset(entry, 0, n * sizeof(struct ctl_table));
5263
5264 return entry;
5265}
5266
5267static void
Alexey Dobriyane0361852007-08-09 11:16:46 +02005268set_table_entry(struct ctl_table *entry,
Nick Piggine692ab52007-07-26 13:40:43 +02005269 const char *procname, void *data, int maxlen,
5270 mode_t mode, proc_handler *proc_handler)
5271{
Nick Piggine692ab52007-07-26 13:40:43 +02005272 entry->procname = procname;
5273 entry->data = data;
5274 entry->maxlen = maxlen;
5275 entry->mode = mode;
5276 entry->proc_handler = proc_handler;
5277}
5278
5279static struct ctl_table *
5280sd_alloc_ctl_domain_table(struct sched_domain *sd)
5281{
5282 struct ctl_table *table = sd_alloc_ctl_entry(14);
5283
Alexey Dobriyane0361852007-08-09 11:16:46 +02005284 set_table_entry(&table[0], "min_interval", &sd->min_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005285 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005286 set_table_entry(&table[1], "max_interval", &sd->max_interval,
Nick Piggine692ab52007-07-26 13:40:43 +02005287 sizeof(long), 0644, proc_doulongvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005288 set_table_entry(&table[2], "busy_idx", &sd->busy_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005289 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005290 set_table_entry(&table[3], "idle_idx", &sd->idle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005291 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005292 set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005293 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005294 set_table_entry(&table[5], "wake_idx", &sd->wake_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005295 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005296 set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx,
Nick Piggine692ab52007-07-26 13:40:43 +02005297 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005298 set_table_entry(&table[7], "busy_factor", &sd->busy_factor,
Nick Piggine692ab52007-07-26 13:40:43 +02005299 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005300 set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct,
Nick Piggine692ab52007-07-26 13:40:43 +02005301 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005302 set_table_entry(&table[10], "cache_nice_tries",
Nick Piggine692ab52007-07-26 13:40:43 +02005303 &sd->cache_nice_tries,
5304 sizeof(int), 0644, proc_dointvec_minmax);
Alexey Dobriyane0361852007-08-09 11:16:46 +02005305 set_table_entry(&table[12], "flags", &sd->flags,
Nick Piggine692ab52007-07-26 13:40:43 +02005306 sizeof(int), 0644, proc_dointvec_minmax);
5307
5308 return table;
5309}
5310
5311static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
5312{
5313 struct ctl_table *entry, *table;
5314 struct sched_domain *sd;
5315 int domain_num = 0, i;
5316 char buf[32];
5317
5318 for_each_domain(cpu, sd)
5319 domain_num++;
5320 entry = table = sd_alloc_ctl_entry(domain_num + 1);
5321
5322 i = 0;
5323 for_each_domain(cpu, sd) {
5324 snprintf(buf, 32, "domain%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005325 entry->procname = kstrdup(buf, GFP_KERNEL);
5326 entry->mode = 0755;
5327 entry->child = sd_alloc_ctl_domain_table(sd);
5328 entry++;
5329 i++;
5330 }
5331 return table;
5332}
5333
5334static struct ctl_table_header *sd_sysctl_header;
5335static void init_sched_domain_sysctl(void)
5336{
5337 int i, cpu_num = num_online_cpus();
5338 struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1);
5339 char buf[32];
5340
5341 sd_ctl_dir[0].child = entry;
5342
5343 for (i = 0; i < cpu_num; i++, entry++) {
5344 snprintf(buf, 32, "cpu%d", i);
Nick Piggine692ab52007-07-26 13:40:43 +02005345 entry->procname = kstrdup(buf, GFP_KERNEL);
5346 entry->mode = 0755;
5347 entry->child = sd_alloc_ctl_cpu_table(i);
5348 }
5349 sd_sysctl_header = register_sysctl_table(sd_ctl_root);
5350}
5351#else
5352static void init_sched_domain_sysctl(void)
5353{
5354}
5355#endif
5356
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357/*
5358 * migration_call - callback that gets triggered when a CPU is added.
5359 * Here we can start up the necessary migration thread for the new CPU.
5360 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005361static int __cpuinit
5362migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005363{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005364 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005365 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005366 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005367 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005368
5369 switch (action) {
Gautham R Shenoy5be93612007-05-09 02:34:04 -07005370 case CPU_LOCK_ACQUIRE:
5371 mutex_lock(&sched_hotcpu_mutex);
5372 break;
5373
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005375 case CPU_UP_PREPARE_FROZEN:
Ingo Molnardd41f592007-07-09 18:51:59 +02005376 p = kthread_create(migration_thread, hcpu, "migration/%d", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377 if (IS_ERR(p))
5378 return NOTIFY_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379 kthread_bind(p, cpu);
5380 /* Must be high prio: stop_machine expects to yield to it. */
5381 rq = task_rq_lock(p, &flags);
Ingo Molnardd41f592007-07-09 18:51:59 +02005382 __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383 task_rq_unlock(rq, &flags);
5384 cpu_rq(cpu)->migration_thread = p;
5385 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005386
Linus Torvalds1da177e2005-04-16 15:20:36 -07005387 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005388 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389 /* Strictly unneccessary, as first user will wake it. */
5390 wake_up_process(cpu_rq(cpu)->migration_thread);
5391 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005392
Linus Torvalds1da177e2005-04-16 15:20:36 -07005393#ifdef CONFIG_HOTPLUG_CPU
5394 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005395 case CPU_UP_CANCELED_FROZEN:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07005396 if (!cpu_rq(cpu)->migration_thread)
5397 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08005399 kthread_bind(cpu_rq(cpu)->migration_thread,
5400 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005401 kthread_stop(cpu_rq(cpu)->migration_thread);
5402 cpu_rq(cpu)->migration_thread = NULL;
5403 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005404
Linus Torvalds1da177e2005-04-16 15:20:36 -07005405 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07005406 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005407 migrate_live_tasks(cpu);
5408 rq = cpu_rq(cpu);
5409 kthread_stop(rq->migration_thread);
5410 rq->migration_thread = NULL;
5411 /* Idle task back to normal (off runqueue, low prio) */
5412 rq = task_rq_lock(rq->idle, &flags);
Ingo Molnara8e504d2007-08-09 11:16:47 +02005413 update_rq_clock(rq);
5414 deactivate_task(rq, rq->idle, 0, rq->clock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415 rq->idle->static_prio = MAX_PRIO;
Ingo Molnardd41f592007-07-09 18:51:59 +02005416 __setscheduler(rq, rq->idle, SCHED_NORMAL, 0);
5417 rq->idle->sched_class = &idle_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005418 migrate_dead_tasks(cpu);
5419 task_rq_unlock(rq, &flags);
5420 migrate_nr_uninterruptible(rq);
5421 BUG_ON(rq->nr_running != 0);
5422
5423 /* No need to migrate the tasks: it was best-effort if
Gautham R Shenoy5be93612007-05-09 02:34:04 -07005424 * they didn't take sched_hotcpu_mutex. Just wake up
Linus Torvalds1da177e2005-04-16 15:20:36 -07005425 * the requestors. */
5426 spin_lock_irq(&rq->lock);
5427 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005428 struct migration_req *req;
5429
Linus Torvalds1da177e2005-04-16 15:20:36 -07005430 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07005431 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005432 list_del_init(&req->list);
5433 complete(&req->done);
5434 }
5435 spin_unlock_irq(&rq->lock);
5436 break;
5437#endif
Gautham R Shenoy5be93612007-05-09 02:34:04 -07005438 case CPU_LOCK_RELEASE:
5439 mutex_unlock(&sched_hotcpu_mutex);
5440 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005441 }
5442 return NOTIFY_OK;
5443}
5444
5445/* Register at highest priority so that task migration (migrate_all_tasks)
5446 * happens before everything else.
5447 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07005448static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449 .notifier_call = migration_call,
5450 .priority = 10
5451};
5452
5453int __init migration_init(void)
5454{
5455 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07005456 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005457
5458 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07005459 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
5460 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005461 migration_call(&migration_notifier, CPU_ONLINE, cpu);
5462 register_cpu_notifier(&migration_notifier);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005463
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464 return 0;
5465}
5466#endif
5467
5468#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07005469
5470/* Number of possible processor ids */
5471int nr_cpu_ids __read_mostly = NR_CPUS;
5472EXPORT_SYMBOL(nr_cpu_ids);
5473
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07005474#undef SCHED_DOMAIN_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475#ifdef SCHED_DOMAIN_DEBUG
5476static void sched_domain_debug(struct sched_domain *sd, int cpu)
5477{
5478 int level = 0;
5479
Nick Piggin41c7ce92005-06-25 14:57:24 -07005480 if (!sd) {
5481 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
5482 return;
5483 }
5484
Linus Torvalds1da177e2005-04-16 15:20:36 -07005485 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
5486
5487 do {
5488 int i;
5489 char str[NR_CPUS];
5490 struct sched_group *group = sd->groups;
5491 cpumask_t groupmask;
5492
5493 cpumask_scnprintf(str, NR_CPUS, sd->span);
5494 cpus_clear(groupmask);
5495
5496 printk(KERN_DEBUG);
5497 for (i = 0; i < level + 1; i++)
5498 printk(" ");
5499 printk("domain %d: ", level);
5500
5501 if (!(sd->flags & SD_LOAD_BALANCE)) {
5502 printk("does not load-balance\n");
5503 if (sd->parent)
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005504 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
5505 " has parent");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005506 break;
5507 }
5508
5509 printk("span %s\n", str);
5510
5511 if (!cpu_isset(cpu, sd->span))
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005512 printk(KERN_ERR "ERROR: domain->span does not contain "
5513 "CPU%d\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005514 if (!cpu_isset(cpu, group->cpumask))
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005515 printk(KERN_ERR "ERROR: domain->groups does not contain"
5516 " CPU%d\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005517
5518 printk(KERN_DEBUG);
5519 for (i = 0; i < level + 2; i++)
5520 printk(" ");
5521 printk("groups:");
5522 do {
5523 if (!group) {
5524 printk("\n");
5525 printk(KERN_ERR "ERROR: group is NULL\n");
5526 break;
5527 }
5528
Eric Dumazet5517d862007-05-08 00:32:57 -07005529 if (!group->__cpu_power) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005530 printk("\n");
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005531 printk(KERN_ERR "ERROR: domain->cpu_power not "
5532 "set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005533 }
5534
5535 if (!cpus_weight(group->cpumask)) {
5536 printk("\n");
5537 printk(KERN_ERR "ERROR: empty group\n");
5538 }
5539
5540 if (cpus_intersects(groupmask, group->cpumask)) {
5541 printk("\n");
5542 printk(KERN_ERR "ERROR: repeated CPUs\n");
5543 }
5544
5545 cpus_or(groupmask, groupmask, group->cpumask);
5546
5547 cpumask_scnprintf(str, NR_CPUS, group->cpumask);
5548 printk(" %s", str);
5549
5550 group = group->next;
5551 } while (group != sd->groups);
5552 printk("\n");
5553
5554 if (!cpus_equal(sd->span, groupmask))
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005555 printk(KERN_ERR "ERROR: groups don't span "
5556 "domain->span\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005557
5558 level++;
5559 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005560 if (!sd)
5561 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005562
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005563 if (!cpus_subset(groupmask, sd->span))
5564 printk(KERN_ERR "ERROR: parent span is not a superset "
5565 "of domain->span\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005566
5567 } while (sd);
5568}
5569#else
Ingo Molnar48f24c42006-07-03 00:25:40 -07005570# define sched_domain_debug(sd, cpu) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005571#endif
5572
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07005573static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005574{
5575 if (cpus_weight(sd->span) == 1)
5576 return 1;
5577
5578 /* Following flags need at least 2 groups */
5579 if (sd->flags & (SD_LOAD_BALANCE |
5580 SD_BALANCE_NEWIDLE |
5581 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005582 SD_BALANCE_EXEC |
5583 SD_SHARE_CPUPOWER |
5584 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005585 if (sd->groups != sd->groups->next)
5586 return 0;
5587 }
5588
5589 /* Following flags don't use groups */
5590 if (sd->flags & (SD_WAKE_IDLE |
5591 SD_WAKE_AFFINE |
5592 SD_WAKE_BALANCE))
5593 return 0;
5594
5595 return 1;
5596}
5597
Ingo Molnar48f24c42006-07-03 00:25:40 -07005598static int
5599sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005600{
5601 unsigned long cflags = sd->flags, pflags = parent->flags;
5602
5603 if (sd_degenerate(parent))
5604 return 1;
5605
5606 if (!cpus_equal(sd->span, parent->span))
5607 return 0;
5608
5609 /* Does parent contain flags not in child? */
5610 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
5611 if (cflags & SD_WAKE_AFFINE)
5612 pflags &= ~SD_WAKE_BALANCE;
5613 /* Flags needing groups don't count if only 1 group in parent */
5614 if (parent->groups == parent->groups->next) {
5615 pflags &= ~(SD_LOAD_BALANCE |
5616 SD_BALANCE_NEWIDLE |
5617 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005618 SD_BALANCE_EXEC |
5619 SD_SHARE_CPUPOWER |
5620 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07005621 }
5622 if (~cflags & pflags)
5623 return 0;
5624
5625 return 1;
5626}
5627
Linus Torvalds1da177e2005-04-16 15:20:36 -07005628/*
5629 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
5630 * hold the hotplug lock.
5631 */
John Hawkes9c1cfda2005-09-06 15:18:14 -07005632static void cpu_attach_domain(struct sched_domain *sd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005633{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005634 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07005635 struct sched_domain *tmp;
5636
5637 /* Remove the sched domains which do not contribute to scheduling. */
5638 for (tmp = sd; tmp; tmp = tmp->parent) {
5639 struct sched_domain *parent = tmp->parent;
5640 if (!parent)
5641 break;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005642 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005643 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005644 if (parent->parent)
5645 parent->parent->child = tmp;
5646 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07005647 }
5648
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005649 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005650 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005651 if (sd)
5652 sd->child = NULL;
5653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005654
5655 sched_domain_debug(sd, cpu);
5656
Nick Piggin674311d2005-06-25 14:57:27 -07005657 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005658}
5659
5660/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08005661static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005662
5663/* Setup the mask of cpus configured for isolated domains */
5664static int __init isolated_cpu_setup(char *str)
5665{
5666 int ints[NR_CPUS], i;
5667
5668 str = get_options(str, ARRAY_SIZE(ints), ints);
5669 cpus_clear(cpu_isolated_map);
5670 for (i = 1; i <= ints[0]; i++)
5671 if (ints[i] < NR_CPUS)
5672 cpu_set(ints[i], cpu_isolated_map);
5673 return 1;
5674}
5675
5676__setup ("isolcpus=", isolated_cpu_setup);
5677
5678/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005679 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
5680 * to a function which identifies what group(along with sched group) a CPU
5681 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
5682 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683 *
5684 * init_sched_build_groups will build a circular linked list of the groups
5685 * covered by the given span, and will set each group's ->cpumask correctly,
5686 * and ->cpu_power to 0.
5687 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07005688static void
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005689init_sched_build_groups(cpumask_t span, const cpumask_t *cpu_map,
5690 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
5691 struct sched_group **sg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005692{
5693 struct sched_group *first = NULL, *last = NULL;
5694 cpumask_t covered = CPU_MASK_NONE;
5695 int i;
5696
5697 for_each_cpu_mask(i, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005698 struct sched_group *sg;
5699 int group = group_fn(i, cpu_map, &sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700 int j;
5701
5702 if (cpu_isset(i, covered))
5703 continue;
5704
5705 sg->cpumask = CPU_MASK_NONE;
Eric Dumazet5517d862007-05-08 00:32:57 -07005706 sg->__cpu_power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005707
5708 for_each_cpu_mask(j, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005709 if (group_fn(j, cpu_map, NULL) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005710 continue;
5711
5712 cpu_set(j, covered);
5713 cpu_set(j, sg->cpumask);
5714 }
5715 if (!first)
5716 first = sg;
5717 if (last)
5718 last->next = sg;
5719 last = sg;
5720 }
5721 last->next = first;
5722}
5723
John Hawkes9c1cfda2005-09-06 15:18:14 -07005724#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07005725
John Hawkes9c1cfda2005-09-06 15:18:14 -07005726#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005727
John Hawkes9c1cfda2005-09-06 15:18:14 -07005728/**
5729 * find_next_best_node - find the next node to include in a sched_domain
5730 * @node: node whose sched_domain we're building
5731 * @used_nodes: nodes already in the sched_domain
5732 *
5733 * Find the next node to include in a given scheduling domain. Simply
5734 * finds the closest node not already in the @used_nodes map.
5735 *
5736 * Should use nodemask_t.
5737 */
5738static int find_next_best_node(int node, unsigned long *used_nodes)
5739{
5740 int i, n, val, min_val, best_node = 0;
5741
5742 min_val = INT_MAX;
5743
5744 for (i = 0; i < MAX_NUMNODES; i++) {
5745 /* Start at @node */
5746 n = (node + i) % MAX_NUMNODES;
5747
5748 if (!nr_cpus_node(n))
5749 continue;
5750
5751 /* Skip already used nodes */
5752 if (test_bit(n, used_nodes))
5753 continue;
5754
5755 /* Simple min distance search */
5756 val = node_distance(node, n);
5757
5758 if (val < min_val) {
5759 min_val = val;
5760 best_node = n;
5761 }
5762 }
5763
5764 set_bit(best_node, used_nodes);
5765 return best_node;
5766}
5767
5768/**
5769 * sched_domain_node_span - get a cpumask for a node's sched_domain
5770 * @node: node whose cpumask we're constructing
5771 * @size: number of nodes to include in this span
5772 *
5773 * Given a node, construct a good cpumask for its sched_domain to span. It
5774 * should be one that prevents unnecessary balancing, but also spreads tasks
5775 * out optimally.
5776 */
5777static cpumask_t sched_domain_node_span(int node)
5778{
John Hawkes9c1cfda2005-09-06 15:18:14 -07005779 DECLARE_BITMAP(used_nodes, MAX_NUMNODES);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005780 cpumask_t span, nodemask;
5781 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07005782
5783 cpus_clear(span);
5784 bitmap_zero(used_nodes, MAX_NUMNODES);
5785
5786 nodemask = node_to_cpumask(node);
5787 cpus_or(span, span, nodemask);
5788 set_bit(node, used_nodes);
5789
5790 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
5791 int next_node = find_next_best_node(node, used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005792
John Hawkes9c1cfda2005-09-06 15:18:14 -07005793 nodemask = node_to_cpumask(next_node);
5794 cpus_or(span, span, nodemask);
5795 }
5796
5797 return span;
5798}
5799#endif
5800
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07005801int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005802
John Hawkes9c1cfda2005-09-06 15:18:14 -07005803/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07005804 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07005805 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005806#ifdef CONFIG_SCHED_SMT
5807static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005808static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005809
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005810static int cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map,
5811 struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005812{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005813 if (sg)
5814 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005815 return cpu;
5816}
5817#endif
5818
Ingo Molnar48f24c42006-07-03 00:25:40 -07005819/*
5820 * multi-core sched-domains:
5821 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005822#ifdef CONFIG_SCHED_MC
5823static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005824static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005825#endif
5826
5827#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005828static int cpu_to_core_group(int cpu, const cpumask_t *cpu_map,
5829 struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005830{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005831 int group;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07005832 cpumask_t mask = cpu_sibling_map[cpu];
5833 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005834 group = first_cpu(mask);
5835 if (sg)
5836 *sg = &per_cpu(sched_group_core, group);
5837 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005838}
5839#elif defined(CONFIG_SCHED_MC)
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005840static int cpu_to_core_group(int cpu, const cpumask_t *cpu_map,
5841 struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005842{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005843 if (sg)
5844 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005845 return cpu;
5846}
5847#endif
5848
Linus Torvalds1da177e2005-04-16 15:20:36 -07005849static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005850static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005851
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005852static int cpu_to_phys_group(int cpu, const cpumask_t *cpu_map,
5853 struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005854{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005855 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005856#ifdef CONFIG_SCHED_MC
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005857 cpumask_t mask = cpu_coregroup_map(cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07005858 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005859 group = first_cpu(mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08005860#elif defined(CONFIG_SCHED_SMT)
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07005861 cpumask_t mask = cpu_sibling_map[cpu];
5862 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005863 group = first_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005864#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005865 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005866#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005867 if (sg)
5868 *sg = &per_cpu(sched_group_phys, group);
5869 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005870}
5871
5872#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07005873/*
5874 * The init_sched_build_groups can't handle what we want to do with node
5875 * groups, so roll our own. Now each node has its own list of groups which
5876 * gets dynamically allocated.
5877 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005878static DEFINE_PER_CPU(struct sched_domain, node_domains);
John Hawkesd1b55132005-09-06 15:18:14 -07005879static struct sched_group **sched_group_nodes_bycpu[NR_CPUS];
John Hawkes9c1cfda2005-09-06 15:18:14 -07005880
5881static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005882static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07005883
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005884static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
5885 struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005886{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005887 cpumask_t nodemask = node_to_cpumask(cpu_to_node(cpu));
5888 int group;
5889
5890 cpus_and(nodemask, nodemask, *cpu_map);
5891 group = first_cpu(nodemask);
5892
5893 if (sg)
5894 *sg = &per_cpu(sched_group_allnodes, group);
5895 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005896}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005897
Siddha, Suresh B08069032006-03-27 01:15:23 -08005898static void init_numa_sched_groups_power(struct sched_group *group_head)
5899{
5900 struct sched_group *sg = group_head;
5901 int j;
5902
5903 if (!sg)
5904 return;
5905next_sg:
5906 for_each_cpu_mask(j, sg->cpumask) {
5907 struct sched_domain *sd;
5908
5909 sd = &per_cpu(phys_domains, j);
5910 if (j != first_cpu(sd->groups->cpumask)) {
5911 /*
5912 * Only add "power" once for each
5913 * physical package.
5914 */
5915 continue;
5916 }
5917
Eric Dumazet5517d862007-05-08 00:32:57 -07005918 sg_inc_cpu_power(sg, sd->groups->__cpu_power);
Siddha, Suresh B08069032006-03-27 01:15:23 -08005919 }
5920 sg = sg->next;
5921 if (sg != group_head)
5922 goto next_sg;
5923}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005924#endif
5925
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07005926#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07005927/* Free memory allocated for various sched_group structures */
5928static void free_sched_groups(const cpumask_t *cpu_map)
5929{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07005930 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07005931
5932 for_each_cpu_mask(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07005933 struct sched_group **sched_group_nodes
5934 = sched_group_nodes_bycpu[cpu];
5935
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07005936 if (!sched_group_nodes)
5937 continue;
5938
5939 for (i = 0; i < MAX_NUMNODES; i++) {
5940 cpumask_t nodemask = node_to_cpumask(i);
5941 struct sched_group *oldsg, *sg = sched_group_nodes[i];
5942
5943 cpus_and(nodemask, nodemask, *cpu_map);
5944 if (cpus_empty(nodemask))
5945 continue;
5946
5947 if (sg == NULL)
5948 continue;
5949 sg = sg->next;
5950next_sg:
5951 oldsg = sg;
5952 sg = sg->next;
5953 kfree(oldsg);
5954 if (oldsg != sched_group_nodes[i])
5955 goto next_sg;
5956 }
5957 kfree(sched_group_nodes);
5958 sched_group_nodes_bycpu[cpu] = NULL;
5959 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07005960}
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07005961#else
5962static void free_sched_groups(const cpumask_t *cpu_map)
5963{
5964}
5965#endif
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07005966
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005968 * Initialize sched groups cpu_power.
5969 *
5970 * cpu_power indicates the capacity of sched group, which is used while
5971 * distributing the load between different sched groups in a sched domain.
5972 * Typically cpu_power for all the groups in a sched domain will be same unless
5973 * there are asymmetries in the topology. If there are asymmetries, group
5974 * having more cpu_power will pickup more load compared to the group having
5975 * less cpu_power.
5976 *
5977 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
5978 * the maximum number of tasks a group can handle in the presence of other idle
5979 * or lightly loaded groups in the same sched domain.
5980 */
5981static void init_sched_groups_power(int cpu, struct sched_domain *sd)
5982{
5983 struct sched_domain *child;
5984 struct sched_group *group;
5985
5986 WARN_ON(!sd || !sd->groups);
5987
5988 if (cpu != first_cpu(sd->groups->cpumask))
5989 return;
5990
5991 child = sd->child;
5992
Eric Dumazet5517d862007-05-08 00:32:57 -07005993 sd->groups->__cpu_power = 0;
5994
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005995 /*
5996 * For perf policy, if the groups in child domain share resources
5997 * (for example cores sharing some portions of the cache hierarchy
5998 * or SMT), then set this domain groups cpu_power such that each group
5999 * can handle only one task, when there are other idle groups in the
6000 * same sched domain.
6001 */
6002 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
6003 (child->flags &
6004 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
Eric Dumazet5517d862007-05-08 00:32:57 -07006005 sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006006 return;
6007 }
6008
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006009 /*
6010 * add cpu_power of each child group to this groups cpu_power
6011 */
6012 group = child->groups;
6013 do {
Eric Dumazet5517d862007-05-08 00:32:57 -07006014 sg_inc_cpu_power(sd->groups, group->__cpu_power);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006015 group = group->next;
6016 } while (group != child->groups);
6017}
6018
6019/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006020 * Build sched domains for a given set of cpus and attach the sched domains
6021 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07006022 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006023static int build_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006024{
6025 int i;
John Hawkesd1b55132005-09-06 15:18:14 -07006026#ifdef CONFIG_NUMA
6027 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006028 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07006029
6030 /*
6031 * Allocate the per-node list of sched groups
6032 */
Ingo Molnardd41f592007-07-09 18:51:59 +02006033 sched_group_nodes = kzalloc(sizeof(struct sched_group *)*MAX_NUMNODES,
Srivatsa Vaddagirid3a5aa92006-06-27 02:54:39 -07006034 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07006035 if (!sched_group_nodes) {
6036 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006037 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07006038 }
6039 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
6040#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006041
6042 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006043 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006044 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006045 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006046 struct sched_domain *sd = NULL, *p;
6047 cpumask_t nodemask = node_to_cpumask(cpu_to_node(i));
6048
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006049 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006050
6051#ifdef CONFIG_NUMA
Ingo Molnardd41f592007-07-09 18:51:59 +02006052 if (cpus_weight(*cpu_map) >
6053 SD_NODES_PER_DOMAIN*cpus_weight(nodemask)) {
John Hawkes9c1cfda2005-09-06 15:18:14 -07006054 sd = &per_cpu(allnodes_domains, i);
6055 *sd = SD_ALLNODES_INIT;
6056 sd->span = *cpu_map;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006057 cpu_to_allnodes_group(i, cpu_map, &sd->groups);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006058 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006059 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006060 } else
6061 p = NULL;
6062
Linus Torvalds1da177e2005-04-16 15:20:36 -07006063 sd = &per_cpu(node_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006064 *sd = SD_NODE_INIT;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006065 sd->span = sched_domain_node_span(cpu_to_node(i));
6066 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006067 if (p)
6068 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006069 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006070#endif
6071
6072 p = sd;
6073 sd = &per_cpu(phys_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006074 *sd = SD_CPU_INIT;
6075 sd->span = nodemask;
6076 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006077 if (p)
6078 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006079 cpu_to_phys_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006080
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006081#ifdef CONFIG_SCHED_MC
6082 p = sd;
6083 sd = &per_cpu(core_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006084 *sd = SD_MC_INIT;
6085 sd->span = cpu_coregroup_map(i);
6086 cpus_and(sd->span, sd->span, *cpu_map);
6087 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_core_group(i, cpu_map, &sd->groups);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006090#endif
6091
Linus Torvalds1da177e2005-04-16 15:20:36 -07006092#ifdef CONFIG_SCHED_SMT
6093 p = sd;
6094 sd = &per_cpu(cpu_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006095 *sd = SD_SIBLING_INIT;
6096 sd->span = cpu_sibling_map[i];
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006097 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006098 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006099 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006100 cpu_to_cpu_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006101#endif
6102 }
6103
6104#ifdef CONFIG_SCHED_SMT
6105 /* Set up CPU (sibling) groups */
John Hawkes9c1cfda2005-09-06 15:18:14 -07006106 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006107 cpumask_t this_sibling_map = cpu_sibling_map[i];
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006108 cpus_and(this_sibling_map, this_sibling_map, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006109 if (i != first_cpu(this_sibling_map))
6110 continue;
6111
Ingo Molnardd41f592007-07-09 18:51:59 +02006112 init_sched_build_groups(this_sibling_map, cpu_map,
6113 &cpu_to_cpu_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006114 }
6115#endif
6116
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006117#ifdef CONFIG_SCHED_MC
6118 /* Set up multi-core groups */
6119 for_each_cpu_mask(i, *cpu_map) {
6120 cpumask_t this_core_map = cpu_coregroup_map(i);
6121 cpus_and(this_core_map, this_core_map, *cpu_map);
6122 if (i != first_cpu(this_core_map))
6123 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02006124 init_sched_build_groups(this_core_map, cpu_map,
6125 &cpu_to_core_group);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006126 }
6127#endif
6128
Linus Torvalds1da177e2005-04-16 15:20:36 -07006129 /* Set up physical groups */
6130 for (i = 0; i < MAX_NUMNODES; i++) {
6131 cpumask_t nodemask = node_to_cpumask(i);
6132
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006133 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006134 if (cpus_empty(nodemask))
6135 continue;
6136
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006137 init_sched_build_groups(nodemask, cpu_map, &cpu_to_phys_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006138 }
6139
6140#ifdef CONFIG_NUMA
6141 /* Set up node groups */
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006142 if (sd_allnodes)
Ingo Molnardd41f592007-07-09 18:51:59 +02006143 init_sched_build_groups(*cpu_map, cpu_map,
6144 &cpu_to_allnodes_group);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006145
6146 for (i = 0; i < MAX_NUMNODES; i++) {
6147 /* Set up node groups */
6148 struct sched_group *sg, *prev;
6149 cpumask_t nodemask = node_to_cpumask(i);
6150 cpumask_t domainspan;
6151 cpumask_t covered = CPU_MASK_NONE;
6152 int j;
6153
6154 cpus_and(nodemask, nodemask, *cpu_map);
John Hawkesd1b55132005-09-06 15:18:14 -07006155 if (cpus_empty(nodemask)) {
6156 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006157 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07006158 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006159
6160 domainspan = sched_domain_node_span(i);
6161 cpus_and(domainspan, domainspan, *cpu_map);
6162
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006163 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006164 if (!sg) {
6165 printk(KERN_WARNING "Can not alloc domain group for "
6166 "node %d\n", i);
6167 goto error;
6168 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006169 sched_group_nodes[i] = sg;
6170 for_each_cpu_mask(j, nodemask) {
6171 struct sched_domain *sd;
Ingo Molnar9761eea2007-07-09 18:52:00 +02006172
John Hawkes9c1cfda2005-09-06 15:18:14 -07006173 sd = &per_cpu(node_domains, j);
6174 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006175 }
Eric Dumazet5517d862007-05-08 00:32:57 -07006176 sg->__cpu_power = 0;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006177 sg->cpumask = nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006178 sg->next = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006179 cpus_or(covered, covered, nodemask);
6180 prev = sg;
6181
6182 for (j = 0; j < MAX_NUMNODES; j++) {
6183 cpumask_t tmp, notcovered;
6184 int n = (i + j) % MAX_NUMNODES;
6185
6186 cpus_complement(notcovered, covered);
6187 cpus_and(tmp, notcovered, *cpu_map);
6188 cpus_and(tmp, tmp, domainspan);
6189 if (cpus_empty(tmp))
6190 break;
6191
6192 nodemask = node_to_cpumask(n);
6193 cpus_and(tmp, tmp, nodemask);
6194 if (cpus_empty(tmp))
6195 continue;
6196
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006197 sg = kmalloc_node(sizeof(struct sched_group),
6198 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006199 if (!sg) {
6200 printk(KERN_WARNING
6201 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006202 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006203 }
Eric Dumazet5517d862007-05-08 00:32:57 -07006204 sg->__cpu_power = 0;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006205 sg->cpumask = tmp;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006206 sg->next = prev->next;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006207 cpus_or(covered, covered, tmp);
6208 prev->next = sg;
6209 prev = sg;
6210 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006212#endif
6213
6214 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006215#ifdef CONFIG_SCHED_SMT
6216 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006217 struct sched_domain *sd = &per_cpu(cpu_domains, i);
6218
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006219 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006220 }
6221#endif
6222#ifdef CONFIG_SCHED_MC
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006223 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006224 struct sched_domain *sd = &per_cpu(core_domains, i);
6225
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006226 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006227 }
6228#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006229
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006230 for_each_cpu_mask(i, *cpu_map) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006231 struct sched_domain *sd = &per_cpu(phys_domains, i);
6232
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006233 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006234 }
6235
John Hawkes9c1cfda2005-09-06 15:18:14 -07006236#ifdef CONFIG_NUMA
Siddha, Suresh B08069032006-03-27 01:15:23 -08006237 for (i = 0; i < MAX_NUMNODES; i++)
6238 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006239
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006240 if (sd_allnodes) {
6241 struct sched_group *sg;
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07006242
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006243 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg);
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07006244 init_numa_sched_groups_power(sg);
6245 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006246#endif
6247
Linus Torvalds1da177e2005-04-16 15:20:36 -07006248 /* Attach the domains */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006249 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006250 struct sched_domain *sd;
6251#ifdef CONFIG_SCHED_SMT
6252 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006253#elif defined(CONFIG_SCHED_MC)
6254 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006255#else
6256 sd = &per_cpu(phys_domains, i);
6257#endif
6258 cpu_attach_domain(sd, i);
6259 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006260
6261 return 0;
6262
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006263#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006264error:
6265 free_sched_groups(cpu_map);
6266 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006267#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006268}
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006269/*
6270 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
6271 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006272static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006273{
6274 cpumask_t cpu_default_map;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006275 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006276
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006277 /*
6278 * Setup mask for cpus without special case scheduling requirements.
6279 * For now this just excludes isolated cpus, but could be used to
6280 * exclude other special cases in the future.
6281 */
6282 cpus_andnot(cpu_default_map, *cpu_map, cpu_isolated_map);
6283
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006284 err = build_sched_domains(&cpu_default_map);
6285
6286 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006287}
6288
6289static void arch_destroy_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006290{
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006291 free_sched_groups(cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006292}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006293
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006294/*
6295 * Detach sched domains from a group of cpus specified in cpu_map
6296 * These cpus will now be attached to the NULL domain
6297 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08006298static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006299{
6300 int i;
6301
6302 for_each_cpu_mask(i, *cpu_map)
6303 cpu_attach_domain(NULL, i);
6304 synchronize_sched();
6305 arch_destroy_sched_domains(cpu_map);
6306}
6307
6308/*
6309 * Partition sched domains as specified by the cpumasks below.
6310 * This attaches all cpus from the cpumasks to the NULL domain,
6311 * waits for a RCU quiescent period, recalculates sched
6312 * domain information and then attaches them back to the
6313 * correct sched domains
6314 * Call with hotplug lock held
6315 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006316int partition_sched_domains(cpumask_t *partition1, cpumask_t *partition2)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006317{
6318 cpumask_t change_map;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006319 int err = 0;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006320
6321 cpus_and(*partition1, *partition1, cpu_online_map);
6322 cpus_and(*partition2, *partition2, cpu_online_map);
6323 cpus_or(change_map, *partition1, *partition2);
6324
6325 /* Detach sched domains from all of the affected cpus */
6326 detach_destroy_domains(&change_map);
6327 if (!cpus_empty(*partition1))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006328 err = build_sched_domains(partition1);
6329 if (!err && !cpus_empty(*partition2))
6330 err = build_sched_domains(partition2);
6331
6332 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006333}
6334
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006335#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
6336int arch_reinit_sched_domains(void)
6337{
6338 int err;
6339
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006340 mutex_lock(&sched_hotcpu_mutex);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006341 detach_destroy_domains(&cpu_online_map);
6342 err = arch_init_sched_domains(&cpu_online_map);
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006343 mutex_unlock(&sched_hotcpu_mutex);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006344
6345 return err;
6346}
6347
6348static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
6349{
6350 int ret;
6351
6352 if (buf[0] != '0' && buf[0] != '1')
6353 return -EINVAL;
6354
6355 if (smt)
6356 sched_smt_power_savings = (buf[0] == '1');
6357 else
6358 sched_mc_power_savings = (buf[0] == '1');
6359
6360 ret = arch_reinit_sched_domains();
6361
6362 return ret ? ret : count;
6363}
6364
6365int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
6366{
6367 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006368
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006369#ifdef CONFIG_SCHED_SMT
6370 if (smt_capable())
6371 err = sysfs_create_file(&cls->kset.kobj,
6372 &attr_sched_smt_power_savings.attr);
6373#endif
6374#ifdef CONFIG_SCHED_MC
6375 if (!err && mc_capable())
6376 err = sysfs_create_file(&cls->kset.kobj,
6377 &attr_sched_mc_power_savings.attr);
6378#endif
6379 return err;
6380}
6381#endif
6382
6383#ifdef CONFIG_SCHED_MC
6384static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
6385{
6386 return sprintf(page, "%u\n", sched_mc_power_savings);
6387}
Ingo Molnar48f24c42006-07-03 00:25:40 -07006388static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
6389 const char *buf, size_t count)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006390{
6391 return sched_power_savings_store(buf, count, 0);
6392}
6393SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
6394 sched_mc_power_savings_store);
6395#endif
6396
6397#ifdef CONFIG_SCHED_SMT
6398static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
6399{
6400 return sprintf(page, "%u\n", sched_smt_power_savings);
6401}
Ingo Molnar48f24c42006-07-03 00:25:40 -07006402static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
6403 const char *buf, size_t count)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006404{
6405 return sched_power_savings_store(buf, count, 1);
6406}
6407SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
6408 sched_smt_power_savings_store);
6409#endif
6410
Linus Torvalds1da177e2005-04-16 15:20:36 -07006411/*
6412 * Force a reinitialization of the sched domains hierarchy. The domains
6413 * and groups cannot be updated in place without racing with the balancing
Nick Piggin41c7ce92005-06-25 14:57:24 -07006414 * code, so we temporarily attach all running cpus to the NULL domain
Linus Torvalds1da177e2005-04-16 15:20:36 -07006415 * which will prevent rebalancing while the sched domains are recalculated.
6416 */
6417static int update_sched_domains(struct notifier_block *nfb,
6418 unsigned long action, void *hcpu)
6419{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006420 switch (action) {
6421 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006422 case CPU_UP_PREPARE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006423 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006424 case CPU_DOWN_PREPARE_FROZEN:
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006425 detach_destroy_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006426 return NOTIFY_OK;
6427
6428 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006429 case CPU_UP_CANCELED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006430 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006431 case CPU_DOWN_FAILED_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006432 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006433 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006434 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006435 case CPU_DEAD_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006436 /*
6437 * Fall through and re-initialise the domains.
6438 */
6439 break;
6440 default:
6441 return NOTIFY_DONE;
6442 }
6443
6444 /* The hotplug lock is already held by cpu_up/cpu_down */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006445 arch_init_sched_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006446
6447 return NOTIFY_OK;
6448}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006449
6450void __init sched_init_smp(void)
6451{
Nick Piggin5c1e1762006-10-03 01:14:04 -07006452 cpumask_t non_isolated_cpus;
6453
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006454 mutex_lock(&sched_hotcpu_mutex);
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006455 arch_init_sched_domains(&cpu_online_map);
Nathan Lynche5e56732007-01-10 23:15:28 -08006456 cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07006457 if (cpus_empty(non_isolated_cpus))
6458 cpu_set(smp_processor_id(), non_isolated_cpus);
Gautham R Shenoy5be93612007-05-09 02:34:04 -07006459 mutex_unlock(&sched_hotcpu_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006460 /* XXX: Theoretical race here - CPU may be hotplugged now */
6461 hotcpu_notifier(update_sched_domains, 0);
Nick Piggin5c1e1762006-10-03 01:14:04 -07006462
Nick Piggine692ab52007-07-26 13:40:43 +02006463 init_sched_domain_sysctl();
6464
Nick Piggin5c1e1762006-10-03 01:14:04 -07006465 /* Move init over to a non-isolated CPU */
6466 if (set_cpus_allowed(current, non_isolated_cpus) < 0)
6467 BUG();
Ingo Molnardd41f592007-07-09 18:51:59 +02006468 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006469}
6470#else
6471void __init sched_init_smp(void)
6472{
Ingo Molnardd41f592007-07-09 18:51:59 +02006473 sched_init_granularity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006474}
6475#endif /* CONFIG_SMP */
6476
6477int in_sched_functions(unsigned long addr)
6478{
6479 /* Linker adds these: start and end of __sched functions */
6480 extern char __sched_text_start[], __sched_text_end[];
Ingo Molnar48f24c42006-07-03 00:25:40 -07006481
Linus Torvalds1da177e2005-04-16 15:20:36 -07006482 return in_lock_functions(addr) ||
6483 (addr >= (unsigned long)__sched_text_start
6484 && addr < (unsigned long)__sched_text_end);
6485}
6486
Ingo Molnardd41f592007-07-09 18:51:59 +02006487static inline void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq)
6488{
6489 cfs_rq->tasks_timeline = RB_ROOT;
6490 cfs_rq->fair_clock = 1;
6491#ifdef CONFIG_FAIR_GROUP_SCHED
6492 cfs_rq->rq = rq;
6493#endif
6494}
6495
Linus Torvalds1da177e2005-04-16 15:20:36 -07006496void __init sched_init(void)
6497{
Ingo Molnardd41f592007-07-09 18:51:59 +02006498 u64 now = sched_clock();
Christoph Lameter476f3532007-05-06 14:48:58 -07006499 int highest_cpu = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02006500 int i, j;
6501
6502 /*
6503 * Link up the scheduling class hierarchy:
6504 */
6505 rt_sched_class.next = &fair_sched_class;
6506 fair_sched_class.next = &idle_sched_class;
6507 idle_sched_class.next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006508
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08006509 for_each_possible_cpu(i) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006510 struct rt_prio_array *array;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006511 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006512
6513 rq = cpu_rq(i);
6514 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07006515 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07006516 rq->nr_running = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02006517 rq->clock = 1;
6518 init_cfs_rq(&rq->cfs, rq);
6519#ifdef CONFIG_FAIR_GROUP_SCHED
6520 INIT_LIST_HEAD(&rq->leaf_cfs_rq_list);
6521 list_add(&rq->cfs.leaf_cfs_rq_list, &rq->leaf_cfs_rq_list);
6522#endif
6523 rq->ls.load_update_last = now;
6524 rq->ls.load_update_start = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006525
Ingo Molnardd41f592007-07-09 18:51:59 +02006526 for (j = 0; j < CPU_LOAD_IDX_MAX; j++)
6527 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006528#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07006529 rq->sd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006530 rq->active_balance = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02006531 rq->next_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006532 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07006533 rq->cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006534 rq->migration_thread = NULL;
6535 INIT_LIST_HEAD(&rq->migration_queue);
6536#endif
6537 atomic_set(&rq->nr_iowait, 0);
6538
Ingo Molnardd41f592007-07-09 18:51:59 +02006539 array = &rq->rt.active;
6540 for (j = 0; j < MAX_RT_PRIO; j++) {
6541 INIT_LIST_HEAD(array->queue + j);
6542 __clear_bit(j, array->bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006543 }
Christoph Lameter476f3532007-05-06 14:48:58 -07006544 highest_cpu = i;
Ingo Molnardd41f592007-07-09 18:51:59 +02006545 /* delimiter for bitsearch: */
6546 __set_bit(MAX_RT_PRIO, array->bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006547 }
6548
Peter Williams2dd73a42006-06-27 02:54:34 -07006549 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07006550
Avi Kivitye107be32007-07-26 13:40:43 +02006551#ifdef CONFIG_PREEMPT_NOTIFIERS
6552 INIT_HLIST_HEAD(&init_task.preempt_notifiers);
6553#endif
6554
Christoph Lameterc9819f42006-12-10 02:20:25 -08006555#ifdef CONFIG_SMP
Christoph Lameter476f3532007-05-06 14:48:58 -07006556 nr_cpu_ids = highest_cpu + 1;
Christoph Lameterc9819f42006-12-10 02:20:25 -08006557 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL);
6558#endif
6559
Heiko Carstensb50f60c2006-07-30 03:03:52 -07006560#ifdef CONFIG_RT_MUTEXES
6561 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
6562#endif
6563
Linus Torvalds1da177e2005-04-16 15:20:36 -07006564 /*
6565 * The boot idle thread does lazy MMU switching as well:
6566 */
6567 atomic_inc(&init_mm.mm_count);
6568 enter_lazy_tlb(&init_mm, current);
6569
6570 /*
6571 * Make us the idle thread. Technically, schedule() should not be
6572 * called from this thread, however somewhere below it might be,
6573 * but because we are the idle thread, we just pick up running again
6574 * when this runqueue becomes "idle".
6575 */
6576 init_idle(current, smp_processor_id());
Ingo Molnardd41f592007-07-09 18:51:59 +02006577 /*
6578 * During early bootup we pretend to be a normal task:
6579 */
6580 current->sched_class = &fair_sched_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006581}
6582
6583#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
6584void __might_sleep(char *file, int line)
6585{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006586#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07006587 static unsigned long prev_jiffy; /* ratelimiting */
6588
6589 if ((in_atomic() || irqs_disabled()) &&
6590 system_state == SYSTEM_RUNNING && !oops_in_progress) {
6591 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
6592 return;
6593 prev_jiffy = jiffies;
Ingo Molnar91368d72006-03-23 03:00:54 -08006594 printk(KERN_ERR "BUG: sleeping function called from invalid"
Linus Torvalds1da177e2005-04-16 15:20:36 -07006595 " context at %s:%d\n", file, line);
6596 printk("in_atomic():%d, irqs_disabled():%d\n",
6597 in_atomic(), irqs_disabled());
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08006598 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08006599 if (irqs_disabled())
6600 print_irqtrace_events(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006601 dump_stack();
6602 }
6603#endif
6604}
6605EXPORT_SYMBOL(__might_sleep);
6606#endif
6607
6608#ifdef CONFIG_MAGIC_SYSRQ
6609void normalize_rt_tasks(void)
6610{
Ingo Molnara0f98a12007-06-17 18:37:45 +02006611 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006612 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006613 struct rq *rq;
Ingo Molnardd41f592007-07-09 18:51:59 +02006614 int on_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006615
6616 read_lock_irq(&tasklist_lock);
Ingo Molnara0f98a12007-06-17 18:37:45 +02006617 do_each_thread(g, p) {
Ingo Molnardd41f592007-07-09 18:51:59 +02006618 p->se.fair_key = 0;
6619 p->se.wait_runtime = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02006620 p->se.exec_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02006621 p->se.wait_start_fair = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02006622 p->se.sleep_start_fair = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02006623#ifdef CONFIG_SCHEDSTATS
6624 p->se.wait_start = 0;
6625 p->se.sleep_start = 0;
Ingo Molnardd41f592007-07-09 18:51:59 +02006626 p->se.block_start = 0;
Ingo Molnar6cfb0d52007-08-02 17:41:40 +02006627#endif
Ingo Molnardd41f592007-07-09 18:51:59 +02006628 task_rq(p)->cfs.fair_clock = 0;
6629 task_rq(p)->clock = 0;
6630
6631 if (!rt_task(p)) {
6632 /*
6633 * Renice negative nice level userspace
6634 * tasks back to 0:
6635 */
6636 if (TASK_NICE(p) < 0 && p->mm)
6637 set_user_nice(p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006638 continue;
Ingo Molnardd41f592007-07-09 18:51:59 +02006639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006640
Ingo Molnarb29739f2006-06-27 02:54:51 -07006641 spin_lock_irqsave(&p->pi_lock, flags);
6642 rq = __task_rq_lock(p);
Ingo Molnardd41f592007-07-09 18:51:59 +02006643#ifdef CONFIG_SMP
6644 /*
6645 * Do not touch the migration thread:
6646 */
6647 if (p == rq->migration_thread)
6648 goto out_unlock;
6649#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006650
Ingo Molnardd41f592007-07-09 18:51:59 +02006651 on_rq = p->se.on_rq;
Ingo Molnara8e504d2007-08-09 11:16:47 +02006652 if (on_rq) {
6653 update_rq_clock(task_rq(p));
6654 deactivate_task(task_rq(p), p, 0, task_rq(p)->clock);
6655 }
Ingo Molnardd41f592007-07-09 18:51:59 +02006656 __setscheduler(rq, p, SCHED_NORMAL, 0);
6657 if (on_rq) {
6658 activate_task(task_rq(p), p, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006659 resched_task(rq->curr);
6660 }
Ingo Molnardd41f592007-07-09 18:51:59 +02006661#ifdef CONFIG_SMP
6662 out_unlock:
6663#endif
Ingo Molnarb29739f2006-06-27 02:54:51 -07006664 __task_rq_unlock(rq);
6665 spin_unlock_irqrestore(&p->pi_lock, flags);
Ingo Molnara0f98a12007-06-17 18:37:45 +02006666 } while_each_thread(g, p);
6667
Linus Torvalds1da177e2005-04-16 15:20:36 -07006668 read_unlock_irq(&tasklist_lock);
6669}
6670
6671#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07006672
6673#ifdef CONFIG_IA64
6674/*
6675 * These functions are only useful for the IA64 MCA handling.
6676 *
6677 * They can only be called when the whole system has been
6678 * stopped - every CPU needs to be quiescent, and no scheduling
6679 * activity can take place. Using them for anything else would
6680 * be a serious bug, and as a result, they aren't even visible
6681 * under any other configuration.
6682 */
6683
6684/**
6685 * curr_task - return the current task for a given cpu.
6686 * @cpu: the processor in question.
6687 *
6688 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
6689 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006690struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07006691{
6692 return cpu_curr(cpu);
6693}
6694
6695/**
6696 * set_curr_task - set the current task for a given cpu.
6697 * @cpu: the processor in question.
6698 * @p: the task pointer to set.
6699 *
6700 * Description: This function must only be used when non-maskable interrupts
6701 * are serviced on a separate stack. It allows the architecture to switch the
6702 * notion of the current task on a cpu in a non-blocking manner. This function
6703 * must be called with all CPU's synchronized, and interrupts disabled, the
6704 * and caller must save the original value of the current task (see
6705 * curr_task() above) and restore that value before reenabling interrupts and
6706 * re-starting the system.
6707 *
6708 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
6709 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006710void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07006711{
6712 cpu_curr(cpu) = p;
6713}
6714
6715#endif