blob: 1fd67e16cd315388a67ba085dad46bb266bb5d93 [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
19 */
20
21#include <linux/mm.h>
22#include <linux/module.h>
23#include <linux/nmi.h>
24#include <linux/init.h>
25#include <asm/uaccess.h>
26#include <linux/highmem.h>
27#include <linux/smp_lock.h>
28#include <asm/mmu_context.h>
29#include <linux/interrupt.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080030#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/completion.h>
32#include <linux/kernel_stat.h>
Ingo Molnar9a11b49a2006-07-03 00:24:33 -070033#include <linux/debug_locks.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/security.h>
35#include <linux/notifier.h>
36#include <linux/profile.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080037#include <linux/freezer.h>
akpm@osdl.org198e2f12006-01-12 01:05:30 -080038#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/blkdev.h>
40#include <linux/delay.h>
41#include <linux/smp.h>
42#include <linux/threads.h>
43#include <linux/timer.h>
44#include <linux/rcupdate.h>
45#include <linux/cpu.h>
46#include <linux/cpuset.h>
47#include <linux/percpu.h>
48#include <linux/kthread.h>
49#include <linux/seq_file.h>
50#include <linux/syscalls.h>
51#include <linux/times.h>
Jay Lan8f0ab512006-09-30 23:28:59 -070052#include <linux/tsacct_kern.h>
bibo maoc6fd91f2006-03-26 01:38:20 -080053#include <linux/kprobes.h>
Shailabh Nagar0ff92242006-07-14 00:24:37 -070054#include <linux/delayacct.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <asm/tlb.h>
56
57#include <asm/unistd.h>
58
59/*
Alexey Dobriyanb035b6d2007-02-10 01:45:10 -080060 * Scheduler clock - returns current time in nanosec units.
61 * This is default implementation.
62 * Architectures and sub-architectures can override this.
63 */
64unsigned long long __attribute__((weak)) sched_clock(void)
65{
66 return (unsigned long long)jiffies * (1000000000 / HZ);
67}
68
69/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 * Convert user-nice values [ -20 ... 0 ... 19 ]
71 * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ],
72 * and back.
73 */
74#define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20)
75#define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20)
76#define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio)
77
78/*
79 * 'User priority' is the nice value converted to something we
80 * can work with better when scaling various scheduler parameters,
81 * it's a [ 0 ... 39 ] range.
82 */
83#define USER_PRIO(p) ((p)-MAX_RT_PRIO)
84#define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio)
85#define MAX_USER_PRIO (USER_PRIO(MAX_PRIO))
86
87/*
88 * Some helpers for converting nanosecond timing to jiffy resolution
89 */
90#define NS_TO_JIFFIES(TIME) ((TIME) / (1000000000 / HZ))
91#define JIFFIES_TO_NS(TIME) ((TIME) * (1000000000 / HZ))
92
93/*
94 * These are the 'tuning knobs' of the scheduler:
95 *
96 * Minimum timeslice is 5 msecs (or 1 jiffy, whichever is larger),
97 * default timeslice is 100 msecs, maximum timeslice is 800 msecs.
98 * Timeslices get refilled after they expire.
99 */
100#define MIN_TIMESLICE max(5 * HZ / 1000, 1)
101#define DEF_TIMESLICE (100 * HZ / 1000)
102#define ON_RUNQUEUE_WEIGHT 30
103#define CHILD_PENALTY 95
104#define PARENT_PENALTY 100
105#define EXIT_WEIGHT 3
106#define PRIO_BONUS_RATIO 25
107#define MAX_BONUS (MAX_USER_PRIO * PRIO_BONUS_RATIO / 100)
108#define INTERACTIVE_DELTA 2
109#define MAX_SLEEP_AVG (DEF_TIMESLICE * MAX_BONUS)
110#define STARVATION_LIMIT (MAX_SLEEP_AVG)
111#define NS_MAX_SLEEP_AVG (JIFFIES_TO_NS(MAX_SLEEP_AVG))
112
113/*
114 * If a task is 'interactive' then we reinsert it in the active
115 * array after it has expired its current timeslice. (it will not
116 * continue to run immediately, it will still roundrobin with
117 * other interactive tasks.)
118 *
119 * This part scales the interactivity limit depending on niceness.
120 *
121 * We scale it linearly, offset by the INTERACTIVE_DELTA delta.
122 * Here are a few examples of different nice levels:
123 *
124 * TASK_INTERACTIVE(-20): [1,1,1,1,1,1,1,1,1,0,0]
125 * TASK_INTERACTIVE(-10): [1,1,1,1,1,1,1,0,0,0,0]
126 * TASK_INTERACTIVE( 0): [1,1,1,1,0,0,0,0,0,0,0]
127 * TASK_INTERACTIVE( 10): [1,1,0,0,0,0,0,0,0,0,0]
128 * TASK_INTERACTIVE( 19): [0,0,0,0,0,0,0,0,0,0,0]
129 *
130 * (the X axis represents the possible -5 ... 0 ... +5 dynamic
131 * priority range a task can explore, a value of '1' means the
132 * task is rated interactive.)
133 *
134 * Ie. nice +19 tasks can never get 'interactive' enough to be
135 * reinserted into the active array. And only heavily CPU-hog nice -20
136 * tasks will be expired. Default nice 0 tasks are somewhere between,
137 * it takes some effort for them to get interactive, but it's not
138 * too hard.
139 */
140
141#define CURRENT_BONUS(p) \
142 (NS_TO_JIFFIES((p)->sleep_avg) * MAX_BONUS / \
143 MAX_SLEEP_AVG)
144
145#define GRANULARITY (10 * HZ / 1000 ? : 1)
146
147#ifdef CONFIG_SMP
148#define TIMESLICE_GRANULARITY(p) (GRANULARITY * \
149 (1 << (((MAX_BONUS - CURRENT_BONUS(p)) ? : 1) - 1)) * \
150 num_online_cpus())
151#else
152#define TIMESLICE_GRANULARITY(p) (GRANULARITY * \
153 (1 << (((MAX_BONUS - CURRENT_BONUS(p)) ? : 1) - 1)))
154#endif
155
156#define SCALE(v1,v1_max,v2_max) \
157 (v1) * (v2_max) / (v1_max)
158
159#define DELTA(p) \
Martin Andersson013d3862006-03-27 01:15:18 -0800160 (SCALE(TASK_NICE(p) + 20, 40, MAX_BONUS) - 20 * MAX_BONUS / 40 + \
161 INTERACTIVE_DELTA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163#define TASK_INTERACTIVE(p) \
164 ((p)->prio <= (p)->static_prio - DELTA(p))
165
166#define INTERACTIVE_SLEEP(p) \
167 (JIFFIES_TO_NS(MAX_SLEEP_AVG * \
168 (MAX_BONUS / 2 + DELTA((p)) + 1) / MAX_BONUS - 1))
169
170#define TASK_PREEMPTS_CURR(p, rq) \
171 ((p)->prio < (rq)->curr->prio)
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173#define SCALE_PRIO(x, prio) \
Peter Williams2dd73a42006-06-27 02:54:34 -0700174 max(x * (MAX_PRIO - prio) / (MAX_USER_PRIO / 2), MIN_TIMESLICE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Peter Williams2dd73a42006-06-27 02:54:34 -0700176static unsigned int static_prio_timeslice(int static_prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Peter Williams2dd73a42006-06-27 02:54:34 -0700178 if (static_prio < NICE_TO_PRIO(0))
179 return SCALE_PRIO(DEF_TIMESLICE * 4, static_prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 else
Peter Williams2dd73a42006-06-27 02:54:34 -0700181 return SCALE_PRIO(DEF_TIMESLICE, static_prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182}
Peter Williams2dd73a42006-06-27 02:54:34 -0700183
Borislav Petkov91fcdd42006-10-19 23:28:29 -0700184/*
185 * task_timeslice() scales user-nice values [ -20 ... 0 ... 19 ]
186 * to time slice values: [800ms ... 100ms ... 5ms]
187 *
188 * The higher a thread's priority, the bigger timeslices
189 * it gets during one round of execution. But even the lowest
190 * priority thread gets MIN_TIMESLICE worth of execution time.
191 */
192
Ingo Molnar36c8b582006-07-03 00:25:41 -0700193static inline unsigned int task_timeslice(struct task_struct *p)
Peter Williams2dd73a42006-06-27 02:54:34 -0700194{
195 return static_prio_timeslice(p->static_prio);
196}
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198/*
199 * These are the runqueue data structures:
200 */
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202struct prio_array {
203 unsigned int nr_active;
Steven Rostedtd4448862006-06-27 02:54:29 -0700204 DECLARE_BITMAP(bitmap, MAX_PRIO+1); /* include 1 bit for delimiter */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 struct list_head queue[MAX_PRIO];
206};
207
208/*
209 * This is the main, per-CPU runqueue data structure.
210 *
211 * Locking rule: those places that want to lock multiple runqueues
212 * (such as the load balancing or the thread migration code), lock
213 * acquire operations must be ordered by ascending &runqueue.
214 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700215struct rq {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 spinlock_t lock;
217
218 /*
219 * nr_running and cpu_load should be in the same cacheline because
220 * remote CPUs use both these fields when doing load calculation.
221 */
222 unsigned long nr_running;
Peter Williams2dd73a42006-06-27 02:54:34 -0700223 unsigned long raw_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224#ifdef CONFIG_SMP
Nick Piggin78979862005-06-25 14:57:13 -0700225 unsigned long cpu_load[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226#endif
227 unsigned long long nr_switches;
228
229 /*
230 * This is part of a global counter where only the total sum
231 * over all CPUs matters. A task can increase this counter on
232 * one CPU and if it got migrated afterwards it may decrease
233 * it on another CPU. Always updated under the runqueue lock:
234 */
235 unsigned long nr_uninterruptible;
236
237 unsigned long expired_timestamp;
Mike Galbraithb18ec802006-12-10 02:20:31 -0800238 /* Cached timestamp set by update_cpu_clock() */
239 unsigned long long most_recent_timestamp;
Ingo Molnar36c8b582006-07-03 00:25:41 -0700240 struct task_struct *curr, *idle;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800241 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 struct mm_struct *prev_mm;
Ingo Molnar70b97a72006-07-03 00:25:42 -0700243 struct prio_array *active, *expired, arrays[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 int best_expired_prio;
245 atomic_t nr_iowait;
246
247#ifdef CONFIG_SMP
248 struct sched_domain *sd;
249
250 /* For active balancing */
251 int active_balance;
252 int push_cpu;
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700253 int cpu; /* cpu of this runqueue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Ingo Molnar36c8b582006-07-03 00:25:41 -0700255 struct task_struct *migration_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 struct list_head migration_queue;
257#endif
258
259#ifdef CONFIG_SCHEDSTATS
260 /* latency stats */
261 struct sched_info rq_sched_info;
262
263 /* sys_sched_yield() stats */
264 unsigned long yld_exp_empty;
265 unsigned long yld_act_empty;
266 unsigned long yld_both_empty;
267 unsigned long yld_cnt;
268
269 /* schedule() stats */
270 unsigned long sched_switch;
271 unsigned long sched_cnt;
272 unsigned long sched_goidle;
273
274 /* try_to_wake_up() stats */
275 unsigned long ttwu_cnt;
276 unsigned long ttwu_local;
277#endif
Ingo Molnarfcb99372006-07-03 00:25:10 -0700278 struct lock_class_key rq_lock_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279};
280
Ingo Molnar70b97a72006-07-03 00:25:42 -0700281static DEFINE_PER_CPU(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700283static inline int cpu_of(struct rq *rq)
284{
285#ifdef CONFIG_SMP
286 return rq->cpu;
287#else
288 return 0;
289#endif
290}
291
Nick Piggin674311d2005-06-25 14:57:27 -0700292/*
293 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700294 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700295 *
296 * The domain tree of any CPU may only be accessed from within
297 * preempt-disabled sections.
298 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700299#define for_each_domain(cpu, __sd) \
300 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
303#define this_rq() (&__get_cpu_var(runqueues))
304#define task_rq(p) cpu_rq(task_cpu(p))
305#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700308# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700310#ifndef finish_arch_switch
311# define finish_arch_switch(prev) do { } while (0)
312#endif
313
314#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700315static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700316{
317 return rq->curr == p;
318}
319
Ingo Molnar70b97a72006-07-03 00:25:42 -0700320static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700321{
322}
323
Ingo Molnar70b97a72006-07-03 00:25:42 -0700324static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700325{
Ingo Molnarda04c032005-09-13 11:17:59 +0200326#ifdef CONFIG_DEBUG_SPINLOCK
327 /* this is a valid case when another task releases the spinlock */
328 rq->lock.owner = current;
329#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700330 /*
331 * If we are tracking spinlock dependencies then we have to
332 * fix up the runqueue lock - which gets 'carried over' from
333 * prev into current:
334 */
335 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
336
Nick Piggin4866cde2005-06-25 14:57:23 -0700337 spin_unlock_irq(&rq->lock);
338}
339
340#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700341static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700342{
343#ifdef CONFIG_SMP
344 return p->oncpu;
345#else
346 return rq->curr == p;
347#endif
348}
349
Ingo Molnar70b97a72006-07-03 00:25:42 -0700350static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700351{
352#ifdef CONFIG_SMP
353 /*
354 * We can optimise this out completely for !SMP, because the
355 * SMP rebalancing from interrupt is the only thing that cares
356 * here.
357 */
358 next->oncpu = 1;
359#endif
360#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
361 spin_unlock_irq(&rq->lock);
362#else
363 spin_unlock(&rq->lock);
364#endif
365}
366
Ingo Molnar70b97a72006-07-03 00:25:42 -0700367static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700368{
369#ifdef CONFIG_SMP
370 /*
371 * After ->oncpu is cleared, the task can be moved to a different CPU.
372 * We must ensure this doesn't happen until the switch is completely
373 * finished.
374 */
375 smp_wmb();
376 prev->oncpu = 0;
377#endif
378#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
379 local_irq_enable();
380#endif
381}
382#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700385 * __task_rq_lock - lock the runqueue a given task resides on.
386 * Must be called interrupts disabled.
387 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700388static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700389 __acquires(rq->lock)
390{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700391 struct rq *rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -0700392
393repeat_lock_task:
394 rq = task_rq(p);
395 spin_lock(&rq->lock);
396 if (unlikely(rq != task_rq(p))) {
397 spin_unlock(&rq->lock);
398 goto repeat_lock_task;
399 }
400 return rq;
401}
402
403/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 * task_rq_lock - lock the runqueue a given task resides on and disable
405 * interrupts. Note the ordering: we can safely lookup the task_rq without
406 * explicitly disabling preemption.
407 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700408static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 __acquires(rq->lock)
410{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700411 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
413repeat_lock_task:
414 local_irq_save(*flags);
415 rq = task_rq(p);
416 spin_lock(&rq->lock);
417 if (unlikely(rq != task_rq(p))) {
418 spin_unlock_irqrestore(&rq->lock, *flags);
419 goto repeat_lock_task;
420 }
421 return rq;
422}
423
Ingo Molnar70b97a72006-07-03 00:25:42 -0700424static inline void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700425 __releases(rq->lock)
426{
427 spin_unlock(&rq->lock);
428}
429
Ingo Molnar70b97a72006-07-03 00:25:42 -0700430static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 __releases(rq->lock)
432{
433 spin_unlock_irqrestore(&rq->lock, *flags);
434}
435
436#ifdef CONFIG_SCHEDSTATS
437/*
438 * bump this up when changing the output format or the meaning of an existing
439 * format, so that tools can adapt (or abort)
440 */
Chen, Kenneth W06066712006-12-10 02:20:35 -0800441#define SCHEDSTAT_VERSION 14
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443static int show_schedstat(struct seq_file *seq, void *v)
444{
445 int cpu;
446
447 seq_printf(seq, "version %d\n", SCHEDSTAT_VERSION);
448 seq_printf(seq, "timestamp %lu\n", jiffies);
449 for_each_online_cpu(cpu) {
Ingo Molnar70b97a72006-07-03 00:25:42 -0700450 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451#ifdef CONFIG_SMP
452 struct sched_domain *sd;
453 int dcnt = 0;
454#endif
455
456 /* runqueue-specific stats */
457 seq_printf(seq,
458 "cpu%d %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu",
459 cpu, rq->yld_both_empty,
460 rq->yld_act_empty, rq->yld_exp_empty, rq->yld_cnt,
461 rq->sched_switch, rq->sched_cnt, rq->sched_goidle,
462 rq->ttwu_cnt, rq->ttwu_local,
463 rq->rq_sched_info.cpu_time,
464 rq->rq_sched_info.run_delay, rq->rq_sched_info.pcnt);
465
466 seq_printf(seq, "\n");
467
468#ifdef CONFIG_SMP
469 /* domain-specific stats */
Nick Piggin674311d2005-06-25 14:57:27 -0700470 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 for_each_domain(cpu, sd) {
472 enum idle_type itype;
473 char mask_str[NR_CPUS];
474
475 cpumask_scnprintf(mask_str, NR_CPUS, sd->span);
476 seq_printf(seq, "domain%d %s", dcnt++, mask_str);
477 for (itype = SCHED_IDLE; itype < MAX_IDLE_TYPES;
478 itype++) {
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -0800479 seq_printf(seq, " %lu %lu %lu %lu %lu %lu %lu "
480 "%lu",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 sd->lb_cnt[itype],
482 sd->lb_balanced[itype],
483 sd->lb_failed[itype],
484 sd->lb_imbalance[itype],
485 sd->lb_gained[itype],
486 sd->lb_hot_gained[itype],
487 sd->lb_nobusyq[itype],
Chen, Kenneth W06066712006-12-10 02:20:35 -0800488 sd->lb_nobusyg[itype]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 }
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -0800490 seq_printf(seq, " %lu %lu %lu %lu %lu %lu %lu %lu %lu"
491 " %lu %lu %lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 sd->alb_cnt, sd->alb_failed, sd->alb_pushed,
Nick Piggin68767a02005-06-25 14:57:20 -0700493 sd->sbe_cnt, sd->sbe_balanced, sd->sbe_pushed,
494 sd->sbf_cnt, sd->sbf_balanced, sd->sbf_pushed,
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -0800495 sd->ttwu_wake_remote, sd->ttwu_move_affine,
496 sd->ttwu_move_balance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
Nick Piggin674311d2005-06-25 14:57:27 -0700498 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499#endif
500 }
501 return 0;
502}
503
504static int schedstat_open(struct inode *inode, struct file *file)
505{
506 unsigned int size = PAGE_SIZE * (1 + num_online_cpus() / 32);
507 char *buf = kmalloc(size, GFP_KERNEL);
508 struct seq_file *m;
509 int res;
510
511 if (!buf)
512 return -ENOMEM;
513 res = single_open(file, show_schedstat, NULL);
514 if (!res) {
515 m = file->private_data;
516 m->buf = buf;
517 m->size = size;
518 } else
519 kfree(buf);
520 return res;
521}
522
Helge Deller15ad7cd2006-12-06 20:40:36 -0800523const struct file_operations proc_schedstat_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 .open = schedstat_open,
525 .read = seq_read,
526 .llseek = seq_lseek,
527 .release = single_release,
528};
529
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700530/*
531 * Expects runqueue lock to be held for atomicity of update
532 */
533static inline void
534rq_sched_info_arrive(struct rq *rq, unsigned long delta_jiffies)
535{
536 if (rq) {
537 rq->rq_sched_info.run_delay += delta_jiffies;
538 rq->rq_sched_info.pcnt++;
539 }
540}
541
542/*
543 * Expects runqueue lock to be held for atomicity of update
544 */
545static inline void
546rq_sched_info_depart(struct rq *rq, unsigned long delta_jiffies)
547{
548 if (rq)
549 rq->rq_sched_info.cpu_time += delta_jiffies;
550}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551# define schedstat_inc(rq, field) do { (rq)->field++; } while (0)
552# define schedstat_add(rq, field, amt) do { (rq)->field += (amt); } while (0)
553#else /* !CONFIG_SCHEDSTATS */
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700554static inline void
555rq_sched_info_arrive(struct rq *rq, unsigned long delta_jiffies)
556{}
557static inline void
558rq_sched_info_depart(struct rq *rq, unsigned long delta_jiffies)
559{}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560# define schedstat_inc(rq, field) do { } while (0)
561# define schedstat_add(rq, field, amt) do { } while (0)
562#endif
563
564/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -0800565 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700567static inline struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 __acquires(rq->lock)
569{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700570 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 local_irq_disable();
573 rq = this_rq();
574 spin_lock(&rq->lock);
575
576 return rq;
577}
578
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700579#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580/*
581 * Called when a process is dequeued from the active array and given
582 * the cpu. We should note that with the exception of interactive
583 * tasks, the expired queue will become the active queue after the active
584 * queue is empty, without explicitly dequeuing and requeuing tasks in the
585 * expired queue. (Interactive tasks may be requeued directly to the
586 * active queue, thus delaying tasks in the expired queue from running;
587 * see scheduler_tick()).
588 *
589 * This function is only called from sched_info_arrive(), rather than
590 * dequeue_task(). Even though a task may be queued and dequeued multiple
591 * times as it is shuffled about, we're really interested in knowing how
592 * long it was from the *first* time it was queued to the time that it
593 * finally hit a cpu.
594 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700595static inline void sched_info_dequeued(struct task_struct *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
597 t->sched_info.last_queued = 0;
598}
599
600/*
601 * Called when a task finally hits the cpu. We can now calculate how
602 * long it was waiting to run. We also note when it began so that we
603 * can keep stats on how long its timeslice is.
604 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700605static void sched_info_arrive(struct task_struct *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700607 unsigned long now = jiffies, delta_jiffies = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609 if (t->sched_info.last_queued)
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700610 delta_jiffies = now - t->sched_info.last_queued;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 sched_info_dequeued(t);
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700612 t->sched_info.run_delay += delta_jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 t->sched_info.last_arrival = now;
614 t->sched_info.pcnt++;
615
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700616 rq_sched_info_arrive(task_rq(t), delta_jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
618
619/*
620 * Called when a process is queued into either the active or expired
621 * array. The time is noted and later used to determine how long we
622 * had to wait for us to reach the cpu. Since the expired queue will
623 * become the active queue after active queue is empty, without dequeuing
624 * and requeuing any tasks, we are interested in queuing to either. It
625 * is unusual but not impossible for tasks to be dequeued and immediately
626 * requeued in the same or another array: this can happen in sched_yield(),
627 * set_user_nice(), and even load_balance() as it moves tasks from runqueue
628 * to runqueue.
629 *
630 * This function is only called from enqueue_task(), but also only updates
631 * the timestamp if it is already not set. It's assumed that
632 * sched_info_dequeued() will clear that stamp when appropriate.
633 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700634static inline void sched_info_queued(struct task_struct *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700636 if (unlikely(sched_info_on()))
637 if (!t->sched_info.last_queued)
638 t->sched_info.last_queued = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
641/*
642 * Called when a process ceases being the active-running process, either
643 * voluntarily or involuntarily. Now we can calculate how long we ran.
644 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700645static inline void sched_info_depart(struct task_struct *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700647 unsigned long delta_jiffies = jiffies - t->sched_info.last_arrival;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700649 t->sched_info.cpu_time += delta_jiffies;
650 rq_sched_info_depart(task_rq(t), delta_jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}
652
653/*
654 * Called when tasks are switched involuntarily due, typically, to expiring
655 * their time slice. (This may also be called when switching to or from
656 * the idle task.) We are only called when prev != next.
657 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700658static inline void
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700659__sched_info_switch(struct task_struct *prev, struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700661 struct rq *rq = task_rq(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 /*
664 * prev now departs the cpu. It's not interesting to record
665 * stats about how efficient we were at scheduling the idle
666 * process, however.
667 */
668 if (prev != rq->idle)
669 sched_info_depart(prev);
670
671 if (next != rq->idle)
672 sched_info_arrive(next);
673}
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700674static inline void
675sched_info_switch(struct task_struct *prev, struct task_struct *next)
676{
677 if (unlikely(sched_info_on()))
678 __sched_info_switch(prev, next);
679}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680#else
681#define sched_info_queued(t) do { } while (0)
682#define sched_info_switch(t, next) do { } while (0)
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700683#endif /* CONFIG_SCHEDSTATS || CONFIG_TASK_DELAY_ACCT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685/*
686 * Adding/removing a task to/from a priority array:
687 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700688static void dequeue_task(struct task_struct *p, struct prio_array *array)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
690 array->nr_active--;
691 list_del(&p->run_list);
692 if (list_empty(array->queue + p->prio))
693 __clear_bit(p->prio, array->bitmap);
694}
695
Ingo Molnar70b97a72006-07-03 00:25:42 -0700696static void enqueue_task(struct task_struct *p, struct prio_array *array)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
698 sched_info_queued(p);
699 list_add_tail(&p->run_list, array->queue + p->prio);
700 __set_bit(p->prio, array->bitmap);
701 array->nr_active++;
702 p->array = array;
703}
704
705/*
706 * Put task to the end of the run list without the overhead of dequeue
707 * followed by enqueue.
708 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700709static void requeue_task(struct task_struct *p, struct prio_array *array)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
711 list_move_tail(&p->run_list, array->queue + p->prio);
712}
713
Ingo Molnar70b97a72006-07-03 00:25:42 -0700714static inline void
715enqueue_task_head(struct task_struct *p, struct prio_array *array)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
717 list_add(&p->run_list, array->queue + p->prio);
718 __set_bit(p->prio, array->bitmap);
719 array->nr_active++;
720 p->array = array;
721}
722
723/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700724 * __normal_prio - return the priority that is based on the static
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 * priority but is modified by bonuses/penalties.
726 *
727 * We scale the actual sleep average [0 .... MAX_SLEEP_AVG]
728 * into the -5 ... 0 ... +5 bonus/penalty range.
729 *
730 * We use 25% of the full 0...39 priority range so that:
731 *
732 * 1) nice +19 interactive tasks do not preempt nice 0 CPU hogs.
733 * 2) nice -20 CPU hogs do not get preempted by nice 0 tasks.
734 *
735 * Both properties are important to certain workloads.
736 */
Ingo Molnarb29739f2006-06-27 02:54:51 -0700737
Ingo Molnar36c8b582006-07-03 00:25:41 -0700738static inline int __normal_prio(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
740 int bonus, prio;
741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 bonus = CURRENT_BONUS(p) - MAX_BONUS / 2;
743
744 prio = p->static_prio - bonus;
745 if (prio < MAX_RT_PRIO)
746 prio = MAX_RT_PRIO;
747 if (prio > MAX_PRIO-1)
748 prio = MAX_PRIO-1;
749 return prio;
750}
751
752/*
Peter Williams2dd73a42006-06-27 02:54:34 -0700753 * To aid in avoiding the subversion of "niceness" due to uneven distribution
754 * of tasks with abnormal "nice" values across CPUs the contribution that
755 * each task makes to its run queue's load is weighted according to its
756 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
757 * scaled version of the new time slice allocation that they receive on time
758 * slice expiry etc.
759 */
760
761/*
762 * Assume: static_prio_timeslice(NICE_TO_PRIO(0)) == DEF_TIMESLICE
763 * If static_prio_timeslice() is ever changed to break this assumption then
764 * this code will need modification
765 */
766#define TIME_SLICE_NICE_ZERO DEF_TIMESLICE
767#define LOAD_WEIGHT(lp) \
768 (((lp) * SCHED_LOAD_SCALE) / TIME_SLICE_NICE_ZERO)
769#define PRIO_TO_LOAD_WEIGHT(prio) \
770 LOAD_WEIGHT(static_prio_timeslice(prio))
771#define RTPRIO_TO_LOAD_WEIGHT(rp) \
772 (PRIO_TO_LOAD_WEIGHT(MAX_RT_PRIO) + LOAD_WEIGHT(rp))
773
Ingo Molnar36c8b582006-07-03 00:25:41 -0700774static void set_load_weight(struct task_struct *p)
Peter Williams2dd73a42006-06-27 02:54:34 -0700775{
Ingo Molnarb29739f2006-06-27 02:54:51 -0700776 if (has_rt_policy(p)) {
Peter Williams2dd73a42006-06-27 02:54:34 -0700777#ifdef CONFIG_SMP
778 if (p == task_rq(p)->migration_thread)
779 /*
780 * The migration thread does the actual balancing.
781 * Giving its load any weight will skew balancing
782 * adversely.
783 */
784 p->load_weight = 0;
785 else
786#endif
787 p->load_weight = RTPRIO_TO_LOAD_WEIGHT(p->rt_priority);
788 } else
789 p->load_weight = PRIO_TO_LOAD_WEIGHT(p->static_prio);
790}
791
Ingo Molnar36c8b582006-07-03 00:25:41 -0700792static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -0700793inc_raw_weighted_load(struct rq *rq, const struct task_struct *p)
Peter Williams2dd73a42006-06-27 02:54:34 -0700794{
795 rq->raw_weighted_load += p->load_weight;
796}
797
Ingo Molnar36c8b582006-07-03 00:25:41 -0700798static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -0700799dec_raw_weighted_load(struct rq *rq, const struct task_struct *p)
Peter Williams2dd73a42006-06-27 02:54:34 -0700800{
801 rq->raw_weighted_load -= p->load_weight;
802}
803
Ingo Molnar70b97a72006-07-03 00:25:42 -0700804static inline void inc_nr_running(struct task_struct *p, struct rq *rq)
Peter Williams2dd73a42006-06-27 02:54:34 -0700805{
806 rq->nr_running++;
807 inc_raw_weighted_load(rq, p);
808}
809
Ingo Molnar70b97a72006-07-03 00:25:42 -0700810static inline void dec_nr_running(struct task_struct *p, struct rq *rq)
Peter Williams2dd73a42006-06-27 02:54:34 -0700811{
812 rq->nr_running--;
813 dec_raw_weighted_load(rq, p);
814}
815
816/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700817 * Calculate the expected normal priority: i.e. priority
818 * without taking RT-inheritance into account. Might be
819 * boosted by interactivity modifiers. Changes upon fork,
820 * setprio syscalls, and whenever the interactivity
821 * estimator recalculates.
822 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700823static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700824{
825 int prio;
826
827 if (has_rt_policy(p))
828 prio = MAX_RT_PRIO-1 - p->rt_priority;
829 else
830 prio = __normal_prio(p);
831 return prio;
832}
833
834/*
835 * Calculate the current priority, i.e. the priority
836 * taken into account by the scheduler. This value might
837 * be boosted by RT tasks, or might be boosted by
838 * interactivity modifiers. Will be RT if the task got
839 * RT-boosted. If not then it returns p->normal_prio.
840 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700841static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700842{
843 p->normal_prio = normal_prio(p);
844 /*
845 * If we are RT tasks or we were boosted to RT priority,
846 * keep the priority unchanged. Otherwise, update priority
847 * to the normal priority:
848 */
849 if (!rt_prio(p->prio))
850 return p->normal_prio;
851 return p->prio;
852}
853
854/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 * __activate_task - move a task to the runqueue.
856 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700857static void __activate_task(struct task_struct *p, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700859 struct prio_array *target = rq->active;
Con Kolivasd425b272006-03-31 02:31:29 -0800860
Linus Torvaldsf1adad72006-05-21 18:54:09 -0700861 if (batch_task(p))
Con Kolivasd425b272006-03-31 02:31:29 -0800862 target = rq->expired;
863 enqueue_task(p, target);
Peter Williams2dd73a42006-06-27 02:54:34 -0700864 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865}
866
867/*
868 * __activate_idle_task - move idle task to the _front_ of runqueue.
869 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700870static inline void __activate_idle_task(struct task_struct *p, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
872 enqueue_task_head(p, rq->active);
Peter Williams2dd73a42006-06-27 02:54:34 -0700873 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874}
875
Ingo Molnarb29739f2006-06-27 02:54:51 -0700876/*
877 * Recalculate p->normal_prio and p->prio after having slept,
878 * updating the sleep-average too:
879 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700880static int recalc_task_prio(struct task_struct *p, unsigned long long now)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881{
882 /* Caller must always ensure 'now >= p->timestamp' */
Con Kolivas72d28542006-06-27 02:54:30 -0700883 unsigned long sleep_time = now - p->timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Con Kolivasd425b272006-03-31 02:31:29 -0800885 if (batch_task(p))
Ingo Molnarb0a94992006-01-14 13:20:41 -0800886 sleep_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888 if (likely(sleep_time > 0)) {
889 /*
Con Kolivas72d28542006-06-27 02:54:30 -0700890 * This ceiling is set to the lowest priority that would allow
891 * a task to be reinserted into the active array on timeslice
892 * completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 */
Con Kolivas72d28542006-06-27 02:54:30 -0700894 unsigned long ceiling = INTERACTIVE_SLEEP(p);
Con Kolivase72ff0b2006-03-31 02:31:26 -0800895
Con Kolivas72d28542006-06-27 02:54:30 -0700896 if (p->mm && sleep_time > ceiling && p->sleep_avg < ceiling) {
897 /*
898 * Prevents user tasks from achieving best priority
899 * with one single large enough sleep.
900 */
901 p->sleep_avg = ceiling;
902 /*
903 * Using INTERACTIVE_SLEEP() as a ceiling places a
904 * nice(0) task 1ms sleep away from promotion, and
905 * gives it 700ms to round-robin with no chance of
906 * being demoted. This is more than generous, so
907 * mark this sleep as non-interactive to prevent the
908 * on-runqueue bonus logic from intervening should
909 * this task not receive cpu immediately.
910 */
911 p->sleep_type = SLEEP_NONINTERACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 } else {
913 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 * Tasks waking from uninterruptible sleep are
915 * limited in their sleep_avg rise as they
916 * are likely to be waiting on I/O
917 */
Con Kolivas3dee3862006-03-31 02:31:23 -0800918 if (p->sleep_type == SLEEP_NONINTERACTIVE && p->mm) {
Con Kolivas72d28542006-06-27 02:54:30 -0700919 if (p->sleep_avg >= ceiling)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 sleep_time = 0;
921 else if (p->sleep_avg + sleep_time >=
Con Kolivas72d28542006-06-27 02:54:30 -0700922 ceiling) {
923 p->sleep_avg = ceiling;
924 sleep_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 }
926 }
927
928 /*
929 * This code gives a bonus to interactive tasks.
930 *
931 * The boost works by updating the 'average sleep time'
932 * value here, based on ->timestamp. The more time a
933 * task spends sleeping, the higher the average gets -
934 * and the higher the priority boost gets as well.
935 */
936 p->sleep_avg += sleep_time;
937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 }
Con Kolivas72d28542006-06-27 02:54:30 -0700939 if (p->sleep_avg > NS_MAX_SLEEP_AVG)
940 p->sleep_avg = NS_MAX_SLEEP_AVG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 }
942
Chen Shanga3464a12005-06-25 14:57:31 -0700943 return effective_prio(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944}
945
946/*
947 * activate_task - move a task to the runqueue and do priority recalculation
948 *
949 * Update all the scheduling statistics stuff. (sleep average
950 * calculation, priority modifiers, etc.)
951 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700952static void activate_task(struct task_struct *p, struct rq *rq, int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953{
954 unsigned long long now;
955
Chen, Kenneth W62ab6162006-12-10 02:20:36 -0800956 if (rt_task(p))
957 goto out;
958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 now = sched_clock();
960#ifdef CONFIG_SMP
961 if (!local) {
962 /* Compensate for drifting sched_clock */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700963 struct rq *this_rq = this_rq();
Mike Galbraithb18ec802006-12-10 02:20:31 -0800964 now = (now - this_rq->most_recent_timestamp)
965 + rq->most_recent_timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 }
967#endif
968
Ingo Molnarece8a682006-12-06 20:37:24 -0800969 /*
970 * Sleep time is in units of nanosecs, so shift by 20 to get a
971 * milliseconds-range estimation of the amount of time that the task
972 * spent sleeping:
973 */
974 if (unlikely(prof_on == SLEEP_PROFILING)) {
975 if (p->state == TASK_UNINTERRUPTIBLE)
976 profile_hits(SLEEP_PROFILING, (void *)get_wchan(p),
977 (now - p->timestamp) >> 20);
978 }
979
Chen, Kenneth W62ab6162006-12-10 02:20:36 -0800980 p->prio = recalc_task_prio(p, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
982 /*
983 * This checks to make sure it's not an uninterruptible task
984 * that is now waking up.
985 */
Con Kolivas3dee3862006-03-31 02:31:23 -0800986 if (p->sleep_type == SLEEP_NORMAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 /*
988 * Tasks which were woken up by interrupts (ie. hw events)
989 * are most likely of interactive nature. So we give them
990 * the credit of extending their sleep time to the period
991 * of time they spend on the runqueue, waiting for execution
992 * on a CPU, first time around:
993 */
994 if (in_interrupt())
Con Kolivas3dee3862006-03-31 02:31:23 -0800995 p->sleep_type = SLEEP_INTERRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 else {
997 /*
998 * Normal first-time wakeups get a credit too for
999 * on-runqueue time, but it will be weighted down:
1000 */
Con Kolivas3dee3862006-03-31 02:31:23 -08001001 p->sleep_type = SLEEP_INTERACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 }
1003 }
1004 p->timestamp = now;
Chen, Kenneth W62ab6162006-12-10 02:20:36 -08001005out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 __activate_task(p, rq);
1007}
1008
1009/*
1010 * deactivate_task - remove a task from the runqueue.
1011 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001012static void deactivate_task(struct task_struct *p, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013{
Peter Williams2dd73a42006-06-27 02:54:34 -07001014 dec_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 dequeue_task(p, p->array);
1016 p->array = NULL;
1017}
1018
1019/*
1020 * resched_task - mark a task 'to be rescheduled now'.
1021 *
1022 * On UP this means the setting of the need_resched flag, on SMP it
1023 * might also involve a cross-CPU call to trigger the scheduler on
1024 * the target CPU.
1025 */
1026#ifdef CONFIG_SMP
Andi Kleen495ab9c2006-06-26 13:59:11 +02001027
1028#ifndef tsk_is_polling
1029#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1030#endif
1031
Ingo Molnar36c8b582006-07-03 00:25:41 -07001032static void resched_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033{
Nick Piggin64c7c8f2005-11-08 21:39:04 -08001034 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
1036 assert_spin_locked(&task_rq(p)->lock);
1037
Nick Piggin64c7c8f2005-11-08 21:39:04 -08001038 if (unlikely(test_tsk_thread_flag(p, TIF_NEED_RESCHED)))
1039 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Nick Piggin64c7c8f2005-11-08 21:39:04 -08001041 set_tsk_thread_flag(p, TIF_NEED_RESCHED);
1042
1043 cpu = task_cpu(p);
1044 if (cpu == smp_processor_id())
1045 return;
1046
Andi Kleen495ab9c2006-06-26 13:59:11 +02001047 /* NEED_RESCHED must be visible before we test polling */
Nick Piggin64c7c8f2005-11-08 21:39:04 -08001048 smp_mb();
Andi Kleen495ab9c2006-06-26 13:59:11 +02001049 if (!tsk_is_polling(p))
Nick Piggin64c7c8f2005-11-08 21:39:04 -08001050 smp_send_reschedule(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051}
1052#else
Ingo Molnar36c8b582006-07-03 00:25:41 -07001053static inline void resched_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054{
Nick Piggin64c7c8f2005-11-08 21:39:04 -08001055 assert_spin_locked(&task_rq(p)->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 set_tsk_need_resched(p);
1057}
1058#endif
1059
1060/**
1061 * task_curr - is this task currently executing on a CPU?
1062 * @p: the task in question.
1063 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001064inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
1066 return cpu_curr(task_cpu(p)) == p;
1067}
1068
Peter Williams2dd73a42006-06-27 02:54:34 -07001069/* Used instead of source_load when we know the type == 0 */
1070unsigned long weighted_cpuload(const int cpu)
1071{
1072 return cpu_rq(cpu)->raw_weighted_load;
1073}
1074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075#ifdef CONFIG_SMP
Ingo Molnar70b97a72006-07-03 00:25:42 -07001076struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Ingo Molnar36c8b582006-07-03 00:25:41 -07001079 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 int dest_cpu;
1081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001083};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
1085/*
1086 * The task's runqueue lock must be held.
1087 * Returns true if you have to wait for migration thread.
1088 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001089static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07001090migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001092 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 /*
1095 * If the task is not on a runqueue (and not running), then
1096 * it is sufficient to simply update the task's cpu field.
1097 */
1098 if (!p->array && !task_running(rq, p)) {
1099 set_task_cpu(p, dest_cpu);
1100 return 0;
1101 }
1102
1103 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 req->task = p;
1105 req->dest_cpu = dest_cpu;
1106 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07001107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 return 1;
1109}
1110
1111/*
1112 * wait_task_inactive - wait for a thread to unschedule.
1113 *
1114 * The caller must ensure that the task *will* unschedule sometime soon,
1115 * else this function might spin for a *long* time. This function can't
1116 * be called with interrupts off, or it may introduce deadlock with
1117 * smp_call_function() if an IPI is sent by the same process we are
1118 * waiting to become inactive.
1119 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001120void wait_task_inactive(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121{
1122 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001123 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 int preempted;
1125
1126repeat:
1127 rq = task_rq_lock(p, &flags);
1128 /* Must be off runqueue entirely, not preempted. */
1129 if (unlikely(p->array || task_running(rq, p))) {
1130 /* If it's preempted, we yield. It could be a while. */
1131 preempted = !task_running(rq, p);
1132 task_rq_unlock(rq, &flags);
1133 cpu_relax();
1134 if (preempted)
1135 yield();
1136 goto repeat;
1137 }
1138 task_rq_unlock(rq, &flags);
1139}
1140
1141/***
1142 * kick_process - kick a running thread to enter/exit the kernel
1143 * @p: the to-be-kicked thread
1144 *
1145 * Cause a process which is running on another CPU to enter
1146 * kernel-mode, without any delay. (to get signals handled.)
1147 *
1148 * NOTE: this function doesnt have to take the runqueue lock,
1149 * because all it wants to ensure is that the remote task enters
1150 * the kernel. If the IPI races and the task has been migrated
1151 * to another CPU then no harm is done and the purpose has been
1152 * achieved as well.
1153 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001154void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155{
1156 int cpu;
1157
1158 preempt_disable();
1159 cpu = task_cpu(p);
1160 if ((cpu != smp_processor_id()) && task_curr(p))
1161 smp_send_reschedule(cpu);
1162 preempt_enable();
1163}
1164
1165/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001166 * Return a low guess at the load of a migration-source cpu weighted
1167 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 *
1169 * We want to under-estimate the load of migration sources, to
1170 * balance conservatively.
1171 */
Con Kolivasb9104722005-11-08 21:38:55 -08001172static inline unsigned long source_load(int cpu, int type)
1173{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001174 struct rq *rq = cpu_rq(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001175
Peter Williams2dd73a42006-06-27 02:54:34 -07001176 if (type == 0)
1177 return rq->raw_weighted_load;
1178
1179 return min(rq->cpu_load[type-1], rq->raw_weighted_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180}
1181
1182/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001183 * Return a high guess at the load of a migration-target cpu weighted
1184 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 */
Con Kolivasb9104722005-11-08 21:38:55 -08001186static inline unsigned long target_load(int cpu, int type)
1187{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001188 struct rq *rq = cpu_rq(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001189
Peter Williams2dd73a42006-06-27 02:54:34 -07001190 if (type == 0)
1191 return rq->raw_weighted_load;
1192
1193 return max(rq->cpu_load[type-1], rq->raw_weighted_load);
1194}
1195
1196/*
1197 * Return the average load per task on the cpu's run queue
1198 */
1199static inline unsigned long cpu_avg_load_per_task(int cpu)
1200{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001201 struct rq *rq = cpu_rq(cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07001202 unsigned long n = rq->nr_running;
1203
Ingo Molnar48f24c42006-07-03 00:25:40 -07001204 return n ? rq->raw_weighted_load / n : SCHED_LOAD_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205}
1206
Nick Piggin147cbb42005-06-25 14:57:19 -07001207/*
1208 * find_idlest_group finds and returns the least busy CPU group within the
1209 * domain.
1210 */
1211static struct sched_group *
1212find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
1213{
1214 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
1215 unsigned long min_load = ULONG_MAX, this_load = 0;
1216 int load_idx = sd->forkexec_idx;
1217 int imbalance = 100 + (sd->imbalance_pct-100)/2;
1218
1219 do {
1220 unsigned long load, avg_load;
1221 int local_group;
1222 int i;
1223
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001224 /* Skip over this group if it has no CPUs allowed */
1225 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
1226 goto nextgroup;
1227
Nick Piggin147cbb42005-06-25 14:57:19 -07001228 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07001229
1230 /* Tally up the load of all CPUs in the group */
1231 avg_load = 0;
1232
1233 for_each_cpu_mask(i, group->cpumask) {
1234 /* Bias balancing toward cpus of our domain */
1235 if (local_group)
1236 load = source_load(i, load_idx);
1237 else
1238 load = target_load(i, load_idx);
1239
1240 avg_load += load;
1241 }
1242
1243 /* Adjust by relative CPU power of the group */
1244 avg_load = (avg_load * SCHED_LOAD_SCALE) / group->cpu_power;
1245
1246 if (local_group) {
1247 this_load = avg_load;
1248 this = group;
1249 } else if (avg_load < min_load) {
1250 min_load = avg_load;
1251 idlest = group;
1252 }
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001253nextgroup:
Nick Piggin147cbb42005-06-25 14:57:19 -07001254 group = group->next;
1255 } while (group != sd->groups);
1256
1257 if (!idlest || 100*this_load < imbalance*min_load)
1258 return NULL;
1259 return idlest;
1260}
1261
1262/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07001263 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07001264 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07001265static int
1266find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu)
Nick Piggin147cbb42005-06-25 14:57:19 -07001267{
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001268 cpumask_t tmp;
Nick Piggin147cbb42005-06-25 14:57:19 -07001269 unsigned long load, min_load = ULONG_MAX;
1270 int idlest = -1;
1271 int i;
1272
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001273 /* Traverse only the allowed CPUs */
1274 cpus_and(tmp, group->cpumask, p->cpus_allowed);
1275
1276 for_each_cpu_mask(i, tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07001277 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07001278
1279 if (load < min_load || (load == min_load && i == this_cpu)) {
1280 min_load = load;
1281 idlest = i;
1282 }
1283 }
1284
1285 return idlest;
1286}
1287
Nick Piggin476d1392005-06-25 14:57:29 -07001288/*
1289 * sched_balance_self: balance the current task (running on cpu) in domains
1290 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
1291 * SD_BALANCE_EXEC.
1292 *
1293 * Balance, ie. select the least loaded group.
1294 *
1295 * Returns the target CPU number, or the same CPU if no balancing is needed.
1296 *
1297 * preempt must be disabled.
1298 */
1299static int sched_balance_self(int cpu, int flag)
1300{
1301 struct task_struct *t = current;
1302 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07001303
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001304 for_each_domain(cpu, tmp) {
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07001305 /*
1306 * If power savings logic is enabled for a domain, stop there.
1307 */
1308 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
1309 break;
Nick Piggin476d1392005-06-25 14:57:29 -07001310 if (tmp->flags & flag)
1311 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001312 }
Nick Piggin476d1392005-06-25 14:57:29 -07001313
1314 while (sd) {
1315 cpumask_t span;
1316 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001317 int new_cpu, weight;
1318
1319 if (!(sd->flags & flag)) {
1320 sd = sd->child;
1321 continue;
1322 }
Nick Piggin476d1392005-06-25 14:57:29 -07001323
1324 span = sd->span;
1325 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001326 if (!group) {
1327 sd = sd->child;
1328 continue;
1329 }
Nick Piggin476d1392005-06-25 14:57:29 -07001330
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001331 new_cpu = find_idlest_cpu(group, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001332 if (new_cpu == -1 || new_cpu == cpu) {
1333 /* Now try balancing at a lower domain level of cpu */
1334 sd = sd->child;
1335 continue;
1336 }
Nick Piggin476d1392005-06-25 14:57:29 -07001337
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001338 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07001339 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07001340 sd = NULL;
1341 weight = cpus_weight(span);
1342 for_each_domain(cpu, tmp) {
1343 if (weight <= cpus_weight(tmp->span))
1344 break;
1345 if (tmp->flags & flag)
1346 sd = tmp;
1347 }
1348 /* while loop will break here if sd == NULL */
1349 }
1350
1351 return cpu;
1352}
1353
1354#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
1356/*
1357 * wake_idle() will wake a task on an idle cpu if task->cpu is
1358 * not idle and an idle cpu is available. The span of cpus to
1359 * search starts with cpus closest then further out as needed,
1360 * so we always favor a closer, idle cpu.
1361 *
1362 * Returns the CPU we should wake onto.
1363 */
1364#if defined(ARCH_HAS_SCHED_WAKE_IDLE)
Ingo Molnar36c8b582006-07-03 00:25:41 -07001365static int wake_idle(int cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366{
1367 cpumask_t tmp;
1368 struct sched_domain *sd;
1369 int i;
1370
1371 if (idle_cpu(cpu))
1372 return cpu;
1373
1374 for_each_domain(cpu, sd) {
1375 if (sd->flags & SD_WAKE_IDLE) {
Nick Piggine0f364f2005-06-25 14:57:06 -07001376 cpus_and(tmp, sd->span, p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 for_each_cpu_mask(i, tmp) {
1378 if (idle_cpu(i))
1379 return i;
1380 }
1381 }
Nick Piggine0f364f2005-06-25 14:57:06 -07001382 else
1383 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 }
1385 return cpu;
1386}
1387#else
Ingo Molnar36c8b582006-07-03 00:25:41 -07001388static inline int wake_idle(int cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389{
1390 return cpu;
1391}
1392#endif
1393
1394/***
1395 * try_to_wake_up - wake up a thread
1396 * @p: the to-be-woken-up thread
1397 * @state: the mask of task states that can be woken
1398 * @sync: do a synchronous wakeup?
1399 *
1400 * Put it on the run-queue if it's not already there. The "current"
1401 * thread is always on the run-queue (except when the actual
1402 * re-schedule is in progress), and as such you're allowed to do
1403 * the simpler "current->state = TASK_RUNNING" to mark yourself
1404 * runnable without the overhead of this.
1405 *
1406 * returns failure only if the task is already active.
1407 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001408static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409{
1410 int cpu, this_cpu, success = 0;
1411 unsigned long flags;
1412 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001413 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414#ifdef CONFIG_SMP
Nick Piggin78979862005-06-25 14:57:13 -07001415 struct sched_domain *sd, *this_sd = NULL;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001416 unsigned long load, this_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 int new_cpu;
1418#endif
1419
1420 rq = task_rq_lock(p, &flags);
1421 old_state = p->state;
1422 if (!(old_state & state))
1423 goto out;
1424
1425 if (p->array)
1426 goto out_running;
1427
1428 cpu = task_cpu(p);
1429 this_cpu = smp_processor_id();
1430
1431#ifdef CONFIG_SMP
1432 if (unlikely(task_running(rq, p)))
1433 goto out_activate;
1434
Nick Piggin78979862005-06-25 14:57:13 -07001435 new_cpu = cpu;
1436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 schedstat_inc(rq, ttwu_cnt);
1438 if (cpu == this_cpu) {
1439 schedstat_inc(rq, ttwu_local);
Nick Piggin78979862005-06-25 14:57:13 -07001440 goto out_set_cpu;
1441 }
1442
1443 for_each_domain(this_cpu, sd) {
1444 if (cpu_isset(cpu, sd->span)) {
1445 schedstat_inc(sd, ttwu_wake_remote);
1446 this_sd = sd;
1447 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 }
1449 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Nick Piggin78979862005-06-25 14:57:13 -07001451 if (unlikely(!cpu_isset(this_cpu, p->cpus_allowed)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 goto out_set_cpu;
1453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 /*
Nick Piggin78979862005-06-25 14:57:13 -07001455 * Check for affine wakeup and passive balancing possibilities.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 */
Nick Piggin78979862005-06-25 14:57:13 -07001457 if (this_sd) {
1458 int idx = this_sd->wake_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 unsigned int imbalance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Nick Piggina3f21bc2005-06-25 14:57:15 -07001461 imbalance = 100 + (this_sd->imbalance_pct - 100) / 2;
1462
Nick Piggin78979862005-06-25 14:57:13 -07001463 load = source_load(cpu, idx);
1464 this_load = target_load(this_cpu, idx);
1465
Nick Piggin78979862005-06-25 14:57:13 -07001466 new_cpu = this_cpu; /* Wake to this CPU if we can */
1467
Nick Piggina3f21bc2005-06-25 14:57:15 -07001468 if (this_sd->flags & SD_WAKE_AFFINE) {
1469 unsigned long tl = this_load;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08001470 unsigned long tl_per_task;
1471
1472 tl_per_task = cpu_avg_load_per_task(this_cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07001473
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 /*
Nick Piggina3f21bc2005-06-25 14:57:15 -07001475 * If sync wakeup then subtract the (maximum possible)
1476 * effect of the currently running task from the load
1477 * of the current CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 */
Nick Piggina3f21bc2005-06-25 14:57:15 -07001479 if (sync)
Peter Williams2dd73a42006-06-27 02:54:34 -07001480 tl -= current->load_weight;
Nick Piggina3f21bc2005-06-25 14:57:15 -07001481
1482 if ((tl <= load &&
Peter Williams2dd73a42006-06-27 02:54:34 -07001483 tl + target_load(cpu, idx) <= tl_per_task) ||
1484 100*(tl + p->load_weight) <= imbalance*load) {
Nick Piggina3f21bc2005-06-25 14:57:15 -07001485 /*
1486 * This domain has SD_WAKE_AFFINE and
1487 * p is cache cold in this domain, and
1488 * there is no bad imbalance.
1489 */
1490 schedstat_inc(this_sd, ttwu_move_affine);
1491 goto out_set_cpu;
1492 }
1493 }
1494
1495 /*
1496 * Start passive balancing when half the imbalance_pct
1497 * limit is reached.
1498 */
1499 if (this_sd->flags & SD_WAKE_BALANCE) {
1500 if (imbalance*this_load <= 100*load) {
1501 schedstat_inc(this_sd, ttwu_move_balance);
1502 goto out_set_cpu;
1503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 }
1505 }
1506
1507 new_cpu = cpu; /* Could not wake to this_cpu. Wake to cpu instead */
1508out_set_cpu:
1509 new_cpu = wake_idle(new_cpu, p);
1510 if (new_cpu != cpu) {
1511 set_task_cpu(p, new_cpu);
1512 task_rq_unlock(rq, &flags);
1513 /* might preempt at this point */
1514 rq = task_rq_lock(p, &flags);
1515 old_state = p->state;
1516 if (!(old_state & state))
1517 goto out;
1518 if (p->array)
1519 goto out_running;
1520
1521 this_cpu = smp_processor_id();
1522 cpu = task_cpu(p);
1523 }
1524
1525out_activate:
1526#endif /* CONFIG_SMP */
1527 if (old_state == TASK_UNINTERRUPTIBLE) {
1528 rq->nr_uninterruptible--;
1529 /*
1530 * Tasks on involuntary sleep don't earn
1531 * sleep_avg beyond just interactive state.
1532 */
Con Kolivas3dee3862006-03-31 02:31:23 -08001533 p->sleep_type = SLEEP_NONINTERACTIVE;
Con Kolivase7c38cb2006-03-31 02:31:25 -08001534 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
1536 /*
Ingo Molnard79fc0f2005-09-10 00:26:12 -07001537 * Tasks that have marked their sleep as noninteractive get
Con Kolivase7c38cb2006-03-31 02:31:25 -08001538 * woken up with their sleep average not weighted in an
1539 * interactive way.
Ingo Molnard79fc0f2005-09-10 00:26:12 -07001540 */
Con Kolivase7c38cb2006-03-31 02:31:25 -08001541 if (old_state & TASK_NONINTERACTIVE)
1542 p->sleep_type = SLEEP_NONINTERACTIVE;
1543
1544
1545 activate_task(p, rq, cpu == this_cpu);
Ingo Molnard79fc0f2005-09-10 00:26:12 -07001546 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 * Sync wakeups (i.e. those types of wakeups where the waker
1548 * has indicated that it will leave the CPU in short order)
1549 * don't trigger a preemption, if the woken up task will run on
1550 * this cpu. (in this case the 'I will reschedule' promise of
1551 * the waker guarantees that the freshly woken up task is going
1552 * to be considered on this CPU.)
1553 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 if (!sync || cpu != this_cpu) {
1555 if (TASK_PREEMPTS_CURR(p, rq))
1556 resched_task(rq->curr);
1557 }
1558 success = 1;
1559
1560out_running:
1561 p->state = TASK_RUNNING;
1562out:
1563 task_rq_unlock(rq, &flags);
1564
1565 return success;
1566}
1567
Ingo Molnar36c8b582006-07-03 00:25:41 -07001568int fastcall wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569{
1570 return try_to_wake_up(p, TASK_STOPPED | TASK_TRACED |
1571 TASK_INTERRUPTIBLE | TASK_UNINTERRUPTIBLE, 0);
1572}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573EXPORT_SYMBOL(wake_up_process);
1574
Ingo Molnar36c8b582006-07-03 00:25:41 -07001575int fastcall wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576{
1577 return try_to_wake_up(p, state, 0);
1578}
1579
Peter Williamsbc947632006-12-19 12:48:50 +10001580static void task_running_tick(struct rq *rq, struct task_struct *p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581/*
1582 * Perform scheduler related setup for a newly forked process p.
1583 * p is forked by current.
1584 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001585void fastcall sched_fork(struct task_struct *p, int clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586{
Nick Piggin476d1392005-06-25 14:57:29 -07001587 int cpu = get_cpu();
1588
1589#ifdef CONFIG_SMP
1590 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
1591#endif
1592 set_task_cpu(p, cpu);
1593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 /*
1595 * We mark the process as running here, but have not actually
1596 * inserted it onto the runqueue yet. This guarantees that
1597 * nobody will actually run it, and a signal or other external
1598 * event cannot wake it up and insert it on the runqueue either.
1599 */
1600 p->state = TASK_RUNNING;
Ingo Molnarb29739f2006-06-27 02:54:51 -07001601
1602 /*
1603 * Make sure we do not leak PI boosting priority to the child:
1604 */
1605 p->prio = current->normal_prio;
1606
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 INIT_LIST_HEAD(&p->run_list);
1608 p->array = NULL;
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001609#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
1610 if (unlikely(sched_info_on()))
1611 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08001613#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07001614 p->oncpu = 0;
1615#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07001617 /* Want to start with kernel preemption disabled. */
Al Viroa1261f542005-11-13 16:06:55 -08001618 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619#endif
1620 /*
1621 * Share the timeslice between parent and child, thus the
1622 * total amount of pending timeslices in the system doesn't change,
1623 * resulting in more scheduling fairness.
1624 */
1625 local_irq_disable();
1626 p->time_slice = (current->time_slice + 1) >> 1;
1627 /*
1628 * The remainder of the first timeslice might be recovered by
1629 * the parent if the child exits early enough.
1630 */
1631 p->first_time_slice = 1;
1632 current->time_slice >>= 1;
1633 p->timestamp = sched_clock();
1634 if (unlikely(!current->time_slice)) {
1635 /*
1636 * This case is rare, it happens when the parent has only
1637 * a single jiffy left from its timeslice. Taking the
1638 * runqueue lock is not a problem.
1639 */
1640 current->time_slice = 1;
Peter Williamsbc947632006-12-19 12:48:50 +10001641 task_running_tick(cpu_rq(cpu), current);
Nick Piggin476d1392005-06-25 14:57:29 -07001642 }
1643 local_irq_enable();
1644 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645}
1646
1647/*
1648 * wake_up_new_task - wake up a newly created task for the first time.
1649 *
1650 * This function will do some initial scheduler statistics housekeeping
1651 * that must be done for every newly created context, then puts the task
1652 * on the runqueue and wakes it.
1653 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001654void fastcall wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001656 struct rq *rq, *this_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 unsigned long flags;
1658 int this_cpu, cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
1660 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 BUG_ON(p->state != TASK_RUNNING);
Nick Piggin147cbb42005-06-25 14:57:19 -07001662 this_cpu = smp_processor_id();
1663 cpu = task_cpu(p);
1664
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 /*
1666 * We decrease the sleep average of forking parents
1667 * and children as well, to keep max-interactive tasks
1668 * from forking tasks that are max-interactive. The parent
1669 * (current) is done further down, under its lock.
1670 */
1671 p->sleep_avg = JIFFIES_TO_NS(CURRENT_BONUS(p) *
1672 CHILD_PENALTY / 100 * MAX_SLEEP_AVG / MAX_BONUS);
1673
1674 p->prio = effective_prio(p);
1675
1676 if (likely(cpu == this_cpu)) {
1677 if (!(clone_flags & CLONE_VM)) {
1678 /*
1679 * The VM isn't cloned, so we're in a good position to
1680 * do child-runs-first in anticipation of an exec. This
1681 * usually avoids a lot of COW overhead.
1682 */
1683 if (unlikely(!current->array))
1684 __activate_task(p, rq);
1685 else {
1686 p->prio = current->prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07001687 p->normal_prio = current->normal_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 list_add_tail(&p->run_list, &current->run_list);
1689 p->array = current->array;
1690 p->array->nr_active++;
Peter Williams2dd73a42006-06-27 02:54:34 -07001691 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 }
1693 set_need_resched();
1694 } else
1695 /* Run child last */
1696 __activate_task(p, rq);
1697 /*
1698 * We skip the following code due to cpu == this_cpu
1699 *
1700 * task_rq_unlock(rq, &flags);
1701 * this_rq = task_rq_lock(current, &flags);
1702 */
1703 this_rq = rq;
1704 } else {
1705 this_rq = cpu_rq(this_cpu);
1706
1707 /*
1708 * Not the local CPU - must adjust timestamp. This should
1709 * get optimised away in the !CONFIG_SMP case.
1710 */
Mike Galbraithb18ec802006-12-10 02:20:31 -08001711 p->timestamp = (p->timestamp - this_rq->most_recent_timestamp)
1712 + rq->most_recent_timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 __activate_task(p, rq);
1714 if (TASK_PREEMPTS_CURR(p, rq))
1715 resched_task(rq->curr);
1716
1717 /*
1718 * Parent and child are on different CPUs, now get the
1719 * parent runqueue to update the parent's ->sleep_avg:
1720 */
1721 task_rq_unlock(rq, &flags);
1722 this_rq = task_rq_lock(current, &flags);
1723 }
1724 current->sleep_avg = JIFFIES_TO_NS(CURRENT_BONUS(current) *
1725 PARENT_PENALTY / 100 * MAX_SLEEP_AVG / MAX_BONUS);
1726 task_rq_unlock(this_rq, &flags);
1727}
1728
1729/*
1730 * Potentially available exiting-child timeslices are
1731 * retrieved here - this way the parent does not get
1732 * penalized for creating too many threads.
1733 *
1734 * (this cannot be used to 'generate' timeslices
1735 * artificially, because any timeslice recovered here
1736 * was given away by the parent in the first place.)
1737 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001738void fastcall sched_exit(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739{
1740 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001741 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
1743 /*
1744 * If the child was a (relative-) CPU hog then decrease
1745 * the sleep_avg of the parent as well.
1746 */
1747 rq = task_rq_lock(p->parent, &flags);
Oleg Nesterov889dfaf2005-11-04 18:54:30 +03001748 if (p->first_time_slice && task_cpu(p) == task_cpu(p->parent)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 p->parent->time_slice += p->time_slice;
1750 if (unlikely(p->parent->time_slice > task_timeslice(p)))
1751 p->parent->time_slice = task_timeslice(p);
1752 }
1753 if (p->sleep_avg < p->parent->sleep_avg)
1754 p->parent->sleep_avg = p->parent->sleep_avg /
1755 (EXIT_WEIGHT + 1) * EXIT_WEIGHT + p->sleep_avg /
1756 (EXIT_WEIGHT + 1);
1757 task_rq_unlock(rq, &flags);
1758}
1759
1760/**
Nick Piggin4866cde2005-06-25 14:57:23 -07001761 * prepare_task_switch - prepare to switch tasks
1762 * @rq: the runqueue preparing to switch
1763 * @next: the task we are going to switch to.
1764 *
1765 * This is called with the rq lock held and interrupts off. It must
1766 * be paired with a subsequent finish_task_switch after the context
1767 * switch.
1768 *
1769 * prepare_task_switch sets up locking and calls architecture specific
1770 * hooks.
1771 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001772static inline void prepare_task_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07001773{
1774 prepare_lock_switch(rq, next);
1775 prepare_arch_switch(next);
1776}
1777
1778/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04001780 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 * @prev: the thread we just switched away from.
1782 *
Nick Piggin4866cde2005-06-25 14:57:23 -07001783 * finish_task_switch must be called after the context switch, paired
1784 * with a prepare_task_switch call before the context switch.
1785 * finish_task_switch will reconcile locking set up by prepare_task_switch,
1786 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 *
1788 * Note that we may have delayed dropping an mm in context_switch(). If
1789 * so, we finish that here outside of the runqueue lock. (Doing it
1790 * with the lock held can cause deadlocks; see schedule() for
1791 * details.)
1792 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001793static inline void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 __releases(rq->lock)
1795{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07001797 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
1799 rq->prev_mm = NULL;
1800
1801 /*
1802 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07001803 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07001804 * schedule one last time. The schedule call will never return, and
1805 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07001806 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 * still held, otherwise prev could be scheduled on another cpu, die
1808 * there before we look at prev->state, and then the reference would
1809 * be dropped twice.
1810 * Manfred Spraul <manfred@colorfullife.com>
1811 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07001812 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07001813 finish_arch_switch(prev);
1814 finish_lock_switch(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 if (mm)
1816 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07001817 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08001818 /*
1819 * Remove function-return probe instances associated with this
1820 * task and put them back on the free list.
1821 */
1822 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08001824 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825}
1826
1827/**
1828 * schedule_tail - first thing a freshly forked thread must call.
1829 * @prev: the thread we just switched away from.
1830 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001831asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 __releases(rq->lock)
1833{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001834 struct rq *rq = this_rq();
1835
Nick Piggin4866cde2005-06-25 14:57:23 -07001836 finish_task_switch(rq, prev);
1837#ifdef __ARCH_WANT_UNLOCKED_CTXSW
1838 /* In this case, finish_task_switch does not reenable preemption */
1839 preempt_enable();
1840#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 if (current->set_child_tid)
1842 put_user(current->pid, current->set_child_tid);
1843}
1844
1845/*
1846 * context_switch - switch to the new MM and the new
1847 * thread's register state.
1848 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001849static inline struct task_struct *
Ingo Molnar70b97a72006-07-03 00:25:42 -07001850context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07001851 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852{
1853 struct mm_struct *mm = next->mm;
1854 struct mm_struct *oldmm = prev->active_mm;
1855
Nick Pigginbeed33a2006-10-11 01:21:52 -07001856 if (!mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 next->active_mm = oldmm;
1858 atomic_inc(&oldmm->mm_count);
1859 enter_lazy_tlb(oldmm, next);
1860 } else
1861 switch_mm(oldmm, mm, next);
1862
Nick Pigginbeed33a2006-10-11 01:21:52 -07001863 if (!prev->mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 prev->active_mm = NULL;
1865 WARN_ON(rq->prev_mm);
1866 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
1881 return prev;
1882}
1883
1884/*
1885 * nr_running, nr_uninterruptible and nr_context_switches:
1886 *
1887 * externally visible scheduler statistics: current number of runnable
1888 * threads, current number of uninterruptible-sleeping threads, total
1889 * number of context switches performed since bootup.
1890 */
1891unsigned long nr_running(void)
1892{
1893 unsigned long i, sum = 0;
1894
1895 for_each_online_cpu(i)
1896 sum += cpu_rq(i)->nr_running;
1897
1898 return sum;
1899}
1900
1901unsigned long nr_uninterruptible(void)
1902{
1903 unsigned long i, sum = 0;
1904
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001905 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 sum += cpu_rq(i)->nr_uninterruptible;
1907
1908 /*
1909 * Since we read the counters lockless, it might be slightly
1910 * inaccurate. Do not allow it to go below zero though:
1911 */
1912 if (unlikely((long)sum < 0))
1913 sum = 0;
1914
1915 return sum;
1916}
1917
1918unsigned long long nr_context_switches(void)
1919{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07001920 int i;
1921 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001923 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 sum += cpu_rq(i)->nr_switches;
1925
1926 return sum;
1927}
1928
1929unsigned long nr_iowait(void)
1930{
1931 unsigned long i, sum = 0;
1932
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001933 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 sum += atomic_read(&cpu_rq(i)->nr_iowait);
1935
1936 return sum;
1937}
1938
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08001939unsigned long nr_active(void)
1940{
1941 unsigned long i, running = 0, uninterruptible = 0;
1942
1943 for_each_online_cpu(i) {
1944 running += cpu_rq(i)->nr_running;
1945 uninterruptible += cpu_rq(i)->nr_uninterruptible;
1946 }
1947
1948 if (unlikely((long)uninterruptible < 0))
1949 uninterruptible = 0;
1950
1951 return running + uninterruptible;
1952}
1953
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954#ifdef CONFIG_SMP
1955
1956/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07001957 * Is this task likely cache-hot:
1958 */
1959static inline int
1960task_hot(struct task_struct *p, unsigned long long now, struct sched_domain *sd)
1961{
1962 return (long long)(now - p->last_ran) < (long long)sd->cache_hot_time;
1963}
1964
1965/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 * double_rq_lock - safely lock two runqueues
1967 *
1968 * Note this does not disable interrupts like task_rq_lock,
1969 * you need to do so manually before calling.
1970 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001971static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 __acquires(rq1->lock)
1973 __acquires(rq2->lock)
1974{
Kirill Korotaev054b9102006-12-10 02:20:11 -08001975 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 if (rq1 == rq2) {
1977 spin_lock(&rq1->lock);
1978 __acquire(rq2->lock); /* Fake it out ;) */
1979 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001980 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 spin_lock(&rq1->lock);
1982 spin_lock(&rq2->lock);
1983 } else {
1984 spin_lock(&rq2->lock);
1985 spin_lock(&rq1->lock);
1986 }
1987 }
1988}
1989
1990/*
1991 * double_rq_unlock - safely unlock two runqueues
1992 *
1993 * Note this does not restore interrupts like task_rq_unlock,
1994 * you need to do so manually after calling.
1995 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001996static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 __releases(rq1->lock)
1998 __releases(rq2->lock)
1999{
2000 spin_unlock(&rq1->lock);
2001 if (rq1 != rq2)
2002 spin_unlock(&rq2->lock);
2003 else
2004 __release(rq2->lock);
2005}
2006
2007/*
2008 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
2009 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002010static void double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 __releases(this_rq->lock)
2012 __acquires(busiest->lock)
2013 __acquires(this_rq->lock)
2014{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002015 if (unlikely(!irqs_disabled())) {
2016 /* printk() doesn't work good under rq->lock */
2017 spin_unlock(&this_rq->lock);
2018 BUG_ON(1);
2019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002021 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 spin_unlock(&this_rq->lock);
2023 spin_lock(&busiest->lock);
2024 spin_lock(&this_rq->lock);
2025 } else
2026 spin_lock(&busiest->lock);
2027 }
2028}
2029
2030/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 * If dest_cpu is allowed for this process, migrate the task to it.
2032 * This is accomplished by forcing the cpu_allowed mask to only
2033 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
2034 * the cpu_allowed mask is restored.
2035 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002036static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002038 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002040 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
2042 rq = task_rq_lock(p, &flags);
2043 if (!cpu_isset(dest_cpu, p->cpus_allowed)
2044 || unlikely(cpu_is_offline(dest_cpu)))
2045 goto out;
2046
2047 /* force the process onto the specified CPU */
2048 if (migrate_task(p, dest_cpu, &req)) {
2049 /* Need to wait for migration thread (might exit: take ref). */
2050 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002051
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 get_task_struct(mt);
2053 task_rq_unlock(rq, &flags);
2054 wake_up_process(mt);
2055 put_task_struct(mt);
2056 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07002057
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 return;
2059 }
2060out:
2061 task_rq_unlock(rq, &flags);
2062}
2063
2064/*
Nick Piggin476d1392005-06-25 14:57:29 -07002065 * sched_exec - execve() is a valuable balancing opportunity, because at
2066 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 */
2068void sched_exec(void)
2069{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002071 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002073 if (new_cpu != this_cpu)
2074 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075}
2076
2077/*
2078 * pull_task - move a task from a remote runqueue to the local runqueue.
2079 * Both runqueues must be locked.
2080 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002081static void pull_task(struct rq *src_rq, struct prio_array *src_array,
2082 struct task_struct *p, struct rq *this_rq,
2083 struct prio_array *this_array, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084{
2085 dequeue_task(p, src_array);
Peter Williams2dd73a42006-06-27 02:54:34 -07002086 dec_nr_running(p, src_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 set_task_cpu(p, this_cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07002088 inc_nr_running(p, this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 enqueue_task(p, this_array);
Mike Galbraithb18ec802006-12-10 02:20:31 -08002090 p->timestamp = (p->timestamp - src_rq->most_recent_timestamp)
2091 + this_rq->most_recent_timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 /*
2093 * Note that idle threads have a prio of MAX_PRIO, for this test
2094 * to be always true for them.
2095 */
2096 if (TASK_PREEMPTS_CURR(p, this_rq))
2097 resched_task(this_rq->curr);
2098}
2099
2100/*
2101 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
2102 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002103static
Ingo Molnar70b97a72006-07-03 00:25:42 -07002104int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002105 struct sched_domain *sd, enum idle_type idle,
2106 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107{
2108 /*
2109 * We do not migrate tasks that are:
2110 * 1) running (obviously), or
2111 * 2) cannot be migrated to this CPU due to cpus_allowed, or
2112 * 3) are cache-hot on their current CPU.
2113 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 if (!cpu_isset(this_cpu, p->cpus_allowed))
2115 return 0;
Nick Piggin81026792005-06-25 14:57:07 -07002116 *all_pinned = 0;
2117
2118 if (task_running(rq, p))
2119 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120
2121 /*
2122 * Aggressive migration if:
Nick Piggincafb20c2005-06-25 14:57:17 -07002123 * 1) task is cache cold, or
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 * 2) too many balance attempts have failed.
2125 */
2126
Mike Galbraithb18ec802006-12-10 02:20:31 -08002127 if (sd->nr_balance_failed > sd->cache_nice_tries) {
2128#ifdef CONFIG_SCHEDSTATS
2129 if (task_hot(p, rq->most_recent_timestamp, sd))
2130 schedstat_inc(sd, lb_hot_gained[idle]);
2131#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 return 1;
Mike Galbraithb18ec802006-12-10 02:20:31 -08002133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
Mike Galbraithb18ec802006-12-10 02:20:31 -08002135 if (task_hot(p, rq->most_recent_timestamp, sd))
Nick Piggin81026792005-06-25 14:57:07 -07002136 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 return 1;
2138}
2139
Peter Williams615052d2006-06-27 02:54:37 -07002140#define rq_best_prio(rq) min((rq)->curr->prio, (rq)->best_expired_prio)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002141
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002143 * move_tasks tries to move up to max_nr_move tasks and max_load_move weighted
2144 * load from busiest to this_rq, as part of a balancing operation within
2145 * "domain". Returns the number of tasks moved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 *
2147 * Called with both runqueues locked.
2148 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002149static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams2dd73a42006-06-27 02:54:34 -07002150 unsigned long max_nr_move, unsigned long max_load_move,
2151 struct sched_domain *sd, enum idle_type idle,
2152 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153{
Ingo Molnar48f24c42006-07-03 00:25:40 -07002154 int idx, pulled = 0, pinned = 0, this_best_prio, best_prio,
2155 best_prio_seen, skip_for_load;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002156 struct prio_array *array, *dst_array;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 struct list_head *head, *curr;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002158 struct task_struct *tmp;
Peter Williams2dd73a42006-06-27 02:54:34 -07002159 long rem_load_move;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
Peter Williams2dd73a42006-06-27 02:54:34 -07002161 if (max_nr_move == 0 || max_load_move == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 goto out;
2163
Peter Williams2dd73a42006-06-27 02:54:34 -07002164 rem_load_move = max_load_move;
Nick Piggin81026792005-06-25 14:57:07 -07002165 pinned = 1;
Peter Williams615052d2006-06-27 02:54:37 -07002166 this_best_prio = rq_best_prio(this_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07002167 best_prio = rq_best_prio(busiest);
Peter Williams615052d2006-06-27 02:54:37 -07002168 /*
2169 * Enable handling of the case where there is more than one task
2170 * with the best priority. If the current running task is one
Ingo Molnar48f24c42006-07-03 00:25:40 -07002171 * of those with prio==best_prio we know it won't be moved
Peter Williams615052d2006-06-27 02:54:37 -07002172 * and therefore it's safe to override the skip (based on load) of
2173 * any task we find with that prio.
2174 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07002175 best_prio_seen = best_prio == busiest->curr->prio;
Nick Piggin81026792005-06-25 14:57:07 -07002176
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 /*
2178 * We first consider expired tasks. Those will likely not be
2179 * executed in the near future, and they are most likely to
2180 * be cache-cold, thus switching CPUs has the least effect
2181 * on them.
2182 */
2183 if (busiest->expired->nr_active) {
2184 array = busiest->expired;
2185 dst_array = this_rq->expired;
2186 } else {
2187 array = busiest->active;
2188 dst_array = this_rq->active;
2189 }
2190
2191new_array:
2192 /* Start searching at priority 0: */
2193 idx = 0;
2194skip_bitmap:
2195 if (!idx)
2196 idx = sched_find_first_bit(array->bitmap);
2197 else
2198 idx = find_next_bit(array->bitmap, MAX_PRIO, idx);
2199 if (idx >= MAX_PRIO) {
2200 if (array == busiest->expired && busiest->active->nr_active) {
2201 array = busiest->active;
2202 dst_array = this_rq->active;
2203 goto new_array;
2204 }
2205 goto out;
2206 }
2207
2208 head = array->queue + idx;
2209 curr = head->prev;
2210skip_queue:
Ingo Molnar36c8b582006-07-03 00:25:41 -07002211 tmp = list_entry(curr, struct task_struct, run_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
2213 curr = curr->prev;
2214
Peter Williams50ddd962006-06-27 02:54:36 -07002215 /*
2216 * To help distribute high priority tasks accross CPUs we don't
2217 * skip a task if it will be the highest priority task (i.e. smallest
2218 * prio value) on its new queue regardless of its load weight
2219 */
Peter Williams615052d2006-06-27 02:54:37 -07002220 skip_for_load = tmp->load_weight > rem_load_move;
2221 if (skip_for_load && idx < this_best_prio)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002222 skip_for_load = !best_prio_seen && idx == best_prio;
Peter Williams615052d2006-06-27 02:54:37 -07002223 if (skip_for_load ||
Peter Williams2dd73a42006-06-27 02:54:34 -07002224 !can_migrate_task(tmp, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07002225
2226 best_prio_seen |= idx == best_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 if (curr != head)
2228 goto skip_queue;
2229 idx++;
2230 goto skip_bitmap;
2231 }
2232
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 pull_task(busiest, array, tmp, this_rq, dst_array, this_cpu);
2234 pulled++;
Peter Williams2dd73a42006-06-27 02:54:34 -07002235 rem_load_move -= tmp->load_weight;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
Peter Williams2dd73a42006-06-27 02:54:34 -07002237 /*
2238 * We only want to steal up to the prescribed number of tasks
2239 * and the prescribed amount of weighted load.
2240 */
2241 if (pulled < max_nr_move && rem_load_move > 0) {
Peter Williams615052d2006-06-27 02:54:37 -07002242 if (idx < this_best_prio)
2243 this_best_prio = idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 if (curr != head)
2245 goto skip_queue;
2246 idx++;
2247 goto skip_bitmap;
2248 }
2249out:
2250 /*
2251 * Right now, this is the only place pull_task() is called,
2252 * so we can safely collect pull_task() stats here rather than
2253 * inside pull_task().
2254 */
2255 schedstat_add(sd, lb_gained[idle], pulled);
Nick Piggin81026792005-06-25 14:57:07 -07002256
2257 if (all_pinned)
2258 *all_pinned = pinned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 return pulled;
2260}
2261
2262/*
2263 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07002264 * domain. It calculates and returns the amount of weighted load which
2265 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 */
2267static struct sched_group *
2268find_busiest_group(struct sched_domain *sd, int this_cpu,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002269 unsigned long *imbalance, enum idle_type idle, int *sd_idle,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002270 cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271{
2272 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
2273 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002274 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07002275 unsigned long busiest_load_per_task, busiest_nr_running;
2276 unsigned long this_load_per_task, this_nr_running;
Nick Piggin78979862005-06-25 14:57:13 -07002277 int load_idx;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002278#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2279 int power_savings_balance = 1;
2280 unsigned long leader_nr_running = 0, min_load_per_task = 0;
2281 unsigned long min_nr_running = ULONG_MAX;
2282 struct sched_group *group_min = NULL, *group_leader = NULL;
2283#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
2285 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002286 busiest_load_per_task = busiest_nr_running = 0;
2287 this_load_per_task = this_nr_running = 0;
Nick Piggin78979862005-06-25 14:57:13 -07002288 if (idle == NOT_IDLE)
2289 load_idx = sd->busy_idx;
2290 else if (idle == NEWLY_IDLE)
2291 load_idx = sd->newidle_idx;
2292 else
2293 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
2295 do {
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002296 unsigned long load, group_capacity;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 int local_group;
2298 int i;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002299 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002300 unsigned long sum_nr_running, sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
2302 local_group = cpu_isset(this_cpu, group->cpumask);
2303
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002304 if (local_group)
2305 balance_cpu = first_cpu(group->cpumask);
2306
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07002308 sum_weighted_load = sum_nr_running = avg_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
2310 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002311 struct rq *rq;
2312
2313 if (!cpu_isset(i, *cpus))
2314 continue;
2315
2316 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07002317
Nick Piggin5969fe02005-09-10 00:26:19 -07002318 if (*sd_idle && !idle_cpu(i))
2319 *sd_idle = 0;
2320
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002322 if (local_group) {
2323 if (idle_cpu(i) && !first_idle_cpu) {
2324 first_idle_cpu = 1;
2325 balance_cpu = i;
2326 }
2327
Nick Piggina2000572006-02-10 01:51:02 -08002328 load = target_load(i, load_idx);
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002329 } else
Nick Piggina2000572006-02-10 01:51:02 -08002330 load = source_load(i, load_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
2332 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07002333 sum_nr_running += rq->nr_running;
2334 sum_weighted_load += rq->raw_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 }
2336
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002337 /*
2338 * First idle cpu or the first cpu(busiest) in this sched group
2339 * is eligible for doing load balancing at this and above
2340 * domains.
2341 */
2342 if (local_group && balance_cpu != this_cpu && balance) {
2343 *balance = 0;
2344 goto ret;
2345 }
2346
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 total_load += avg_load;
2348 total_pwr += group->cpu_power;
2349
2350 /* Adjust by relative CPU power of the group */
2351 avg_load = (avg_load * SCHED_LOAD_SCALE) / group->cpu_power;
2352
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002353 group_capacity = group->cpu_power / SCHED_LOAD_SCALE;
2354
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 if (local_group) {
2356 this_load = avg_load;
2357 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002358 this_nr_running = sum_nr_running;
2359 this_load_per_task = sum_weighted_load;
2360 } else if (avg_load > max_load &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002361 sum_nr_running > group_capacity) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 max_load = avg_load;
2363 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002364 busiest_nr_running = sum_nr_running;
2365 busiest_load_per_task = sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002367
2368#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2369 /*
2370 * Busy processors will not participate in power savings
2371 * balance.
2372 */
2373 if (idle == NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
2374 goto group_next;
2375
2376 /*
2377 * If the local group is idle or completely loaded
2378 * no need to do power savings balance at this domain
2379 */
2380 if (local_group && (this_nr_running >= group_capacity ||
2381 !this_nr_running))
2382 power_savings_balance = 0;
2383
2384 /*
2385 * If a group is already running at full capacity or idle,
2386 * don't include that group in power savings calculations
2387 */
2388 if (!power_savings_balance || sum_nr_running >= group_capacity
2389 || !sum_nr_running)
2390 goto group_next;
2391
2392 /*
2393 * Calculate the group which has the least non-idle load.
2394 * This is the group from where we need to pick up the load
2395 * for saving power
2396 */
2397 if ((sum_nr_running < min_nr_running) ||
2398 (sum_nr_running == min_nr_running &&
2399 first_cpu(group->cpumask) <
2400 first_cpu(group_min->cpumask))) {
2401 group_min = group;
2402 min_nr_running = sum_nr_running;
2403 min_load_per_task = sum_weighted_load /
2404 sum_nr_running;
2405 }
2406
2407 /*
2408 * Calculate the group which is almost near its
2409 * capacity but still has some space to pick up some load
2410 * from other group and save more power
2411 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07002412 if (sum_nr_running <= group_capacity - 1) {
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002413 if (sum_nr_running > leader_nr_running ||
2414 (sum_nr_running == leader_nr_running &&
2415 first_cpu(group->cpumask) >
2416 first_cpu(group_leader->cpumask))) {
2417 group_leader = group;
2418 leader_nr_running = sum_nr_running;
2419 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002420 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002421group_next:
2422#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 group = group->next;
2424 } while (group != sd->groups);
2425
Peter Williams2dd73a42006-06-27 02:54:34 -07002426 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 goto out_balanced;
2428
2429 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
2430
2431 if (this_load >= avg_load ||
2432 100*max_load <= sd->imbalance_pct*this_load)
2433 goto out_balanced;
2434
Peter Williams2dd73a42006-06-27 02:54:34 -07002435 busiest_load_per_task /= busiest_nr_running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 /*
2437 * We're trying to get all the cpus to the average_load, so we don't
2438 * want to push ourselves above the average load, nor do we wish to
2439 * reduce the max loaded cpu below the average load, as either of these
2440 * actions would just result in more rebalancing later, and ping-pong
2441 * tasks around. Thus we look for the minimum possible imbalance.
2442 * Negative imbalances (*we* are more loaded than anyone else) will
2443 * be counted as no imbalance for these purposes -- we can't fix that
2444 * by pulling tasks to us. Be careful of negative numbers as they'll
2445 * appear as very large values with unsigned longs.
2446 */
Peter Williams2dd73a42006-06-27 02:54:34 -07002447 if (max_load <= busiest_load_per_task)
2448 goto out_balanced;
2449
2450 /*
2451 * In the presence of smp nice balancing, certain scenarios can have
2452 * max load less than avg load(as we skip the groups at or below
2453 * its cpu_power, while calculating max_load..)
2454 */
2455 if (max_load < avg_load) {
2456 *imbalance = 0;
2457 goto small_imbalance;
2458 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002459
2460 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07002461 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002462
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 /* How much load to actually move to equalise the imbalance */
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002464 *imbalance = min(max_pull * busiest->cpu_power,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 (avg_load - this_load) * this->cpu_power)
2466 / SCHED_LOAD_SCALE;
2467
Peter Williams2dd73a42006-06-27 02:54:34 -07002468 /*
2469 * if *imbalance is less than the average load per runnable task
2470 * there is no gaurantee that any tasks will be moved so we'll have
2471 * a think about bumping its value to force at least one task to be
2472 * moved
2473 */
2474 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07002475 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07002476 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477
Peter Williams2dd73a42006-06-27 02:54:34 -07002478small_imbalance:
2479 pwr_move = pwr_now = 0;
2480 imbn = 2;
2481 if (this_nr_running) {
2482 this_load_per_task /= this_nr_running;
2483 if (busiest_load_per_task > this_load_per_task)
2484 imbn = 1;
2485 } else
2486 this_load_per_task = SCHED_LOAD_SCALE;
2487
2488 if (max_load - this_load >= busiest_load_per_task * imbn) {
2489 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 return busiest;
2491 }
2492
2493 /*
2494 * OK, we don't have enough imbalance to justify moving tasks,
2495 * however we may be able to increase total CPU power used by
2496 * moving them.
2497 */
2498
Peter Williams2dd73a42006-06-27 02:54:34 -07002499 pwr_now += busiest->cpu_power *
2500 min(busiest_load_per_task, max_load);
2501 pwr_now += this->cpu_power *
2502 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 pwr_now /= SCHED_LOAD_SCALE;
2504
2505 /* Amount of load we'd subtract */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08002506 tmp = busiest_load_per_task * SCHED_LOAD_SCALE /
2507 busiest->cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 if (max_load > tmp)
Peter Williams2dd73a42006-06-27 02:54:34 -07002509 pwr_move += busiest->cpu_power *
2510 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511
2512 /* Amount of load we'd add */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08002513 if (max_load * busiest->cpu_power <
2514 busiest_load_per_task * SCHED_LOAD_SCALE)
2515 tmp = max_load * busiest->cpu_power / this->cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 else
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08002517 tmp = busiest_load_per_task * SCHED_LOAD_SCALE /
2518 this->cpu_power;
2519 pwr_move += this->cpu_power *
2520 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 pwr_move /= SCHED_LOAD_SCALE;
2522
2523 /* Move if we gain throughput */
2524 if (pwr_move <= pwr_now)
2525 goto out_balanced;
2526
Peter Williams2dd73a42006-06-27 02:54:34 -07002527 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 }
2529
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 return busiest;
2531
2532out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002533#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2534 if (idle == NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
2535 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002537 if (this == group_leader && group_leader != group_min) {
2538 *imbalance = min_load_per_task;
2539 return group_min;
2540 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002541#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002542ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 *imbalance = 0;
2544 return NULL;
2545}
2546
2547/*
2548 * find_busiest_queue - find the busiest runqueue among the cpus in group.
2549 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002550static struct rq *
Ingo Molnar48f24c42006-07-03 00:25:40 -07002551find_busiest_queue(struct sched_group *group, enum idle_type idle,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002552 unsigned long imbalance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002554 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07002555 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 int i;
2557
2558 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002559
2560 if (!cpu_isset(i, *cpus))
2561 continue;
2562
Ingo Molnar48f24c42006-07-03 00:25:40 -07002563 rq = cpu_rq(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
Ingo Molnar48f24c42006-07-03 00:25:40 -07002565 if (rq->nr_running == 1 && rq->raw_weighted_load > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07002566 continue;
2567
Ingo Molnar48f24c42006-07-03 00:25:40 -07002568 if (rq->raw_weighted_load > max_load) {
2569 max_load = rq->raw_weighted_load;
2570 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 }
2572 }
2573
2574 return busiest;
2575}
2576
2577/*
Nick Piggin77391d72005-06-25 14:57:30 -07002578 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
2579 * so long as it is large enough.
2580 */
2581#define MAX_PINNED_INTERVAL 512
2582
Ingo Molnar48f24c42006-07-03 00:25:40 -07002583static inline unsigned long minus_1_or_zero(unsigned long n)
2584{
2585 return n > 0 ? n - 1 : 0;
2586}
2587
Nick Piggin77391d72005-06-25 14:57:30 -07002588/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 * Check this_cpu to ensure it is balanced within domain. Attempt to move
2590 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002592static int load_balance(int this_cpu, struct rq *this_rq,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002593 struct sched_domain *sd, enum idle_type idle,
2594 int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595{
Ingo Molnar48f24c42006-07-03 00:25:40 -07002596 int nr_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002599 struct rq *busiest;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002600 cpumask_t cpus = CPU_MASK_ALL;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002601 unsigned long flags;
Nick Piggin5969fe02005-09-10 00:26:19 -07002602
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002603 /*
2604 * When power savings policy is enabled for the parent domain, idle
2605 * sibling can pick up load irrespective of busy siblings. In this case,
2606 * let the state of idle sibling percolate up as IDLE, instead of
2607 * portraying it as NOT_IDLE.
2608 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002609 if (idle != NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002610 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002611 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 schedstat_inc(sd, lb_cnt[idle]);
2614
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002615redo:
2616 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002617 &cpus, balance);
2618
Chen, Kenneth W06066712006-12-10 02:20:35 -08002619 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002620 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002621
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 if (!group) {
2623 schedstat_inc(sd, lb_nobusyg[idle]);
2624 goto out_balanced;
2625 }
2626
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002627 busiest = find_busiest_queue(group, idle, imbalance, &cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 if (!busiest) {
2629 schedstat_inc(sd, lb_nobusyq[idle]);
2630 goto out_balanced;
2631 }
2632
Nick Piggindb935db2005-06-25 14:57:11 -07002633 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634
2635 schedstat_add(sd, lb_imbalance[idle], imbalance);
2636
2637 nr_moved = 0;
2638 if (busiest->nr_running > 1) {
2639 /*
2640 * Attempt to move tasks. If find_busiest_group has found
2641 * an imbalance but busiest->nr_running <= 1, the group is
2642 * still unbalanced. nr_moved simply stays zero, so it is
2643 * correctly treated as an imbalance.
2644 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002645 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07002646 double_rq_lock(this_rq, busiest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 nr_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07002648 minus_1_or_zero(busiest->nr_running),
2649 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07002650 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002651 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07002652
2653 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002654 if (unlikely(all_pinned)) {
2655 cpu_clear(cpu_of(busiest), cpus);
2656 if (!cpus_empty(cpus))
2657 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07002658 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 }
Nick Piggin81026792005-06-25 14:57:07 -07002661
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 if (!nr_moved) {
2663 schedstat_inc(sd, lb_failed[idle]);
2664 sd->nr_balance_failed++;
2665
2666 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002668 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07002669
2670 /* don't kick the migration_thread, if the curr
2671 * task on busiest cpu can't be moved to this_cpu
2672 */
2673 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002674 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07002675 all_pinned = 1;
2676 goto out_one_pinned;
2677 }
2678
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 if (!busiest->active_balance) {
2680 busiest->active_balance = 1;
2681 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07002682 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002684 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07002685 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 wake_up_process(busiest->migration_thread);
2687
2688 /*
2689 * We've kicked active balancing, reset the failure
2690 * counter.
2691 */
Nick Piggin39507452005-06-25 14:57:09 -07002692 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 }
Nick Piggin81026792005-06-25 14:57:07 -07002694 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 sd->nr_balance_failed = 0;
2696
Nick Piggin81026792005-06-25 14:57:07 -07002697 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 /* We were unbalanced, so reset the balancing interval */
2699 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07002700 } else {
2701 /*
2702 * If we've begun active balancing, start to back off. This
2703 * case may not be covered by the all_pinned logic if there
2704 * is only 1 task on the busy runqueue (because we don't call
2705 * move_tasks).
2706 */
2707 if (sd->balance_interval < sd->max_interval)
2708 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 }
2710
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002711 if (!nr_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002712 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002713 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 return nr_moved;
2715
2716out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 schedstat_inc(sd, lb_balanced[idle]);
2718
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002719 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07002720
2721out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07002723 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
2724 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 sd->balance_interval *= 2;
2726
Ingo Molnar48f24c42006-07-03 00:25:40 -07002727 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002728 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002729 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 return 0;
2731}
2732
2733/*
2734 * Check this_cpu to ensure it is balanced within domain. Attempt to move
2735 * tasks if there is an imbalance.
2736 *
2737 * Called from schedule when this_rq is about to become idle (NEWLY_IDLE).
2738 * this_rq is locked.
2739 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07002740static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07002741load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742{
2743 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002744 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 unsigned long imbalance;
2746 int nr_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07002747 int sd_idle = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002748 cpumask_t cpus = CPU_MASK_ALL;
Nick Piggin5969fe02005-09-10 00:26:19 -07002749
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002750 /*
2751 * When power savings policy is enabled for the parent domain, idle
2752 * sibling can pick up load irrespective of busy siblings. In this case,
2753 * let the state of idle sibling percolate up as IDLE, instead of
2754 * portraying it as NOT_IDLE.
2755 */
2756 if (sd->flags & SD_SHARE_CPUPOWER &&
2757 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002758 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759
2760 schedstat_inc(sd, lb_cnt[NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002761redo:
2762 group = find_busiest_group(sd, this_cpu, &imbalance, NEWLY_IDLE,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002763 &sd_idle, &cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 if (!group) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 schedstat_inc(sd, lb_nobusyg[NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002766 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 }
2768
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002769 busiest = find_busiest_queue(group, NEWLY_IDLE, imbalance,
2770 &cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07002771 if (!busiest) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 schedstat_inc(sd, lb_nobusyq[NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002773 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 }
2775
Nick Piggindb935db2005-06-25 14:57:11 -07002776 BUG_ON(busiest == this_rq);
2777
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 schedstat_add(sd, lb_imbalance[NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07002779
2780 nr_moved = 0;
2781 if (busiest->nr_running > 1) {
2782 /* Attempt to move tasks */
2783 double_lock_balance(this_rq, busiest);
2784 nr_moved = move_tasks(this_rq, this_cpu, busiest,
Peter Williams2dd73a42006-06-27 02:54:34 -07002785 minus_1_or_zero(busiest->nr_running),
Nick Piggin81026792005-06-25 14:57:07 -07002786 imbalance, sd, NEWLY_IDLE, NULL);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07002787 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002788
2789 if (!nr_moved) {
2790 cpu_clear(cpu_of(busiest), cpus);
2791 if (!cpus_empty(cpus))
2792 goto redo;
2793 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07002794 }
2795
Nick Piggin5969fe02005-09-10 00:26:19 -07002796 if (!nr_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 schedstat_inc(sd, lb_failed[NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002798 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
2799 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002800 return -1;
2801 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002802 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 return nr_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002805
2806out_balanced:
2807 schedstat_inc(sd, lb_balanced[NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07002808 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002809 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002810 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002811 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002812
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002813 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814}
2815
2816/*
2817 * idle_balance is called by schedule() if this_cpu is about to become
2818 * idle. Attempts to pull tasks from other CPUs.
2819 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002820static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821{
2822 struct sched_domain *sd;
Christoph Lameter1bd77f22006-12-10 02:20:27 -08002823 int pulled_task = 0;
2824 unsigned long next_balance = jiffies + 60 * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
2826 for_each_domain(this_cpu, sd) {
2827 if (sd->flags & SD_BALANCE_NEWIDLE) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07002828 /* If we've pulled tasks over stop searching: */
Christoph Lameter1bd77f22006-12-10 02:20:27 -08002829 pulled_task = load_balance_newidle(this_cpu,
2830 this_rq, sd);
2831 if (time_after(next_balance,
2832 sd->last_balance + sd->balance_interval))
2833 next_balance = sd->last_balance
2834 + sd->balance_interval;
2835 if (pulled_task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 }
2838 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08002839 if (!pulled_task)
2840 /*
2841 * We are going idle. next_balance may be set based on
2842 * a busy processor. So reset next_balance.
2843 */
2844 this_rq->next_balance = next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845}
2846
2847/*
2848 * active_load_balance is run by migration threads. It pushes running tasks
2849 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
2850 * running on each physical CPU where possible, and avoids physical /
2851 * logical imbalances.
2852 *
2853 * Called with busiest_rq locked.
2854 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002855static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856{
Nick Piggin39507452005-06-25 14:57:09 -07002857 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002858 struct sched_domain *sd;
2859 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07002860
Ingo Molnar48f24c42006-07-03 00:25:40 -07002861 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07002862 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07002863 return;
2864
2865 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866
2867 /*
Nick Piggin39507452005-06-25 14:57:09 -07002868 * This condition is "impossible", if it occurs
2869 * we need to fix it. Originally reported by
2870 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 */
Nick Piggin39507452005-06-25 14:57:09 -07002872 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
Nick Piggin39507452005-06-25 14:57:09 -07002874 /* move a task from busiest_rq to target_rq */
2875 double_lock_balance(busiest_rq, target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876
Nick Piggin39507452005-06-25 14:57:09 -07002877 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002878 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07002879 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07002880 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07002881 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883
Ingo Molnar48f24c42006-07-03 00:25:40 -07002884 if (likely(sd)) {
2885 schedstat_inc(sd, alb_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886
Ingo Molnar48f24c42006-07-03 00:25:40 -07002887 if (move_tasks(target_rq, target_cpu, busiest_rq, 1,
2888 RTPRIO_TO_LOAD_WEIGHT(100), sd, SCHED_IDLE,
2889 NULL))
2890 schedstat_inc(sd, alb_pushed);
2891 else
2892 schedstat_inc(sd, alb_failed);
2893 }
Nick Piggin39507452005-06-25 14:57:09 -07002894 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895}
2896
Christoph Lameter7835b982006-12-10 02:20:22 -08002897static void update_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002898{
Christoph Lameter7835b982006-12-10 02:20:22 -08002899 unsigned long this_load;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002900 int i, scale;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901
Peter Williams2dd73a42006-06-27 02:54:34 -07002902 this_load = this_rq->raw_weighted_load;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002903
2904 /* Update our load: */
2905 for (i = 0, scale = 1; i < 3; i++, scale <<= 1) {
2906 unsigned long old_load, new_load;
2907
Nick Piggin78979862005-06-25 14:57:13 -07002908 old_load = this_rq->cpu_load[i];
Ingo Molnar48f24c42006-07-03 00:25:40 -07002909 new_load = this_load;
Nick Piggin78979862005-06-25 14:57:13 -07002910 /*
2911 * Round up the averaging division if load is increasing. This
2912 * prevents us from getting stuck on 9 if the load is 10, for
2913 * example.
2914 */
2915 if (new_load > old_load)
2916 new_load += scale-1;
2917 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) / scale;
2918 }
Christoph Lameter7835b982006-12-10 02:20:22 -08002919}
2920
2921/*
Christoph Lameterc9819f42006-12-10 02:20:25 -08002922 * run_rebalance_domains is triggered when needed from the scheduler tick.
Christoph Lameter7835b982006-12-10 02:20:22 -08002923 *
2924 * It checks each scheduling domain to see if it is due to be balanced,
2925 * and initiates a balancing operation if so.
2926 *
2927 * Balancing parameters are set up in arch_init_sched_domains.
2928 */
Christoph Lameter08c183f2006-12-10 02:20:29 -08002929static DEFINE_SPINLOCK(balancing);
Christoph Lameter7835b982006-12-10 02:20:22 -08002930
Christoph Lameterc9819f42006-12-10 02:20:25 -08002931static void run_rebalance_domains(struct softirq_action *h)
Christoph Lameter7835b982006-12-10 02:20:22 -08002932{
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002933 int this_cpu = smp_processor_id(), balance = 1;
Christoph Lameterc9819f42006-12-10 02:20:25 -08002934 struct rq *this_rq = cpu_rq(this_cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08002935 unsigned long interval;
2936 struct sched_domain *sd;
Christoph Lametere418e1c2006-12-10 02:20:23 -08002937 /*
2938 * We are idle if there are no processes running. This
2939 * is valid even if we are the idle process (SMT).
2940 */
2941 enum idle_type idle = !this_rq->nr_running ?
2942 SCHED_IDLE : NOT_IDLE;
Christoph Lameterc9819f42006-12-10 02:20:25 -08002943 /* Earliest time when we have to call run_rebalance_domains again */
2944 unsigned long next_balance = jiffies + 60*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945
2946 for_each_domain(this_cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 if (!(sd->flags & SD_LOAD_BALANCE))
2948 continue;
2949
2950 interval = sd->balance_interval;
2951 if (idle != SCHED_IDLE)
2952 interval *= sd->busy_factor;
2953
2954 /* scale ms to jiffies */
2955 interval = msecs_to_jiffies(interval);
2956 if (unlikely(!interval))
2957 interval = 1;
2958
Christoph Lameter08c183f2006-12-10 02:20:29 -08002959 if (sd->flags & SD_SERIALIZE) {
2960 if (!spin_trylock(&balancing))
2961 goto out;
2962 }
2963
Christoph Lameterc9819f42006-12-10 02:20:25 -08002964 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002965 if (load_balance(this_cpu, this_rq, sd, idle, &balance)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07002966 /*
2967 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07002968 * longer idle, or one of our SMT siblings is
2969 * not idle.
2970 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 idle = NOT_IDLE;
2972 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08002973 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 }
Christoph Lameter08c183f2006-12-10 02:20:29 -08002975 if (sd->flags & SD_SERIALIZE)
2976 spin_unlock(&balancing);
2977out:
Christoph Lameterc9819f42006-12-10 02:20:25 -08002978 if (time_after(next_balance, sd->last_balance + interval))
2979 next_balance = sd->last_balance + interval;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002980
2981 /*
2982 * Stop the load balance at this level. There is another
2983 * CPU in our sched group which is doing load balancing more
2984 * actively.
2985 */
2986 if (!balance)
2987 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 }
Christoph Lameterc9819f42006-12-10 02:20:25 -08002989 this_rq->next_balance = next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990}
2991#else
2992/*
2993 * on UP we do not need to balance between CPUs:
2994 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002995static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996{
2997}
2998#endif
2999
Christoph Lametere418e1c2006-12-10 02:20:23 -08003000static inline void wake_priority_sleeper(struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002#ifdef CONFIG_SCHED_SMT
Christoph Lameter571f6d22006-12-10 02:20:13 -08003003 if (!rq->nr_running)
Christoph Lametere418e1c2006-12-10 02:20:23 -08003004 return;
Christoph Lameter571f6d22006-12-10 02:20:13 -08003005
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 spin_lock(&rq->lock);
3007 /*
3008 * If an SMT sibling task has been put to sleep for priority
3009 * reasons reschedule the idle task to see if it can now run.
3010 */
Christoph Lametere418e1c2006-12-10 02:20:23 -08003011 if (rq->nr_running)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 resched_task(rq->idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 spin_unlock(&rq->lock);
3014#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015}
3016
3017DEFINE_PER_CPU(struct kernel_stat, kstat);
3018
3019EXPORT_PER_CPU_SYMBOL(kstat);
3020
3021/*
3022 * This is called on clock ticks and on context switches.
3023 * Bank in p->sched_time the ns elapsed since the last tick or switch.
3024 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003025static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07003026update_cpu_clock(struct task_struct *p, struct rq *rq, unsigned long long now)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027{
Mike Galbraithb18ec802006-12-10 02:20:31 -08003028 p->sched_time += now - p->last_ran;
3029 p->last_ran = rq->most_recent_timestamp = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030}
3031
3032/*
3033 * Return current->sched_time plus any more ns on the sched_clock
3034 * that have not yet been banked.
3035 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003036unsigned long long current_sched_time(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037{
3038 unsigned long long ns;
3039 unsigned long flags;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003040
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 local_irq_save(flags);
Mike Galbraithb18ec802006-12-10 02:20:31 -08003042 ns = p->sched_time + sched_clock() - p->last_ran;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 local_irq_restore(flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003044
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 return ns;
3046}
3047
3048/*
Linus Torvaldsf1adad72006-05-21 18:54:09 -07003049 * We place interactive tasks back into the active array, if possible.
3050 *
3051 * To guarantee that this does not starve expired tasks we ignore the
3052 * interactivity of a task if the first expired task had to wait more
3053 * than a 'reasonable' amount of time. This deadline timeout is
3054 * load-dependent, as the frequency of array switched decreases with
3055 * increasing number of running tasks. We also ignore the interactivity
3056 * if a better static_prio task has expired:
3057 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003058static inline int expired_starving(struct rq *rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003059{
3060 if (rq->curr->static_prio > rq->best_expired_prio)
3061 return 1;
3062 if (!STARVATION_LIMIT || !rq->expired_timestamp)
3063 return 0;
3064 if (jiffies - rq->expired_timestamp > STARVATION_LIMIT * rq->nr_running)
3065 return 1;
3066 return 0;
3067}
Linus Torvaldsf1adad72006-05-21 18:54:09 -07003068
3069/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 * Account user cpu time to a process.
3071 * @p: the process that the cpu time gets accounted to
3072 * @hardirq_offset: the offset to subtract from hardirq_count()
3073 * @cputime: the cpu time spent in user space since the last update
3074 */
3075void account_user_time(struct task_struct *p, cputime_t cputime)
3076{
3077 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3078 cputime64_t tmp;
3079
3080 p->utime = cputime_add(p->utime, cputime);
3081
3082 /* Add user time to cpustat. */
3083 tmp = cputime_to_cputime64(cputime);
3084 if (TASK_NICE(p) > 0)
3085 cpustat->nice = cputime64_add(cpustat->nice, tmp);
3086 else
3087 cpustat->user = cputime64_add(cpustat->user, tmp);
3088}
3089
3090/*
3091 * Account system cpu time to a process.
3092 * @p: the process that the cpu time gets accounted to
3093 * @hardirq_offset: the offset to subtract from hardirq_count()
3094 * @cputime: the cpu time spent in kernel space since the last update
3095 */
3096void account_system_time(struct task_struct *p, int hardirq_offset,
3097 cputime_t cputime)
3098{
3099 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003100 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 cputime64_t tmp;
3102
3103 p->stime = cputime_add(p->stime, cputime);
3104
3105 /* Add system time to cpustat. */
3106 tmp = cputime_to_cputime64(cputime);
3107 if (hardirq_count() - hardirq_offset)
3108 cpustat->irq = cputime64_add(cpustat->irq, tmp);
3109 else if (softirq_count())
3110 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
3111 else if (p != rq->idle)
3112 cpustat->system = cputime64_add(cpustat->system, tmp);
3113 else if (atomic_read(&rq->nr_iowait) > 0)
3114 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3115 else
3116 cpustat->idle = cputime64_add(cpustat->idle, tmp);
3117 /* Account for system time used */
3118 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119}
3120
3121/*
3122 * Account for involuntary wait time.
3123 * @p: the process from which the cpu time has been stolen
3124 * @steal: the cpu time spent in involuntary wait
3125 */
3126void account_steal_time(struct task_struct *p, cputime_t steal)
3127{
3128 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3129 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07003130 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131
3132 if (p == rq->idle) {
3133 p->stime = cputime_add(p->stime, steal);
3134 if (atomic_read(&rq->nr_iowait) > 0)
3135 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3136 else
3137 cpustat->idle = cputime64_add(cpustat->idle, tmp);
3138 } else
3139 cpustat->steal = cputime64_add(cpustat->steal, tmp);
3140}
3141
Christoph Lameter7835b982006-12-10 02:20:22 -08003142static void task_running_tick(struct rq *rq, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144 if (p->array != rq->active) {
Christoph Lameter7835b982006-12-10 02:20:22 -08003145 /* Task has expired but was not scheduled yet */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 set_tsk_need_resched(p);
Christoph Lameter7835b982006-12-10 02:20:22 -08003147 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 }
3149 spin_lock(&rq->lock);
3150 /*
3151 * The task was running during this tick - update the
3152 * time slice counter. Note: we do not update a thread's
3153 * priority until it either goes to sleep or uses up its
3154 * timeslice. This makes it possible for interactive tasks
3155 * to use up their timeslices at their highest priority levels.
3156 */
3157 if (rt_task(p)) {
3158 /*
3159 * RR tasks need a special form of timeslice management.
3160 * FIFO tasks have no timeslices.
3161 */
3162 if ((p->policy == SCHED_RR) && !--p->time_slice) {
3163 p->time_slice = task_timeslice(p);
3164 p->first_time_slice = 0;
3165 set_tsk_need_resched(p);
3166
3167 /* put it at the end of the queue: */
3168 requeue_task(p, rq->active);
3169 }
3170 goto out_unlock;
3171 }
3172 if (!--p->time_slice) {
3173 dequeue_task(p, rq->active);
3174 set_tsk_need_resched(p);
3175 p->prio = effective_prio(p);
3176 p->time_slice = task_timeslice(p);
3177 p->first_time_slice = 0;
3178
3179 if (!rq->expired_timestamp)
3180 rq->expired_timestamp = jiffies;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003181 if (!TASK_INTERACTIVE(p) || expired_starving(rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 enqueue_task(p, rq->expired);
3183 if (p->static_prio < rq->best_expired_prio)
3184 rq->best_expired_prio = p->static_prio;
3185 } else
3186 enqueue_task(p, rq->active);
3187 } else {
3188 /*
3189 * Prevent a too long timeslice allowing a task to monopolize
3190 * the CPU. We do this by splitting up the timeslice into
3191 * smaller pieces.
3192 *
3193 * Note: this does not mean the task's timeslices expire or
3194 * get lost in any way, they just might be preempted by
3195 * another task of equal priority. (one with higher
3196 * priority would have preempted this task already.) We
3197 * requeue this task to the end of the list on this priority
3198 * level, which is in essence a round-robin of tasks with
3199 * equal priority.
3200 *
3201 * This only applies to tasks in the interactive
3202 * delta range with at least TIMESLICE_GRANULARITY to requeue.
3203 */
3204 if (TASK_INTERACTIVE(p) && !((task_timeslice(p) -
3205 p->time_slice) % TIMESLICE_GRANULARITY(p)) &&
3206 (p->time_slice >= TIMESLICE_GRANULARITY(p)) &&
3207 (p->array == rq->active)) {
3208
3209 requeue_task(p, rq->active);
3210 set_tsk_need_resched(p);
3211 }
3212 }
3213out_unlock:
3214 spin_unlock(&rq->lock);
Christoph Lameter7835b982006-12-10 02:20:22 -08003215}
3216
3217/*
3218 * This function gets called by the timer code, with HZ frequency.
3219 * We call it with interrupts disabled.
3220 *
3221 * It also gets called by the fork code, when changing the parent's
3222 * timeslices.
3223 */
3224void scheduler_tick(void)
3225{
3226 unsigned long long now = sched_clock();
3227 struct task_struct *p = current;
3228 int cpu = smp_processor_id();
3229 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08003230
3231 update_cpu_clock(p, rq, now);
3232
Christoph Lametere418e1c2006-12-10 02:20:23 -08003233 if (p == rq->idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08003234 /* Task on the idle queue */
Christoph Lametere418e1c2006-12-10 02:20:23 -08003235 wake_priority_sleeper(rq);
3236 else
Christoph Lameter7835b982006-12-10 02:20:22 -08003237 task_running_tick(rq, p);
Christoph Lametere418e1c2006-12-10 02:20:23 -08003238#ifdef CONFIG_SMP
Christoph Lameter7835b982006-12-10 02:20:22 -08003239 update_load(rq);
Christoph Lameterc9819f42006-12-10 02:20:25 -08003240 if (time_after_eq(jiffies, rq->next_balance))
3241 raise_softirq(SCHED_SOFTIRQ);
Christoph Lametere418e1c2006-12-10 02:20:23 -08003242#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243}
3244
3245#ifdef CONFIG_SCHED_SMT
Ingo Molnar70b97a72006-07-03 00:25:42 -07003246static inline void wakeup_busy_runqueue(struct rq *rq)
Con Kolivasfc38ed72005-09-10 00:26:08 -07003247{
3248 /* If an SMT runqueue is sleeping due to priority reasons wake it up */
3249 if (rq->curr == rq->idle && rq->nr_running)
3250 resched_task(rq->idle);
3251}
3252
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003253/*
3254 * Called with interrupt disabled and this_rq's runqueue locked.
3255 */
3256static void wake_sleeping_dependent(int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257{
Nick Piggin41c7ce92005-06-25 14:57:24 -07003258 struct sched_domain *tmp, *sd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 int i;
3260
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003261 for_each_domain(this_cpu, tmp) {
3262 if (tmp->flags & SD_SHARE_CPUPOWER) {
Nick Piggin41c7ce92005-06-25 14:57:24 -07003263 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003264 break;
3265 }
3266 }
Nick Piggin41c7ce92005-06-25 14:57:24 -07003267
3268 if (!sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 return;
3270
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003271 for_each_cpu_mask(i, sd->span) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07003272 struct rq *smt_rq = cpu_rq(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003274 if (i == this_cpu)
3275 continue;
3276 if (unlikely(!spin_trylock(&smt_rq->lock)))
3277 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003279 wakeup_busy_runqueue(smt_rq);
3280 spin_unlock(&smt_rq->lock);
3281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282}
3283
Ingo Molnar67f9a612005-09-10 00:26:16 -07003284/*
3285 * number of 'lost' timeslices this task wont be able to fully
3286 * utilize, if another task runs on a sibling. This models the
3287 * slowdown effect of other tasks running on siblings:
3288 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003289static inline unsigned long
3290smt_slice(struct task_struct *p, struct sched_domain *sd)
Ingo Molnar67f9a612005-09-10 00:26:16 -07003291{
3292 return p->time_slice * (100 - sd->per_cpu_gain) / 100;
3293}
3294
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003295/*
3296 * To minimise lock contention and not have to drop this_rq's runlock we only
3297 * trylock the sibling runqueues and bypass those runqueues if we fail to
3298 * acquire their lock. As we only trylock the normal locking order does not
3299 * need to be obeyed.
3300 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003301static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07003302dependent_sleeper(int this_cpu, struct rq *this_rq, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303{
Nick Piggin41c7ce92005-06-25 14:57:24 -07003304 struct sched_domain *tmp, *sd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 int ret = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003307 /* kernel/rt threads do not participate in dependent sleeping */
3308 if (!p->mm || rt_task(p))
3309 return 0;
3310
3311 for_each_domain(this_cpu, tmp) {
3312 if (tmp->flags & SD_SHARE_CPUPOWER) {
Nick Piggin41c7ce92005-06-25 14:57:24 -07003313 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003314 break;
3315 }
3316 }
Nick Piggin41c7ce92005-06-25 14:57:24 -07003317
3318 if (!sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319 return 0;
3320
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003321 for_each_cpu_mask(i, sd->span) {
Ingo Molnar36c8b582006-07-03 00:25:41 -07003322 struct task_struct *smt_curr;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003323 struct rq *smt_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003325 if (i == this_cpu)
3326 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003328 smt_rq = cpu_rq(i);
3329 if (unlikely(!spin_trylock(&smt_rq->lock)))
3330 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003332 smt_curr = smt_rq->curr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003334 if (!smt_curr->mm)
3335 goto unlock;
Con Kolivasfc38ed72005-09-10 00:26:08 -07003336
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337 /*
3338 * If a user task with lower static priority than the
3339 * running task on the SMT sibling is trying to schedule,
3340 * delay it till there is proportionately less timeslice
3341 * left of the sibling task to prevent a lower priority
3342 * task from using an unfair proportion of the
3343 * physical cpu's resources. -ck
3344 */
Con Kolivasfc38ed72005-09-10 00:26:08 -07003345 if (rt_task(smt_curr)) {
3346 /*
3347 * With real time tasks we run non-rt tasks only
3348 * per_cpu_gain% of the time.
3349 */
3350 if ((jiffies % DEF_TIMESLICE) >
3351 (sd->per_cpu_gain * DEF_TIMESLICE / 100))
3352 ret = 1;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003353 } else {
Ingo Molnar67f9a612005-09-10 00:26:16 -07003354 if (smt_curr->static_prio < p->static_prio &&
3355 !TASK_PREEMPTS_CURR(p, smt_rq) &&
3356 smt_slice(smt_curr, sd) > task_timeslice(p))
Con Kolivasfc38ed72005-09-10 00:26:08 -07003357 ret = 1;
Con Kolivasfc38ed72005-09-10 00:26:08 -07003358 }
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003359unlock:
3360 spin_unlock(&smt_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362 return ret;
3363}
3364#else
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003365static inline void wake_sleeping_dependent(int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366{
3367}
Ingo Molnar48f24c42006-07-03 00:25:40 -07003368static inline int
Ingo Molnar70b97a72006-07-03 00:25:42 -07003369dependent_sleeper(int this_cpu, struct rq *this_rq, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370{
3371 return 0;
3372}
3373#endif
3374
3375#if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
3376
3377void fastcall add_preempt_count(int val)
3378{
3379 /*
3380 * Underflow?
3381 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003382 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
3383 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 preempt_count() += val;
3385 /*
3386 * Spinlock count overflowing soon?
3387 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003388 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
3389 PREEMPT_MASK - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390}
3391EXPORT_SYMBOL(add_preempt_count);
3392
3393void fastcall sub_preempt_count(int val)
3394{
3395 /*
3396 * Underflow?
3397 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003398 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
3399 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400 /*
3401 * Is the spinlock portion underflowing?
3402 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003403 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
3404 !(preempt_count() & PREEMPT_MASK)))
3405 return;
3406
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407 preempt_count() -= val;
3408}
3409EXPORT_SYMBOL(sub_preempt_count);
3410
3411#endif
3412
Con Kolivas3dee3862006-03-31 02:31:23 -08003413static inline int interactive_sleep(enum sleep_type sleep_type)
3414{
3415 return (sleep_type == SLEEP_INTERACTIVE ||
3416 sleep_type == SLEEP_INTERRUPTED);
3417}
3418
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419/*
3420 * schedule() is the main scheduler function.
3421 */
3422asmlinkage void __sched schedule(void)
3423{
Ingo Molnar36c8b582006-07-03 00:25:41 -07003424 struct task_struct *prev, *next;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003425 struct prio_array *array;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 struct list_head *queue;
3427 unsigned long long now;
3428 unsigned long run_time;
Chen Shanga3464a12005-06-25 14:57:31 -07003429 int cpu, idx, new_prio;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003430 long *switch_count;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003431 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432
3433 /*
3434 * Test if we are atomic. Since do_exit() needs to call into
3435 * schedule() atomically, we ignore that path for now.
3436 * Otherwise, whine if we are scheduling when we should not be.
3437 */
Andreas Mohr77e4bfb2006-03-27 01:15:20 -08003438 if (unlikely(in_atomic() && !current->exit_state)) {
3439 printk(KERN_ERR "BUG: scheduling while atomic: "
3440 "%s/0x%08x/%d\n",
3441 current->comm, preempt_count(), current->pid);
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08003442 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08003443 if (irqs_disabled())
3444 print_irqtrace_events(current);
Andreas Mohr77e4bfb2006-03-27 01:15:20 -08003445 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446 }
3447 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
3448
3449need_resched:
3450 preempt_disable();
3451 prev = current;
3452 release_kernel_lock(prev);
3453need_resched_nonpreemptible:
3454 rq = this_rq();
3455
3456 /*
3457 * The idle thread is not allowed to schedule!
3458 * Remove this check after it has been exercised a bit.
3459 */
3460 if (unlikely(prev == rq->idle) && prev->state != TASK_RUNNING) {
3461 printk(KERN_ERR "bad: scheduling from the idle thread!\n");
3462 dump_stack();
3463 }
3464
3465 schedstat_inc(rq, sched_cnt);
3466 now = sched_clock();
Ingo Molnar238628e2005-04-18 10:58:36 -07003467 if (likely((long long)(now - prev->timestamp) < NS_MAX_SLEEP_AVG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 run_time = now - prev->timestamp;
Ingo Molnar238628e2005-04-18 10:58:36 -07003469 if (unlikely((long long)(now - prev->timestamp) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 run_time = 0;
3471 } else
3472 run_time = NS_MAX_SLEEP_AVG;
3473
3474 /*
3475 * Tasks charged proportionately less run_time at high sleep_avg to
3476 * delay them losing their interactive status
3477 */
3478 run_time /= (CURRENT_BONUS(prev) ? : 1);
3479
3480 spin_lock_irq(&rq->lock);
3481
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482 switch_count = &prev->nivcsw;
3483 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
3484 switch_count = &prev->nvcsw;
3485 if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
3486 unlikely(signal_pending(prev))))
3487 prev->state = TASK_RUNNING;
3488 else {
3489 if (prev->state == TASK_UNINTERRUPTIBLE)
3490 rq->nr_uninterruptible++;
3491 deactivate_task(prev, rq);
3492 }
3493 }
3494
3495 cpu = smp_processor_id();
3496 if (unlikely(!rq->nr_running)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 idle_balance(cpu, rq);
3498 if (!rq->nr_running) {
3499 next = rq->idle;
3500 rq->expired_timestamp = 0;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003501 wake_sleeping_dependent(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 goto switch_tasks;
3503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 }
3505
3506 array = rq->active;
3507 if (unlikely(!array->nr_active)) {
3508 /*
3509 * Switch the active and expired arrays.
3510 */
3511 schedstat_inc(rq, sched_switch);
3512 rq->active = rq->expired;
3513 rq->expired = array;
3514 array = rq->active;
3515 rq->expired_timestamp = 0;
3516 rq->best_expired_prio = MAX_PRIO;
3517 }
3518
3519 idx = sched_find_first_bit(array->bitmap);
3520 queue = array->queue + idx;
Ingo Molnar36c8b582006-07-03 00:25:41 -07003521 next = list_entry(queue->next, struct task_struct, run_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522
Con Kolivas3dee3862006-03-31 02:31:23 -08003523 if (!rt_task(next) && interactive_sleep(next->sleep_type)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524 unsigned long long delta = now - next->timestamp;
Ingo Molnar238628e2005-04-18 10:58:36 -07003525 if (unlikely((long long)(now - next->timestamp) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 delta = 0;
3527
Con Kolivas3dee3862006-03-31 02:31:23 -08003528 if (next->sleep_type == SLEEP_INTERACTIVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 delta = delta * (ON_RUNQUEUE_WEIGHT * 128 / 100) / 128;
3530
3531 array = next->array;
Chen Shanga3464a12005-06-25 14:57:31 -07003532 new_prio = recalc_task_prio(next, next->timestamp + delta);
3533
3534 if (unlikely(next->prio != new_prio)) {
3535 dequeue_task(next, array);
3536 next->prio = new_prio;
3537 enqueue_task(next, array);
Con Kolivas7c4bb1f2006-03-31 02:31:29 -08003538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539 }
Con Kolivas3dee3862006-03-31 02:31:23 -08003540 next->sleep_type = SLEEP_NORMAL;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003541 if (dependent_sleeper(cpu, rq, next))
3542 next = rq->idle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543switch_tasks:
3544 if (next == rq->idle)
3545 schedstat_inc(rq, sched_goidle);
3546 prefetch(next);
Chen, Kenneth W383f2832005-09-09 13:02:02 -07003547 prefetch_stack(next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 clear_tsk_need_resched(prev);
3549 rcu_qsctr_inc(task_cpu(prev));
3550
3551 update_cpu_clock(prev, rq, now);
3552
3553 prev->sleep_avg -= run_time;
3554 if ((long)prev->sleep_avg <= 0)
3555 prev->sleep_avg = 0;
3556 prev->timestamp = prev->last_ran = now;
3557
3558 sched_info_switch(prev, next);
3559 if (likely(prev != next)) {
3560 next->timestamp = now;
3561 rq->nr_switches++;
3562 rq->curr = next;
3563 ++*switch_count;
3564
Nick Piggin4866cde2005-06-25 14:57:23 -07003565 prepare_task_switch(rq, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 prev = context_switch(rq, prev, next);
3567 barrier();
Nick Piggin4866cde2005-06-25 14:57:23 -07003568 /*
3569 * this_rq must be evaluated again because prev may have moved
3570 * CPUs since it called schedule(), thus the 'rq' on its stack
3571 * frame will be invalid.
3572 */
3573 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574 } else
3575 spin_unlock_irq(&rq->lock);
3576
3577 prev = current;
3578 if (unlikely(reacquire_kernel_lock(prev) < 0))
3579 goto need_resched_nonpreemptible;
3580 preempt_enable_no_resched();
3581 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3582 goto need_resched;
3583}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584EXPORT_SYMBOL(schedule);
3585
3586#ifdef CONFIG_PREEMPT
3587/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003588 * this is the entry point to schedule() from in-kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589 * off of preempt_enable. Kernel preemptions off return from interrupt
3590 * occur there and call schedule directly.
3591 */
3592asmlinkage void __sched preempt_schedule(void)
3593{
3594 struct thread_info *ti = current_thread_info();
3595#ifdef CONFIG_PREEMPT_BKL
3596 struct task_struct *task = current;
3597 int saved_lock_depth;
3598#endif
3599 /*
3600 * If there is a non-zero preempt_count or interrupts are disabled,
3601 * we do not want to preempt the current task. Just return..
3602 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07003603 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604 return;
3605
3606need_resched:
3607 add_preempt_count(PREEMPT_ACTIVE);
3608 /*
3609 * We keep the big kernel semaphore locked, but we
3610 * clear ->lock_depth so that schedule() doesnt
3611 * auto-release the semaphore:
3612 */
3613#ifdef CONFIG_PREEMPT_BKL
3614 saved_lock_depth = task->lock_depth;
3615 task->lock_depth = -1;
3616#endif
3617 schedule();
3618#ifdef CONFIG_PREEMPT_BKL
3619 task->lock_depth = saved_lock_depth;
3620#endif
3621 sub_preempt_count(PREEMPT_ACTIVE);
3622
3623 /* we could miss a preemption opportunity between schedule and now */
3624 barrier();
3625 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3626 goto need_resched;
3627}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628EXPORT_SYMBOL(preempt_schedule);
3629
3630/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003631 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 * off of irq context.
3633 * Note, that this is called and return with irqs disabled. This will
3634 * protect us against recursive calling from irq.
3635 */
3636asmlinkage void __sched preempt_schedule_irq(void)
3637{
3638 struct thread_info *ti = current_thread_info();
3639#ifdef CONFIG_PREEMPT_BKL
3640 struct task_struct *task = current;
3641 int saved_lock_depth;
3642#endif
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003643 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644 BUG_ON(ti->preempt_count || !irqs_disabled());
3645
3646need_resched:
3647 add_preempt_count(PREEMPT_ACTIVE);
3648 /*
3649 * We keep the big kernel semaphore locked, but we
3650 * clear ->lock_depth so that schedule() doesnt
3651 * auto-release the semaphore:
3652 */
3653#ifdef CONFIG_PREEMPT_BKL
3654 saved_lock_depth = task->lock_depth;
3655 task->lock_depth = -1;
3656#endif
3657 local_irq_enable();
3658 schedule();
3659 local_irq_disable();
3660#ifdef CONFIG_PREEMPT_BKL
3661 task->lock_depth = saved_lock_depth;
3662#endif
3663 sub_preempt_count(PREEMPT_ACTIVE);
3664
3665 /* we could miss a preemption opportunity between schedule and now */
3666 barrier();
3667 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3668 goto need_resched;
3669}
3670
3671#endif /* CONFIG_PREEMPT */
3672
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003673int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
3674 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675{
Ingo Molnar48f24c42006-07-03 00:25:40 -07003676 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678EXPORT_SYMBOL(default_wake_function);
3679
3680/*
3681 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
3682 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
3683 * number) then we wake all the non-exclusive tasks and one exclusive task.
3684 *
3685 * There are circumstances in which we can try to wake a task which has already
3686 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
3687 * zero in this (rare) case, and we handle it by continuing to scan the queue.
3688 */
3689static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
3690 int nr_exclusive, int sync, void *key)
3691{
3692 struct list_head *tmp, *next;
3693
3694 list_for_each_safe(tmp, next, &q->task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07003695 wait_queue_t *curr = list_entry(tmp, wait_queue_t, task_list);
3696 unsigned flags = curr->flags;
3697
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003699 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700 break;
3701 }
3702}
3703
3704/**
3705 * __wake_up - wake up threads blocked on a waitqueue.
3706 * @q: the waitqueue
3707 * @mode: which threads
3708 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07003709 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710 */
3711void fastcall __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003712 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713{
3714 unsigned long flags;
3715
3716 spin_lock_irqsave(&q->lock, flags);
3717 __wake_up_common(q, mode, nr_exclusive, 0, key);
3718 spin_unlock_irqrestore(&q->lock, flags);
3719}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720EXPORT_SYMBOL(__wake_up);
3721
3722/*
3723 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
3724 */
3725void fastcall __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
3726{
3727 __wake_up_common(q, mode, 1, 0, NULL);
3728}
3729
3730/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07003731 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732 * @q: the waitqueue
3733 * @mode: which threads
3734 * @nr_exclusive: how many wake-one or wake-many threads to wake up
3735 *
3736 * The sync wakeup differs that the waker knows that it will schedule
3737 * away soon, so while the target thread will be woken up, it will not
3738 * be migrated to another CPU - ie. the two threads are 'synchronized'
3739 * with each other. This can prevent needless bouncing between CPUs.
3740 *
3741 * On UP it can prevent extra preemption.
3742 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003743void fastcall
3744__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745{
3746 unsigned long flags;
3747 int sync = 1;
3748
3749 if (unlikely(!q))
3750 return;
3751
3752 if (unlikely(!nr_exclusive))
3753 sync = 0;
3754
3755 spin_lock_irqsave(&q->lock, flags);
3756 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
3757 spin_unlock_irqrestore(&q->lock, flags);
3758}
3759EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
3760
3761void fastcall complete(struct completion *x)
3762{
3763 unsigned long flags;
3764
3765 spin_lock_irqsave(&x->wait.lock, flags);
3766 x->done++;
3767 __wake_up_common(&x->wait, TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE,
3768 1, 0, NULL);
3769 spin_unlock_irqrestore(&x->wait.lock, flags);
3770}
3771EXPORT_SYMBOL(complete);
3772
3773void fastcall complete_all(struct completion *x)
3774{
3775 unsigned long flags;
3776
3777 spin_lock_irqsave(&x->wait.lock, flags);
3778 x->done += UINT_MAX/2;
3779 __wake_up_common(&x->wait, TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE,
3780 0, 0, NULL);
3781 spin_unlock_irqrestore(&x->wait.lock, flags);
3782}
3783EXPORT_SYMBOL(complete_all);
3784
3785void fastcall __sched wait_for_completion(struct completion *x)
3786{
3787 might_sleep();
Ingo Molnar48f24c42006-07-03 00:25:40 -07003788
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789 spin_lock_irq(&x->wait.lock);
3790 if (!x->done) {
3791 DECLARE_WAITQUEUE(wait, current);
3792
3793 wait.flags |= WQ_FLAG_EXCLUSIVE;
3794 __add_wait_queue_tail(&x->wait, &wait);
3795 do {
3796 __set_current_state(TASK_UNINTERRUPTIBLE);
3797 spin_unlock_irq(&x->wait.lock);
3798 schedule();
3799 spin_lock_irq(&x->wait.lock);
3800 } while (!x->done);
3801 __remove_wait_queue(&x->wait, &wait);
3802 }
3803 x->done--;
3804 spin_unlock_irq(&x->wait.lock);
3805}
3806EXPORT_SYMBOL(wait_for_completion);
3807
3808unsigned long fastcall __sched
3809wait_for_completion_timeout(struct completion *x, unsigned long timeout)
3810{
3811 might_sleep();
3812
3813 spin_lock_irq(&x->wait.lock);
3814 if (!x->done) {
3815 DECLARE_WAITQUEUE(wait, current);
3816
3817 wait.flags |= WQ_FLAG_EXCLUSIVE;
3818 __add_wait_queue_tail(&x->wait, &wait);
3819 do {
3820 __set_current_state(TASK_UNINTERRUPTIBLE);
3821 spin_unlock_irq(&x->wait.lock);
3822 timeout = schedule_timeout(timeout);
3823 spin_lock_irq(&x->wait.lock);
3824 if (!timeout) {
3825 __remove_wait_queue(&x->wait, &wait);
3826 goto out;
3827 }
3828 } while (!x->done);
3829 __remove_wait_queue(&x->wait, &wait);
3830 }
3831 x->done--;
3832out:
3833 spin_unlock_irq(&x->wait.lock);
3834 return timeout;
3835}
3836EXPORT_SYMBOL(wait_for_completion_timeout);
3837
3838int fastcall __sched wait_for_completion_interruptible(struct completion *x)
3839{
3840 int ret = 0;
3841
3842 might_sleep();
3843
3844 spin_lock_irq(&x->wait.lock);
3845 if (!x->done) {
3846 DECLARE_WAITQUEUE(wait, current);
3847
3848 wait.flags |= WQ_FLAG_EXCLUSIVE;
3849 __add_wait_queue_tail(&x->wait, &wait);
3850 do {
3851 if (signal_pending(current)) {
3852 ret = -ERESTARTSYS;
3853 __remove_wait_queue(&x->wait, &wait);
3854 goto out;
3855 }
3856 __set_current_state(TASK_INTERRUPTIBLE);
3857 spin_unlock_irq(&x->wait.lock);
3858 schedule();
3859 spin_lock_irq(&x->wait.lock);
3860 } while (!x->done);
3861 __remove_wait_queue(&x->wait, &wait);
3862 }
3863 x->done--;
3864out:
3865 spin_unlock_irq(&x->wait.lock);
3866
3867 return ret;
3868}
3869EXPORT_SYMBOL(wait_for_completion_interruptible);
3870
3871unsigned long fastcall __sched
3872wait_for_completion_interruptible_timeout(struct completion *x,
3873 unsigned long timeout)
3874{
3875 might_sleep();
3876
3877 spin_lock_irq(&x->wait.lock);
3878 if (!x->done) {
3879 DECLARE_WAITQUEUE(wait, current);
3880
3881 wait.flags |= WQ_FLAG_EXCLUSIVE;
3882 __add_wait_queue_tail(&x->wait, &wait);
3883 do {
3884 if (signal_pending(current)) {
3885 timeout = -ERESTARTSYS;
3886 __remove_wait_queue(&x->wait, &wait);
3887 goto out;
3888 }
3889 __set_current_state(TASK_INTERRUPTIBLE);
3890 spin_unlock_irq(&x->wait.lock);
3891 timeout = schedule_timeout(timeout);
3892 spin_lock_irq(&x->wait.lock);
3893 if (!timeout) {
3894 __remove_wait_queue(&x->wait, &wait);
3895 goto out;
3896 }
3897 } while (!x->done);
3898 __remove_wait_queue(&x->wait, &wait);
3899 }
3900 x->done--;
3901out:
3902 spin_unlock_irq(&x->wait.lock);
3903 return timeout;
3904}
3905EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
3906
3907
3908#define SLEEP_ON_VAR \
3909 unsigned long flags; \
3910 wait_queue_t wait; \
3911 init_waitqueue_entry(&wait, current);
3912
3913#define SLEEP_ON_HEAD \
3914 spin_lock_irqsave(&q->lock,flags); \
3915 __add_wait_queue(q, &wait); \
3916 spin_unlock(&q->lock);
3917
3918#define SLEEP_ON_TAIL \
3919 spin_lock_irq(&q->lock); \
3920 __remove_wait_queue(q, &wait); \
3921 spin_unlock_irqrestore(&q->lock, flags);
3922
3923void fastcall __sched interruptible_sleep_on(wait_queue_head_t *q)
3924{
3925 SLEEP_ON_VAR
3926
3927 current->state = TASK_INTERRUPTIBLE;
3928
3929 SLEEP_ON_HEAD
3930 schedule();
3931 SLEEP_ON_TAIL
3932}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933EXPORT_SYMBOL(interruptible_sleep_on);
3934
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003935long fastcall __sched
3936interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937{
3938 SLEEP_ON_VAR
3939
3940 current->state = TASK_INTERRUPTIBLE;
3941
3942 SLEEP_ON_HEAD
3943 timeout = schedule_timeout(timeout);
3944 SLEEP_ON_TAIL
3945
3946 return timeout;
3947}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948EXPORT_SYMBOL(interruptible_sleep_on_timeout);
3949
3950void fastcall __sched sleep_on(wait_queue_head_t *q)
3951{
3952 SLEEP_ON_VAR
3953
3954 current->state = TASK_UNINTERRUPTIBLE;
3955
3956 SLEEP_ON_HEAD
3957 schedule();
3958 SLEEP_ON_TAIL
3959}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960EXPORT_SYMBOL(sleep_on);
3961
3962long fastcall __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
3963{
3964 SLEEP_ON_VAR
3965
3966 current->state = TASK_UNINTERRUPTIBLE;
3967
3968 SLEEP_ON_HEAD
3969 timeout = schedule_timeout(timeout);
3970 SLEEP_ON_TAIL
3971
3972 return timeout;
3973}
3974
3975EXPORT_SYMBOL(sleep_on_timeout);
3976
Ingo Molnarb29739f2006-06-27 02:54:51 -07003977#ifdef CONFIG_RT_MUTEXES
3978
3979/*
3980 * rt_mutex_setprio - set the current priority of a task
3981 * @p: task
3982 * @prio: prio value (kernel-internal form)
3983 *
3984 * This function changes the 'effective' priority of a task. It does
3985 * not touch ->normal_prio like __setscheduler().
3986 *
3987 * Used by the rt_mutex code to implement priority inheritance logic.
3988 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003989void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07003990{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003991 struct prio_array *array;
Ingo Molnarb29739f2006-06-27 02:54:51 -07003992 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003993 struct rq *rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -07003994 int oldprio;
3995
3996 BUG_ON(prio < 0 || prio > MAX_PRIO);
3997
3998 rq = task_rq_lock(p, &flags);
3999
4000 oldprio = p->prio;
4001 array = p->array;
4002 if (array)
4003 dequeue_task(p, array);
4004 p->prio = prio;
4005
4006 if (array) {
4007 /*
4008 * If changing to an RT priority then queue it
4009 * in the active array!
4010 */
4011 if (rt_task(p))
4012 array = rq->active;
4013 enqueue_task(p, array);
4014 /*
4015 * Reschedule if we are currently running on this runqueue and
4016 * our priority decreased, or if we are not currently running on
4017 * this runqueue and our priority is higher than the current's
4018 */
4019 if (task_running(rq, p)) {
4020 if (p->prio > oldprio)
4021 resched_task(rq->curr);
4022 } else if (TASK_PREEMPTS_CURR(p, rq))
4023 resched_task(rq->curr);
4024 }
4025 task_rq_unlock(rq, &flags);
4026}
4027
4028#endif
4029
Ingo Molnar36c8b582006-07-03 00:25:41 -07004030void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004032 struct prio_array *array;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004033 int old_prio, delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004035 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036
4037 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
4038 return;
4039 /*
4040 * We have to be careful, if called from sys_setpriority(),
4041 * the task might be in the middle of scheduling on another CPU.
4042 */
4043 rq = task_rq_lock(p, &flags);
4044 /*
4045 * The RT priorities are set via sched_setscheduler(), but we still
4046 * allow the 'normal' nice value to be set - but as expected
4047 * it wont have any effect on scheduling until the task is
Ingo Molnarb0a94992006-01-14 13:20:41 -08004048 * not SCHED_NORMAL/SCHED_BATCH:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07004050 if (has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051 p->static_prio = NICE_TO_PRIO(nice);
4052 goto out_unlock;
4053 }
4054 array = p->array;
Peter Williams2dd73a42006-06-27 02:54:34 -07004055 if (array) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056 dequeue_task(p, array);
Peter Williams2dd73a42006-06-27 02:54:34 -07004057 dec_raw_weighted_load(rq, p);
4058 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07004061 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004062 old_prio = p->prio;
4063 p->prio = effective_prio(p);
4064 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065
4066 if (array) {
4067 enqueue_task(p, array);
Peter Williams2dd73a42006-06-27 02:54:34 -07004068 inc_raw_weighted_load(rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069 /*
4070 * If the task increased its priority or is running and
4071 * lowered its priority, then reschedule its CPU:
4072 */
4073 if (delta < 0 || (delta > 0 && task_running(rq, p)))
4074 resched_task(rq->curr);
4075 }
4076out_unlock:
4077 task_rq_unlock(rq, &flags);
4078}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079EXPORT_SYMBOL(set_user_nice);
4080
Matt Mackalle43379f2005-05-01 08:59:00 -07004081/*
4082 * can_nice - check if a task can reduce its nice value
4083 * @p: task
4084 * @nice: nice value
4085 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004086int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07004087{
Matt Mackall024f4742005-08-18 11:24:19 -07004088 /* convert nice value [19,-20] to rlimit style value [1,40] */
4089 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004090
Matt Mackalle43379f2005-05-01 08:59:00 -07004091 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
4092 capable(CAP_SYS_NICE));
4093}
4094
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095#ifdef __ARCH_WANT_SYS_NICE
4096
4097/*
4098 * sys_nice - change the priority of the current process.
4099 * @increment: priority increment
4100 *
4101 * sys_setpriority is a more generic, but much slower function that
4102 * does similar things.
4103 */
4104asmlinkage long sys_nice(int increment)
4105{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004106 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107
4108 /*
4109 * Setpriority might change our priority at the same moment.
4110 * We don't have to worry. Conceptually one call occurs first
4111 * and we have a single winner.
4112 */
Matt Mackalle43379f2005-05-01 08:59:00 -07004113 if (increment < -40)
4114 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115 if (increment > 40)
4116 increment = 40;
4117
4118 nice = PRIO_TO_NICE(current->static_prio) + increment;
4119 if (nice < -20)
4120 nice = -20;
4121 if (nice > 19)
4122 nice = 19;
4123
Matt Mackalle43379f2005-05-01 08:59:00 -07004124 if (increment < 0 && !can_nice(current, nice))
4125 return -EPERM;
4126
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127 retval = security_task_setnice(current, nice);
4128 if (retval)
4129 return retval;
4130
4131 set_user_nice(current, nice);
4132 return 0;
4133}
4134
4135#endif
4136
4137/**
4138 * task_prio - return the priority value of a given task.
4139 * @p: the task in question.
4140 *
4141 * This is the priority value as seen by users in /proc.
4142 * RT tasks are offset by -200. Normal tasks are centered
4143 * around 0, value goes from -16 to +15.
4144 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004145int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146{
4147 return p->prio - MAX_RT_PRIO;
4148}
4149
4150/**
4151 * task_nice - return the nice value of a given task.
4152 * @p: the task in question.
4153 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004154int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155{
4156 return TASK_NICE(p);
4157}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158EXPORT_SYMBOL_GPL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159
4160/**
4161 * idle_cpu - is a given cpu idle currently?
4162 * @cpu: the processor in question.
4163 */
4164int idle_cpu(int cpu)
4165{
4166 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
4167}
4168
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169/**
4170 * idle_task - return the idle task for a given cpu.
4171 * @cpu: the processor in question.
4172 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004173struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174{
4175 return cpu_rq(cpu)->idle;
4176}
4177
4178/**
4179 * find_process_by_pid - find a process with a matching PID value.
4180 * @pid: the pid in question.
4181 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004182static inline struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183{
4184 return pid ? find_task_by_pid(pid) : current;
4185}
4186
4187/* Actually do priority change: must hold rq lock. */
4188static void __setscheduler(struct task_struct *p, int policy, int prio)
4189{
4190 BUG_ON(p->array);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004191
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192 p->policy = policy;
4193 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004194 p->normal_prio = normal_prio(p);
4195 /* we are holding p->pi_lock already */
4196 p->prio = rt_mutex_getprio(p);
4197 /*
4198 * SCHED_BATCH tasks are treated as perpetual CPU hogs:
4199 */
4200 if (policy == SCHED_BATCH)
4201 p->sleep_avg = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07004202 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203}
4204
4205/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004206 * sched_setscheduler - change the scheduling policy and/or RT priority of a thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207 * @p: the task in question.
4208 * @policy: new policy.
4209 * @param: structure containing the new RT priority.
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004210 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004211 * NOTE that the task may be already dead.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004213int sched_setscheduler(struct task_struct *p, int policy,
4214 struct sched_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004216 int retval, oldprio, oldpolicy = -1;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004217 struct prio_array *array;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004219 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220
Steven Rostedt66e53932006-06-27 02:54:44 -07004221 /* may grab non-irq protected spin_locks */
4222 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223recheck:
4224 /* double check policy once rq lock held */
4225 if (policy < 0)
4226 policy = oldpolicy = p->policy;
4227 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnarb0a94992006-01-14 13:20:41 -08004228 policy != SCHED_NORMAL && policy != SCHED_BATCH)
4229 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230 /*
4231 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnarb0a94992006-01-14 13:20:41 -08004232 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL and
4233 * SCHED_BATCH is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234 */
4235 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004236 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04004237 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238 return -EINVAL;
Oleg Nesterov57a6f51c2006-09-29 02:00:49 -07004239 if (is_rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240 return -EINVAL;
4241
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004242 /*
4243 * Allow unprivileged RT tasks to decrease priority:
4244 */
4245 if (!capable(CAP_SYS_NICE)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004246 if (is_rt_policy(policy)) {
4247 unsigned long rlim_rtprio;
4248 unsigned long flags;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004249
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004250 if (!lock_task_sighand(p, &flags))
4251 return -ESRCH;
4252 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
4253 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004254
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004255 /* can't set/change the rt policy */
4256 if (policy != p->policy && !rlim_rtprio)
4257 return -EPERM;
4258
4259 /* can't increase priority */
4260 if (param->sched_priority > p->rt_priority &&
4261 param->sched_priority > rlim_rtprio)
4262 return -EPERM;
4263 }
4264
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004265 /* can't change other user's priorities */
4266 if ((current->euid != p->euid) &&
4267 (current->euid != p->uid))
4268 return -EPERM;
4269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270
4271 retval = security_task_setscheduler(p, policy, param);
4272 if (retval)
4273 return retval;
4274 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07004275 * make sure no PI-waiters arrive (or leave) while we are
4276 * changing the priority of the task:
4277 */
4278 spin_lock_irqsave(&p->pi_lock, flags);
4279 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280 * To be able to change p->policy safely, the apropriate
4281 * runqueue lock must be held.
4282 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07004283 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284 /* recheck policy now with rq lock held */
4285 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
4286 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004287 __task_rq_unlock(rq);
4288 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004289 goto recheck;
4290 }
4291 array = p->array;
4292 if (array)
4293 deactivate_task(p, rq);
4294 oldprio = p->prio;
4295 __setscheduler(p, policy, param->sched_priority);
4296 if (array) {
4297 __activate_task(p, rq);
4298 /*
4299 * Reschedule if we are currently running on this runqueue and
4300 * our priority decreased, or if we are not currently running on
4301 * this runqueue and our priority is higher than the current's
4302 */
4303 if (task_running(rq, p)) {
4304 if (p->prio > oldprio)
4305 resched_task(rq->curr);
4306 } else if (TASK_PREEMPTS_CURR(p, rq))
4307 resched_task(rq->curr);
4308 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07004309 __task_rq_unlock(rq);
4310 spin_unlock_irqrestore(&p->pi_lock, flags);
4311
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07004312 rt_mutex_adjust_pi(p);
4313
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314 return 0;
4315}
4316EXPORT_SYMBOL_GPL(sched_setscheduler);
4317
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004318static int
4319do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321 struct sched_param lparam;
4322 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004323 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324
4325 if (!param || pid < 0)
4326 return -EINVAL;
4327 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
4328 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004329
4330 rcu_read_lock();
4331 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004333 if (p != NULL)
4334 retval = sched_setscheduler(p, policy, &lparam);
4335 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07004336
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337 return retval;
4338}
4339
4340/**
4341 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
4342 * @pid: the pid in question.
4343 * @policy: new policy.
4344 * @param: structure containing the new RT priority.
4345 */
4346asmlinkage long sys_sched_setscheduler(pid_t pid, int policy,
4347 struct sched_param __user *param)
4348{
Jason Baronc21761f2006-01-18 17:43:03 -08004349 /* negative values for policy are not valid */
4350 if (policy < 0)
4351 return -EINVAL;
4352
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353 return do_sched_setscheduler(pid, policy, param);
4354}
4355
4356/**
4357 * sys_sched_setparam - set/change the RT priority of a thread
4358 * @pid: the pid in question.
4359 * @param: structure containing the new RT priority.
4360 */
4361asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
4362{
4363 return do_sched_setscheduler(pid, -1, param);
4364}
4365
4366/**
4367 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
4368 * @pid: the pid in question.
4369 */
4370asmlinkage long sys_sched_getscheduler(pid_t pid)
4371{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004372 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374
4375 if (pid < 0)
4376 goto out_nounlock;
4377
4378 retval = -ESRCH;
4379 read_lock(&tasklist_lock);
4380 p = find_process_by_pid(pid);
4381 if (p) {
4382 retval = security_task_getscheduler(p);
4383 if (!retval)
4384 retval = p->policy;
4385 }
4386 read_unlock(&tasklist_lock);
4387
4388out_nounlock:
4389 return retval;
4390}
4391
4392/**
4393 * sys_sched_getscheduler - get the RT priority of a thread
4394 * @pid: the pid in question.
4395 * @param: structure containing the RT priority.
4396 */
4397asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
4398{
4399 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004400 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402
4403 if (!param || pid < 0)
4404 goto out_nounlock;
4405
4406 read_lock(&tasklist_lock);
4407 p = find_process_by_pid(pid);
4408 retval = -ESRCH;
4409 if (!p)
4410 goto out_unlock;
4411
4412 retval = security_task_getscheduler(p);
4413 if (retval)
4414 goto out_unlock;
4415
4416 lp.sched_priority = p->rt_priority;
4417 read_unlock(&tasklist_lock);
4418
4419 /*
4420 * This one might sleep, we cannot do it with a spinlock held ...
4421 */
4422 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
4423
4424out_nounlock:
4425 return retval;
4426
4427out_unlock:
4428 read_unlock(&tasklist_lock);
4429 return retval;
4430}
4431
4432long sched_setaffinity(pid_t pid, cpumask_t new_mask)
4433{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434 cpumask_t cpus_allowed;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004435 struct task_struct *p;
4436 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437
4438 lock_cpu_hotplug();
4439 read_lock(&tasklist_lock);
4440
4441 p = find_process_by_pid(pid);
4442 if (!p) {
4443 read_unlock(&tasklist_lock);
4444 unlock_cpu_hotplug();
4445 return -ESRCH;
4446 }
4447
4448 /*
4449 * It is not safe to call set_cpus_allowed with the
4450 * tasklist_lock held. We will bump the task_struct's
4451 * usage count and then drop tasklist_lock.
4452 */
4453 get_task_struct(p);
4454 read_unlock(&tasklist_lock);
4455
4456 retval = -EPERM;
4457 if ((current->euid != p->euid) && (current->euid != p->uid) &&
4458 !capable(CAP_SYS_NICE))
4459 goto out_unlock;
4460
David Quigleye7834f82006-06-23 02:03:59 -07004461 retval = security_task_setscheduler(p, 0, NULL);
4462 if (retval)
4463 goto out_unlock;
4464
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465 cpus_allowed = cpuset_cpus_allowed(p);
4466 cpus_and(new_mask, new_mask, cpus_allowed);
4467 retval = set_cpus_allowed(p, new_mask);
4468
4469out_unlock:
4470 put_task_struct(p);
4471 unlock_cpu_hotplug();
4472 return retval;
4473}
4474
4475static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
4476 cpumask_t *new_mask)
4477{
4478 if (len < sizeof(cpumask_t)) {
4479 memset(new_mask, 0, sizeof(cpumask_t));
4480 } else if (len > sizeof(cpumask_t)) {
4481 len = sizeof(cpumask_t);
4482 }
4483 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
4484}
4485
4486/**
4487 * sys_sched_setaffinity - set the cpu affinity of a process
4488 * @pid: pid of the process
4489 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4490 * @user_mask_ptr: user-space pointer to the new cpu mask
4491 */
4492asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
4493 unsigned long __user *user_mask_ptr)
4494{
4495 cpumask_t new_mask;
4496 int retval;
4497
4498 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
4499 if (retval)
4500 return retval;
4501
4502 return sched_setaffinity(pid, new_mask);
4503}
4504
4505/*
4506 * Represents all cpu's present in the system
4507 * In systems capable of hotplug, this map could dynamically grow
4508 * as new cpu's are detected in the system via any platform specific
4509 * method, such as ACPI for e.g.
4510 */
4511
Andi Kleen4cef0c62006-01-11 22:44:57 +01004512cpumask_t cpu_present_map __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513EXPORT_SYMBOL(cpu_present_map);
4514
4515#ifndef CONFIG_SMP
Andi Kleen4cef0c62006-01-11 22:44:57 +01004516cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004517EXPORT_SYMBOL(cpu_online_map);
4518
Andi Kleen4cef0c62006-01-11 22:44:57 +01004519cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004520EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521#endif
4522
4523long sched_getaffinity(pid_t pid, cpumask_t *mask)
4524{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004525 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527
4528 lock_cpu_hotplug();
4529 read_lock(&tasklist_lock);
4530
4531 retval = -ESRCH;
4532 p = find_process_by_pid(pid);
4533 if (!p)
4534 goto out_unlock;
4535
David Quigleye7834f82006-06-23 02:03:59 -07004536 retval = security_task_getscheduler(p);
4537 if (retval)
4538 goto out_unlock;
4539
Jack Steiner2f7016d2006-02-01 03:05:18 -08004540 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541
4542out_unlock:
4543 read_unlock(&tasklist_lock);
4544 unlock_cpu_hotplug();
4545 if (retval)
4546 return retval;
4547
4548 return 0;
4549}
4550
4551/**
4552 * sys_sched_getaffinity - get the cpu affinity of a process
4553 * @pid: pid of the process
4554 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4555 * @user_mask_ptr: user-space pointer to hold the current cpu mask
4556 */
4557asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
4558 unsigned long __user *user_mask_ptr)
4559{
4560 int ret;
4561 cpumask_t mask;
4562
4563 if (len < sizeof(cpumask_t))
4564 return -EINVAL;
4565
4566 ret = sched_getaffinity(pid, &mask);
4567 if (ret < 0)
4568 return ret;
4569
4570 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
4571 return -EFAULT;
4572
4573 return sizeof(cpumask_t);
4574}
4575
4576/**
4577 * sys_sched_yield - yield the current processor to other threads.
4578 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004579 * This function yields the current CPU by moving the calling thread
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580 * to the expired array. If there are no other threads running on this
4581 * CPU then this function will return.
4582 */
4583asmlinkage long sys_sched_yield(void)
4584{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004585 struct rq *rq = this_rq_lock();
4586 struct prio_array *array = current->array, *target = rq->expired;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587
4588 schedstat_inc(rq, yld_cnt);
4589 /*
4590 * We implement yielding by moving the task into the expired
4591 * queue.
4592 *
4593 * (special rule: RT tasks will just roundrobin in the active
4594 * array.)
4595 */
4596 if (rt_task(current))
4597 target = rq->active;
4598
Renaud Lienhart5927ad72005-09-10 00:26:20 -07004599 if (array->nr_active == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600 schedstat_inc(rq, yld_act_empty);
4601 if (!rq->expired->nr_active)
4602 schedstat_inc(rq, yld_both_empty);
4603 } else if (!rq->expired->nr_active)
4604 schedstat_inc(rq, yld_exp_empty);
4605
4606 if (array != target) {
4607 dequeue_task(current, array);
4608 enqueue_task(current, target);
4609 } else
4610 /*
4611 * requeue_task is cheaper so perform that if possible.
4612 */
4613 requeue_task(current, array);
4614
4615 /*
4616 * Since we are going to call schedule() anyway, there's
4617 * no need to preempt or enable interrupts:
4618 */
4619 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004620 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621 _raw_spin_unlock(&rq->lock);
4622 preempt_enable_no_resched();
4623
4624 schedule();
4625
4626 return 0;
4627}
4628
Andrew Mortone7b38402006-06-30 01:56:00 -07004629static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07004631#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
4632 __might_sleep(__FILE__, __LINE__);
4633#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07004634 /*
4635 * The BKS might be reacquired before we have dropped
4636 * PREEMPT_ACTIVE, which could trigger a second
4637 * cond_resched() call.
4638 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639 do {
4640 add_preempt_count(PREEMPT_ACTIVE);
4641 schedule();
4642 sub_preempt_count(PREEMPT_ACTIVE);
4643 } while (need_resched());
4644}
4645
4646int __sched cond_resched(void)
4647{
Ingo Molnar94142322006-12-29 16:48:13 -08004648 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
4649 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650 __cond_resched();
4651 return 1;
4652 }
4653 return 0;
4654}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655EXPORT_SYMBOL(cond_resched);
4656
4657/*
4658 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
4659 * call schedule, and on return reacquire the lock.
4660 *
4661 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
4662 * operations here to prevent schedule() from being called twice (once via
4663 * spin_unlock(), once by hand).
4664 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004665int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666{
Jan Kara6df3cec2005-06-13 15:52:32 -07004667 int ret = 0;
4668
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669 if (need_lockbreak(lock)) {
4670 spin_unlock(lock);
4671 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07004672 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673 spin_lock(lock);
4674 }
Ingo Molnar94142322006-12-29 16:48:13 -08004675 if (need_resched() && system_state == SYSTEM_RUNNING) {
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004676 spin_release(&lock->dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677 _raw_spin_unlock(lock);
4678 preempt_enable_no_resched();
4679 __cond_resched();
Jan Kara6df3cec2005-06-13 15:52:32 -07004680 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004681 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682 }
Jan Kara6df3cec2005-06-13 15:52:32 -07004683 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685EXPORT_SYMBOL(cond_resched_lock);
4686
4687int __sched cond_resched_softirq(void)
4688{
4689 BUG_ON(!in_softirq());
4690
Ingo Molnar94142322006-12-29 16:48:13 -08004691 if (need_resched() && system_state == SYSTEM_RUNNING) {
Ingo Molnarde30a2b2006-07-03 00:24:42 -07004692 raw_local_irq_disable();
4693 _local_bh_enable();
4694 raw_local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695 __cond_resched();
4696 local_bh_disable();
4697 return 1;
4698 }
4699 return 0;
4700}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701EXPORT_SYMBOL(cond_resched_softirq);
4702
Linus Torvalds1da177e2005-04-16 15:20:36 -07004703/**
4704 * yield - yield the current processor to other threads.
4705 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08004706 * This is a shortcut for kernel-space yielding - it marks the
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707 * thread runnable and calls sys_sched_yield().
4708 */
4709void __sched yield(void)
4710{
4711 set_current_state(TASK_RUNNING);
4712 sys_sched_yield();
4713}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714EXPORT_SYMBOL(yield);
4715
4716/*
4717 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
4718 * that process accounting knows that this is a task in IO wait state.
4719 *
4720 * But don't do that if it is a deliberate, throttling IO wait (this task
4721 * has set its backing_dev_info: the queue against which it should throttle)
4722 */
4723void __sched io_schedule(void)
4724{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004725 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004727 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728 atomic_inc(&rq->nr_iowait);
4729 schedule();
4730 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004731 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733EXPORT_SYMBOL(io_schedule);
4734
4735long __sched io_schedule_timeout(long timeout)
4736{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004737 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738 long ret;
4739
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004740 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741 atomic_inc(&rq->nr_iowait);
4742 ret = schedule_timeout(timeout);
4743 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004744 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745 return ret;
4746}
4747
4748/**
4749 * sys_sched_get_priority_max - return maximum RT priority.
4750 * @policy: scheduling class.
4751 *
4752 * this syscall returns the maximum rt_priority that can be used
4753 * by a given scheduling class.
4754 */
4755asmlinkage long sys_sched_get_priority_max(int policy)
4756{
4757 int ret = -EINVAL;
4758
4759 switch (policy) {
4760 case SCHED_FIFO:
4761 case SCHED_RR:
4762 ret = MAX_USER_RT_PRIO-1;
4763 break;
4764 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08004765 case SCHED_BATCH:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766 ret = 0;
4767 break;
4768 }
4769 return ret;
4770}
4771
4772/**
4773 * sys_sched_get_priority_min - return minimum RT priority.
4774 * @policy: scheduling class.
4775 *
4776 * this syscall returns the minimum rt_priority that can be used
4777 * by a given scheduling class.
4778 */
4779asmlinkage long sys_sched_get_priority_min(int policy)
4780{
4781 int ret = -EINVAL;
4782
4783 switch (policy) {
4784 case SCHED_FIFO:
4785 case SCHED_RR:
4786 ret = 1;
4787 break;
4788 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08004789 case SCHED_BATCH:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004790 ret = 0;
4791 }
4792 return ret;
4793}
4794
4795/**
4796 * sys_sched_rr_get_interval - return the default timeslice of a process.
4797 * @pid: pid of the process.
4798 * @interval: userspace pointer to the timeslice value.
4799 *
4800 * this syscall writes the default timeslice value of a given process
4801 * into the user-space timespec buffer. A value of '0' means infinity.
4802 */
4803asmlinkage
4804long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
4805{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004806 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807 int retval = -EINVAL;
4808 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809
4810 if (pid < 0)
4811 goto out_nounlock;
4812
4813 retval = -ESRCH;
4814 read_lock(&tasklist_lock);
4815 p = find_process_by_pid(pid);
4816 if (!p)
4817 goto out_unlock;
4818
4819 retval = security_task_getscheduler(p);
4820 if (retval)
4821 goto out_unlock;
4822
Peter Williamsb78709c2006-06-26 16:58:00 +10004823 jiffies_to_timespec(p->policy == SCHED_FIFO ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824 0 : task_timeslice(p), &t);
4825 read_unlock(&tasklist_lock);
4826 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
4827out_nounlock:
4828 return retval;
4829out_unlock:
4830 read_unlock(&tasklist_lock);
4831 return retval;
4832}
4833
4834static inline struct task_struct *eldest_child(struct task_struct *p)
4835{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004836 if (list_empty(&p->children))
4837 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838 return list_entry(p->children.next,struct task_struct,sibling);
4839}
4840
4841static inline struct task_struct *older_sibling(struct task_struct *p)
4842{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004843 if (p->sibling.prev==&p->parent->children)
4844 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845 return list_entry(p->sibling.prev,struct task_struct,sibling);
4846}
4847
4848static inline struct task_struct *younger_sibling(struct task_struct *p)
4849{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004850 if (p->sibling.next==&p->parent->children)
4851 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852 return list_entry(p->sibling.next,struct task_struct,sibling);
4853}
4854
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004855static const char stat_nam[] = "RSDTtZX";
Ingo Molnar36c8b582006-07-03 00:25:41 -07004856
4857static void show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004858{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004859 struct task_struct *relative;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004861 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862
Linus Torvalds1da177e2005-04-16 15:20:36 -07004863 state = p->state ? __ffs(p->state) + 1 : 0;
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004864 printk("%-13.13s %c", p->comm,
4865 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Linus Torvalds1da177e2005-04-16 15:20:36 -07004866#if (BITS_PER_LONG == 32)
4867 if (state == TASK_RUNNING)
4868 printk(" running ");
4869 else
4870 printk(" %08lX ", thread_saved_pc(p));
4871#else
4872 if (state == TASK_RUNNING)
4873 printk(" running task ");
4874 else
4875 printk(" %016lx ", thread_saved_pc(p));
4876#endif
4877#ifdef CONFIG_DEBUG_STACK_USAGE
4878 {
Al Viro10ebffd2005-11-13 16:06:56 -08004879 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880 while (!*n)
4881 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08004882 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883 }
4884#endif
4885 printk("%5lu %5d %6d ", free, p->pid, p->parent->pid);
4886 if ((relative = eldest_child(p)))
4887 printk("%5d ", relative->pid);
4888 else
4889 printk(" ");
4890 if ((relative = younger_sibling(p)))
4891 printk("%7d", relative->pid);
4892 else
4893 printk(" ");
4894 if ((relative = older_sibling(p)))
4895 printk(" %5d", relative->pid);
4896 else
4897 printk(" ");
4898 if (!p->mm)
4899 printk(" (L-TLB)\n");
4900 else
4901 printk(" (NOTLB)\n");
4902
4903 if (state != TASK_RUNNING)
4904 show_stack(p, NULL);
4905}
4906
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004907void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004909 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910
4911#if (BITS_PER_LONG == 32)
4912 printk("\n"
Chris Caputo301827a2006-12-06 20:39:11 -08004913 " free sibling\n");
4914 printk(" task PC stack pid father child younger older\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915#else
4916 printk("\n"
Chris Caputo301827a2006-12-06 20:39:11 -08004917 " free sibling\n");
4918 printk(" task PC stack pid father child younger older\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919#endif
4920 read_lock(&tasklist_lock);
4921 do_each_thread(g, p) {
4922 /*
4923 * reset the NMI-timeout, listing all files on a slow
4924 * console might take alot of time:
4925 */
4926 touch_nmi_watchdog();
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004927 if (p->state & state_filter)
4928 show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004929 } while_each_thread(g, p);
4930
4931 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004932 /*
4933 * Only show locks if all tasks are dumped:
4934 */
4935 if (state_filter == -1)
4936 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004937}
4938
Ingo Molnarf340c0d2005-06-28 16:40:42 +02004939/**
4940 * init_idle - set up an idle thread for a given CPU
4941 * @idle: task in question
4942 * @cpu: cpu the idle task belongs to
4943 *
4944 * NOTE: this function does not set the idle thread's NEED_RESCHED
4945 * flag, to make booting more robust.
4946 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07004947void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004948{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004949 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004950 unsigned long flags;
4951
Ingo Molnar81c29a82006-03-07 21:55:27 -08004952 idle->timestamp = sched_clock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004953 idle->sleep_avg = 0;
4954 idle->array = NULL;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004955 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956 idle->state = TASK_RUNNING;
4957 idle->cpus_allowed = cpumask_of_cpu(cpu);
4958 set_task_cpu(idle, cpu);
4959
4960 spin_lock_irqsave(&rq->lock, flags);
4961 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07004962#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
4963 idle->oncpu = 1;
4964#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965 spin_unlock_irqrestore(&rq->lock, flags);
4966
4967 /* Set the preempt count _outside_ the spinlocks! */
4968#if defined(CONFIG_PREEMPT) && !defined(CONFIG_PREEMPT_BKL)
Al Viroa1261f542005-11-13 16:06:55 -08004969 task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004970#else
Al Viroa1261f542005-11-13 16:06:55 -08004971 task_thread_info(idle)->preempt_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004972#endif
4973}
4974
4975/*
4976 * In a system that switches off the HZ timer nohz_cpu_mask
4977 * indicates which cpus entered this state. This is used
4978 * in the rcu update to wait only for active cpus. For system
4979 * which do not switch off the HZ timer nohz_cpu_mask should
4980 * always be CPU_MASK_NONE.
4981 */
4982cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
4983
4984#ifdef CONFIG_SMP
4985/*
4986 * This is how migration works:
4987 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07004988 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07004989 * runqueue and wake up that CPU's migration thread.
4990 * 2) we down() the locked semaphore => thread blocks.
4991 * 3) migration thread wakes up (implicitly it forces the migrated
4992 * thread off the CPU)
4993 * 4) it gets the migration request and checks whether the migrated
4994 * task is still in the wrong runqueue.
4995 * 5) if it's in the wrong runqueue then the migration thread removes
4996 * it and puts it into the right queue.
4997 * 6) migration thread up()s the semaphore.
4998 * 7) we wake up and the migration is done.
4999 */
5000
5001/*
5002 * Change a given task's CPU affinity. Migrate the thread to a
5003 * proper CPU and schedule it away if the CPU it's executing on
5004 * is removed from the allowed bitmask.
5005 *
5006 * NOTE: the caller must have a valid reference to the task, the
5007 * task must not exit() & deallocate itself prematurely. The
5008 * call is not atomic; no spinlocks may be held.
5009 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005010int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005012 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005014 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005015 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005016
5017 rq = task_rq_lock(p, &flags);
5018 if (!cpus_intersects(new_mask, cpu_online_map)) {
5019 ret = -EINVAL;
5020 goto out;
5021 }
5022
5023 p->cpus_allowed = new_mask;
5024 /* Can the task run on the task's current CPU? If so, we're done */
5025 if (cpu_isset(task_cpu(p), new_mask))
5026 goto out;
5027
5028 if (migrate_task(p, any_online_cpu(new_mask), &req)) {
5029 /* Need help from migration thread: drop lock and wait. */
5030 task_rq_unlock(rq, &flags);
5031 wake_up_process(rq->migration_thread);
5032 wait_for_completion(&req.done);
5033 tlb_migrate_finish(p->mm);
5034 return 0;
5035 }
5036out:
5037 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005038
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039 return ret;
5040}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041EXPORT_SYMBOL_GPL(set_cpus_allowed);
5042
5043/*
5044 * Move (not current) task off this cpu, onto dest cpu. We're doing
5045 * this because either it can't run here any more (set_cpus_allowed()
5046 * away from this CPU, or CPU going down), or because we're
5047 * attempting to rebalance this task on exec (sched_exec).
5048 *
5049 * So we race with normal scheduler movements, but that's OK, as long
5050 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07005051 *
5052 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07005054static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005055{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005056 struct rq *rq_dest, *rq_src;
Kirill Korotaevefc30812006-06-27 02:54:32 -07005057 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058
5059 if (unlikely(cpu_is_offline(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07005060 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005061
5062 rq_src = cpu_rq(src_cpu);
5063 rq_dest = cpu_rq(dest_cpu);
5064
5065 double_rq_lock(rq_src, rq_dest);
5066 /* Already moved. */
5067 if (task_cpu(p) != src_cpu)
5068 goto out;
5069 /* Affinity changed (again). */
5070 if (!cpu_isset(dest_cpu, p->cpus_allowed))
5071 goto out;
5072
5073 set_task_cpu(p, dest_cpu);
5074 if (p->array) {
5075 /*
5076 * Sync timestamp with rq_dest's before activating.
5077 * The same thing could be achieved by doing this step
5078 * afterwards, and pretending it was a local activate.
5079 * This way is cleaner and logically correct.
5080 */
Mike Galbraithb18ec802006-12-10 02:20:31 -08005081 p->timestamp = p->timestamp - rq_src->most_recent_timestamp
5082 + rq_dest->most_recent_timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083 deactivate_task(p, rq_src);
Peter Williams0a565f72006-07-10 04:43:51 -07005084 __activate_task(p, rq_dest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005085 if (TASK_PREEMPTS_CURR(p, rq_dest))
5086 resched_task(rq_dest->curr);
5087 }
Kirill Korotaevefc30812006-06-27 02:54:32 -07005088 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089out:
5090 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005091 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092}
5093
5094/*
5095 * migration_thread - this is a highprio system thread that performs
5096 * thread migration by bumping thread off CPU then 'pushing' onto
5097 * another runqueue.
5098 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005099static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005100{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005102 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103
5104 rq = cpu_rq(cpu);
5105 BUG_ON(rq->migration_thread != current);
5106
5107 set_current_state(TASK_INTERRUPTIBLE);
5108 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005109 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005110 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07005112 try_to_freeze();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113
5114 spin_lock_irq(&rq->lock);
5115
5116 if (cpu_is_offline(cpu)) {
5117 spin_unlock_irq(&rq->lock);
5118 goto wait_to_die;
5119 }
5120
5121 if (rq->active_balance) {
5122 active_load_balance(rq, cpu);
5123 rq->active_balance = 0;
5124 }
5125
5126 head = &rq->migration_queue;
5127
5128 if (list_empty(head)) {
5129 spin_unlock_irq(&rq->lock);
5130 schedule();
5131 set_current_state(TASK_INTERRUPTIBLE);
5132 continue;
5133 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07005134 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005135 list_del_init(head->next);
5136
Nick Piggin674311d2005-06-25 14:57:27 -07005137 spin_unlock(&rq->lock);
5138 __migrate_task(req->task, cpu, req->dest_cpu);
5139 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005140
5141 complete(&req->done);
5142 }
5143 __set_current_state(TASK_RUNNING);
5144 return 0;
5145
5146wait_to_die:
5147 /* Wait for kthread_stop */
5148 set_current_state(TASK_INTERRUPTIBLE);
5149 while (!kthread_should_stop()) {
5150 schedule();
5151 set_current_state(TASK_INTERRUPTIBLE);
5152 }
5153 __set_current_state(TASK_RUNNING);
5154 return 0;
5155}
5156
5157#ifdef CONFIG_HOTPLUG_CPU
Kirill Korotaev054b9102006-12-10 02:20:11 -08005158/*
5159 * Figure out where task on dead CPU should go, use force if neccessary.
5160 * NOTE: interrupts should be disabled by the caller
5161 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005162static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163{
Kirill Korotaevefc30812006-06-27 02:54:32 -07005164 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005166 struct rq *rq;
5167 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168
Kirill Korotaevefc30812006-06-27 02:54:32 -07005169restart:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170 /* On same node? */
5171 mask = node_to_cpumask(cpu_to_node(dead_cpu));
Ingo Molnar48f24c42006-07-03 00:25:40 -07005172 cpus_and(mask, mask, p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005173 dest_cpu = any_online_cpu(mask);
5174
5175 /* On any allowed CPU? */
5176 if (dest_cpu == NR_CPUS)
Ingo Molnar48f24c42006-07-03 00:25:40 -07005177 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178
5179 /* No more Mr. Nice Guy. */
5180 if (dest_cpu == NR_CPUS) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07005181 rq = task_rq_lock(p, &flags);
5182 cpus_setall(p->cpus_allowed);
5183 dest_cpu = any_online_cpu(p->cpus_allowed);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005184 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005185
5186 /*
5187 * Don't tell them about moving exiting tasks or
5188 * kernel threads (both mm NULL), since they never
5189 * leave kernel.
5190 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005191 if (p->mm && printk_ratelimit())
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192 printk(KERN_INFO "process %d (%s) no "
5193 "longer affine to cpu%d\n",
Ingo Molnar48f24c42006-07-03 00:25:40 -07005194 p->pid, p->comm, dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07005196 if (!__migrate_task(p, dead_cpu, dest_cpu))
Kirill Korotaevefc30812006-06-27 02:54:32 -07005197 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005198}
5199
5200/*
5201 * While a dead CPU has no uninterruptible tasks queued at this point,
5202 * it might still have a nonzero ->nr_uninterruptible counter, because
5203 * for performance reasons the counter is not stricly tracking tasks to
5204 * their home CPUs. So we just add the counter to another CPU's counter,
5205 * to keep the global sum constant after CPU-down:
5206 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07005207static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005209 struct rq *rq_dest = cpu_rq(any_online_cpu(CPU_MASK_ALL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210 unsigned long flags;
5211
5212 local_irq_save(flags);
5213 double_rq_lock(rq_src, rq_dest);
5214 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
5215 rq_src->nr_uninterruptible = 0;
5216 double_rq_unlock(rq_src, rq_dest);
5217 local_irq_restore(flags);
5218}
5219
5220/* Run through task list and migrate tasks from the dead cpu. */
5221static void migrate_live_tasks(int src_cpu)
5222{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005223 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224
5225 write_lock_irq(&tasklist_lock);
5226
Ingo Molnar48f24c42006-07-03 00:25:40 -07005227 do_each_thread(t, p) {
5228 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005229 continue;
5230
Ingo Molnar48f24c42006-07-03 00:25:40 -07005231 if (task_cpu(p) == src_cpu)
5232 move_task_off_dead_cpu(src_cpu, p);
5233 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005234
5235 write_unlock_irq(&tasklist_lock);
5236}
5237
5238/* Schedules idle task to be the next runnable task on current CPU.
5239 * It does so by boosting its priority to highest possible and adding it to
Ingo Molnar48f24c42006-07-03 00:25:40 -07005240 * the _front_ of the runqueue. Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005241 */
5242void sched_idle_next(void)
5243{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005244 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07005245 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005246 struct task_struct *p = rq->idle;
5247 unsigned long flags;
5248
5249 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005250 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005251
Ingo Molnar48f24c42006-07-03 00:25:40 -07005252 /*
5253 * Strictly not necessary since rest of the CPUs are stopped by now
5254 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255 */
5256 spin_lock_irqsave(&rq->lock, flags);
5257
5258 __setscheduler(p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005259
5260 /* Add idle task to the _front_ of its priority queue: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005261 __activate_idle_task(p, rq);
5262
5263 spin_unlock_irqrestore(&rq->lock, flags);
5264}
5265
Ingo Molnar48f24c42006-07-03 00:25:40 -07005266/*
5267 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07005268 * offline.
5269 */
5270void idle_task_exit(void)
5271{
5272 struct mm_struct *mm = current->active_mm;
5273
5274 BUG_ON(cpu_online(smp_processor_id()));
5275
5276 if (mm != &init_mm)
5277 switch_mm(mm, &init_mm, current);
5278 mmdrop(mm);
5279}
5280
Kirill Korotaev054b9102006-12-10 02:20:11 -08005281/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005282static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005283{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005284 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285
5286 /* Must be exiting, otherwise would be on tasklist. */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005287 BUG_ON(p->exit_state != EXIT_ZOMBIE && p->exit_state != EXIT_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005288
5289 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07005290 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005291
Ingo Molnar48f24c42006-07-03 00:25:40 -07005292 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005293
5294 /*
5295 * Drop lock around migration; if someone else moves it,
5296 * that's OK. No task can be added to this CPU, so iteration is
5297 * fine.
Kirill Korotaev054b9102006-12-10 02:20:11 -08005298 * NOTE: interrupts should be left disabled --dev@
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299 */
Kirill Korotaev054b9102006-12-10 02:20:11 -08005300 spin_unlock(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005301 move_task_off_dead_cpu(dead_cpu, p);
Kirill Korotaev054b9102006-12-10 02:20:11 -08005302 spin_lock(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303
Ingo Molnar48f24c42006-07-03 00:25:40 -07005304 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005305}
5306
5307/* release_task() removes task from tasklist, so we won't find dead tasks. */
5308static void migrate_dead_tasks(unsigned int dead_cpu)
5309{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005310 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005311 unsigned int arr, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312
5313 for (arr = 0; arr < 2; arr++) {
5314 for (i = 0; i < MAX_PRIO; i++) {
5315 struct list_head *list = &rq->arrays[arr].queue[i];
Ingo Molnar48f24c42006-07-03 00:25:40 -07005316
Linus Torvalds1da177e2005-04-16 15:20:36 -07005317 while (!list_empty(list))
Ingo Molnar36c8b582006-07-03 00:25:41 -07005318 migrate_dead(dead_cpu, list_entry(list->next,
5319 struct task_struct, run_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320 }
5321 }
5322}
5323#endif /* CONFIG_HOTPLUG_CPU */
5324
5325/*
5326 * migration_call - callback that gets triggered when a CPU is added.
5327 * Here we can start up the necessary migration thread for the new CPU.
5328 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005329static int __cpuinit
5330migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005331{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005332 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005333 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005334 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005335 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005336
5337 switch (action) {
5338 case CPU_UP_PREPARE:
5339 p = kthread_create(migration_thread, hcpu, "migration/%d",cpu);
5340 if (IS_ERR(p))
5341 return NOTIFY_BAD;
5342 p->flags |= PF_NOFREEZE;
5343 kthread_bind(p, cpu);
5344 /* Must be high prio: stop_machine expects to yield to it. */
5345 rq = task_rq_lock(p, &flags);
5346 __setscheduler(p, SCHED_FIFO, MAX_RT_PRIO-1);
5347 task_rq_unlock(rq, &flags);
5348 cpu_rq(cpu)->migration_thread = p;
5349 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005350
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351 case CPU_ONLINE:
5352 /* Strictly unneccessary, as first user will wake it. */
5353 wake_up_process(cpu_rq(cpu)->migration_thread);
5354 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005355
Linus Torvalds1da177e2005-04-16 15:20:36 -07005356#ifdef CONFIG_HOTPLUG_CPU
5357 case CPU_UP_CANCELED:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07005358 if (!cpu_rq(cpu)->migration_thread)
5359 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08005361 kthread_bind(cpu_rq(cpu)->migration_thread,
5362 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005363 kthread_stop(cpu_rq(cpu)->migration_thread);
5364 cpu_rq(cpu)->migration_thread = NULL;
5365 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005366
Linus Torvalds1da177e2005-04-16 15:20:36 -07005367 case CPU_DEAD:
5368 migrate_live_tasks(cpu);
5369 rq = cpu_rq(cpu);
5370 kthread_stop(rq->migration_thread);
5371 rq->migration_thread = NULL;
5372 /* Idle task back to normal (off runqueue, low prio) */
5373 rq = task_rq_lock(rq->idle, &flags);
5374 deactivate_task(rq->idle, rq);
5375 rq->idle->static_prio = MAX_PRIO;
5376 __setscheduler(rq->idle, SCHED_NORMAL, 0);
5377 migrate_dead_tasks(cpu);
5378 task_rq_unlock(rq, &flags);
5379 migrate_nr_uninterruptible(rq);
5380 BUG_ON(rq->nr_running != 0);
5381
5382 /* No need to migrate the tasks: it was best-effort if
5383 * they didn't do lock_cpu_hotplug(). Just wake up
5384 * the requestors. */
5385 spin_lock_irq(&rq->lock);
5386 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005387 struct migration_req *req;
5388
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07005390 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005391 list_del_init(&req->list);
5392 complete(&req->done);
5393 }
5394 spin_unlock_irq(&rq->lock);
5395 break;
5396#endif
5397 }
5398 return NOTIFY_OK;
5399}
5400
5401/* Register at highest priority so that task migration (migrate_all_tasks)
5402 * happens before everything else.
5403 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07005404static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005405 .notifier_call = migration_call,
5406 .priority = 10
5407};
5408
5409int __init migration_init(void)
5410{
5411 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07005412 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005413
5414 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07005415 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
5416 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417 migration_call(&migration_notifier, CPU_ONLINE, cpu);
5418 register_cpu_notifier(&migration_notifier);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005419
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420 return 0;
5421}
5422#endif
5423
5424#ifdef CONFIG_SMP
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07005425#undef SCHED_DOMAIN_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07005426#ifdef SCHED_DOMAIN_DEBUG
5427static void sched_domain_debug(struct sched_domain *sd, int cpu)
5428{
5429 int level = 0;
5430
Nick Piggin41c7ce92005-06-25 14:57:24 -07005431 if (!sd) {
5432 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
5433 return;
5434 }
5435
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
5437
5438 do {
5439 int i;
5440 char str[NR_CPUS];
5441 struct sched_group *group = sd->groups;
5442 cpumask_t groupmask;
5443
5444 cpumask_scnprintf(str, NR_CPUS, sd->span);
5445 cpus_clear(groupmask);
5446
5447 printk(KERN_DEBUG);
5448 for (i = 0; i < level + 1; i++)
5449 printk(" ");
5450 printk("domain %d: ", level);
5451
5452 if (!(sd->flags & SD_LOAD_BALANCE)) {
5453 printk("does not load-balance\n");
5454 if (sd->parent)
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005455 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
5456 " has parent");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005457 break;
5458 }
5459
5460 printk("span %s\n", str);
5461
5462 if (!cpu_isset(cpu, sd->span))
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005463 printk(KERN_ERR "ERROR: domain->span does not contain "
5464 "CPU%d\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005465 if (!cpu_isset(cpu, group->cpumask))
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005466 printk(KERN_ERR "ERROR: domain->groups does not contain"
5467 " CPU%d\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005468
5469 printk(KERN_DEBUG);
5470 for (i = 0; i < level + 2; i++)
5471 printk(" ");
5472 printk("groups:");
5473 do {
5474 if (!group) {
5475 printk("\n");
5476 printk(KERN_ERR "ERROR: group is NULL\n");
5477 break;
5478 }
5479
5480 if (!group->cpu_power) {
5481 printk("\n");
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005482 printk(KERN_ERR "ERROR: domain->cpu_power not "
5483 "set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005484 }
5485
5486 if (!cpus_weight(group->cpumask)) {
5487 printk("\n");
5488 printk(KERN_ERR "ERROR: empty group\n");
5489 }
5490
5491 if (cpus_intersects(groupmask, group->cpumask)) {
5492 printk("\n");
5493 printk(KERN_ERR "ERROR: repeated CPUs\n");
5494 }
5495
5496 cpus_or(groupmask, groupmask, group->cpumask);
5497
5498 cpumask_scnprintf(str, NR_CPUS, group->cpumask);
5499 printk(" %s", str);
5500
5501 group = group->next;
5502 } while (group != sd->groups);
5503 printk("\n");
5504
5505 if (!cpus_equal(sd->span, groupmask))
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005506 printk(KERN_ERR "ERROR: groups don't span "
5507 "domain->span\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508
5509 level++;
5510 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005511 if (!sd)
5512 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005514 if (!cpus_subset(groupmask, sd->span))
5515 printk(KERN_ERR "ERROR: parent span is not a superset "
5516 "of domain->span\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005517
5518 } while (sd);
5519}
5520#else
Ingo Molnar48f24c42006-07-03 00:25:40 -07005521# define sched_domain_debug(sd, cpu) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005522#endif
5523
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07005524static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005525{
5526 if (cpus_weight(sd->span) == 1)
5527 return 1;
5528
5529 /* Following flags need at least 2 groups */
5530 if (sd->flags & (SD_LOAD_BALANCE |
5531 SD_BALANCE_NEWIDLE |
5532 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005533 SD_BALANCE_EXEC |
5534 SD_SHARE_CPUPOWER |
5535 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005536 if (sd->groups != sd->groups->next)
5537 return 0;
5538 }
5539
5540 /* Following flags don't use groups */
5541 if (sd->flags & (SD_WAKE_IDLE |
5542 SD_WAKE_AFFINE |
5543 SD_WAKE_BALANCE))
5544 return 0;
5545
5546 return 1;
5547}
5548
Ingo Molnar48f24c42006-07-03 00:25:40 -07005549static int
5550sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005551{
5552 unsigned long cflags = sd->flags, pflags = parent->flags;
5553
5554 if (sd_degenerate(parent))
5555 return 1;
5556
5557 if (!cpus_equal(sd->span, parent->span))
5558 return 0;
5559
5560 /* Does parent contain flags not in child? */
5561 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
5562 if (cflags & SD_WAKE_AFFINE)
5563 pflags &= ~SD_WAKE_BALANCE;
5564 /* Flags needing groups don't count if only 1 group in parent */
5565 if (parent->groups == parent->groups->next) {
5566 pflags &= ~(SD_LOAD_BALANCE |
5567 SD_BALANCE_NEWIDLE |
5568 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005569 SD_BALANCE_EXEC |
5570 SD_SHARE_CPUPOWER |
5571 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07005572 }
5573 if (~cflags & pflags)
5574 return 0;
5575
5576 return 1;
5577}
5578
Linus Torvalds1da177e2005-04-16 15:20:36 -07005579/*
5580 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
5581 * hold the hotplug lock.
5582 */
John Hawkes9c1cfda2005-09-06 15:18:14 -07005583static void cpu_attach_domain(struct sched_domain *sd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005584{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005585 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07005586 struct sched_domain *tmp;
5587
5588 /* Remove the sched domains which do not contribute to scheduling. */
5589 for (tmp = sd; tmp; tmp = tmp->parent) {
5590 struct sched_domain *parent = tmp->parent;
5591 if (!parent)
5592 break;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005593 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005594 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005595 if (parent->parent)
5596 parent->parent->child = tmp;
5597 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07005598 }
5599
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005600 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005601 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005602 if (sd)
5603 sd->child = NULL;
5604 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005605
5606 sched_domain_debug(sd, cpu);
5607
Nick Piggin674311d2005-06-25 14:57:27 -07005608 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005609}
5610
5611/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08005612static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005613
5614/* Setup the mask of cpus configured for isolated domains */
5615static int __init isolated_cpu_setup(char *str)
5616{
5617 int ints[NR_CPUS], i;
5618
5619 str = get_options(str, ARRAY_SIZE(ints), ints);
5620 cpus_clear(cpu_isolated_map);
5621 for (i = 1; i <= ints[0]; i++)
5622 if (ints[i] < NR_CPUS)
5623 cpu_set(ints[i], cpu_isolated_map);
5624 return 1;
5625}
5626
5627__setup ("isolcpus=", isolated_cpu_setup);
5628
5629/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005630 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
5631 * to a function which identifies what group(along with sched group) a CPU
5632 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
5633 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005634 *
5635 * init_sched_build_groups will build a circular linked list of the groups
5636 * covered by the given span, and will set each group's ->cpumask correctly,
5637 * and ->cpu_power to 0.
5638 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07005639static void
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005640init_sched_build_groups(cpumask_t span, const cpumask_t *cpu_map,
5641 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
5642 struct sched_group **sg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005643{
5644 struct sched_group *first = NULL, *last = NULL;
5645 cpumask_t covered = CPU_MASK_NONE;
5646 int i;
5647
5648 for_each_cpu_mask(i, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005649 struct sched_group *sg;
5650 int group = group_fn(i, cpu_map, &sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005651 int j;
5652
5653 if (cpu_isset(i, covered))
5654 continue;
5655
5656 sg->cpumask = CPU_MASK_NONE;
5657 sg->cpu_power = 0;
5658
5659 for_each_cpu_mask(j, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005660 if (group_fn(j, cpu_map, NULL) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005661 continue;
5662
5663 cpu_set(j, covered);
5664 cpu_set(j, sg->cpumask);
5665 }
5666 if (!first)
5667 first = sg;
5668 if (last)
5669 last->next = sg;
5670 last = sg;
5671 }
5672 last->next = first;
5673}
5674
John Hawkes9c1cfda2005-09-06 15:18:14 -07005675#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005677/*
5678 * Self-tuning task migration cost measurement between source and target CPUs.
5679 *
5680 * This is done by measuring the cost of manipulating buffers of varying
5681 * sizes. For a given buffer-size here are the steps that are taken:
5682 *
5683 * 1) the source CPU reads+dirties a shared buffer
5684 * 2) the target CPU reads+dirties the same shared buffer
5685 *
5686 * We measure how long they take, in the following 4 scenarios:
5687 *
5688 * - source: CPU1, target: CPU2 | cost1
5689 * - source: CPU2, target: CPU1 | cost2
5690 * - source: CPU1, target: CPU1 | cost3
5691 * - source: CPU2, target: CPU2 | cost4
5692 *
5693 * We then calculate the cost3+cost4-cost1-cost2 difference - this is
5694 * the cost of migration.
5695 *
5696 * We then start off from a small buffer-size and iterate up to larger
5697 * buffer sizes, in 5% steps - measuring each buffer-size separately, and
5698 * doing a maximum search for the cost. (The maximum cost for a migration
5699 * normally occurs when the working set size is around the effective cache
5700 * size.)
5701 */
5702#define SEARCH_SCOPE 2
5703#define MIN_CACHE_SIZE (64*1024U)
5704#define DEFAULT_CACHE_SIZE (5*1024*1024U)
Ingo Molnar70b4d632006-01-30 20:24:38 +01005705#define ITERATIONS 1
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005706#define SIZE_THRESH 130
5707#define COST_THRESH 130
5708
5709/*
5710 * The migration cost is a function of 'domain distance'. Domain
5711 * distance is the number of steps a CPU has to iterate down its
5712 * domain tree to share a domain with the other CPU. The farther
5713 * two CPUs are from each other, the larger the distance gets.
5714 *
5715 * Note that we use the distance only to cache measurement results,
5716 * the distance value is not used numerically otherwise. When two
5717 * CPUs have the same distance it is assumed that the migration
5718 * cost is the same. (this is a simplification but quite practical)
5719 */
5720#define MAX_DOMAIN_DISTANCE 32
5721
5722static unsigned long long migration_cost[MAX_DOMAIN_DISTANCE] =
Ingo Molnar4bbf39c2006-02-17 13:52:44 -08005723 { [ 0 ... MAX_DOMAIN_DISTANCE-1 ] =
5724/*
5725 * Architectures may override the migration cost and thus avoid
5726 * boot-time calibration. Unit is nanoseconds. Mostly useful for
5727 * virtualized hardware:
5728 */
5729#ifdef CONFIG_DEFAULT_MIGRATION_COST
5730 CONFIG_DEFAULT_MIGRATION_COST
5731#else
5732 -1LL
5733#endif
5734};
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005735
5736/*
5737 * Allow override of migration cost - in units of microseconds.
5738 * E.g. migration_cost=1000,2000,3000 will set up a level-1 cost
5739 * of 1 msec, level-2 cost of 2 msecs and level3 cost of 3 msecs:
5740 */
5741static int __init migration_cost_setup(char *str)
5742{
5743 int ints[MAX_DOMAIN_DISTANCE+1], i;
5744
5745 str = get_options(str, ARRAY_SIZE(ints), ints);
5746
5747 printk("#ints: %d\n", ints[0]);
5748 for (i = 1; i <= ints[0]; i++) {
5749 migration_cost[i-1] = (unsigned long long)ints[i]*1000;
5750 printk("migration_cost[%d]: %Ld\n", i-1, migration_cost[i-1]);
5751 }
5752 return 1;
5753}
5754
5755__setup ("migration_cost=", migration_cost_setup);
5756
5757/*
5758 * Global multiplier (divisor) for migration-cutoff values,
5759 * in percentiles. E.g. use a value of 150 to get 1.5 times
5760 * longer cache-hot cutoff times.
5761 *
5762 * (We scale it from 100 to 128 to long long handling easier.)
5763 */
5764
5765#define MIGRATION_FACTOR_SCALE 128
5766
5767static unsigned int migration_factor = MIGRATION_FACTOR_SCALE;
5768
5769static int __init setup_migration_factor(char *str)
5770{
5771 get_option(&str, &migration_factor);
5772 migration_factor = migration_factor * MIGRATION_FACTOR_SCALE / 100;
5773 return 1;
5774}
5775
5776__setup("migration_factor=", setup_migration_factor);
5777
5778/*
5779 * Estimated distance of two CPUs, measured via the number of domains
5780 * we have to pass for the two CPUs to be in the same span:
5781 */
5782static unsigned long domain_distance(int cpu1, int cpu2)
5783{
5784 unsigned long distance = 0;
5785 struct sched_domain *sd;
5786
5787 for_each_domain(cpu1, sd) {
5788 WARN_ON(!cpu_isset(cpu1, sd->span));
5789 if (cpu_isset(cpu2, sd->span))
5790 return distance;
5791 distance++;
5792 }
5793 if (distance >= MAX_DOMAIN_DISTANCE) {
5794 WARN_ON(1);
5795 distance = MAX_DOMAIN_DISTANCE-1;
5796 }
5797
5798 return distance;
5799}
5800
5801static unsigned int migration_debug;
5802
5803static int __init setup_migration_debug(char *str)
5804{
5805 get_option(&str, &migration_debug);
5806 return 1;
5807}
5808
5809__setup("migration_debug=", setup_migration_debug);
5810
5811/*
5812 * Maximum cache-size that the scheduler should try to measure.
5813 * Architectures with larger caches should tune this up during
5814 * bootup. Gets used in the domain-setup code (i.e. during SMP
5815 * bootup).
5816 */
5817unsigned int max_cache_size;
5818
5819static int __init setup_max_cache_size(char *str)
5820{
5821 get_option(&str, &max_cache_size);
5822 return 1;
5823}
5824
5825__setup("max_cache_size=", setup_max_cache_size);
5826
5827/*
5828 * Dirty a big buffer in a hard-to-predict (for the L2 cache) way. This
5829 * is the operation that is timed, so we try to generate unpredictable
5830 * cachemisses that still end up filling the L2 cache:
5831 */
5832static void touch_cache(void *__cache, unsigned long __size)
5833{
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005834 unsigned long size = __size / sizeof(long);
5835 unsigned long chunk1 = size / 3;
5836 unsigned long chunk2 = 2 * size / 3;
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005837 unsigned long *cache = __cache;
5838 int i;
5839
5840 for (i = 0; i < size/6; i += 8) {
5841 switch (i % 6) {
5842 case 0: cache[i]++;
5843 case 1: cache[size-1-i]++;
5844 case 2: cache[chunk1-i]++;
5845 case 3: cache[chunk1+i]++;
5846 case 4: cache[chunk2-i]++;
5847 case 5: cache[chunk2+i]++;
5848 }
5849 }
5850}
5851
5852/*
5853 * Measure the cache-cost of one task migration. Returns in units of nsec.
5854 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005855static unsigned long long
5856measure_one(void *cache, unsigned long size, int source, int target)
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005857{
5858 cpumask_t mask, saved_mask;
5859 unsigned long long t0, t1, t2, t3, cost;
5860
5861 saved_mask = current->cpus_allowed;
5862
5863 /*
5864 * Flush source caches to RAM and invalidate them:
5865 */
5866 sched_cacheflush();
5867
5868 /*
5869 * Migrate to the source CPU:
5870 */
5871 mask = cpumask_of_cpu(source);
5872 set_cpus_allowed(current, mask);
5873 WARN_ON(smp_processor_id() != source);
5874
5875 /*
5876 * Dirty the working set:
5877 */
5878 t0 = sched_clock();
5879 touch_cache(cache, size);
5880 t1 = sched_clock();
5881
5882 /*
5883 * Migrate to the target CPU, dirty the L2 cache and access
5884 * the shared buffer. (which represents the working set
5885 * of a migrated task.)
5886 */
5887 mask = cpumask_of_cpu(target);
5888 set_cpus_allowed(current, mask);
5889 WARN_ON(smp_processor_id() != target);
5890
5891 t2 = sched_clock();
5892 touch_cache(cache, size);
5893 t3 = sched_clock();
5894
5895 cost = t1-t0 + t3-t2;
5896
5897 if (migration_debug >= 2)
5898 printk("[%d->%d]: %8Ld %8Ld %8Ld => %10Ld.\n",
5899 source, target, t1-t0, t1-t0, t3-t2, cost);
5900 /*
5901 * Flush target caches to RAM and invalidate them:
5902 */
5903 sched_cacheflush();
5904
5905 set_cpus_allowed(current, saved_mask);
5906
5907 return cost;
5908}
5909
5910/*
5911 * Measure a series of task migrations and return the average
5912 * result. Since this code runs early during bootup the system
5913 * is 'undisturbed' and the average latency makes sense.
5914 *
5915 * The algorithm in essence auto-detects the relevant cache-size,
5916 * so it will properly detect different cachesizes for different
5917 * cache-hierarchies, depending on how the CPUs are connected.
5918 *
5919 * Architectures can prime the upper limit of the search range via
5920 * max_cache_size, otherwise the search range defaults to 20MB...64K.
5921 */
5922static unsigned long long
5923measure_cost(int cpu1, int cpu2, void *cache, unsigned int size)
5924{
5925 unsigned long long cost1, cost2;
5926 int i;
5927
5928 /*
5929 * Measure the migration cost of 'size' bytes, over an
5930 * average of 10 runs:
5931 *
5932 * (We perturb the cache size by a small (0..4k)
5933 * value to compensate size/alignment related artifacts.
5934 * We also subtract the cost of the operation done on
5935 * the same CPU.)
5936 */
5937 cost1 = 0;
5938
5939 /*
5940 * dry run, to make sure we start off cache-cold on cpu1,
5941 * and to get any vmalloc pagefaults in advance:
5942 */
5943 measure_one(cache, size, cpu1, cpu2);
5944 for (i = 0; i < ITERATIONS; i++)
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005945 cost1 += measure_one(cache, size - i * 1024, cpu1, cpu2);
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005946
5947 measure_one(cache, size, cpu2, cpu1);
5948 for (i = 0; i < ITERATIONS; i++)
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005949 cost1 += measure_one(cache, size - i * 1024, cpu2, cpu1);
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005950
5951 /*
5952 * (We measure the non-migrating [cached] cost on both
5953 * cpu1 and cpu2, to handle CPUs with different speeds)
5954 */
5955 cost2 = 0;
5956
5957 measure_one(cache, size, cpu1, cpu1);
5958 for (i = 0; i < ITERATIONS; i++)
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005959 cost2 += measure_one(cache, size - i * 1024, cpu1, cpu1);
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005960
5961 measure_one(cache, size, cpu2, cpu2);
5962 for (i = 0; i < ITERATIONS; i++)
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005963 cost2 += measure_one(cache, size - i * 1024, cpu2, cpu2);
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005964
5965 /*
5966 * Get the per-iteration migration cost:
5967 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005968 do_div(cost1, 2 * ITERATIONS);
5969 do_div(cost2, 2 * ITERATIONS);
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005970
5971 return cost1 - cost2;
5972}
5973
5974static unsigned long long measure_migration_cost(int cpu1, int cpu2)
5975{
5976 unsigned long long max_cost = 0, fluct = 0, avg_fluct = 0;
5977 unsigned int max_size, size, size_found = 0;
5978 long long cost = 0, prev_cost;
5979 void *cache;
5980
5981 /*
5982 * Search from max_cache_size*5 down to 64K - the real relevant
5983 * cachesize has to lie somewhere inbetween.
5984 */
5985 if (max_cache_size) {
5986 max_size = max(max_cache_size * SEARCH_SCOPE, MIN_CACHE_SIZE);
5987 size = max(max_cache_size / SEARCH_SCOPE, MIN_CACHE_SIZE);
5988 } else {
5989 /*
5990 * Since we have no estimation about the relevant
5991 * search range
5992 */
5993 max_size = DEFAULT_CACHE_SIZE * SEARCH_SCOPE;
5994 size = MIN_CACHE_SIZE;
5995 }
5996
5997 if (!cpu_online(cpu1) || !cpu_online(cpu2)) {
5998 printk("cpu %d and %d not both online!\n", cpu1, cpu2);
5999 return 0;
6000 }
6001
6002 /*
6003 * Allocate the working set:
6004 */
6005 cache = vmalloc(max_size);
6006 if (!cache) {
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006007 printk("could not vmalloc %d bytes for cache!\n", 2 * max_size);
Andreas Mohr2ed6e342006-07-10 04:43:52 -07006008 return 1000000; /* return 1 msec on very small boxen */
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006009 }
6010
6011 while (size <= max_size) {
6012 prev_cost = cost;
6013 cost = measure_cost(cpu1, cpu2, cache, size);
6014
6015 /*
6016 * Update the max:
6017 */
6018 if (cost > 0) {
6019 if (max_cost < cost) {
6020 max_cost = cost;
6021 size_found = size;
6022 }
6023 }
6024 /*
6025 * Calculate average fluctuation, we use this to prevent
6026 * noise from triggering an early break out of the loop:
6027 */
6028 fluct = abs(cost - prev_cost);
6029 avg_fluct = (avg_fluct + fluct)/2;
6030
6031 if (migration_debug)
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006032 printk("-> [%d][%d][%7d] %3ld.%ld [%3ld.%ld] (%ld): "
6033 "(%8Ld %8Ld)\n",
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006034 cpu1, cpu2, size,
6035 (long)cost / 1000000,
6036 ((long)cost / 100000) % 10,
6037 (long)max_cost / 1000000,
6038 ((long)max_cost / 100000) % 10,
6039 domain_distance(cpu1, cpu2),
6040 cost, avg_fluct);
6041
6042 /*
6043 * If we iterated at least 20% past the previous maximum,
6044 * and the cost has dropped by more than 20% already,
6045 * (taking fluctuations into account) then we assume to
6046 * have found the maximum and break out of the loop early:
6047 */
6048 if (size_found && (size*100 > size_found*SIZE_THRESH))
6049 if (cost+avg_fluct <= 0 ||
6050 max_cost*100 > (cost+avg_fluct)*COST_THRESH) {
6051
6052 if (migration_debug)
6053 printk("-> found max.\n");
6054 break;
6055 }
6056 /*
Ingo Molnar70b4d632006-01-30 20:24:38 +01006057 * Increase the cachesize in 10% steps:
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006058 */
Ingo Molnar70b4d632006-01-30 20:24:38 +01006059 size = size * 10 / 9;
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006060 }
6061
6062 if (migration_debug)
6063 printk("[%d][%d] working set size found: %d, cost: %Ld\n",
6064 cpu1, cpu2, size_found, max_cost);
6065
6066 vfree(cache);
6067
6068 /*
6069 * A task is considered 'cache cold' if at least 2 times
6070 * the worst-case cost of migration has passed.
6071 *
6072 * (this limit is only listened to if the load-balancing
6073 * situation is 'nice' - if there is a large imbalance we
6074 * ignore it for the sake of CPU utilization and
6075 * processing fairness.)
6076 */
6077 return 2 * max_cost * migration_factor / MIGRATION_FACTOR_SCALE;
6078}
6079
6080static void calibrate_migration_costs(const cpumask_t *cpu_map)
6081{
6082 int cpu1 = -1, cpu2 = -1, cpu, orig_cpu = raw_smp_processor_id();
6083 unsigned long j0, j1, distance, max_distance = 0;
6084 struct sched_domain *sd;
6085
6086 j0 = jiffies;
6087
6088 /*
6089 * First pass - calculate the cacheflush times:
6090 */
6091 for_each_cpu_mask(cpu1, *cpu_map) {
6092 for_each_cpu_mask(cpu2, *cpu_map) {
6093 if (cpu1 == cpu2)
6094 continue;
6095 distance = domain_distance(cpu1, cpu2);
6096 max_distance = max(max_distance, distance);
6097 /*
6098 * No result cached yet?
6099 */
6100 if (migration_cost[distance] == -1LL)
6101 migration_cost[distance] =
6102 measure_migration_cost(cpu1, cpu2);
6103 }
6104 }
6105 /*
6106 * Second pass - update the sched domain hierarchy with
6107 * the new cache-hot-time estimations:
6108 */
6109 for_each_cpu_mask(cpu, *cpu_map) {
6110 distance = 0;
6111 for_each_domain(cpu, sd) {
6112 sd->cache_hot_time = migration_cost[distance];
6113 distance++;
6114 }
6115 }
6116 /*
6117 * Print the matrix:
6118 */
6119 if (migration_debug)
6120 printk("migration: max_cache_size: %d, cpu: %d MHz:\n",
6121 max_cache_size,
6122#ifdef CONFIG_X86
6123 cpu_khz/1000
6124#else
6125 -1
6126#endif
6127 );
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006128 if (system_state == SYSTEM_BOOTING && num_online_cpus() > 1) {
6129 printk("migration_cost=");
6130 for (distance = 0; distance <= max_distance; distance++) {
6131 if (distance)
6132 printk(",");
6133 printk("%ld", (long)migration_cost[distance] / 1000);
Chuck Ebbertbd576c92006-02-04 23:27:42 -08006134 }
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006135 printk("\n");
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006136 }
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006137 j1 = jiffies;
6138 if (migration_debug)
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006139 printk("migration: %ld seconds\n", (j1-j0) / HZ);
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006140
6141 /*
6142 * Move back to the original CPU. NUMA-Q gets confused
6143 * if we migrate to another quad during bootup.
6144 */
6145 if (raw_smp_processor_id() != orig_cpu) {
6146 cpumask_t mask = cpumask_of_cpu(orig_cpu),
6147 saved_mask = current->cpus_allowed;
6148
6149 set_cpus_allowed(current, mask);
6150 set_cpus_allowed(current, saved_mask);
6151 }
6152}
6153
John Hawkes9c1cfda2005-09-06 15:18:14 -07006154#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006155
John Hawkes9c1cfda2005-09-06 15:18:14 -07006156/**
6157 * find_next_best_node - find the next node to include in a sched_domain
6158 * @node: node whose sched_domain we're building
6159 * @used_nodes: nodes already in the sched_domain
6160 *
6161 * Find the next node to include in a given scheduling domain. Simply
6162 * finds the closest node not already in the @used_nodes map.
6163 *
6164 * Should use nodemask_t.
6165 */
6166static int find_next_best_node(int node, unsigned long *used_nodes)
6167{
6168 int i, n, val, min_val, best_node = 0;
6169
6170 min_val = INT_MAX;
6171
6172 for (i = 0; i < MAX_NUMNODES; i++) {
6173 /* Start at @node */
6174 n = (node + i) % MAX_NUMNODES;
6175
6176 if (!nr_cpus_node(n))
6177 continue;
6178
6179 /* Skip already used nodes */
6180 if (test_bit(n, used_nodes))
6181 continue;
6182
6183 /* Simple min distance search */
6184 val = node_distance(node, n);
6185
6186 if (val < min_val) {
6187 min_val = val;
6188 best_node = n;
6189 }
6190 }
6191
6192 set_bit(best_node, used_nodes);
6193 return best_node;
6194}
6195
6196/**
6197 * sched_domain_node_span - get a cpumask for a node's sched_domain
6198 * @node: node whose cpumask we're constructing
6199 * @size: number of nodes to include in this span
6200 *
6201 * Given a node, construct a good cpumask for its sched_domain to span. It
6202 * should be one that prevents unnecessary balancing, but also spreads tasks
6203 * out optimally.
6204 */
6205static cpumask_t sched_domain_node_span(int node)
6206{
John Hawkes9c1cfda2005-09-06 15:18:14 -07006207 DECLARE_BITMAP(used_nodes, MAX_NUMNODES);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006208 cpumask_t span, nodemask;
6209 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006210
6211 cpus_clear(span);
6212 bitmap_zero(used_nodes, MAX_NUMNODES);
6213
6214 nodemask = node_to_cpumask(node);
6215 cpus_or(span, span, nodemask);
6216 set_bit(node, used_nodes);
6217
6218 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
6219 int next_node = find_next_best_node(node, used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006220
John Hawkes9c1cfda2005-09-06 15:18:14 -07006221 nodemask = node_to_cpumask(next_node);
6222 cpus_or(span, span, nodemask);
6223 }
6224
6225 return span;
6226}
6227#endif
6228
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006229int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006230
John Hawkes9c1cfda2005-09-06 15:18:14 -07006231/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07006232 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07006233 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006234#ifdef CONFIG_SCHED_SMT
6235static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006236static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006237
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006238static int cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map,
6239 struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006241 if (sg)
6242 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006243 return cpu;
6244}
6245#endif
6246
Ingo Molnar48f24c42006-07-03 00:25:40 -07006247/*
6248 * multi-core sched-domains:
6249 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006250#ifdef CONFIG_SCHED_MC
6251static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006252static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006253#endif
6254
6255#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006256static int cpu_to_core_group(int cpu, const cpumask_t *cpu_map,
6257 struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006258{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006259 int group;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006260 cpumask_t mask = cpu_sibling_map[cpu];
6261 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006262 group = first_cpu(mask);
6263 if (sg)
6264 *sg = &per_cpu(sched_group_core, group);
6265 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006266}
6267#elif defined(CONFIG_SCHED_MC)
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006268static int cpu_to_core_group(int cpu, const cpumask_t *cpu_map,
6269 struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006270{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006271 if (sg)
6272 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006273 return cpu;
6274}
6275#endif
6276
Linus Torvalds1da177e2005-04-16 15:20:36 -07006277static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006278static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006279
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006280static int cpu_to_phys_group(int cpu, const cpumask_t *cpu_map,
6281 struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006282{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006283 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006284#ifdef CONFIG_SCHED_MC
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006285 cpumask_t mask = cpu_coregroup_map(cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006286 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006287 group = first_cpu(mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006288#elif defined(CONFIG_SCHED_SMT)
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006289 cpumask_t mask = cpu_sibling_map[cpu];
6290 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006291 group = first_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006292#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006293 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006294#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006295 if (sg)
6296 *sg = &per_cpu(sched_group_phys, group);
6297 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006298}
6299
6300#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07006301/*
6302 * The init_sched_build_groups can't handle what we want to do with node
6303 * groups, so roll our own. Now each node has its own list of groups which
6304 * gets dynamically allocated.
6305 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006306static DEFINE_PER_CPU(struct sched_domain, node_domains);
John Hawkesd1b55132005-09-06 15:18:14 -07006307static struct sched_group **sched_group_nodes_bycpu[NR_CPUS];
John Hawkes9c1cfda2005-09-06 15:18:14 -07006308
6309static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006310static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006311
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006312static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
6313 struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006314{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006315 cpumask_t nodemask = node_to_cpumask(cpu_to_node(cpu));
6316 int group;
6317
6318 cpus_and(nodemask, nodemask, *cpu_map);
6319 group = first_cpu(nodemask);
6320
6321 if (sg)
6322 *sg = &per_cpu(sched_group_allnodes, group);
6323 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006324}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006325
Siddha, Suresh B08069032006-03-27 01:15:23 -08006326static void init_numa_sched_groups_power(struct sched_group *group_head)
6327{
6328 struct sched_group *sg = group_head;
6329 int j;
6330
6331 if (!sg)
6332 return;
6333next_sg:
6334 for_each_cpu_mask(j, sg->cpumask) {
6335 struct sched_domain *sd;
6336
6337 sd = &per_cpu(phys_domains, j);
6338 if (j != first_cpu(sd->groups->cpumask)) {
6339 /*
6340 * Only add "power" once for each
6341 * physical package.
6342 */
6343 continue;
6344 }
6345
6346 sg->cpu_power += sd->groups->cpu_power;
6347 }
6348 sg = sg->next;
6349 if (sg != group_head)
6350 goto next_sg;
6351}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006352#endif
6353
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006354#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006355/* Free memory allocated for various sched_group structures */
6356static void free_sched_groups(const cpumask_t *cpu_map)
6357{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006358 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006359
6360 for_each_cpu_mask(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006361 struct sched_group **sched_group_nodes
6362 = sched_group_nodes_bycpu[cpu];
6363
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006364 if (!sched_group_nodes)
6365 continue;
6366
6367 for (i = 0; i < MAX_NUMNODES; i++) {
6368 cpumask_t nodemask = node_to_cpumask(i);
6369 struct sched_group *oldsg, *sg = sched_group_nodes[i];
6370
6371 cpus_and(nodemask, nodemask, *cpu_map);
6372 if (cpus_empty(nodemask))
6373 continue;
6374
6375 if (sg == NULL)
6376 continue;
6377 sg = sg->next;
6378next_sg:
6379 oldsg = sg;
6380 sg = sg->next;
6381 kfree(oldsg);
6382 if (oldsg != sched_group_nodes[i])
6383 goto next_sg;
6384 }
6385 kfree(sched_group_nodes);
6386 sched_group_nodes_bycpu[cpu] = NULL;
6387 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006388}
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006389#else
6390static void free_sched_groups(const cpumask_t *cpu_map)
6391{
6392}
6393#endif
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006394
Linus Torvalds1da177e2005-04-16 15:20:36 -07006395/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006396 * Initialize sched groups cpu_power.
6397 *
6398 * cpu_power indicates the capacity of sched group, which is used while
6399 * distributing the load between different sched groups in a sched domain.
6400 * Typically cpu_power for all the groups in a sched domain will be same unless
6401 * there are asymmetries in the topology. If there are asymmetries, group
6402 * having more cpu_power will pickup more load compared to the group having
6403 * less cpu_power.
6404 *
6405 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
6406 * the maximum number of tasks a group can handle in the presence of other idle
6407 * or lightly loaded groups in the same sched domain.
6408 */
6409static void init_sched_groups_power(int cpu, struct sched_domain *sd)
6410{
6411 struct sched_domain *child;
6412 struct sched_group *group;
6413
6414 WARN_ON(!sd || !sd->groups);
6415
6416 if (cpu != first_cpu(sd->groups->cpumask))
6417 return;
6418
6419 child = sd->child;
6420
6421 /*
6422 * For perf policy, if the groups in child domain share resources
6423 * (for example cores sharing some portions of the cache hierarchy
6424 * or SMT), then set this domain groups cpu_power such that each group
6425 * can handle only one task, when there are other idle groups in the
6426 * same sched domain.
6427 */
6428 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
6429 (child->flags &
6430 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
6431 sd->groups->cpu_power = SCHED_LOAD_SCALE;
6432 return;
6433 }
6434
6435 sd->groups->cpu_power = 0;
6436
6437 /*
6438 * add cpu_power of each child group to this groups cpu_power
6439 */
6440 group = child->groups;
6441 do {
6442 sd->groups->cpu_power += group->cpu_power;
6443 group = group->next;
6444 } while (group != child->groups);
6445}
6446
6447/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006448 * Build sched domains for a given set of cpus and attach the sched domains
6449 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07006450 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006451static int build_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006452{
6453 int i;
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006454 struct sched_domain *sd;
John Hawkesd1b55132005-09-06 15:18:14 -07006455#ifdef CONFIG_NUMA
6456 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006457 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07006458
6459 /*
6460 * Allocate the per-node list of sched groups
6461 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006462 sched_group_nodes = kzalloc(sizeof(struct sched_group*)*MAX_NUMNODES,
Srivatsa Vaddagirid3a5aa92006-06-27 02:54:39 -07006463 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07006464 if (!sched_group_nodes) {
6465 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006466 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07006467 }
6468 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
6469#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006470
6471 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006472 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006473 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006474 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006475 struct sched_domain *sd = NULL, *p;
6476 cpumask_t nodemask = node_to_cpumask(cpu_to_node(i));
6477
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006478 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006479
6480#ifdef CONFIG_NUMA
John Hawkesd1b55132005-09-06 15:18:14 -07006481 if (cpus_weight(*cpu_map)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006482 > SD_NODES_PER_DOMAIN*cpus_weight(nodemask)) {
6483 sd = &per_cpu(allnodes_domains, i);
6484 *sd = SD_ALLNODES_INIT;
6485 sd->span = *cpu_map;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006486 cpu_to_allnodes_group(i, cpu_map, &sd->groups);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006487 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006488 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006489 } else
6490 p = NULL;
6491
Linus Torvalds1da177e2005-04-16 15:20:36 -07006492 sd = &per_cpu(node_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006493 *sd = SD_NODE_INIT;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006494 sd->span = sched_domain_node_span(cpu_to_node(i));
6495 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006496 if (p)
6497 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006498 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006499#endif
6500
6501 p = sd;
6502 sd = &per_cpu(phys_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006503 *sd = SD_CPU_INIT;
6504 sd->span = nodemask;
6505 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006506 if (p)
6507 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006508 cpu_to_phys_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006509
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006510#ifdef CONFIG_SCHED_MC
6511 p = sd;
6512 sd = &per_cpu(core_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006513 *sd = SD_MC_INIT;
6514 sd->span = cpu_coregroup_map(i);
6515 cpus_and(sd->span, sd->span, *cpu_map);
6516 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006517 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006518 cpu_to_core_group(i, cpu_map, &sd->groups);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006519#endif
6520
Linus Torvalds1da177e2005-04-16 15:20:36 -07006521#ifdef CONFIG_SCHED_SMT
6522 p = sd;
6523 sd = &per_cpu(cpu_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006524 *sd = SD_SIBLING_INIT;
6525 sd->span = cpu_sibling_map[i];
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006526 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006527 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006528 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006529 cpu_to_cpu_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006530#endif
6531 }
6532
6533#ifdef CONFIG_SCHED_SMT
6534 /* Set up CPU (sibling) groups */
John Hawkes9c1cfda2005-09-06 15:18:14 -07006535 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006536 cpumask_t this_sibling_map = cpu_sibling_map[i];
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006537 cpus_and(this_sibling_map, this_sibling_map, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006538 if (i != first_cpu(this_sibling_map))
6539 continue;
6540
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006541 init_sched_build_groups(this_sibling_map, cpu_map, &cpu_to_cpu_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006542 }
6543#endif
6544
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006545#ifdef CONFIG_SCHED_MC
6546 /* Set up multi-core groups */
6547 for_each_cpu_mask(i, *cpu_map) {
6548 cpumask_t this_core_map = cpu_coregroup_map(i);
6549 cpus_and(this_core_map, this_core_map, *cpu_map);
6550 if (i != first_cpu(this_core_map))
6551 continue;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006552 init_sched_build_groups(this_core_map, cpu_map, &cpu_to_core_group);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006553 }
6554#endif
6555
6556
Linus Torvalds1da177e2005-04-16 15:20:36 -07006557 /* Set up physical groups */
6558 for (i = 0; i < MAX_NUMNODES; i++) {
6559 cpumask_t nodemask = node_to_cpumask(i);
6560
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006561 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006562 if (cpus_empty(nodemask))
6563 continue;
6564
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006565 init_sched_build_groups(nodemask, cpu_map, &cpu_to_phys_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006566 }
6567
6568#ifdef CONFIG_NUMA
6569 /* Set up node groups */
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006570 if (sd_allnodes)
6571 init_sched_build_groups(*cpu_map, cpu_map, &cpu_to_allnodes_group);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006572
6573 for (i = 0; i < MAX_NUMNODES; i++) {
6574 /* Set up node groups */
6575 struct sched_group *sg, *prev;
6576 cpumask_t nodemask = node_to_cpumask(i);
6577 cpumask_t domainspan;
6578 cpumask_t covered = CPU_MASK_NONE;
6579 int j;
6580
6581 cpus_and(nodemask, nodemask, *cpu_map);
John Hawkesd1b55132005-09-06 15:18:14 -07006582 if (cpus_empty(nodemask)) {
6583 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006584 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07006585 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006586
6587 domainspan = sched_domain_node_span(i);
6588 cpus_and(domainspan, domainspan, *cpu_map);
6589
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006590 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006591 if (!sg) {
6592 printk(KERN_WARNING "Can not alloc domain group for "
6593 "node %d\n", i);
6594 goto error;
6595 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006596 sched_group_nodes[i] = sg;
6597 for_each_cpu_mask(j, nodemask) {
6598 struct sched_domain *sd;
6599 sd = &per_cpu(node_domains, j);
6600 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006601 }
6602 sg->cpu_power = 0;
6603 sg->cpumask = nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006604 sg->next = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006605 cpus_or(covered, covered, nodemask);
6606 prev = sg;
6607
6608 for (j = 0; j < MAX_NUMNODES; j++) {
6609 cpumask_t tmp, notcovered;
6610 int n = (i + j) % MAX_NUMNODES;
6611
6612 cpus_complement(notcovered, covered);
6613 cpus_and(tmp, notcovered, *cpu_map);
6614 cpus_and(tmp, tmp, domainspan);
6615 if (cpus_empty(tmp))
6616 break;
6617
6618 nodemask = node_to_cpumask(n);
6619 cpus_and(tmp, tmp, nodemask);
6620 if (cpus_empty(tmp))
6621 continue;
6622
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006623 sg = kmalloc_node(sizeof(struct sched_group),
6624 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006625 if (!sg) {
6626 printk(KERN_WARNING
6627 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006628 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006629 }
6630 sg->cpu_power = 0;
6631 sg->cpumask = tmp;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006632 sg->next = prev->next;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006633 cpus_or(covered, covered, tmp);
6634 prev->next = sg;
6635 prev = sg;
6636 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006637 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006638#endif
6639
6640 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006641#ifdef CONFIG_SCHED_SMT
6642 for_each_cpu_mask(i, *cpu_map) {
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006643 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006644 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006645 }
6646#endif
6647#ifdef CONFIG_SCHED_MC
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006648 for_each_cpu_mask(i, *cpu_map) {
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006649 sd = &per_cpu(core_domains, i);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006650 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006651 }
6652#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006653
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006654 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006655 sd = &per_cpu(phys_domains, i);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006656 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006657 }
6658
John Hawkes9c1cfda2005-09-06 15:18:14 -07006659#ifdef CONFIG_NUMA
Siddha, Suresh B08069032006-03-27 01:15:23 -08006660 for (i = 0; i < MAX_NUMNODES; i++)
6661 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006662
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006663 if (sd_allnodes) {
6664 struct sched_group *sg;
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07006665
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006666 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg);
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07006667 init_numa_sched_groups_power(sg);
6668 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006669#endif
6670
Linus Torvalds1da177e2005-04-16 15:20:36 -07006671 /* Attach the domains */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006672 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006673 struct sched_domain *sd;
6674#ifdef CONFIG_SCHED_SMT
6675 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006676#elif defined(CONFIG_SCHED_MC)
6677 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006678#else
6679 sd = &per_cpu(phys_domains, i);
6680#endif
6681 cpu_attach_domain(sd, i);
6682 }
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006683 /*
6684 * Tune cache-hot values:
6685 */
6686 calibrate_migration_costs(cpu_map);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006687
6688 return 0;
6689
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006690#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006691error:
6692 free_sched_groups(cpu_map);
6693 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006694#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006695}
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006696/*
6697 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
6698 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006699static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006700{
6701 cpumask_t cpu_default_map;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006702 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006703
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006704 /*
6705 * Setup mask for cpus without special case scheduling requirements.
6706 * For now this just excludes isolated cpus, but could be used to
6707 * exclude other special cases in the future.
6708 */
6709 cpus_andnot(cpu_default_map, *cpu_map, cpu_isolated_map);
6710
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006711 err = build_sched_domains(&cpu_default_map);
6712
6713 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006714}
6715
6716static void arch_destroy_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006717{
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006718 free_sched_groups(cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006719}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006720
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006721/*
6722 * Detach sched domains from a group of cpus specified in cpu_map
6723 * These cpus will now be attached to the NULL domain
6724 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08006725static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006726{
6727 int i;
6728
6729 for_each_cpu_mask(i, *cpu_map)
6730 cpu_attach_domain(NULL, i);
6731 synchronize_sched();
6732 arch_destroy_sched_domains(cpu_map);
6733}
6734
6735/*
6736 * Partition sched domains as specified by the cpumasks below.
6737 * This attaches all cpus from the cpumasks to the NULL domain,
6738 * waits for a RCU quiescent period, recalculates sched
6739 * domain information and then attaches them back to the
6740 * correct sched domains
6741 * Call with hotplug lock held
6742 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006743int partition_sched_domains(cpumask_t *partition1, cpumask_t *partition2)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006744{
6745 cpumask_t change_map;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006746 int err = 0;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006747
6748 cpus_and(*partition1, *partition1, cpu_online_map);
6749 cpus_and(*partition2, *partition2, cpu_online_map);
6750 cpus_or(change_map, *partition1, *partition2);
6751
6752 /* Detach sched domains from all of the affected cpus */
6753 detach_destroy_domains(&change_map);
6754 if (!cpus_empty(*partition1))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006755 err = build_sched_domains(partition1);
6756 if (!err && !cpus_empty(*partition2))
6757 err = build_sched_domains(partition2);
6758
6759 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006760}
6761
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006762#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
6763int arch_reinit_sched_domains(void)
6764{
6765 int err;
6766
6767 lock_cpu_hotplug();
6768 detach_destroy_domains(&cpu_online_map);
6769 err = arch_init_sched_domains(&cpu_online_map);
6770 unlock_cpu_hotplug();
6771
6772 return err;
6773}
6774
6775static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
6776{
6777 int ret;
6778
6779 if (buf[0] != '0' && buf[0] != '1')
6780 return -EINVAL;
6781
6782 if (smt)
6783 sched_smt_power_savings = (buf[0] == '1');
6784 else
6785 sched_mc_power_savings = (buf[0] == '1');
6786
6787 ret = arch_reinit_sched_domains();
6788
6789 return ret ? ret : count;
6790}
6791
6792int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
6793{
6794 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006795
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006796#ifdef CONFIG_SCHED_SMT
6797 if (smt_capable())
6798 err = sysfs_create_file(&cls->kset.kobj,
6799 &attr_sched_smt_power_savings.attr);
6800#endif
6801#ifdef CONFIG_SCHED_MC
6802 if (!err && mc_capable())
6803 err = sysfs_create_file(&cls->kset.kobj,
6804 &attr_sched_mc_power_savings.attr);
6805#endif
6806 return err;
6807}
6808#endif
6809
6810#ifdef CONFIG_SCHED_MC
6811static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
6812{
6813 return sprintf(page, "%u\n", sched_mc_power_savings);
6814}
Ingo Molnar48f24c42006-07-03 00:25:40 -07006815static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
6816 const char *buf, size_t count)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006817{
6818 return sched_power_savings_store(buf, count, 0);
6819}
6820SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
6821 sched_mc_power_savings_store);
6822#endif
6823
6824#ifdef CONFIG_SCHED_SMT
6825static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
6826{
6827 return sprintf(page, "%u\n", sched_smt_power_savings);
6828}
Ingo Molnar48f24c42006-07-03 00:25:40 -07006829static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
6830 const char *buf, size_t count)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006831{
6832 return sched_power_savings_store(buf, count, 1);
6833}
6834SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
6835 sched_smt_power_savings_store);
6836#endif
6837
Linus Torvalds1da177e2005-04-16 15:20:36 -07006838/*
6839 * Force a reinitialization of the sched domains hierarchy. The domains
6840 * and groups cannot be updated in place without racing with the balancing
Nick Piggin41c7ce92005-06-25 14:57:24 -07006841 * code, so we temporarily attach all running cpus to the NULL domain
Linus Torvalds1da177e2005-04-16 15:20:36 -07006842 * which will prevent rebalancing while the sched domains are recalculated.
6843 */
6844static int update_sched_domains(struct notifier_block *nfb,
6845 unsigned long action, void *hcpu)
6846{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006847 switch (action) {
6848 case CPU_UP_PREPARE:
6849 case CPU_DOWN_PREPARE:
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006850 detach_destroy_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006851 return NOTIFY_OK;
6852
6853 case CPU_UP_CANCELED:
6854 case CPU_DOWN_FAILED:
6855 case CPU_ONLINE:
6856 case CPU_DEAD:
6857 /*
6858 * Fall through and re-initialise the domains.
6859 */
6860 break;
6861 default:
6862 return NOTIFY_DONE;
6863 }
6864
6865 /* The hotplug lock is already held by cpu_up/cpu_down */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006866 arch_init_sched_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006867
6868 return NOTIFY_OK;
6869}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006870
6871void __init sched_init_smp(void)
6872{
Nick Piggin5c1e1762006-10-03 01:14:04 -07006873 cpumask_t non_isolated_cpus;
6874
Linus Torvalds1da177e2005-04-16 15:20:36 -07006875 lock_cpu_hotplug();
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006876 arch_init_sched_domains(&cpu_online_map);
Nathan Lynche5e56732007-01-10 23:15:28 -08006877 cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07006878 if (cpus_empty(non_isolated_cpus))
6879 cpu_set(smp_processor_id(), non_isolated_cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006880 unlock_cpu_hotplug();
6881 /* XXX: Theoretical race here - CPU may be hotplugged now */
6882 hotcpu_notifier(update_sched_domains, 0);
Nick Piggin5c1e1762006-10-03 01:14:04 -07006883
6884 /* Move init over to a non-isolated CPU */
6885 if (set_cpus_allowed(current, non_isolated_cpus) < 0)
6886 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006887}
6888#else
6889void __init sched_init_smp(void)
6890{
6891}
6892#endif /* CONFIG_SMP */
6893
6894int in_sched_functions(unsigned long addr)
6895{
6896 /* Linker adds these: start and end of __sched functions */
6897 extern char __sched_text_start[], __sched_text_end[];
Ingo Molnar48f24c42006-07-03 00:25:40 -07006898
Linus Torvalds1da177e2005-04-16 15:20:36 -07006899 return in_lock_functions(addr) ||
6900 (addr >= (unsigned long)__sched_text_start
6901 && addr < (unsigned long)__sched_text_end);
6902}
6903
6904void __init sched_init(void)
6905{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006906 int i, j, k;
6907
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08006908 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006909 struct prio_array *array;
6910 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006911
6912 rq = cpu_rq(i);
6913 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07006914 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07006915 rq->nr_running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006916 rq->active = rq->arrays;
6917 rq->expired = rq->arrays + 1;
6918 rq->best_expired_prio = MAX_PRIO;
6919
6920#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07006921 rq->sd = NULL;
Nick Piggin78979862005-06-25 14:57:13 -07006922 for (j = 1; j < 3; j++)
6923 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006924 rq->active_balance = 0;
6925 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07006926 rq->cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006927 rq->migration_thread = NULL;
6928 INIT_LIST_HEAD(&rq->migration_queue);
6929#endif
6930 atomic_set(&rq->nr_iowait, 0);
6931
6932 for (j = 0; j < 2; j++) {
6933 array = rq->arrays + j;
6934 for (k = 0; k < MAX_PRIO; k++) {
6935 INIT_LIST_HEAD(array->queue + k);
6936 __clear_bit(k, array->bitmap);
6937 }
6938 // delimiter for bitsearch
6939 __set_bit(MAX_PRIO, array->bitmap);
6940 }
6941 }
6942
Peter Williams2dd73a42006-06-27 02:54:34 -07006943 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07006944
Christoph Lameterc9819f42006-12-10 02:20:25 -08006945#ifdef CONFIG_SMP
6946 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL);
6947#endif
6948
Heiko Carstensb50f60c2006-07-30 03:03:52 -07006949#ifdef CONFIG_RT_MUTEXES
6950 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
6951#endif
6952
Linus Torvalds1da177e2005-04-16 15:20:36 -07006953 /*
6954 * The boot idle thread does lazy MMU switching as well:
6955 */
6956 atomic_inc(&init_mm.mm_count);
6957 enter_lazy_tlb(&init_mm, current);
6958
6959 /*
6960 * Make us the idle thread. Technically, schedule() should not be
6961 * called from this thread, however somewhere below it might be,
6962 * but because we are the idle thread, we just pick up running again
6963 * when this runqueue becomes "idle".
6964 */
6965 init_idle(current, smp_processor_id());
6966}
6967
6968#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
6969void __might_sleep(char *file, int line)
6970{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006971#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07006972 static unsigned long prev_jiffy; /* ratelimiting */
6973
6974 if ((in_atomic() || irqs_disabled()) &&
6975 system_state == SYSTEM_RUNNING && !oops_in_progress) {
6976 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
6977 return;
6978 prev_jiffy = jiffies;
Ingo Molnar91368d72006-03-23 03:00:54 -08006979 printk(KERN_ERR "BUG: sleeping function called from invalid"
Linus Torvalds1da177e2005-04-16 15:20:36 -07006980 " context at %s:%d\n", file, line);
6981 printk("in_atomic():%d, irqs_disabled():%d\n",
6982 in_atomic(), irqs_disabled());
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08006983 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08006984 if (irqs_disabled())
6985 print_irqtrace_events(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006986 dump_stack();
6987 }
6988#endif
6989}
6990EXPORT_SYMBOL(__might_sleep);
6991#endif
6992
6993#ifdef CONFIG_MAGIC_SYSRQ
6994void normalize_rt_tasks(void)
6995{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006996 struct prio_array *array;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006997 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006998 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006999 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007000
7001 read_lock_irq(&tasklist_lock);
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07007002 for_each_process(p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007003 if (!rt_task(p))
7004 continue;
7005
Ingo Molnarb29739f2006-06-27 02:54:51 -07007006 spin_lock_irqsave(&p->pi_lock, flags);
7007 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007008
7009 array = p->array;
7010 if (array)
7011 deactivate_task(p, task_rq(p));
7012 __setscheduler(p, SCHED_NORMAL, 0);
7013 if (array) {
7014 __activate_task(p, task_rq(p));
7015 resched_task(rq->curr);
7016 }
7017
Ingo Molnarb29739f2006-06-27 02:54:51 -07007018 __task_rq_unlock(rq);
7019 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007020 }
7021 read_unlock_irq(&tasklist_lock);
7022}
7023
7024#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07007025
7026#ifdef CONFIG_IA64
7027/*
7028 * These functions are only useful for the IA64 MCA handling.
7029 *
7030 * They can only be called when the whole system has been
7031 * stopped - every CPU needs to be quiescent, and no scheduling
7032 * activity can take place. Using them for anything else would
7033 * be a serious bug, and as a result, they aren't even visible
7034 * under any other configuration.
7035 */
7036
7037/**
7038 * curr_task - return the current task for a given cpu.
7039 * @cpu: the processor in question.
7040 *
7041 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7042 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007043struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007044{
7045 return cpu_curr(cpu);
7046}
7047
7048/**
7049 * set_curr_task - set the current task for a given cpu.
7050 * @cpu: the processor in question.
7051 * @p: the task pointer to set.
7052 *
7053 * Description: This function must only be used when non-maskable interrupts
7054 * are serviced on a separate stack. It allows the architecture to switch the
7055 * notion of the current task on a cpu in a non-blocking manner. This function
7056 * must be called with all CPU's synchronized, and interrupts disabled, the
7057 * and caller must save the original value of the current task (see
7058 * curr_task() above) and restore that value before reenabling interrupts and
7059 * re-starting the system.
7060 *
7061 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7062 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007063void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007064{
7065 cpu_curr(cpu) = p;
7066}
7067
7068#endif