blob: 3df33da0dafc9caf82b637ca372e6de709b6c2bc [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/*
60 * Convert user-nice values [ -20 ... 0 ... 19 ]
61 * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ],
62 * and back.
63 */
64#define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20)
65#define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20)
66#define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio)
67
68/*
69 * 'User priority' is the nice value converted to something we
70 * can work with better when scaling various scheduler parameters,
71 * it's a [ 0 ... 39 ] range.
72 */
73#define USER_PRIO(p) ((p)-MAX_RT_PRIO)
74#define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio)
75#define MAX_USER_PRIO (USER_PRIO(MAX_PRIO))
76
77/*
78 * Some helpers for converting nanosecond timing to jiffy resolution
79 */
80#define NS_TO_JIFFIES(TIME) ((TIME) / (1000000000 / HZ))
81#define JIFFIES_TO_NS(TIME) ((TIME) * (1000000000 / HZ))
82
83/*
84 * These are the 'tuning knobs' of the scheduler:
85 *
86 * Minimum timeslice is 5 msecs (or 1 jiffy, whichever is larger),
87 * default timeslice is 100 msecs, maximum timeslice is 800 msecs.
88 * Timeslices get refilled after they expire.
89 */
90#define MIN_TIMESLICE max(5 * HZ / 1000, 1)
91#define DEF_TIMESLICE (100 * HZ / 1000)
92#define ON_RUNQUEUE_WEIGHT 30
93#define CHILD_PENALTY 95
94#define PARENT_PENALTY 100
95#define EXIT_WEIGHT 3
96#define PRIO_BONUS_RATIO 25
97#define MAX_BONUS (MAX_USER_PRIO * PRIO_BONUS_RATIO / 100)
98#define INTERACTIVE_DELTA 2
99#define MAX_SLEEP_AVG (DEF_TIMESLICE * MAX_BONUS)
100#define STARVATION_LIMIT (MAX_SLEEP_AVG)
101#define NS_MAX_SLEEP_AVG (JIFFIES_TO_NS(MAX_SLEEP_AVG))
102
103/*
104 * If a task is 'interactive' then we reinsert it in the active
105 * array after it has expired its current timeslice. (it will not
106 * continue to run immediately, it will still roundrobin with
107 * other interactive tasks.)
108 *
109 * This part scales the interactivity limit depending on niceness.
110 *
111 * We scale it linearly, offset by the INTERACTIVE_DELTA delta.
112 * Here are a few examples of different nice levels:
113 *
114 * TASK_INTERACTIVE(-20): [1,1,1,1,1,1,1,1,1,0,0]
115 * TASK_INTERACTIVE(-10): [1,1,1,1,1,1,1,0,0,0,0]
116 * TASK_INTERACTIVE( 0): [1,1,1,1,0,0,0,0,0,0,0]
117 * TASK_INTERACTIVE( 10): [1,1,0,0,0,0,0,0,0,0,0]
118 * TASK_INTERACTIVE( 19): [0,0,0,0,0,0,0,0,0,0,0]
119 *
120 * (the X axis represents the possible -5 ... 0 ... +5 dynamic
121 * priority range a task can explore, a value of '1' means the
122 * task is rated interactive.)
123 *
124 * Ie. nice +19 tasks can never get 'interactive' enough to be
125 * reinserted into the active array. And only heavily CPU-hog nice -20
126 * tasks will be expired. Default nice 0 tasks are somewhere between,
127 * it takes some effort for them to get interactive, but it's not
128 * too hard.
129 */
130
131#define CURRENT_BONUS(p) \
132 (NS_TO_JIFFIES((p)->sleep_avg) * MAX_BONUS / \
133 MAX_SLEEP_AVG)
134
135#define GRANULARITY (10 * HZ / 1000 ? : 1)
136
137#ifdef CONFIG_SMP
138#define TIMESLICE_GRANULARITY(p) (GRANULARITY * \
139 (1 << (((MAX_BONUS - CURRENT_BONUS(p)) ? : 1) - 1)) * \
140 num_online_cpus())
141#else
142#define TIMESLICE_GRANULARITY(p) (GRANULARITY * \
143 (1 << (((MAX_BONUS - CURRENT_BONUS(p)) ? : 1) - 1)))
144#endif
145
146#define SCALE(v1,v1_max,v2_max) \
147 (v1) * (v2_max) / (v1_max)
148
149#define DELTA(p) \
Martin Andersson013d3862006-03-27 01:15:18 -0800150 (SCALE(TASK_NICE(p) + 20, 40, MAX_BONUS) - 20 * MAX_BONUS / 40 + \
151 INTERACTIVE_DELTA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153#define TASK_INTERACTIVE(p) \
154 ((p)->prio <= (p)->static_prio - DELTA(p))
155
156#define INTERACTIVE_SLEEP(p) \
157 (JIFFIES_TO_NS(MAX_SLEEP_AVG * \
158 (MAX_BONUS / 2 + DELTA((p)) + 1) / MAX_BONUS - 1))
159
160#define TASK_PREEMPTS_CURR(p, rq) \
161 ((p)->prio < (rq)->curr->prio)
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163#define SCALE_PRIO(x, prio) \
Peter Williams2dd73a42006-06-27 02:54:34 -0700164 max(x * (MAX_PRIO - prio) / (MAX_USER_PRIO / 2), MIN_TIMESLICE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Peter Williams2dd73a42006-06-27 02:54:34 -0700166static unsigned int static_prio_timeslice(int static_prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Peter Williams2dd73a42006-06-27 02:54:34 -0700168 if (static_prio < NICE_TO_PRIO(0))
169 return SCALE_PRIO(DEF_TIMESLICE * 4, static_prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 else
Peter Williams2dd73a42006-06-27 02:54:34 -0700171 return SCALE_PRIO(DEF_TIMESLICE, static_prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
Peter Williams2dd73a42006-06-27 02:54:34 -0700173
Borislav Petkov91fcdd42006-10-19 23:28:29 -0700174/*
175 * task_timeslice() scales user-nice values [ -20 ... 0 ... 19 ]
176 * to time slice values: [800ms ... 100ms ... 5ms]
177 *
178 * The higher a thread's priority, the bigger timeslices
179 * it gets during one round of execution. But even the lowest
180 * priority thread gets MIN_TIMESLICE worth of execution time.
181 */
182
Ingo Molnar36c8b582006-07-03 00:25:41 -0700183static inline unsigned int task_timeslice(struct task_struct *p)
Peter Williams2dd73a42006-06-27 02:54:34 -0700184{
185 return static_prio_timeslice(p->static_prio);
186}
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188/*
189 * These are the runqueue data structures:
190 */
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192struct prio_array {
193 unsigned int nr_active;
Steven Rostedtd4448862006-06-27 02:54:29 -0700194 DECLARE_BITMAP(bitmap, MAX_PRIO+1); /* include 1 bit for delimiter */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 struct list_head queue[MAX_PRIO];
196};
197
198/*
199 * This is the main, per-CPU runqueue data structure.
200 *
201 * Locking rule: those places that want to lock multiple runqueues
202 * (such as the load balancing or the thread migration code), lock
203 * acquire operations must be ordered by ascending &runqueue.
204 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700205struct rq {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 spinlock_t lock;
207
208 /*
209 * nr_running and cpu_load should be in the same cacheline because
210 * remote CPUs use both these fields when doing load calculation.
211 */
212 unsigned long nr_running;
Peter Williams2dd73a42006-06-27 02:54:34 -0700213 unsigned long raw_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214#ifdef CONFIG_SMP
Nick Piggin78979862005-06-25 14:57:13 -0700215 unsigned long cpu_load[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216#endif
217 unsigned long long nr_switches;
218
219 /*
220 * This is part of a global counter where only the total sum
221 * over all CPUs matters. A task can increase this counter on
222 * one CPU and if it got migrated afterwards it may decrease
223 * it on another CPU. Always updated under the runqueue lock:
224 */
225 unsigned long nr_uninterruptible;
226
227 unsigned long expired_timestamp;
Mike Galbraithb18ec802006-12-10 02:20:31 -0800228 /* Cached timestamp set by update_cpu_clock() */
229 unsigned long long most_recent_timestamp;
Ingo Molnar36c8b582006-07-03 00:25:41 -0700230 struct task_struct *curr, *idle;
Christoph Lameterc9819f42006-12-10 02:20:25 -0800231 unsigned long next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 struct mm_struct *prev_mm;
Ingo Molnar70b97a72006-07-03 00:25:42 -0700233 struct prio_array *active, *expired, arrays[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 int best_expired_prio;
235 atomic_t nr_iowait;
236
237#ifdef CONFIG_SMP
238 struct sched_domain *sd;
239
240 /* For active balancing */
241 int active_balance;
242 int push_cpu;
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700243 int cpu; /* cpu of this runqueue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Ingo Molnar36c8b582006-07-03 00:25:41 -0700245 struct task_struct *migration_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 struct list_head migration_queue;
247#endif
248
249#ifdef CONFIG_SCHEDSTATS
250 /* latency stats */
251 struct sched_info rq_sched_info;
252
253 /* sys_sched_yield() stats */
254 unsigned long yld_exp_empty;
255 unsigned long yld_act_empty;
256 unsigned long yld_both_empty;
257 unsigned long yld_cnt;
258
259 /* schedule() stats */
260 unsigned long sched_switch;
261 unsigned long sched_cnt;
262 unsigned long sched_goidle;
263
264 /* try_to_wake_up() stats */
265 unsigned long ttwu_cnt;
266 unsigned long ttwu_local;
267#endif
Ingo Molnarfcb99372006-07-03 00:25:10 -0700268 struct lock_class_key rq_lock_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269};
270
Ingo Molnar70b97a72006-07-03 00:25:42 -0700271static DEFINE_PER_CPU(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700273static inline int cpu_of(struct rq *rq)
274{
275#ifdef CONFIG_SMP
276 return rq->cpu;
277#else
278 return 0;
279#endif
280}
281
Nick Piggin674311d2005-06-25 14:57:27 -0700282/*
283 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700284 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700285 *
286 * The domain tree of any CPU may only be accessed from within
287 * preempt-disabled sections.
288 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700289#define for_each_domain(cpu, __sd) \
290 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
293#define this_rq() (&__get_cpu_var(runqueues))
294#define task_rq(p) cpu_rq(task_cpu(p))
295#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700298# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700300#ifndef finish_arch_switch
301# define finish_arch_switch(prev) do { } while (0)
302#endif
303
304#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700305static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700306{
307 return rq->curr == p;
308}
309
Ingo Molnar70b97a72006-07-03 00:25:42 -0700310static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700311{
312}
313
Ingo Molnar70b97a72006-07-03 00:25:42 -0700314static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700315{
Ingo Molnarda04c032005-09-13 11:17:59 +0200316#ifdef CONFIG_DEBUG_SPINLOCK
317 /* this is a valid case when another task releases the spinlock */
318 rq->lock.owner = current;
319#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700320 /*
321 * If we are tracking spinlock dependencies then we have to
322 * fix up the runqueue lock - which gets 'carried over' from
323 * prev into current:
324 */
325 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
326
Nick Piggin4866cde2005-06-25 14:57:23 -0700327 spin_unlock_irq(&rq->lock);
328}
329
330#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700331static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700332{
333#ifdef CONFIG_SMP
334 return p->oncpu;
335#else
336 return rq->curr == p;
337#endif
338}
339
Ingo Molnar70b97a72006-07-03 00:25:42 -0700340static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700341{
342#ifdef CONFIG_SMP
343 /*
344 * We can optimise this out completely for !SMP, because the
345 * SMP rebalancing from interrupt is the only thing that cares
346 * here.
347 */
348 next->oncpu = 1;
349#endif
350#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
351 spin_unlock_irq(&rq->lock);
352#else
353 spin_unlock(&rq->lock);
354#endif
355}
356
Ingo Molnar70b97a72006-07-03 00:25:42 -0700357static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700358{
359#ifdef CONFIG_SMP
360 /*
361 * After ->oncpu is cleared, the task can be moved to a different CPU.
362 * We must ensure this doesn't happen until the switch is completely
363 * finished.
364 */
365 smp_wmb();
366 prev->oncpu = 0;
367#endif
368#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
369 local_irq_enable();
370#endif
371}
372#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700375 * __task_rq_lock - lock the runqueue a given task resides on.
376 * Must be called interrupts disabled.
377 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700378static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700379 __acquires(rq->lock)
380{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700381 struct rq *rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -0700382
383repeat_lock_task:
384 rq = task_rq(p);
385 spin_lock(&rq->lock);
386 if (unlikely(rq != task_rq(p))) {
387 spin_unlock(&rq->lock);
388 goto repeat_lock_task;
389 }
390 return rq;
391}
392
393/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 * task_rq_lock - lock the runqueue a given task resides on and disable
395 * interrupts. Note the ordering: we can safely lookup the task_rq without
396 * explicitly disabling preemption.
397 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700398static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 __acquires(rq->lock)
400{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700401 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403repeat_lock_task:
404 local_irq_save(*flags);
405 rq = task_rq(p);
406 spin_lock(&rq->lock);
407 if (unlikely(rq != task_rq(p))) {
408 spin_unlock_irqrestore(&rq->lock, *flags);
409 goto repeat_lock_task;
410 }
411 return rq;
412}
413
Ingo Molnar70b97a72006-07-03 00:25:42 -0700414static inline void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700415 __releases(rq->lock)
416{
417 spin_unlock(&rq->lock);
418}
419
Ingo Molnar70b97a72006-07-03 00:25:42 -0700420static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 __releases(rq->lock)
422{
423 spin_unlock_irqrestore(&rq->lock, *flags);
424}
425
426#ifdef CONFIG_SCHEDSTATS
427/*
428 * bump this up when changing the output format or the meaning of an existing
429 * format, so that tools can adapt (or abort)
430 */
Chen, Kenneth W06066712006-12-10 02:20:35 -0800431#define SCHEDSTAT_VERSION 14
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433static int show_schedstat(struct seq_file *seq, void *v)
434{
435 int cpu;
436
437 seq_printf(seq, "version %d\n", SCHEDSTAT_VERSION);
438 seq_printf(seq, "timestamp %lu\n", jiffies);
439 for_each_online_cpu(cpu) {
Ingo Molnar70b97a72006-07-03 00:25:42 -0700440 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441#ifdef CONFIG_SMP
442 struct sched_domain *sd;
443 int dcnt = 0;
444#endif
445
446 /* runqueue-specific stats */
447 seq_printf(seq,
448 "cpu%d %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu",
449 cpu, rq->yld_both_empty,
450 rq->yld_act_empty, rq->yld_exp_empty, rq->yld_cnt,
451 rq->sched_switch, rq->sched_cnt, rq->sched_goidle,
452 rq->ttwu_cnt, rq->ttwu_local,
453 rq->rq_sched_info.cpu_time,
454 rq->rq_sched_info.run_delay, rq->rq_sched_info.pcnt);
455
456 seq_printf(seq, "\n");
457
458#ifdef CONFIG_SMP
459 /* domain-specific stats */
Nick Piggin674311d2005-06-25 14:57:27 -0700460 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 for_each_domain(cpu, sd) {
462 enum idle_type itype;
463 char mask_str[NR_CPUS];
464
465 cpumask_scnprintf(mask_str, NR_CPUS, sd->span);
466 seq_printf(seq, "domain%d %s", dcnt++, mask_str);
467 for (itype = SCHED_IDLE; itype < MAX_IDLE_TYPES;
468 itype++) {
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -0800469 seq_printf(seq, " %lu %lu %lu %lu %lu %lu %lu "
470 "%lu",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 sd->lb_cnt[itype],
472 sd->lb_balanced[itype],
473 sd->lb_failed[itype],
474 sd->lb_imbalance[itype],
475 sd->lb_gained[itype],
476 sd->lb_hot_gained[itype],
477 sd->lb_nobusyq[itype],
Chen, Kenneth W06066712006-12-10 02:20:35 -0800478 sd->lb_nobusyg[itype]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -0800480 seq_printf(seq, " %lu %lu %lu %lu %lu %lu %lu %lu %lu"
481 " %lu %lu %lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 sd->alb_cnt, sd->alb_failed, sd->alb_pushed,
Nick Piggin68767a02005-06-25 14:57:20 -0700483 sd->sbe_cnt, sd->sbe_balanced, sd->sbe_pushed,
484 sd->sbf_cnt, sd->sbf_balanced, sd->sbf_pushed,
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -0800485 sd->ttwu_wake_remote, sd->ttwu_move_affine,
486 sd->ttwu_move_balance);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 }
Nick Piggin674311d2005-06-25 14:57:27 -0700488 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489#endif
490 }
491 return 0;
492}
493
494static int schedstat_open(struct inode *inode, struct file *file)
495{
496 unsigned int size = PAGE_SIZE * (1 + num_online_cpus() / 32);
497 char *buf = kmalloc(size, GFP_KERNEL);
498 struct seq_file *m;
499 int res;
500
501 if (!buf)
502 return -ENOMEM;
503 res = single_open(file, show_schedstat, NULL);
504 if (!res) {
505 m = file->private_data;
506 m->buf = buf;
507 m->size = size;
508 } else
509 kfree(buf);
510 return res;
511}
512
Helge Deller15ad7cd2006-12-06 20:40:36 -0800513const struct file_operations proc_schedstat_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 .open = schedstat_open,
515 .read = seq_read,
516 .llseek = seq_lseek,
517 .release = single_release,
518};
519
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700520/*
521 * Expects runqueue lock to be held for atomicity of update
522 */
523static inline void
524rq_sched_info_arrive(struct rq *rq, unsigned long delta_jiffies)
525{
526 if (rq) {
527 rq->rq_sched_info.run_delay += delta_jiffies;
528 rq->rq_sched_info.pcnt++;
529 }
530}
531
532/*
533 * Expects runqueue lock to be held for atomicity of update
534 */
535static inline void
536rq_sched_info_depart(struct rq *rq, unsigned long delta_jiffies)
537{
538 if (rq)
539 rq->rq_sched_info.cpu_time += delta_jiffies;
540}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541# define schedstat_inc(rq, field) do { (rq)->field++; } while (0)
542# define schedstat_add(rq, field, amt) do { (rq)->field += (amt); } while (0)
543#else /* !CONFIG_SCHEDSTATS */
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700544static inline void
545rq_sched_info_arrive(struct rq *rq, unsigned long delta_jiffies)
546{}
547static inline void
548rq_sched_info_depart(struct rq *rq, unsigned long delta_jiffies)
549{}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550# define schedstat_inc(rq, field) do { } while (0)
551# define schedstat_add(rq, field, amt) do { } while (0)
552#endif
553
554/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -0800555 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700557static inline struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 __acquires(rq->lock)
559{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700560 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 local_irq_disable();
563 rq = this_rq();
564 spin_lock(&rq->lock);
565
566 return rq;
567}
568
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700569#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570/*
571 * Called when a process is dequeued from the active array and given
572 * the cpu. We should note that with the exception of interactive
573 * tasks, the expired queue will become the active queue after the active
574 * queue is empty, without explicitly dequeuing and requeuing tasks in the
575 * expired queue. (Interactive tasks may be requeued directly to the
576 * active queue, thus delaying tasks in the expired queue from running;
577 * see scheduler_tick()).
578 *
579 * This function is only called from sched_info_arrive(), rather than
580 * dequeue_task(). Even though a task may be queued and dequeued multiple
581 * times as it is shuffled about, we're really interested in knowing how
582 * long it was from the *first* time it was queued to the time that it
583 * finally hit a cpu.
584 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700585static inline void sched_info_dequeued(struct task_struct *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
587 t->sched_info.last_queued = 0;
588}
589
590/*
591 * Called when a task finally hits the cpu. We can now calculate how
592 * long it was waiting to run. We also note when it began so that we
593 * can keep stats on how long its timeslice is.
594 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700595static void sched_info_arrive(struct task_struct *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700597 unsigned long now = jiffies, delta_jiffies = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
599 if (t->sched_info.last_queued)
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700600 delta_jiffies = now - t->sched_info.last_queued;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 sched_info_dequeued(t);
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700602 t->sched_info.run_delay += delta_jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 t->sched_info.last_arrival = now;
604 t->sched_info.pcnt++;
605
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700606 rq_sched_info_arrive(task_rq(t), delta_jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
609/*
610 * Called when a process is queued into either the active or expired
611 * array. The time is noted and later used to determine how long we
612 * had to wait for us to reach the cpu. Since the expired queue will
613 * become the active queue after active queue is empty, without dequeuing
614 * and requeuing any tasks, we are interested in queuing to either. It
615 * is unusual but not impossible for tasks to be dequeued and immediately
616 * requeued in the same or another array: this can happen in sched_yield(),
617 * set_user_nice(), and even load_balance() as it moves tasks from runqueue
618 * to runqueue.
619 *
620 * This function is only called from enqueue_task(), but also only updates
621 * the timestamp if it is already not set. It's assumed that
622 * sched_info_dequeued() will clear that stamp when appropriate.
623 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700624static inline void sched_info_queued(struct task_struct *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700626 if (unlikely(sched_info_on()))
627 if (!t->sched_info.last_queued)
628 t->sched_info.last_queued = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
631/*
632 * Called when a process ceases being the active-running process, either
633 * voluntarily or involuntarily. Now we can calculate how long we ran.
634 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700635static inline void sched_info_depart(struct task_struct *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700637 unsigned long delta_jiffies = jiffies - t->sched_info.last_arrival;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700639 t->sched_info.cpu_time += delta_jiffies;
640 rq_sched_info_depart(task_rq(t), delta_jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641}
642
643/*
644 * Called when tasks are switched involuntarily due, typically, to expiring
645 * their time slice. (This may also be called when switching to or from
646 * the idle task.) We are only called when prev != next.
647 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700648static inline void
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700649__sched_info_switch(struct task_struct *prev, struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700651 struct rq *rq = task_rq(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 /*
654 * prev now departs the cpu. It's not interesting to record
655 * stats about how efficient we were at scheduling the idle
656 * process, however.
657 */
658 if (prev != rq->idle)
659 sched_info_depart(prev);
660
661 if (next != rq->idle)
662 sched_info_arrive(next);
663}
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700664static inline void
665sched_info_switch(struct task_struct *prev, struct task_struct *next)
666{
667 if (unlikely(sched_info_on()))
668 __sched_info_switch(prev, next);
669}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670#else
671#define sched_info_queued(t) do { } while (0)
672#define sched_info_switch(t, next) do { } while (0)
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700673#endif /* CONFIG_SCHEDSTATS || CONFIG_TASK_DELAY_ACCT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675/*
676 * Adding/removing a task to/from a priority array:
677 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700678static void dequeue_task(struct task_struct *p, struct prio_array *array)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
680 array->nr_active--;
681 list_del(&p->run_list);
682 if (list_empty(array->queue + p->prio))
683 __clear_bit(p->prio, array->bitmap);
684}
685
Ingo Molnar70b97a72006-07-03 00:25:42 -0700686static void enqueue_task(struct task_struct *p, struct prio_array *array)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
688 sched_info_queued(p);
689 list_add_tail(&p->run_list, array->queue + p->prio);
690 __set_bit(p->prio, array->bitmap);
691 array->nr_active++;
692 p->array = array;
693}
694
695/*
696 * Put task to the end of the run list without the overhead of dequeue
697 * followed by enqueue.
698 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700699static void requeue_task(struct task_struct *p, struct prio_array *array)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
701 list_move_tail(&p->run_list, array->queue + p->prio);
702}
703
Ingo Molnar70b97a72006-07-03 00:25:42 -0700704static inline void
705enqueue_task_head(struct task_struct *p, struct prio_array *array)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706{
707 list_add(&p->run_list, array->queue + p->prio);
708 __set_bit(p->prio, array->bitmap);
709 array->nr_active++;
710 p->array = array;
711}
712
713/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700714 * __normal_prio - return the priority that is based on the static
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 * priority but is modified by bonuses/penalties.
716 *
717 * We scale the actual sleep average [0 .... MAX_SLEEP_AVG]
718 * into the -5 ... 0 ... +5 bonus/penalty range.
719 *
720 * We use 25% of the full 0...39 priority range so that:
721 *
722 * 1) nice +19 interactive tasks do not preempt nice 0 CPU hogs.
723 * 2) nice -20 CPU hogs do not get preempted by nice 0 tasks.
724 *
725 * Both properties are important to certain workloads.
726 */
Ingo Molnarb29739f2006-06-27 02:54:51 -0700727
Ingo Molnar36c8b582006-07-03 00:25:41 -0700728static inline int __normal_prio(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
730 int bonus, prio;
731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 bonus = CURRENT_BONUS(p) - MAX_BONUS / 2;
733
734 prio = p->static_prio - bonus;
735 if (prio < MAX_RT_PRIO)
736 prio = MAX_RT_PRIO;
737 if (prio > MAX_PRIO-1)
738 prio = MAX_PRIO-1;
739 return prio;
740}
741
742/*
Peter Williams2dd73a42006-06-27 02:54:34 -0700743 * To aid in avoiding the subversion of "niceness" due to uneven distribution
744 * of tasks with abnormal "nice" values across CPUs the contribution that
745 * each task makes to its run queue's load is weighted according to its
746 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
747 * scaled version of the new time slice allocation that they receive on time
748 * slice expiry etc.
749 */
750
751/*
752 * Assume: static_prio_timeslice(NICE_TO_PRIO(0)) == DEF_TIMESLICE
753 * If static_prio_timeslice() is ever changed to break this assumption then
754 * this code will need modification
755 */
756#define TIME_SLICE_NICE_ZERO DEF_TIMESLICE
757#define LOAD_WEIGHT(lp) \
758 (((lp) * SCHED_LOAD_SCALE) / TIME_SLICE_NICE_ZERO)
759#define PRIO_TO_LOAD_WEIGHT(prio) \
760 LOAD_WEIGHT(static_prio_timeslice(prio))
761#define RTPRIO_TO_LOAD_WEIGHT(rp) \
762 (PRIO_TO_LOAD_WEIGHT(MAX_RT_PRIO) + LOAD_WEIGHT(rp))
763
Ingo Molnar36c8b582006-07-03 00:25:41 -0700764static void set_load_weight(struct task_struct *p)
Peter Williams2dd73a42006-06-27 02:54:34 -0700765{
Ingo Molnarb29739f2006-06-27 02:54:51 -0700766 if (has_rt_policy(p)) {
Peter Williams2dd73a42006-06-27 02:54:34 -0700767#ifdef CONFIG_SMP
768 if (p == task_rq(p)->migration_thread)
769 /*
770 * The migration thread does the actual balancing.
771 * Giving its load any weight will skew balancing
772 * adversely.
773 */
774 p->load_weight = 0;
775 else
776#endif
777 p->load_weight = RTPRIO_TO_LOAD_WEIGHT(p->rt_priority);
778 } else
779 p->load_weight = PRIO_TO_LOAD_WEIGHT(p->static_prio);
780}
781
Ingo Molnar36c8b582006-07-03 00:25:41 -0700782static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -0700783inc_raw_weighted_load(struct rq *rq, const struct task_struct *p)
Peter Williams2dd73a42006-06-27 02:54:34 -0700784{
785 rq->raw_weighted_load += p->load_weight;
786}
787
Ingo Molnar36c8b582006-07-03 00:25:41 -0700788static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -0700789dec_raw_weighted_load(struct rq *rq, const struct task_struct *p)
Peter Williams2dd73a42006-06-27 02:54:34 -0700790{
791 rq->raw_weighted_load -= p->load_weight;
792}
793
Ingo Molnar70b97a72006-07-03 00:25:42 -0700794static inline void inc_nr_running(struct task_struct *p, struct rq *rq)
Peter Williams2dd73a42006-06-27 02:54:34 -0700795{
796 rq->nr_running++;
797 inc_raw_weighted_load(rq, p);
798}
799
Ingo Molnar70b97a72006-07-03 00:25:42 -0700800static inline void dec_nr_running(struct task_struct *p, struct rq *rq)
Peter Williams2dd73a42006-06-27 02:54:34 -0700801{
802 rq->nr_running--;
803 dec_raw_weighted_load(rq, p);
804}
805
806/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700807 * Calculate the expected normal priority: i.e. priority
808 * without taking RT-inheritance into account. Might be
809 * boosted by interactivity modifiers. Changes upon fork,
810 * setprio syscalls, and whenever the interactivity
811 * estimator recalculates.
812 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700813static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700814{
815 int prio;
816
817 if (has_rt_policy(p))
818 prio = MAX_RT_PRIO-1 - p->rt_priority;
819 else
820 prio = __normal_prio(p);
821 return prio;
822}
823
824/*
825 * Calculate the current priority, i.e. the priority
826 * taken into account by the scheduler. This value might
827 * be boosted by RT tasks, or might be boosted by
828 * interactivity modifiers. Will be RT if the task got
829 * RT-boosted. If not then it returns p->normal_prio.
830 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700831static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700832{
833 p->normal_prio = normal_prio(p);
834 /*
835 * If we are RT tasks or we were boosted to RT priority,
836 * keep the priority unchanged. Otherwise, update priority
837 * to the normal priority:
838 */
839 if (!rt_prio(p->prio))
840 return p->normal_prio;
841 return p->prio;
842}
843
844/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 * __activate_task - move a task to the runqueue.
846 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700847static void __activate_task(struct task_struct *p, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700849 struct prio_array *target = rq->active;
Con Kolivasd425b272006-03-31 02:31:29 -0800850
Linus Torvaldsf1adad72006-05-21 18:54:09 -0700851 if (batch_task(p))
Con Kolivasd425b272006-03-31 02:31:29 -0800852 target = rq->expired;
853 enqueue_task(p, target);
Peter Williams2dd73a42006-06-27 02:54:34 -0700854 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855}
856
857/*
858 * __activate_idle_task - move idle task to the _front_ of runqueue.
859 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700860static inline void __activate_idle_task(struct task_struct *p, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
862 enqueue_task_head(p, rq->active);
Peter Williams2dd73a42006-06-27 02:54:34 -0700863 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864}
865
Ingo Molnarb29739f2006-06-27 02:54:51 -0700866/*
867 * Recalculate p->normal_prio and p->prio after having slept,
868 * updating the sleep-average too:
869 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700870static int recalc_task_prio(struct task_struct *p, unsigned long long now)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
872 /* Caller must always ensure 'now >= p->timestamp' */
Con Kolivas72d28542006-06-27 02:54:30 -0700873 unsigned long sleep_time = now - p->timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Con Kolivasd425b272006-03-31 02:31:29 -0800875 if (batch_task(p))
Ingo Molnarb0a94992006-01-14 13:20:41 -0800876 sleep_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878 if (likely(sleep_time > 0)) {
879 /*
Con Kolivas72d28542006-06-27 02:54:30 -0700880 * This ceiling is set to the lowest priority that would allow
881 * a task to be reinserted into the active array on timeslice
882 * completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 */
Con Kolivas72d28542006-06-27 02:54:30 -0700884 unsigned long ceiling = INTERACTIVE_SLEEP(p);
Con Kolivase72ff0b2006-03-31 02:31:26 -0800885
Con Kolivas72d28542006-06-27 02:54:30 -0700886 if (p->mm && sleep_time > ceiling && p->sleep_avg < ceiling) {
887 /*
888 * Prevents user tasks from achieving best priority
889 * with one single large enough sleep.
890 */
891 p->sleep_avg = ceiling;
892 /*
893 * Using INTERACTIVE_SLEEP() as a ceiling places a
894 * nice(0) task 1ms sleep away from promotion, and
895 * gives it 700ms to round-robin with no chance of
896 * being demoted. This is more than generous, so
897 * mark this sleep as non-interactive to prevent the
898 * on-runqueue bonus logic from intervening should
899 * this task not receive cpu immediately.
900 */
901 p->sleep_type = SLEEP_NONINTERACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 } else {
903 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 * Tasks waking from uninterruptible sleep are
905 * limited in their sleep_avg rise as they
906 * are likely to be waiting on I/O
907 */
Con Kolivas3dee3862006-03-31 02:31:23 -0800908 if (p->sleep_type == SLEEP_NONINTERACTIVE && p->mm) {
Con Kolivas72d28542006-06-27 02:54:30 -0700909 if (p->sleep_avg >= ceiling)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 sleep_time = 0;
911 else if (p->sleep_avg + sleep_time >=
Con Kolivas72d28542006-06-27 02:54:30 -0700912 ceiling) {
913 p->sleep_avg = ceiling;
914 sleep_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 }
916 }
917
918 /*
919 * This code gives a bonus to interactive tasks.
920 *
921 * The boost works by updating the 'average sleep time'
922 * value here, based on ->timestamp. The more time a
923 * task spends sleeping, the higher the average gets -
924 * and the higher the priority boost gets as well.
925 */
926 p->sleep_avg += sleep_time;
927
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 }
Con Kolivas72d28542006-06-27 02:54:30 -0700929 if (p->sleep_avg > NS_MAX_SLEEP_AVG)
930 p->sleep_avg = NS_MAX_SLEEP_AVG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 }
932
Chen Shanga3464a12005-06-25 14:57:31 -0700933 return effective_prio(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934}
935
936/*
937 * activate_task - move a task to the runqueue and do priority recalculation
938 *
939 * Update all the scheduling statistics stuff. (sleep average
940 * calculation, priority modifiers, etc.)
941 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700942static void activate_task(struct task_struct *p, struct rq *rq, int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943{
944 unsigned long long now;
945
Chen, Kenneth W62ab6162006-12-10 02:20:36 -0800946 if (rt_task(p))
947 goto out;
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 now = sched_clock();
950#ifdef CONFIG_SMP
951 if (!local) {
952 /* Compensate for drifting sched_clock */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700953 struct rq *this_rq = this_rq();
Mike Galbraithb18ec802006-12-10 02:20:31 -0800954 now = (now - this_rq->most_recent_timestamp)
955 + rq->most_recent_timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 }
957#endif
958
Ingo Molnarece8a682006-12-06 20:37:24 -0800959 /*
960 * Sleep time is in units of nanosecs, so shift by 20 to get a
961 * milliseconds-range estimation of the amount of time that the task
962 * spent sleeping:
963 */
964 if (unlikely(prof_on == SLEEP_PROFILING)) {
965 if (p->state == TASK_UNINTERRUPTIBLE)
966 profile_hits(SLEEP_PROFILING, (void *)get_wchan(p),
967 (now - p->timestamp) >> 20);
968 }
969
Chen, Kenneth W62ab6162006-12-10 02:20:36 -0800970 p->prio = recalc_task_prio(p, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
972 /*
973 * This checks to make sure it's not an uninterruptible task
974 * that is now waking up.
975 */
Con Kolivas3dee3862006-03-31 02:31:23 -0800976 if (p->sleep_type == SLEEP_NORMAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 /*
978 * Tasks which were woken up by interrupts (ie. hw events)
979 * are most likely of interactive nature. So we give them
980 * the credit of extending their sleep time to the period
981 * of time they spend on the runqueue, waiting for execution
982 * on a CPU, first time around:
983 */
984 if (in_interrupt())
Con Kolivas3dee3862006-03-31 02:31:23 -0800985 p->sleep_type = SLEEP_INTERRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 else {
987 /*
988 * Normal first-time wakeups get a credit too for
989 * on-runqueue time, but it will be weighted down:
990 */
Con Kolivas3dee3862006-03-31 02:31:23 -0800991 p->sleep_type = SLEEP_INTERACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 }
993 }
994 p->timestamp = now;
Chen, Kenneth W62ab6162006-12-10 02:20:36 -0800995out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 __activate_task(p, rq);
997}
998
999/*
1000 * deactivate_task - remove a task from the runqueue.
1001 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001002static void deactivate_task(struct task_struct *p, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003{
Peter Williams2dd73a42006-06-27 02:54:34 -07001004 dec_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 dequeue_task(p, p->array);
1006 p->array = NULL;
1007}
1008
1009/*
1010 * resched_task - mark a task 'to be rescheduled now'.
1011 *
1012 * On UP this means the setting of the need_resched flag, on SMP it
1013 * might also involve a cross-CPU call to trigger the scheduler on
1014 * the target CPU.
1015 */
1016#ifdef CONFIG_SMP
Andi Kleen495ab9c2006-06-26 13:59:11 +02001017
1018#ifndef tsk_is_polling
1019#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1020#endif
1021
Ingo Molnar36c8b582006-07-03 00:25:41 -07001022static void resched_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023{
Nick Piggin64c7c8f2005-11-08 21:39:04 -08001024 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026 assert_spin_locked(&task_rq(p)->lock);
1027
Nick Piggin64c7c8f2005-11-08 21:39:04 -08001028 if (unlikely(test_tsk_thread_flag(p, TIF_NEED_RESCHED)))
1029 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Nick Piggin64c7c8f2005-11-08 21:39:04 -08001031 set_tsk_thread_flag(p, TIF_NEED_RESCHED);
1032
1033 cpu = task_cpu(p);
1034 if (cpu == smp_processor_id())
1035 return;
1036
Andi Kleen495ab9c2006-06-26 13:59:11 +02001037 /* NEED_RESCHED must be visible before we test polling */
Nick Piggin64c7c8f2005-11-08 21:39:04 -08001038 smp_mb();
Andi Kleen495ab9c2006-06-26 13:59:11 +02001039 if (!tsk_is_polling(p))
Nick Piggin64c7c8f2005-11-08 21:39:04 -08001040 smp_send_reschedule(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041}
1042#else
Ingo Molnar36c8b582006-07-03 00:25:41 -07001043static inline void resched_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044{
Nick Piggin64c7c8f2005-11-08 21:39:04 -08001045 assert_spin_locked(&task_rq(p)->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 set_tsk_need_resched(p);
1047}
1048#endif
1049
1050/**
1051 * task_curr - is this task currently executing on a CPU?
1052 * @p: the task in question.
1053 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001054inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055{
1056 return cpu_curr(task_cpu(p)) == p;
1057}
1058
Peter Williams2dd73a42006-06-27 02:54:34 -07001059/* Used instead of source_load when we know the type == 0 */
1060unsigned long weighted_cpuload(const int cpu)
1061{
1062 return cpu_rq(cpu)->raw_weighted_load;
1063}
1064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065#ifdef CONFIG_SMP
Ingo Molnar70b97a72006-07-03 00:25:42 -07001066struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Ingo Molnar36c8b582006-07-03 00:25:41 -07001069 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 int dest_cpu;
1071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001073};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
1075/*
1076 * The task's runqueue lock must be held.
1077 * Returns true if you have to wait for migration thread.
1078 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001079static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07001080migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001082 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
1084 /*
1085 * If the task is not on a runqueue (and not running), then
1086 * it is sufficient to simply update the task's cpu field.
1087 */
1088 if (!p->array && !task_running(rq, p)) {
1089 set_task_cpu(p, dest_cpu);
1090 return 0;
1091 }
1092
1093 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 req->task = p;
1095 req->dest_cpu = dest_cpu;
1096 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07001097
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 return 1;
1099}
1100
1101/*
1102 * wait_task_inactive - wait for a thread to unschedule.
1103 *
1104 * The caller must ensure that the task *will* unschedule sometime soon,
1105 * else this function might spin for a *long* time. This function can't
1106 * be called with interrupts off, or it may introduce deadlock with
1107 * smp_call_function() if an IPI is sent by the same process we are
1108 * waiting to become inactive.
1109 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001110void wait_task_inactive(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
1112 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001113 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 int preempted;
1115
1116repeat:
1117 rq = task_rq_lock(p, &flags);
1118 /* Must be off runqueue entirely, not preempted. */
1119 if (unlikely(p->array || task_running(rq, p))) {
1120 /* If it's preempted, we yield. It could be a while. */
1121 preempted = !task_running(rq, p);
1122 task_rq_unlock(rq, &flags);
1123 cpu_relax();
1124 if (preempted)
1125 yield();
1126 goto repeat;
1127 }
1128 task_rq_unlock(rq, &flags);
1129}
1130
1131/***
1132 * kick_process - kick a running thread to enter/exit the kernel
1133 * @p: the to-be-kicked thread
1134 *
1135 * Cause a process which is running on another CPU to enter
1136 * kernel-mode, without any delay. (to get signals handled.)
1137 *
1138 * NOTE: this function doesnt have to take the runqueue lock,
1139 * because all it wants to ensure is that the remote task enters
1140 * the kernel. If the IPI races and the task has been migrated
1141 * to another CPU then no harm is done and the purpose has been
1142 * achieved as well.
1143 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001144void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145{
1146 int cpu;
1147
1148 preempt_disable();
1149 cpu = task_cpu(p);
1150 if ((cpu != smp_processor_id()) && task_curr(p))
1151 smp_send_reschedule(cpu);
1152 preempt_enable();
1153}
1154
1155/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001156 * Return a low guess at the load of a migration-source cpu weighted
1157 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 *
1159 * We want to under-estimate the load of migration sources, to
1160 * balance conservatively.
1161 */
Con Kolivasb9104722005-11-08 21:38:55 -08001162static inline unsigned long source_load(int cpu, int type)
1163{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001164 struct rq *rq = cpu_rq(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001165
Peter Williams2dd73a42006-06-27 02:54:34 -07001166 if (type == 0)
1167 return rq->raw_weighted_load;
1168
1169 return min(rq->cpu_load[type-1], rq->raw_weighted_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170}
1171
1172/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001173 * Return a high guess at the load of a migration-target cpu weighted
1174 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 */
Con Kolivasb9104722005-11-08 21:38:55 -08001176static inline unsigned long target_load(int cpu, int type)
1177{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001178 struct rq *rq = cpu_rq(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001179
Peter Williams2dd73a42006-06-27 02:54:34 -07001180 if (type == 0)
1181 return rq->raw_weighted_load;
1182
1183 return max(rq->cpu_load[type-1], rq->raw_weighted_load);
1184}
1185
1186/*
1187 * Return the average load per task on the cpu's run queue
1188 */
1189static inline unsigned long cpu_avg_load_per_task(int cpu)
1190{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001191 struct rq *rq = cpu_rq(cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07001192 unsigned long n = rq->nr_running;
1193
Ingo Molnar48f24c42006-07-03 00:25:40 -07001194 return n ? rq->raw_weighted_load / n : SCHED_LOAD_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195}
1196
Nick Piggin147cbb42005-06-25 14:57:19 -07001197/*
1198 * find_idlest_group finds and returns the least busy CPU group within the
1199 * domain.
1200 */
1201static struct sched_group *
1202find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
1203{
1204 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
1205 unsigned long min_load = ULONG_MAX, this_load = 0;
1206 int load_idx = sd->forkexec_idx;
1207 int imbalance = 100 + (sd->imbalance_pct-100)/2;
1208
1209 do {
1210 unsigned long load, avg_load;
1211 int local_group;
1212 int i;
1213
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001214 /* Skip over this group if it has no CPUs allowed */
1215 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
1216 goto nextgroup;
1217
Nick Piggin147cbb42005-06-25 14:57:19 -07001218 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07001219
1220 /* Tally up the load of all CPUs in the group */
1221 avg_load = 0;
1222
1223 for_each_cpu_mask(i, group->cpumask) {
1224 /* Bias balancing toward cpus of our domain */
1225 if (local_group)
1226 load = source_load(i, load_idx);
1227 else
1228 load = target_load(i, load_idx);
1229
1230 avg_load += load;
1231 }
1232
1233 /* Adjust by relative CPU power of the group */
1234 avg_load = (avg_load * SCHED_LOAD_SCALE) / group->cpu_power;
1235
1236 if (local_group) {
1237 this_load = avg_load;
1238 this = group;
1239 } else if (avg_load < min_load) {
1240 min_load = avg_load;
1241 idlest = group;
1242 }
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001243nextgroup:
Nick Piggin147cbb42005-06-25 14:57:19 -07001244 group = group->next;
1245 } while (group != sd->groups);
1246
1247 if (!idlest || 100*this_load < imbalance*min_load)
1248 return NULL;
1249 return idlest;
1250}
1251
1252/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07001253 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07001254 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07001255static int
1256find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu)
Nick Piggin147cbb42005-06-25 14:57:19 -07001257{
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001258 cpumask_t tmp;
Nick Piggin147cbb42005-06-25 14:57:19 -07001259 unsigned long load, min_load = ULONG_MAX;
1260 int idlest = -1;
1261 int i;
1262
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001263 /* Traverse only the allowed CPUs */
1264 cpus_and(tmp, group->cpumask, p->cpus_allowed);
1265
1266 for_each_cpu_mask(i, tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07001267 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07001268
1269 if (load < min_load || (load == min_load && i == this_cpu)) {
1270 min_load = load;
1271 idlest = i;
1272 }
1273 }
1274
1275 return idlest;
1276}
1277
Nick Piggin476d1392005-06-25 14:57:29 -07001278/*
1279 * sched_balance_self: balance the current task (running on cpu) in domains
1280 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
1281 * SD_BALANCE_EXEC.
1282 *
1283 * Balance, ie. select the least loaded group.
1284 *
1285 * Returns the target CPU number, or the same CPU if no balancing is needed.
1286 *
1287 * preempt must be disabled.
1288 */
1289static int sched_balance_self(int cpu, int flag)
1290{
1291 struct task_struct *t = current;
1292 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07001293
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001294 for_each_domain(cpu, tmp) {
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07001295 /*
1296 * If power savings logic is enabled for a domain, stop there.
1297 */
1298 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
1299 break;
Nick Piggin476d1392005-06-25 14:57:29 -07001300 if (tmp->flags & flag)
1301 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001302 }
Nick Piggin476d1392005-06-25 14:57:29 -07001303
1304 while (sd) {
1305 cpumask_t span;
1306 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001307 int new_cpu, weight;
1308
1309 if (!(sd->flags & flag)) {
1310 sd = sd->child;
1311 continue;
1312 }
Nick Piggin476d1392005-06-25 14:57:29 -07001313
1314 span = sd->span;
1315 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001316 if (!group) {
1317 sd = sd->child;
1318 continue;
1319 }
Nick Piggin476d1392005-06-25 14:57:29 -07001320
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001321 new_cpu = find_idlest_cpu(group, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001322 if (new_cpu == -1 || new_cpu == cpu) {
1323 /* Now try balancing at a lower domain level of cpu */
1324 sd = sd->child;
1325 continue;
1326 }
Nick Piggin476d1392005-06-25 14:57:29 -07001327
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001328 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07001329 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07001330 sd = NULL;
1331 weight = cpus_weight(span);
1332 for_each_domain(cpu, tmp) {
1333 if (weight <= cpus_weight(tmp->span))
1334 break;
1335 if (tmp->flags & flag)
1336 sd = tmp;
1337 }
1338 /* while loop will break here if sd == NULL */
1339 }
1340
1341 return cpu;
1342}
1343
1344#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346/*
1347 * wake_idle() will wake a task on an idle cpu if task->cpu is
1348 * not idle and an idle cpu is available. The span of cpus to
1349 * search starts with cpus closest then further out as needed,
1350 * so we always favor a closer, idle cpu.
1351 *
1352 * Returns the CPU we should wake onto.
1353 */
1354#if defined(ARCH_HAS_SCHED_WAKE_IDLE)
Ingo Molnar36c8b582006-07-03 00:25:41 -07001355static int wake_idle(int cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356{
1357 cpumask_t tmp;
1358 struct sched_domain *sd;
1359 int i;
1360
1361 if (idle_cpu(cpu))
1362 return cpu;
1363
1364 for_each_domain(cpu, sd) {
1365 if (sd->flags & SD_WAKE_IDLE) {
Nick Piggine0f364f2005-06-25 14:57:06 -07001366 cpus_and(tmp, sd->span, p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 for_each_cpu_mask(i, tmp) {
1368 if (idle_cpu(i))
1369 return i;
1370 }
1371 }
Nick Piggine0f364f2005-06-25 14:57:06 -07001372 else
1373 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 }
1375 return cpu;
1376}
1377#else
Ingo Molnar36c8b582006-07-03 00:25:41 -07001378static inline int wake_idle(int cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379{
1380 return cpu;
1381}
1382#endif
1383
1384/***
1385 * try_to_wake_up - wake up a thread
1386 * @p: the to-be-woken-up thread
1387 * @state: the mask of task states that can be woken
1388 * @sync: do a synchronous wakeup?
1389 *
1390 * Put it on the run-queue if it's not already there. The "current"
1391 * thread is always on the run-queue (except when the actual
1392 * re-schedule is in progress), and as such you're allowed to do
1393 * the simpler "current->state = TASK_RUNNING" to mark yourself
1394 * runnable without the overhead of this.
1395 *
1396 * returns failure only if the task is already active.
1397 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001398static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399{
1400 int cpu, this_cpu, success = 0;
1401 unsigned long flags;
1402 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001403 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404#ifdef CONFIG_SMP
Nick Piggin78979862005-06-25 14:57:13 -07001405 struct sched_domain *sd, *this_sd = NULL;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001406 unsigned long load, this_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 int new_cpu;
1408#endif
1409
1410 rq = task_rq_lock(p, &flags);
1411 old_state = p->state;
1412 if (!(old_state & state))
1413 goto out;
1414
1415 if (p->array)
1416 goto out_running;
1417
1418 cpu = task_cpu(p);
1419 this_cpu = smp_processor_id();
1420
1421#ifdef CONFIG_SMP
1422 if (unlikely(task_running(rq, p)))
1423 goto out_activate;
1424
Nick Piggin78979862005-06-25 14:57:13 -07001425 new_cpu = cpu;
1426
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 schedstat_inc(rq, ttwu_cnt);
1428 if (cpu == this_cpu) {
1429 schedstat_inc(rq, ttwu_local);
Nick Piggin78979862005-06-25 14:57:13 -07001430 goto out_set_cpu;
1431 }
1432
1433 for_each_domain(this_cpu, sd) {
1434 if (cpu_isset(cpu, sd->span)) {
1435 schedstat_inc(sd, ttwu_wake_remote);
1436 this_sd = sd;
1437 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 }
1439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
Nick Piggin78979862005-06-25 14:57:13 -07001441 if (unlikely(!cpu_isset(this_cpu, p->cpus_allowed)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 goto out_set_cpu;
1443
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 /*
Nick Piggin78979862005-06-25 14:57:13 -07001445 * Check for affine wakeup and passive balancing possibilities.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 */
Nick Piggin78979862005-06-25 14:57:13 -07001447 if (this_sd) {
1448 int idx = this_sd->wake_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 unsigned int imbalance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Nick Piggina3f21bc2005-06-25 14:57:15 -07001451 imbalance = 100 + (this_sd->imbalance_pct - 100) / 2;
1452
Nick Piggin78979862005-06-25 14:57:13 -07001453 load = source_load(cpu, idx);
1454 this_load = target_load(this_cpu, idx);
1455
Nick Piggin78979862005-06-25 14:57:13 -07001456 new_cpu = this_cpu; /* Wake to this CPU if we can */
1457
Nick Piggina3f21bc2005-06-25 14:57:15 -07001458 if (this_sd->flags & SD_WAKE_AFFINE) {
1459 unsigned long tl = this_load;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08001460 unsigned long tl_per_task;
1461
1462 tl_per_task = cpu_avg_load_per_task(this_cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07001463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 /*
Nick Piggina3f21bc2005-06-25 14:57:15 -07001465 * If sync wakeup then subtract the (maximum possible)
1466 * effect of the currently running task from the load
1467 * of the current CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 */
Nick Piggina3f21bc2005-06-25 14:57:15 -07001469 if (sync)
Peter Williams2dd73a42006-06-27 02:54:34 -07001470 tl -= current->load_weight;
Nick Piggina3f21bc2005-06-25 14:57:15 -07001471
1472 if ((tl <= load &&
Peter Williams2dd73a42006-06-27 02:54:34 -07001473 tl + target_load(cpu, idx) <= tl_per_task) ||
1474 100*(tl + p->load_weight) <= imbalance*load) {
Nick Piggina3f21bc2005-06-25 14:57:15 -07001475 /*
1476 * This domain has SD_WAKE_AFFINE and
1477 * p is cache cold in this domain, and
1478 * there is no bad imbalance.
1479 */
1480 schedstat_inc(this_sd, ttwu_move_affine);
1481 goto out_set_cpu;
1482 }
1483 }
1484
1485 /*
1486 * Start passive balancing when half the imbalance_pct
1487 * limit is reached.
1488 */
1489 if (this_sd->flags & SD_WAKE_BALANCE) {
1490 if (imbalance*this_load <= 100*load) {
1491 schedstat_inc(this_sd, ttwu_move_balance);
1492 goto out_set_cpu;
1493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 }
1495 }
1496
1497 new_cpu = cpu; /* Could not wake to this_cpu. Wake to cpu instead */
1498out_set_cpu:
1499 new_cpu = wake_idle(new_cpu, p);
1500 if (new_cpu != cpu) {
1501 set_task_cpu(p, new_cpu);
1502 task_rq_unlock(rq, &flags);
1503 /* might preempt at this point */
1504 rq = task_rq_lock(p, &flags);
1505 old_state = p->state;
1506 if (!(old_state & state))
1507 goto out;
1508 if (p->array)
1509 goto out_running;
1510
1511 this_cpu = smp_processor_id();
1512 cpu = task_cpu(p);
1513 }
1514
1515out_activate:
1516#endif /* CONFIG_SMP */
1517 if (old_state == TASK_UNINTERRUPTIBLE) {
1518 rq->nr_uninterruptible--;
1519 /*
1520 * Tasks on involuntary sleep don't earn
1521 * sleep_avg beyond just interactive state.
1522 */
Con Kolivas3dee3862006-03-31 02:31:23 -08001523 p->sleep_type = SLEEP_NONINTERACTIVE;
Con Kolivase7c38cb2006-03-31 02:31:25 -08001524 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
1526 /*
Ingo Molnard79fc0f2005-09-10 00:26:12 -07001527 * Tasks that have marked their sleep as noninteractive get
Con Kolivase7c38cb2006-03-31 02:31:25 -08001528 * woken up with their sleep average not weighted in an
1529 * interactive way.
Ingo Molnard79fc0f2005-09-10 00:26:12 -07001530 */
Con Kolivase7c38cb2006-03-31 02:31:25 -08001531 if (old_state & TASK_NONINTERACTIVE)
1532 p->sleep_type = SLEEP_NONINTERACTIVE;
1533
1534
1535 activate_task(p, rq, cpu == this_cpu);
Ingo Molnard79fc0f2005-09-10 00:26:12 -07001536 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 * Sync wakeups (i.e. those types of wakeups where the waker
1538 * has indicated that it will leave the CPU in short order)
1539 * don't trigger a preemption, if the woken up task will run on
1540 * this cpu. (in this case the 'I will reschedule' promise of
1541 * the waker guarantees that the freshly woken up task is going
1542 * to be considered on this CPU.)
1543 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 if (!sync || cpu != this_cpu) {
1545 if (TASK_PREEMPTS_CURR(p, rq))
1546 resched_task(rq->curr);
1547 }
1548 success = 1;
1549
1550out_running:
1551 p->state = TASK_RUNNING;
1552out:
1553 task_rq_unlock(rq, &flags);
1554
1555 return success;
1556}
1557
Ingo Molnar36c8b582006-07-03 00:25:41 -07001558int fastcall wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559{
1560 return try_to_wake_up(p, TASK_STOPPED | TASK_TRACED |
1561 TASK_INTERRUPTIBLE | TASK_UNINTERRUPTIBLE, 0);
1562}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563EXPORT_SYMBOL(wake_up_process);
1564
Ingo Molnar36c8b582006-07-03 00:25:41 -07001565int fastcall wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566{
1567 return try_to_wake_up(p, state, 0);
1568}
1569
Peter Williamsbc947632006-12-19 12:48:50 +10001570static void task_running_tick(struct rq *rq, struct task_struct *p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571/*
1572 * Perform scheduler related setup for a newly forked process p.
1573 * p is forked by current.
1574 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001575void fastcall sched_fork(struct task_struct *p, int clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576{
Nick Piggin476d1392005-06-25 14:57:29 -07001577 int cpu = get_cpu();
1578
1579#ifdef CONFIG_SMP
1580 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
1581#endif
1582 set_task_cpu(p, cpu);
1583
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 /*
1585 * We mark the process as running here, but have not actually
1586 * inserted it onto the runqueue yet. This guarantees that
1587 * nobody will actually run it, and a signal or other external
1588 * event cannot wake it up and insert it on the runqueue either.
1589 */
1590 p->state = TASK_RUNNING;
Ingo Molnarb29739f2006-06-27 02:54:51 -07001591
1592 /*
1593 * Make sure we do not leak PI boosting priority to the child:
1594 */
1595 p->prio = current->normal_prio;
1596
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 INIT_LIST_HEAD(&p->run_list);
1598 p->array = NULL;
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001599#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
1600 if (unlikely(sched_info_on()))
1601 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08001603#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07001604 p->oncpu = 0;
1605#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07001607 /* Want to start with kernel preemption disabled. */
Al Viroa1261f542005-11-13 16:06:55 -08001608 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609#endif
1610 /*
1611 * Share the timeslice between parent and child, thus the
1612 * total amount of pending timeslices in the system doesn't change,
1613 * resulting in more scheduling fairness.
1614 */
1615 local_irq_disable();
1616 p->time_slice = (current->time_slice + 1) >> 1;
1617 /*
1618 * The remainder of the first timeslice might be recovered by
1619 * the parent if the child exits early enough.
1620 */
1621 p->first_time_slice = 1;
1622 current->time_slice >>= 1;
1623 p->timestamp = sched_clock();
1624 if (unlikely(!current->time_slice)) {
1625 /*
1626 * This case is rare, it happens when the parent has only
1627 * a single jiffy left from its timeslice. Taking the
1628 * runqueue lock is not a problem.
1629 */
1630 current->time_slice = 1;
Peter Williamsbc947632006-12-19 12:48:50 +10001631 task_running_tick(cpu_rq(cpu), current);
Nick Piggin476d1392005-06-25 14:57:29 -07001632 }
1633 local_irq_enable();
1634 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635}
1636
1637/*
1638 * wake_up_new_task - wake up a newly created task for the first time.
1639 *
1640 * This function will do some initial scheduler statistics housekeeping
1641 * that must be done for every newly created context, then puts the task
1642 * on the runqueue and wakes it.
1643 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001644void fastcall wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001646 struct rq *rq, *this_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 unsigned long flags;
1648 int this_cpu, cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
1650 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 BUG_ON(p->state != TASK_RUNNING);
Nick Piggin147cbb42005-06-25 14:57:19 -07001652 this_cpu = smp_processor_id();
1653 cpu = task_cpu(p);
1654
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 /*
1656 * We decrease the sleep average of forking parents
1657 * and children as well, to keep max-interactive tasks
1658 * from forking tasks that are max-interactive. The parent
1659 * (current) is done further down, under its lock.
1660 */
1661 p->sleep_avg = JIFFIES_TO_NS(CURRENT_BONUS(p) *
1662 CHILD_PENALTY / 100 * MAX_SLEEP_AVG / MAX_BONUS);
1663
1664 p->prio = effective_prio(p);
1665
1666 if (likely(cpu == this_cpu)) {
1667 if (!(clone_flags & CLONE_VM)) {
1668 /*
1669 * The VM isn't cloned, so we're in a good position to
1670 * do child-runs-first in anticipation of an exec. This
1671 * usually avoids a lot of COW overhead.
1672 */
1673 if (unlikely(!current->array))
1674 __activate_task(p, rq);
1675 else {
1676 p->prio = current->prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07001677 p->normal_prio = current->normal_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 list_add_tail(&p->run_list, &current->run_list);
1679 p->array = current->array;
1680 p->array->nr_active++;
Peter Williams2dd73a42006-06-27 02:54:34 -07001681 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 }
1683 set_need_resched();
1684 } else
1685 /* Run child last */
1686 __activate_task(p, rq);
1687 /*
1688 * We skip the following code due to cpu == this_cpu
1689 *
1690 * task_rq_unlock(rq, &flags);
1691 * this_rq = task_rq_lock(current, &flags);
1692 */
1693 this_rq = rq;
1694 } else {
1695 this_rq = cpu_rq(this_cpu);
1696
1697 /*
1698 * Not the local CPU - must adjust timestamp. This should
1699 * get optimised away in the !CONFIG_SMP case.
1700 */
Mike Galbraithb18ec802006-12-10 02:20:31 -08001701 p->timestamp = (p->timestamp - this_rq->most_recent_timestamp)
1702 + rq->most_recent_timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 __activate_task(p, rq);
1704 if (TASK_PREEMPTS_CURR(p, rq))
1705 resched_task(rq->curr);
1706
1707 /*
1708 * Parent and child are on different CPUs, now get the
1709 * parent runqueue to update the parent's ->sleep_avg:
1710 */
1711 task_rq_unlock(rq, &flags);
1712 this_rq = task_rq_lock(current, &flags);
1713 }
1714 current->sleep_avg = JIFFIES_TO_NS(CURRENT_BONUS(current) *
1715 PARENT_PENALTY / 100 * MAX_SLEEP_AVG / MAX_BONUS);
1716 task_rq_unlock(this_rq, &flags);
1717}
1718
1719/*
1720 * Potentially available exiting-child timeslices are
1721 * retrieved here - this way the parent does not get
1722 * penalized for creating too many threads.
1723 *
1724 * (this cannot be used to 'generate' timeslices
1725 * artificially, because any timeslice recovered here
1726 * was given away by the parent in the first place.)
1727 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001728void fastcall sched_exit(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729{
1730 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001731 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
1733 /*
1734 * If the child was a (relative-) CPU hog then decrease
1735 * the sleep_avg of the parent as well.
1736 */
1737 rq = task_rq_lock(p->parent, &flags);
Oleg Nesterov889dfaf2005-11-04 18:54:30 +03001738 if (p->first_time_slice && task_cpu(p) == task_cpu(p->parent)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 p->parent->time_slice += p->time_slice;
1740 if (unlikely(p->parent->time_slice > task_timeslice(p)))
1741 p->parent->time_slice = task_timeslice(p);
1742 }
1743 if (p->sleep_avg < p->parent->sleep_avg)
1744 p->parent->sleep_avg = p->parent->sleep_avg /
1745 (EXIT_WEIGHT + 1) * EXIT_WEIGHT + p->sleep_avg /
1746 (EXIT_WEIGHT + 1);
1747 task_rq_unlock(rq, &flags);
1748}
1749
1750/**
Nick Piggin4866cde2005-06-25 14:57:23 -07001751 * prepare_task_switch - prepare to switch tasks
1752 * @rq: the runqueue preparing to switch
1753 * @next: the task we are going to switch to.
1754 *
1755 * This is called with the rq lock held and interrupts off. It must
1756 * be paired with a subsequent finish_task_switch after the context
1757 * switch.
1758 *
1759 * prepare_task_switch sets up locking and calls architecture specific
1760 * hooks.
1761 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001762static inline void prepare_task_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07001763{
1764 prepare_lock_switch(rq, next);
1765 prepare_arch_switch(next);
1766}
1767
1768/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04001770 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 * @prev: the thread we just switched away from.
1772 *
Nick Piggin4866cde2005-06-25 14:57:23 -07001773 * finish_task_switch must be called after the context switch, paired
1774 * with a prepare_task_switch call before the context switch.
1775 * finish_task_switch will reconcile locking set up by prepare_task_switch,
1776 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 *
1778 * Note that we may have delayed dropping an mm in context_switch(). If
1779 * so, we finish that here outside of the runqueue lock. (Doing it
1780 * with the lock held can cause deadlocks; see schedule() for
1781 * details.)
1782 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001783static inline void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 __releases(rq->lock)
1785{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07001787 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
1789 rq->prev_mm = NULL;
1790
1791 /*
1792 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07001793 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07001794 * schedule one last time. The schedule call will never return, and
1795 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07001796 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 * still held, otherwise prev could be scheduled on another cpu, die
1798 * there before we look at prev->state, and then the reference would
1799 * be dropped twice.
1800 * Manfred Spraul <manfred@colorfullife.com>
1801 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07001802 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07001803 finish_arch_switch(prev);
1804 finish_lock_switch(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 if (mm)
1806 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07001807 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08001808 /*
1809 * Remove function-return probe instances associated with this
1810 * task and put them back on the free list.
1811 */
1812 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08001814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815}
1816
1817/**
1818 * schedule_tail - first thing a freshly forked thread must call.
1819 * @prev: the thread we just switched away from.
1820 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001821asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 __releases(rq->lock)
1823{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001824 struct rq *rq = this_rq();
1825
Nick Piggin4866cde2005-06-25 14:57:23 -07001826 finish_task_switch(rq, prev);
1827#ifdef __ARCH_WANT_UNLOCKED_CTXSW
1828 /* In this case, finish_task_switch does not reenable preemption */
1829 preempt_enable();
1830#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 if (current->set_child_tid)
1832 put_user(current->pid, current->set_child_tid);
1833}
1834
1835/*
1836 * context_switch - switch to the new MM and the new
1837 * thread's register state.
1838 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001839static inline struct task_struct *
Ingo Molnar70b97a72006-07-03 00:25:42 -07001840context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07001841 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842{
1843 struct mm_struct *mm = next->mm;
1844 struct mm_struct *oldmm = prev->active_mm;
1845
Nick Pigginbeed33a2006-10-11 01:21:52 -07001846 if (!mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 next->active_mm = oldmm;
1848 atomic_inc(&oldmm->mm_count);
1849 enter_lazy_tlb(oldmm, next);
1850 } else
1851 switch_mm(oldmm, mm, next);
1852
Nick Pigginbeed33a2006-10-11 01:21:52 -07001853 if (!prev->mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 prev->active_mm = NULL;
1855 WARN_ON(rq->prev_mm);
1856 rq->prev_mm = oldmm;
1857 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07001858 /*
1859 * Since the runqueue lock will be released by the next
1860 * task (which is an invalid locking op but in the case
1861 * of the scheduler it's an obvious special-case), so we
1862 * do an early lockdep release here:
1863 */
1864#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07001865 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07001866#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
1868 /* Here we just switch the register state and the stack. */
1869 switch_to(prev, next, prev);
1870
1871 return prev;
1872}
1873
1874/*
1875 * nr_running, nr_uninterruptible and nr_context_switches:
1876 *
1877 * externally visible scheduler statistics: current number of runnable
1878 * threads, current number of uninterruptible-sleeping threads, total
1879 * number of context switches performed since bootup.
1880 */
1881unsigned long nr_running(void)
1882{
1883 unsigned long i, sum = 0;
1884
1885 for_each_online_cpu(i)
1886 sum += cpu_rq(i)->nr_running;
1887
1888 return sum;
1889}
1890
1891unsigned long nr_uninterruptible(void)
1892{
1893 unsigned long i, sum = 0;
1894
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001895 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 sum += cpu_rq(i)->nr_uninterruptible;
1897
1898 /*
1899 * Since we read the counters lockless, it might be slightly
1900 * inaccurate. Do not allow it to go below zero though:
1901 */
1902 if (unlikely((long)sum < 0))
1903 sum = 0;
1904
1905 return sum;
1906}
1907
1908unsigned long long nr_context_switches(void)
1909{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07001910 int i;
1911 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001913 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 sum += cpu_rq(i)->nr_switches;
1915
1916 return sum;
1917}
1918
1919unsigned long nr_iowait(void)
1920{
1921 unsigned long i, sum = 0;
1922
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001923 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 sum += atomic_read(&cpu_rq(i)->nr_iowait);
1925
1926 return sum;
1927}
1928
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08001929unsigned long nr_active(void)
1930{
1931 unsigned long i, running = 0, uninterruptible = 0;
1932
1933 for_each_online_cpu(i) {
1934 running += cpu_rq(i)->nr_running;
1935 uninterruptible += cpu_rq(i)->nr_uninterruptible;
1936 }
1937
1938 if (unlikely((long)uninterruptible < 0))
1939 uninterruptible = 0;
1940
1941 return running + uninterruptible;
1942}
1943
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944#ifdef CONFIG_SMP
1945
1946/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07001947 * Is this task likely cache-hot:
1948 */
1949static inline int
1950task_hot(struct task_struct *p, unsigned long long now, struct sched_domain *sd)
1951{
1952 return (long long)(now - p->last_ran) < (long long)sd->cache_hot_time;
1953}
1954
1955/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 * double_rq_lock - safely lock two runqueues
1957 *
1958 * Note this does not disable interrupts like task_rq_lock,
1959 * you need to do so manually before calling.
1960 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001961static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 __acquires(rq1->lock)
1963 __acquires(rq2->lock)
1964{
Kirill Korotaev054b9102006-12-10 02:20:11 -08001965 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 if (rq1 == rq2) {
1967 spin_lock(&rq1->lock);
1968 __acquire(rq2->lock); /* Fake it out ;) */
1969 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001970 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 spin_lock(&rq1->lock);
1972 spin_lock(&rq2->lock);
1973 } else {
1974 spin_lock(&rq2->lock);
1975 spin_lock(&rq1->lock);
1976 }
1977 }
1978}
1979
1980/*
1981 * double_rq_unlock - safely unlock two runqueues
1982 *
1983 * Note this does not restore interrupts like task_rq_unlock,
1984 * you need to do so manually after calling.
1985 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001986static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 __releases(rq1->lock)
1988 __releases(rq2->lock)
1989{
1990 spin_unlock(&rq1->lock);
1991 if (rq1 != rq2)
1992 spin_unlock(&rq2->lock);
1993 else
1994 __release(rq2->lock);
1995}
1996
1997/*
1998 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
1999 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002000static void double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 __releases(this_rq->lock)
2002 __acquires(busiest->lock)
2003 __acquires(this_rq->lock)
2004{
Kirill Korotaev054b9102006-12-10 02:20:11 -08002005 if (unlikely(!irqs_disabled())) {
2006 /* printk() doesn't work good under rq->lock */
2007 spin_unlock(&this_rq->lock);
2008 BUG_ON(1);
2009 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002011 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 spin_unlock(&this_rq->lock);
2013 spin_lock(&busiest->lock);
2014 spin_lock(&this_rq->lock);
2015 } else
2016 spin_lock(&busiest->lock);
2017 }
2018}
2019
2020/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 * If dest_cpu is allowed for this process, migrate the task to it.
2022 * This is accomplished by forcing the cpu_allowed mask to only
2023 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
2024 * the cpu_allowed mask is restored.
2025 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002026static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002028 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002030 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
2032 rq = task_rq_lock(p, &flags);
2033 if (!cpu_isset(dest_cpu, p->cpus_allowed)
2034 || unlikely(cpu_is_offline(dest_cpu)))
2035 goto out;
2036
2037 /* force the process onto the specified CPU */
2038 if (migrate_task(p, dest_cpu, &req)) {
2039 /* Need to wait for migration thread (might exit: take ref). */
2040 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002041
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 get_task_struct(mt);
2043 task_rq_unlock(rq, &flags);
2044 wake_up_process(mt);
2045 put_task_struct(mt);
2046 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07002047
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 return;
2049 }
2050out:
2051 task_rq_unlock(rq, &flags);
2052}
2053
2054/*
Nick Piggin476d1392005-06-25 14:57:29 -07002055 * sched_exec - execve() is a valuable balancing opportunity, because at
2056 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 */
2058void sched_exec(void)
2059{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002061 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002063 if (new_cpu != this_cpu)
2064 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065}
2066
2067/*
2068 * pull_task - move a task from a remote runqueue to the local runqueue.
2069 * Both runqueues must be locked.
2070 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002071static void pull_task(struct rq *src_rq, struct prio_array *src_array,
2072 struct task_struct *p, struct rq *this_rq,
2073 struct prio_array *this_array, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074{
2075 dequeue_task(p, src_array);
Peter Williams2dd73a42006-06-27 02:54:34 -07002076 dec_nr_running(p, src_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 set_task_cpu(p, this_cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07002078 inc_nr_running(p, this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 enqueue_task(p, this_array);
Mike Galbraithb18ec802006-12-10 02:20:31 -08002080 p->timestamp = (p->timestamp - src_rq->most_recent_timestamp)
2081 + this_rq->most_recent_timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 /*
2083 * Note that idle threads have a prio of MAX_PRIO, for this test
2084 * to be always true for them.
2085 */
2086 if (TASK_PREEMPTS_CURR(p, this_rq))
2087 resched_task(this_rq->curr);
2088}
2089
2090/*
2091 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
2092 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002093static
Ingo Molnar70b97a72006-07-03 00:25:42 -07002094int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002095 struct sched_domain *sd, enum idle_type idle,
2096 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097{
2098 /*
2099 * We do not migrate tasks that are:
2100 * 1) running (obviously), or
2101 * 2) cannot be migrated to this CPU due to cpus_allowed, or
2102 * 3) are cache-hot on their current CPU.
2103 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 if (!cpu_isset(this_cpu, p->cpus_allowed))
2105 return 0;
Nick Piggin81026792005-06-25 14:57:07 -07002106 *all_pinned = 0;
2107
2108 if (task_running(rq, p))
2109 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110
2111 /*
2112 * Aggressive migration if:
Nick Piggincafb20c2005-06-25 14:57:17 -07002113 * 1) task is cache cold, or
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 * 2) too many balance attempts have failed.
2115 */
2116
Mike Galbraithb18ec802006-12-10 02:20:31 -08002117 if (sd->nr_balance_failed > sd->cache_nice_tries) {
2118#ifdef CONFIG_SCHEDSTATS
2119 if (task_hot(p, rq->most_recent_timestamp, sd))
2120 schedstat_inc(sd, lb_hot_gained[idle]);
2121#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 return 1;
Mike Galbraithb18ec802006-12-10 02:20:31 -08002123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
Mike Galbraithb18ec802006-12-10 02:20:31 -08002125 if (task_hot(p, rq->most_recent_timestamp, sd))
Nick Piggin81026792005-06-25 14:57:07 -07002126 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 return 1;
2128}
2129
Peter Williams615052d2006-06-27 02:54:37 -07002130#define rq_best_prio(rq) min((rq)->curr->prio, (rq)->best_expired_prio)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002131
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002133 * move_tasks tries to move up to max_nr_move tasks and max_load_move weighted
2134 * load from busiest to this_rq, as part of a balancing operation within
2135 * "domain". Returns the number of tasks moved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 *
2137 * Called with both runqueues locked.
2138 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002139static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams2dd73a42006-06-27 02:54:34 -07002140 unsigned long max_nr_move, unsigned long max_load_move,
2141 struct sched_domain *sd, enum idle_type idle,
2142 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143{
Ingo Molnar48f24c42006-07-03 00:25:40 -07002144 int idx, pulled = 0, pinned = 0, this_best_prio, best_prio,
2145 best_prio_seen, skip_for_load;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002146 struct prio_array *array, *dst_array;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 struct list_head *head, *curr;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002148 struct task_struct *tmp;
Peter Williams2dd73a42006-06-27 02:54:34 -07002149 long rem_load_move;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
Peter Williams2dd73a42006-06-27 02:54:34 -07002151 if (max_nr_move == 0 || max_load_move == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 goto out;
2153
Peter Williams2dd73a42006-06-27 02:54:34 -07002154 rem_load_move = max_load_move;
Nick Piggin81026792005-06-25 14:57:07 -07002155 pinned = 1;
Peter Williams615052d2006-06-27 02:54:37 -07002156 this_best_prio = rq_best_prio(this_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07002157 best_prio = rq_best_prio(busiest);
Peter Williams615052d2006-06-27 02:54:37 -07002158 /*
2159 * Enable handling of the case where there is more than one task
2160 * with the best priority. If the current running task is one
Ingo Molnar48f24c42006-07-03 00:25:40 -07002161 * of those with prio==best_prio we know it won't be moved
Peter Williams615052d2006-06-27 02:54:37 -07002162 * and therefore it's safe to override the skip (based on load) of
2163 * any task we find with that prio.
2164 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07002165 best_prio_seen = best_prio == busiest->curr->prio;
Nick Piggin81026792005-06-25 14:57:07 -07002166
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 /*
2168 * We first consider expired tasks. Those will likely not be
2169 * executed in the near future, and they are most likely to
2170 * be cache-cold, thus switching CPUs has the least effect
2171 * on them.
2172 */
2173 if (busiest->expired->nr_active) {
2174 array = busiest->expired;
2175 dst_array = this_rq->expired;
2176 } else {
2177 array = busiest->active;
2178 dst_array = this_rq->active;
2179 }
2180
2181new_array:
2182 /* Start searching at priority 0: */
2183 idx = 0;
2184skip_bitmap:
2185 if (!idx)
2186 idx = sched_find_first_bit(array->bitmap);
2187 else
2188 idx = find_next_bit(array->bitmap, MAX_PRIO, idx);
2189 if (idx >= MAX_PRIO) {
2190 if (array == busiest->expired && busiest->active->nr_active) {
2191 array = busiest->active;
2192 dst_array = this_rq->active;
2193 goto new_array;
2194 }
2195 goto out;
2196 }
2197
2198 head = array->queue + idx;
2199 curr = head->prev;
2200skip_queue:
Ingo Molnar36c8b582006-07-03 00:25:41 -07002201 tmp = list_entry(curr, struct task_struct, run_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
2203 curr = curr->prev;
2204
Peter Williams50ddd962006-06-27 02:54:36 -07002205 /*
2206 * To help distribute high priority tasks accross CPUs we don't
2207 * skip a task if it will be the highest priority task (i.e. smallest
2208 * prio value) on its new queue regardless of its load weight
2209 */
Peter Williams615052d2006-06-27 02:54:37 -07002210 skip_for_load = tmp->load_weight > rem_load_move;
2211 if (skip_for_load && idx < this_best_prio)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002212 skip_for_load = !best_prio_seen && idx == best_prio;
Peter Williams615052d2006-06-27 02:54:37 -07002213 if (skip_for_load ||
Peter Williams2dd73a42006-06-27 02:54:34 -07002214 !can_migrate_task(tmp, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07002215
2216 best_prio_seen |= idx == best_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 if (curr != head)
2218 goto skip_queue;
2219 idx++;
2220 goto skip_bitmap;
2221 }
2222
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 pull_task(busiest, array, tmp, this_rq, dst_array, this_cpu);
2224 pulled++;
Peter Williams2dd73a42006-06-27 02:54:34 -07002225 rem_load_move -= tmp->load_weight;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
Peter Williams2dd73a42006-06-27 02:54:34 -07002227 /*
2228 * We only want to steal up to the prescribed number of tasks
2229 * and the prescribed amount of weighted load.
2230 */
2231 if (pulled < max_nr_move && rem_load_move > 0) {
Peter Williams615052d2006-06-27 02:54:37 -07002232 if (idx < this_best_prio)
2233 this_best_prio = idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 if (curr != head)
2235 goto skip_queue;
2236 idx++;
2237 goto skip_bitmap;
2238 }
2239out:
2240 /*
2241 * Right now, this is the only place pull_task() is called,
2242 * so we can safely collect pull_task() stats here rather than
2243 * inside pull_task().
2244 */
2245 schedstat_add(sd, lb_gained[idle], pulled);
Nick Piggin81026792005-06-25 14:57:07 -07002246
2247 if (all_pinned)
2248 *all_pinned = pinned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 return pulled;
2250}
2251
2252/*
2253 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07002254 * domain. It calculates and returns the amount of weighted load which
2255 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 */
2257static struct sched_group *
2258find_busiest_group(struct sched_domain *sd, int this_cpu,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002259 unsigned long *imbalance, enum idle_type idle, int *sd_idle,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002260 cpumask_t *cpus, int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261{
2262 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
2263 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002264 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07002265 unsigned long busiest_load_per_task, busiest_nr_running;
2266 unsigned long this_load_per_task, this_nr_running;
Nick Piggin78979862005-06-25 14:57:13 -07002267 int load_idx;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002268#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2269 int power_savings_balance = 1;
2270 unsigned long leader_nr_running = 0, min_load_per_task = 0;
2271 unsigned long min_nr_running = ULONG_MAX;
2272 struct sched_group *group_min = NULL, *group_leader = NULL;
2273#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
2275 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002276 busiest_load_per_task = busiest_nr_running = 0;
2277 this_load_per_task = this_nr_running = 0;
Nick Piggin78979862005-06-25 14:57:13 -07002278 if (idle == NOT_IDLE)
2279 load_idx = sd->busy_idx;
2280 else if (idle == NEWLY_IDLE)
2281 load_idx = sd->newidle_idx;
2282 else
2283 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
2285 do {
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002286 unsigned long load, group_capacity;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 int local_group;
2288 int i;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002289 unsigned int balance_cpu = -1, first_idle_cpu = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002290 unsigned long sum_nr_running, sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
2292 local_group = cpu_isset(this_cpu, group->cpumask);
2293
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002294 if (local_group)
2295 balance_cpu = first_cpu(group->cpumask);
2296
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07002298 sum_weighted_load = sum_nr_running = avg_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299
2300 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002301 struct rq *rq;
2302
2303 if (!cpu_isset(i, *cpus))
2304 continue;
2305
2306 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07002307
Nick Piggin5969fe02005-09-10 00:26:19 -07002308 if (*sd_idle && !idle_cpu(i))
2309 *sd_idle = 0;
2310
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 /* Bias balancing toward cpus of our domain */
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002312 if (local_group) {
2313 if (idle_cpu(i) && !first_idle_cpu) {
2314 first_idle_cpu = 1;
2315 balance_cpu = i;
2316 }
2317
Nick Piggina2000572006-02-10 01:51:02 -08002318 load = target_load(i, load_idx);
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002319 } else
Nick Piggina2000572006-02-10 01:51:02 -08002320 load = source_load(i, load_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321
2322 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07002323 sum_nr_running += rq->nr_running;
2324 sum_weighted_load += rq->raw_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 }
2326
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002327 /*
2328 * First idle cpu or the first cpu(busiest) in this sched group
2329 * is eligible for doing load balancing at this and above
2330 * domains.
2331 */
2332 if (local_group && balance_cpu != this_cpu && balance) {
2333 *balance = 0;
2334 goto ret;
2335 }
2336
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 total_load += avg_load;
2338 total_pwr += group->cpu_power;
2339
2340 /* Adjust by relative CPU power of the group */
2341 avg_load = (avg_load * SCHED_LOAD_SCALE) / group->cpu_power;
2342
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002343 group_capacity = group->cpu_power / SCHED_LOAD_SCALE;
2344
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 if (local_group) {
2346 this_load = avg_load;
2347 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002348 this_nr_running = sum_nr_running;
2349 this_load_per_task = sum_weighted_load;
2350 } else if (avg_load > max_load &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002351 sum_nr_running > group_capacity) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 max_load = avg_load;
2353 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002354 busiest_nr_running = sum_nr_running;
2355 busiest_load_per_task = sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002357
2358#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2359 /*
2360 * Busy processors will not participate in power savings
2361 * balance.
2362 */
2363 if (idle == NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
2364 goto group_next;
2365
2366 /*
2367 * If the local group is idle or completely loaded
2368 * no need to do power savings balance at this domain
2369 */
2370 if (local_group && (this_nr_running >= group_capacity ||
2371 !this_nr_running))
2372 power_savings_balance = 0;
2373
2374 /*
2375 * If a group is already running at full capacity or idle,
2376 * don't include that group in power savings calculations
2377 */
2378 if (!power_savings_balance || sum_nr_running >= group_capacity
2379 || !sum_nr_running)
2380 goto group_next;
2381
2382 /*
2383 * Calculate the group which has the least non-idle load.
2384 * This is the group from where we need to pick up the load
2385 * for saving power
2386 */
2387 if ((sum_nr_running < min_nr_running) ||
2388 (sum_nr_running == min_nr_running &&
2389 first_cpu(group->cpumask) <
2390 first_cpu(group_min->cpumask))) {
2391 group_min = group;
2392 min_nr_running = sum_nr_running;
2393 min_load_per_task = sum_weighted_load /
2394 sum_nr_running;
2395 }
2396
2397 /*
2398 * Calculate the group which is almost near its
2399 * capacity but still has some space to pick up some load
2400 * from other group and save more power
2401 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07002402 if (sum_nr_running <= group_capacity - 1) {
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002403 if (sum_nr_running > leader_nr_running ||
2404 (sum_nr_running == leader_nr_running &&
2405 first_cpu(group->cpumask) >
2406 first_cpu(group_leader->cpumask))) {
2407 group_leader = group;
2408 leader_nr_running = sum_nr_running;
2409 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002410 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002411group_next:
2412#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 group = group->next;
2414 } while (group != sd->groups);
2415
Peter Williams2dd73a42006-06-27 02:54:34 -07002416 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 goto out_balanced;
2418
2419 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
2420
2421 if (this_load >= avg_load ||
2422 100*max_load <= sd->imbalance_pct*this_load)
2423 goto out_balanced;
2424
Peter Williams2dd73a42006-06-27 02:54:34 -07002425 busiest_load_per_task /= busiest_nr_running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 /*
2427 * We're trying to get all the cpus to the average_load, so we don't
2428 * want to push ourselves above the average load, nor do we wish to
2429 * reduce the max loaded cpu below the average load, as either of these
2430 * actions would just result in more rebalancing later, and ping-pong
2431 * tasks around. Thus we look for the minimum possible imbalance.
2432 * Negative imbalances (*we* are more loaded than anyone else) will
2433 * be counted as no imbalance for these purposes -- we can't fix that
2434 * by pulling tasks to us. Be careful of negative numbers as they'll
2435 * appear as very large values with unsigned longs.
2436 */
Peter Williams2dd73a42006-06-27 02:54:34 -07002437 if (max_load <= busiest_load_per_task)
2438 goto out_balanced;
2439
2440 /*
2441 * In the presence of smp nice balancing, certain scenarios can have
2442 * max load less than avg load(as we skip the groups at or below
2443 * its cpu_power, while calculating max_load..)
2444 */
2445 if (max_load < avg_load) {
2446 *imbalance = 0;
2447 goto small_imbalance;
2448 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002449
2450 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07002451 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002452
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 /* How much load to actually move to equalise the imbalance */
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002454 *imbalance = min(max_pull * busiest->cpu_power,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 (avg_load - this_load) * this->cpu_power)
2456 / SCHED_LOAD_SCALE;
2457
Peter Williams2dd73a42006-06-27 02:54:34 -07002458 /*
2459 * if *imbalance is less than the average load per runnable task
2460 * there is no gaurantee that any tasks will be moved so we'll have
2461 * a think about bumping its value to force at least one task to be
2462 * moved
2463 */
2464 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07002465 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07002466 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
Peter Williams2dd73a42006-06-27 02:54:34 -07002468small_imbalance:
2469 pwr_move = pwr_now = 0;
2470 imbn = 2;
2471 if (this_nr_running) {
2472 this_load_per_task /= this_nr_running;
2473 if (busiest_load_per_task > this_load_per_task)
2474 imbn = 1;
2475 } else
2476 this_load_per_task = SCHED_LOAD_SCALE;
2477
2478 if (max_load - this_load >= busiest_load_per_task * imbn) {
2479 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 return busiest;
2481 }
2482
2483 /*
2484 * OK, we don't have enough imbalance to justify moving tasks,
2485 * however we may be able to increase total CPU power used by
2486 * moving them.
2487 */
2488
Peter Williams2dd73a42006-06-27 02:54:34 -07002489 pwr_now += busiest->cpu_power *
2490 min(busiest_load_per_task, max_load);
2491 pwr_now += this->cpu_power *
2492 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 pwr_now /= SCHED_LOAD_SCALE;
2494
2495 /* Amount of load we'd subtract */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08002496 tmp = busiest_load_per_task * SCHED_LOAD_SCALE /
2497 busiest->cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 if (max_load > tmp)
Peter Williams2dd73a42006-06-27 02:54:34 -07002499 pwr_move += busiest->cpu_power *
2500 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501
2502 /* Amount of load we'd add */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08002503 if (max_load * busiest->cpu_power <
2504 busiest_load_per_task * SCHED_LOAD_SCALE)
2505 tmp = max_load * busiest->cpu_power / this->cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 else
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08002507 tmp = busiest_load_per_task * SCHED_LOAD_SCALE /
2508 this->cpu_power;
2509 pwr_move += this->cpu_power *
2510 min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 pwr_move /= SCHED_LOAD_SCALE;
2512
2513 /* Move if we gain throughput */
2514 if (pwr_move <= pwr_now)
2515 goto out_balanced;
2516
Peter Williams2dd73a42006-06-27 02:54:34 -07002517 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 }
2519
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 return busiest;
2521
2522out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002523#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2524 if (idle == NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
2525 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002527 if (this == group_leader && group_leader != group_min) {
2528 *imbalance = min_load_per_task;
2529 return group_min;
2530 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002531#endif
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002532ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 *imbalance = 0;
2534 return NULL;
2535}
2536
2537/*
2538 * find_busiest_queue - find the busiest runqueue among the cpus in group.
2539 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002540static struct rq *
Ingo Molnar48f24c42006-07-03 00:25:40 -07002541find_busiest_queue(struct sched_group *group, enum idle_type idle,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002542 unsigned long imbalance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002544 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07002545 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 int i;
2547
2548 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002549
2550 if (!cpu_isset(i, *cpus))
2551 continue;
2552
Ingo Molnar48f24c42006-07-03 00:25:40 -07002553 rq = cpu_rq(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554
Ingo Molnar48f24c42006-07-03 00:25:40 -07002555 if (rq->nr_running == 1 && rq->raw_weighted_load > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07002556 continue;
2557
Ingo Molnar48f24c42006-07-03 00:25:40 -07002558 if (rq->raw_weighted_load > max_load) {
2559 max_load = rq->raw_weighted_load;
2560 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 }
2562 }
2563
2564 return busiest;
2565}
2566
2567/*
Nick Piggin77391d72005-06-25 14:57:30 -07002568 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
2569 * so long as it is large enough.
2570 */
2571#define MAX_PINNED_INTERVAL 512
2572
Ingo Molnar48f24c42006-07-03 00:25:40 -07002573static inline unsigned long minus_1_or_zero(unsigned long n)
2574{
2575 return n > 0 ? n - 1 : 0;
2576}
2577
Nick Piggin77391d72005-06-25 14:57:30 -07002578/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 * Check this_cpu to ensure it is balanced within domain. Attempt to move
2580 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002582static int load_balance(int this_cpu, struct rq *this_rq,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002583 struct sched_domain *sd, enum idle_type idle,
2584 int *balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585{
Ingo Molnar48f24c42006-07-03 00:25:40 -07002586 int nr_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002589 struct rq *busiest;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002590 cpumask_t cpus = CPU_MASK_ALL;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002591 unsigned long flags;
Nick Piggin5969fe02005-09-10 00:26:19 -07002592
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002593 /*
2594 * When power savings policy is enabled for the parent domain, idle
2595 * sibling can pick up load irrespective of busy siblings. In this case,
2596 * let the state of idle sibling percolate up as IDLE, instead of
2597 * portraying it as NOT_IDLE.
2598 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002599 if (idle != NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002600 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002601 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 schedstat_inc(sd, lb_cnt[idle]);
2604
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002605redo:
2606 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002607 &cpus, balance);
2608
Chen, Kenneth W06066712006-12-10 02:20:35 -08002609 if (*balance == 0)
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002610 goto out_balanced;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002611
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 if (!group) {
2613 schedstat_inc(sd, lb_nobusyg[idle]);
2614 goto out_balanced;
2615 }
2616
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002617 busiest = find_busiest_queue(group, idle, imbalance, &cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 if (!busiest) {
2619 schedstat_inc(sd, lb_nobusyq[idle]);
2620 goto out_balanced;
2621 }
2622
Nick Piggindb935db2005-06-25 14:57:11 -07002623 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624
2625 schedstat_add(sd, lb_imbalance[idle], imbalance);
2626
2627 nr_moved = 0;
2628 if (busiest->nr_running > 1) {
2629 /*
2630 * Attempt to move tasks. If find_busiest_group has found
2631 * an imbalance but busiest->nr_running <= 1, the group is
2632 * still unbalanced. nr_moved simply stays zero, so it is
2633 * correctly treated as an imbalance.
2634 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002635 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07002636 double_rq_lock(this_rq, busiest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 nr_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07002638 minus_1_or_zero(busiest->nr_running),
2639 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07002640 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002641 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07002642
2643 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002644 if (unlikely(all_pinned)) {
2645 cpu_clear(cpu_of(busiest), cpus);
2646 if (!cpus_empty(cpus))
2647 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07002648 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 }
Nick Piggin81026792005-06-25 14:57:07 -07002651
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 if (!nr_moved) {
2653 schedstat_inc(sd, lb_failed[idle]);
2654 sd->nr_balance_failed++;
2655
2656 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002658 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07002659
2660 /* don't kick the migration_thread, if the curr
2661 * task on busiest cpu can't be moved to this_cpu
2662 */
2663 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002664 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07002665 all_pinned = 1;
2666 goto out_one_pinned;
2667 }
2668
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 if (!busiest->active_balance) {
2670 busiest->active_balance = 1;
2671 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07002672 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002674 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07002675 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 wake_up_process(busiest->migration_thread);
2677
2678 /*
2679 * We've kicked active balancing, reset the failure
2680 * counter.
2681 */
Nick Piggin39507452005-06-25 14:57:09 -07002682 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 }
Nick Piggin81026792005-06-25 14:57:07 -07002684 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 sd->nr_balance_failed = 0;
2686
Nick Piggin81026792005-06-25 14:57:07 -07002687 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 /* We were unbalanced, so reset the balancing interval */
2689 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07002690 } else {
2691 /*
2692 * If we've begun active balancing, start to back off. This
2693 * case may not be covered by the all_pinned logic if there
2694 * is only 1 task on the busy runqueue (because we don't call
2695 * move_tasks).
2696 */
2697 if (sd->balance_interval < sd->max_interval)
2698 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 }
2700
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002701 if (!nr_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002702 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002703 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 return nr_moved;
2705
2706out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 schedstat_inc(sd, lb_balanced[idle]);
2708
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002709 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07002710
2711out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07002713 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
2714 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 sd->balance_interval *= 2;
2716
Ingo Molnar48f24c42006-07-03 00:25:40 -07002717 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002718 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002719 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 return 0;
2721}
2722
2723/*
2724 * Check this_cpu to ensure it is balanced within domain. Attempt to move
2725 * tasks if there is an imbalance.
2726 *
2727 * Called from schedule when this_rq is about to become idle (NEWLY_IDLE).
2728 * this_rq is locked.
2729 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07002730static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07002731load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732{
2733 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002734 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 unsigned long imbalance;
2736 int nr_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07002737 int sd_idle = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002738 cpumask_t cpus = CPU_MASK_ALL;
Nick Piggin5969fe02005-09-10 00:26:19 -07002739
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002740 /*
2741 * When power savings policy is enabled for the parent domain, idle
2742 * sibling can pick up load irrespective of busy siblings. In this case,
2743 * let the state of idle sibling percolate up as IDLE, instead of
2744 * portraying it as NOT_IDLE.
2745 */
2746 if (sd->flags & SD_SHARE_CPUPOWER &&
2747 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002748 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749
2750 schedstat_inc(sd, lb_cnt[NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002751redo:
2752 group = find_busiest_group(sd, this_cpu, &imbalance, NEWLY_IDLE,
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002753 &sd_idle, &cpus, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 if (!group) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 schedstat_inc(sd, lb_nobusyg[NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002756 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 }
2758
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002759 busiest = find_busiest_queue(group, NEWLY_IDLE, imbalance,
2760 &cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07002761 if (!busiest) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 schedstat_inc(sd, lb_nobusyq[NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002763 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 }
2765
Nick Piggindb935db2005-06-25 14:57:11 -07002766 BUG_ON(busiest == this_rq);
2767
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 schedstat_add(sd, lb_imbalance[NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07002769
2770 nr_moved = 0;
2771 if (busiest->nr_running > 1) {
2772 /* Attempt to move tasks */
2773 double_lock_balance(this_rq, busiest);
2774 nr_moved = move_tasks(this_rq, this_cpu, busiest,
Peter Williams2dd73a42006-06-27 02:54:34 -07002775 minus_1_or_zero(busiest->nr_running),
Nick Piggin81026792005-06-25 14:57:07 -07002776 imbalance, sd, NEWLY_IDLE, NULL);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07002777 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002778
2779 if (!nr_moved) {
2780 cpu_clear(cpu_of(busiest), cpus);
2781 if (!cpus_empty(cpus))
2782 goto redo;
2783 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07002784 }
2785
Nick Piggin5969fe02005-09-10 00:26:19 -07002786 if (!nr_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 schedstat_inc(sd, lb_failed[NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002788 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
2789 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002790 return -1;
2791 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002792 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 return nr_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002795
2796out_balanced:
2797 schedstat_inc(sd, lb_balanced[NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07002798 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002799 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002800 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002801 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002802
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002803 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804}
2805
2806/*
2807 * idle_balance is called by schedule() if this_cpu is about to become
2808 * idle. Attempts to pull tasks from other CPUs.
2809 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002810static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811{
2812 struct sched_domain *sd;
Christoph Lameter1bd77f22006-12-10 02:20:27 -08002813 int pulled_task = 0;
2814 unsigned long next_balance = jiffies + 60 * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815
2816 for_each_domain(this_cpu, sd) {
2817 if (sd->flags & SD_BALANCE_NEWIDLE) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07002818 /* If we've pulled tasks over stop searching: */
Christoph Lameter1bd77f22006-12-10 02:20:27 -08002819 pulled_task = load_balance_newidle(this_cpu,
2820 this_rq, sd);
2821 if (time_after(next_balance,
2822 sd->last_balance + sd->balance_interval))
2823 next_balance = sd->last_balance
2824 + sd->balance_interval;
2825 if (pulled_task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 }
2828 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08002829 if (!pulled_task)
2830 /*
2831 * We are going idle. next_balance may be set based on
2832 * a busy processor. So reset next_balance.
2833 */
2834 this_rq->next_balance = next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835}
2836
2837/*
2838 * active_load_balance is run by migration threads. It pushes running tasks
2839 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
2840 * running on each physical CPU where possible, and avoids physical /
2841 * logical imbalances.
2842 *
2843 * Called with busiest_rq locked.
2844 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002845static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846{
Nick Piggin39507452005-06-25 14:57:09 -07002847 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002848 struct sched_domain *sd;
2849 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07002850
Ingo Molnar48f24c42006-07-03 00:25:40 -07002851 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07002852 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07002853 return;
2854
2855 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856
2857 /*
Nick Piggin39507452005-06-25 14:57:09 -07002858 * This condition is "impossible", if it occurs
2859 * we need to fix it. Originally reported by
2860 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 */
Nick Piggin39507452005-06-25 14:57:09 -07002862 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863
Nick Piggin39507452005-06-25 14:57:09 -07002864 /* move a task from busiest_rq to target_rq */
2865 double_lock_balance(busiest_rq, target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866
Nick Piggin39507452005-06-25 14:57:09 -07002867 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002868 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07002869 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07002870 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07002871 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
Ingo Molnar48f24c42006-07-03 00:25:40 -07002874 if (likely(sd)) {
2875 schedstat_inc(sd, alb_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876
Ingo Molnar48f24c42006-07-03 00:25:40 -07002877 if (move_tasks(target_rq, target_cpu, busiest_rq, 1,
2878 RTPRIO_TO_LOAD_WEIGHT(100), sd, SCHED_IDLE,
2879 NULL))
2880 schedstat_inc(sd, alb_pushed);
2881 else
2882 schedstat_inc(sd, alb_failed);
2883 }
Nick Piggin39507452005-06-25 14:57:09 -07002884 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885}
2886
Christoph Lameter7835b982006-12-10 02:20:22 -08002887static void update_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002888{
Christoph Lameter7835b982006-12-10 02:20:22 -08002889 unsigned long this_load;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002890 int i, scale;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
Peter Williams2dd73a42006-06-27 02:54:34 -07002892 this_load = this_rq->raw_weighted_load;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002893
2894 /* Update our load: */
2895 for (i = 0, scale = 1; i < 3; i++, scale <<= 1) {
2896 unsigned long old_load, new_load;
2897
Nick Piggin78979862005-06-25 14:57:13 -07002898 old_load = this_rq->cpu_load[i];
Ingo Molnar48f24c42006-07-03 00:25:40 -07002899 new_load = this_load;
Nick Piggin78979862005-06-25 14:57:13 -07002900 /*
2901 * Round up the averaging division if load is increasing. This
2902 * prevents us from getting stuck on 9 if the load is 10, for
2903 * example.
2904 */
2905 if (new_load > old_load)
2906 new_load += scale-1;
2907 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) / scale;
2908 }
Christoph Lameter7835b982006-12-10 02:20:22 -08002909}
2910
2911/*
Christoph Lameterc9819f42006-12-10 02:20:25 -08002912 * run_rebalance_domains is triggered when needed from the scheduler tick.
Christoph Lameter7835b982006-12-10 02:20:22 -08002913 *
2914 * It checks each scheduling domain to see if it is due to be balanced,
2915 * and initiates a balancing operation if so.
2916 *
2917 * Balancing parameters are set up in arch_init_sched_domains.
2918 */
Christoph Lameter08c183f2006-12-10 02:20:29 -08002919static DEFINE_SPINLOCK(balancing);
Christoph Lameter7835b982006-12-10 02:20:22 -08002920
Christoph Lameterc9819f42006-12-10 02:20:25 -08002921static void run_rebalance_domains(struct softirq_action *h)
Christoph Lameter7835b982006-12-10 02:20:22 -08002922{
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002923 int this_cpu = smp_processor_id(), balance = 1;
Christoph Lameterc9819f42006-12-10 02:20:25 -08002924 struct rq *this_rq = cpu_rq(this_cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08002925 unsigned long interval;
2926 struct sched_domain *sd;
Christoph Lametere418e1c2006-12-10 02:20:23 -08002927 /*
2928 * We are idle if there are no processes running. This
2929 * is valid even if we are the idle process (SMT).
2930 */
2931 enum idle_type idle = !this_rq->nr_running ?
2932 SCHED_IDLE : NOT_IDLE;
Christoph Lameterc9819f42006-12-10 02:20:25 -08002933 /* Earliest time when we have to call run_rebalance_domains again */
2934 unsigned long next_balance = jiffies + 60*HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
2936 for_each_domain(this_cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 if (!(sd->flags & SD_LOAD_BALANCE))
2938 continue;
2939
2940 interval = sd->balance_interval;
2941 if (idle != SCHED_IDLE)
2942 interval *= sd->busy_factor;
2943
2944 /* scale ms to jiffies */
2945 interval = msecs_to_jiffies(interval);
2946 if (unlikely(!interval))
2947 interval = 1;
2948
Christoph Lameter08c183f2006-12-10 02:20:29 -08002949 if (sd->flags & SD_SERIALIZE) {
2950 if (!spin_trylock(&balancing))
2951 goto out;
2952 }
2953
Christoph Lameterc9819f42006-12-10 02:20:25 -08002954 if (time_after_eq(jiffies, sd->last_balance + interval)) {
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002955 if (load_balance(this_cpu, this_rq, sd, idle, &balance)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07002956 /*
2957 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07002958 * longer idle, or one of our SMT siblings is
2959 * not idle.
2960 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 idle = NOT_IDLE;
2962 }
Christoph Lameter1bd77f22006-12-10 02:20:27 -08002963 sd->last_balance = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 }
Christoph Lameter08c183f2006-12-10 02:20:29 -08002965 if (sd->flags & SD_SERIALIZE)
2966 spin_unlock(&balancing);
2967out:
Christoph Lameterc9819f42006-12-10 02:20:25 -08002968 if (time_after(next_balance, sd->last_balance + interval))
2969 next_balance = sd->last_balance + interval;
Siddha, Suresh B783609c2006-12-10 02:20:33 -08002970
2971 /*
2972 * Stop the load balance at this level. There is another
2973 * CPU in our sched group which is doing load balancing more
2974 * actively.
2975 */
2976 if (!balance)
2977 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 }
Christoph Lameterc9819f42006-12-10 02:20:25 -08002979 this_rq->next_balance = next_balance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980}
2981#else
2982/*
2983 * on UP we do not need to balance between CPUs:
2984 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002985static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986{
2987}
2988#endif
2989
Christoph Lametere418e1c2006-12-10 02:20:23 -08002990static inline void wake_priority_sleeper(struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992#ifdef CONFIG_SCHED_SMT
Christoph Lameter571f6d22006-12-10 02:20:13 -08002993 if (!rq->nr_running)
Christoph Lametere418e1c2006-12-10 02:20:23 -08002994 return;
Christoph Lameter571f6d22006-12-10 02:20:13 -08002995
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 spin_lock(&rq->lock);
2997 /*
2998 * If an SMT sibling task has been put to sleep for priority
2999 * reasons reschedule the idle task to see if it can now run.
3000 */
Christoph Lametere418e1c2006-12-10 02:20:23 -08003001 if (rq->nr_running)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 resched_task(rq->idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003 spin_unlock(&rq->lock);
3004#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005}
3006
3007DEFINE_PER_CPU(struct kernel_stat, kstat);
3008
3009EXPORT_PER_CPU_SYMBOL(kstat);
3010
3011/*
3012 * This is called on clock ticks and on context switches.
3013 * Bank in p->sched_time the ns elapsed since the last tick or switch.
3014 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07003015static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07003016update_cpu_clock(struct task_struct *p, struct rq *rq, unsigned long long now)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017{
Mike Galbraithb18ec802006-12-10 02:20:31 -08003018 p->sched_time += now - p->last_ran;
3019 p->last_ran = rq->most_recent_timestamp = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020}
3021
3022/*
3023 * Return current->sched_time plus any more ns on the sched_clock
3024 * that have not yet been banked.
3025 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003026unsigned long long current_sched_time(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027{
3028 unsigned long long ns;
3029 unsigned long flags;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003030
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 local_irq_save(flags);
Mike Galbraithb18ec802006-12-10 02:20:31 -08003032 ns = p->sched_time + sched_clock() - p->last_ran;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 local_irq_restore(flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07003034
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 return ns;
3036}
3037
3038/*
Linus Torvaldsf1adad72006-05-21 18:54:09 -07003039 * We place interactive tasks back into the active array, if possible.
3040 *
3041 * To guarantee that this does not starve expired tasks we ignore the
3042 * interactivity of a task if the first expired task had to wait more
3043 * than a 'reasonable' amount of time. This deadline timeout is
3044 * load-dependent, as the frequency of array switched decreases with
3045 * increasing number of running tasks. We also ignore the interactivity
3046 * if a better static_prio task has expired:
3047 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07003048static inline int expired_starving(struct rq *rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07003049{
3050 if (rq->curr->static_prio > rq->best_expired_prio)
3051 return 1;
3052 if (!STARVATION_LIMIT || !rq->expired_timestamp)
3053 return 0;
3054 if (jiffies - rq->expired_timestamp > STARVATION_LIMIT * rq->nr_running)
3055 return 1;
3056 return 0;
3057}
Linus Torvaldsf1adad72006-05-21 18:54:09 -07003058
3059/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 * Account user cpu time to a process.
3061 * @p: the process that the cpu time gets accounted to
3062 * @hardirq_offset: the offset to subtract from hardirq_count()
3063 * @cputime: the cpu time spent in user space since the last update
3064 */
3065void account_user_time(struct task_struct *p, cputime_t cputime)
3066{
3067 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3068 cputime64_t tmp;
3069
3070 p->utime = cputime_add(p->utime, cputime);
3071
3072 /* Add user time to cpustat. */
3073 tmp = cputime_to_cputime64(cputime);
3074 if (TASK_NICE(p) > 0)
3075 cpustat->nice = cputime64_add(cpustat->nice, tmp);
3076 else
3077 cpustat->user = cputime64_add(cpustat->user, tmp);
3078}
3079
3080/*
3081 * Account system cpu time to a process.
3082 * @p: the process that the cpu time gets accounted to
3083 * @hardirq_offset: the offset to subtract from hardirq_count()
3084 * @cputime: the cpu time spent in kernel space since the last update
3085 */
3086void account_system_time(struct task_struct *p, int hardirq_offset,
3087 cputime_t cputime)
3088{
3089 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003090 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 cputime64_t tmp;
3092
3093 p->stime = cputime_add(p->stime, cputime);
3094
3095 /* Add system time to cpustat. */
3096 tmp = cputime_to_cputime64(cputime);
3097 if (hardirq_count() - hardirq_offset)
3098 cpustat->irq = cputime64_add(cpustat->irq, tmp);
3099 else if (softirq_count())
3100 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
3101 else if (p != rq->idle)
3102 cpustat->system = cputime64_add(cpustat->system, tmp);
3103 else if (atomic_read(&rq->nr_iowait) > 0)
3104 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3105 else
3106 cpustat->idle = cputime64_add(cpustat->idle, tmp);
3107 /* Account for system time used */
3108 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109}
3110
3111/*
3112 * Account for involuntary wait time.
3113 * @p: the process from which the cpu time has been stolen
3114 * @steal: the cpu time spent in involuntary wait
3115 */
3116void account_steal_time(struct task_struct *p, cputime_t steal)
3117{
3118 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3119 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07003120 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121
3122 if (p == rq->idle) {
3123 p->stime = cputime_add(p->stime, steal);
3124 if (atomic_read(&rq->nr_iowait) > 0)
3125 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3126 else
3127 cpustat->idle = cputime64_add(cpustat->idle, tmp);
3128 } else
3129 cpustat->steal = cputime64_add(cpustat->steal, tmp);
3130}
3131
Christoph Lameter7835b982006-12-10 02:20:22 -08003132static void task_running_tick(struct rq *rq, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 if (p->array != rq->active) {
Christoph Lameter7835b982006-12-10 02:20:22 -08003135 /* Task has expired but was not scheduled yet */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 set_tsk_need_resched(p);
Christoph Lameter7835b982006-12-10 02:20:22 -08003137 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 }
3139 spin_lock(&rq->lock);
3140 /*
3141 * The task was running during this tick - update the
3142 * time slice counter. Note: we do not update a thread's
3143 * priority until it either goes to sleep or uses up its
3144 * timeslice. This makes it possible for interactive tasks
3145 * to use up their timeslices at their highest priority levels.
3146 */
3147 if (rt_task(p)) {
3148 /*
3149 * RR tasks need a special form of timeslice management.
3150 * FIFO tasks have no timeslices.
3151 */
3152 if ((p->policy == SCHED_RR) && !--p->time_slice) {
3153 p->time_slice = task_timeslice(p);
3154 p->first_time_slice = 0;
3155 set_tsk_need_resched(p);
3156
3157 /* put it at the end of the queue: */
3158 requeue_task(p, rq->active);
3159 }
3160 goto out_unlock;
3161 }
3162 if (!--p->time_slice) {
3163 dequeue_task(p, rq->active);
3164 set_tsk_need_resched(p);
3165 p->prio = effective_prio(p);
3166 p->time_slice = task_timeslice(p);
3167 p->first_time_slice = 0;
3168
3169 if (!rq->expired_timestamp)
3170 rq->expired_timestamp = jiffies;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003171 if (!TASK_INTERACTIVE(p) || expired_starving(rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 enqueue_task(p, rq->expired);
3173 if (p->static_prio < rq->best_expired_prio)
3174 rq->best_expired_prio = p->static_prio;
3175 } else
3176 enqueue_task(p, rq->active);
3177 } else {
3178 /*
3179 * Prevent a too long timeslice allowing a task to monopolize
3180 * the CPU. We do this by splitting up the timeslice into
3181 * smaller pieces.
3182 *
3183 * Note: this does not mean the task's timeslices expire or
3184 * get lost in any way, they just might be preempted by
3185 * another task of equal priority. (one with higher
3186 * priority would have preempted this task already.) We
3187 * requeue this task to the end of the list on this priority
3188 * level, which is in essence a round-robin of tasks with
3189 * equal priority.
3190 *
3191 * This only applies to tasks in the interactive
3192 * delta range with at least TIMESLICE_GRANULARITY to requeue.
3193 */
3194 if (TASK_INTERACTIVE(p) && !((task_timeslice(p) -
3195 p->time_slice) % TIMESLICE_GRANULARITY(p)) &&
3196 (p->time_slice >= TIMESLICE_GRANULARITY(p)) &&
3197 (p->array == rq->active)) {
3198
3199 requeue_task(p, rq->active);
3200 set_tsk_need_resched(p);
3201 }
3202 }
3203out_unlock:
3204 spin_unlock(&rq->lock);
Christoph Lameter7835b982006-12-10 02:20:22 -08003205}
3206
3207/*
3208 * This function gets called by the timer code, with HZ frequency.
3209 * We call it with interrupts disabled.
3210 *
3211 * It also gets called by the fork code, when changing the parent's
3212 * timeslices.
3213 */
3214void scheduler_tick(void)
3215{
3216 unsigned long long now = sched_clock();
3217 struct task_struct *p = current;
3218 int cpu = smp_processor_id();
3219 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08003220
3221 update_cpu_clock(p, rq, now);
3222
Christoph Lametere418e1c2006-12-10 02:20:23 -08003223 if (p == rq->idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08003224 /* Task on the idle queue */
Christoph Lametere418e1c2006-12-10 02:20:23 -08003225 wake_priority_sleeper(rq);
3226 else
Christoph Lameter7835b982006-12-10 02:20:22 -08003227 task_running_tick(rq, p);
Christoph Lametere418e1c2006-12-10 02:20:23 -08003228#ifdef CONFIG_SMP
Christoph Lameter7835b982006-12-10 02:20:22 -08003229 update_load(rq);
Christoph Lameterc9819f42006-12-10 02:20:25 -08003230 if (time_after_eq(jiffies, rq->next_balance))
3231 raise_softirq(SCHED_SOFTIRQ);
Christoph Lametere418e1c2006-12-10 02:20:23 -08003232#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233}
3234
3235#ifdef CONFIG_SCHED_SMT
Ingo Molnar70b97a72006-07-03 00:25:42 -07003236static inline void wakeup_busy_runqueue(struct rq *rq)
Con Kolivasfc38ed72005-09-10 00:26:08 -07003237{
3238 /* If an SMT runqueue is sleeping due to priority reasons wake it up */
3239 if (rq->curr == rq->idle && rq->nr_running)
3240 resched_task(rq->idle);
3241}
3242
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003243/*
3244 * Called with interrupt disabled and this_rq's runqueue locked.
3245 */
3246static void wake_sleeping_dependent(int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247{
Nick Piggin41c7ce92005-06-25 14:57:24 -07003248 struct sched_domain *tmp, *sd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 int i;
3250
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003251 for_each_domain(this_cpu, tmp) {
3252 if (tmp->flags & SD_SHARE_CPUPOWER) {
Nick Piggin41c7ce92005-06-25 14:57:24 -07003253 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003254 break;
3255 }
3256 }
Nick Piggin41c7ce92005-06-25 14:57:24 -07003257
3258 if (!sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 return;
3260
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003261 for_each_cpu_mask(i, sd->span) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07003262 struct rq *smt_rq = cpu_rq(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003264 if (i == this_cpu)
3265 continue;
3266 if (unlikely(!spin_trylock(&smt_rq->lock)))
3267 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003269 wakeup_busy_runqueue(smt_rq);
3270 spin_unlock(&smt_rq->lock);
3271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272}
3273
Ingo Molnar67f9a612005-09-10 00:26:16 -07003274/*
3275 * number of 'lost' timeslices this task wont be able to fully
3276 * utilize, if another task runs on a sibling. This models the
3277 * slowdown effect of other tasks running on siblings:
3278 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003279static inline unsigned long
3280smt_slice(struct task_struct *p, struct sched_domain *sd)
Ingo Molnar67f9a612005-09-10 00:26:16 -07003281{
3282 return p->time_slice * (100 - sd->per_cpu_gain) / 100;
3283}
3284
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003285/*
3286 * To minimise lock contention and not have to drop this_rq's runlock we only
3287 * trylock the sibling runqueues and bypass those runqueues if we fail to
3288 * acquire their lock. As we only trylock the normal locking order does not
3289 * need to be obeyed.
3290 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003291static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07003292dependent_sleeper(int this_cpu, struct rq *this_rq, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293{
Nick Piggin41c7ce92005-06-25 14:57:24 -07003294 struct sched_domain *tmp, *sd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295 int ret = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003297 /* kernel/rt threads do not participate in dependent sleeping */
3298 if (!p->mm || rt_task(p))
3299 return 0;
3300
3301 for_each_domain(this_cpu, tmp) {
3302 if (tmp->flags & SD_SHARE_CPUPOWER) {
Nick Piggin41c7ce92005-06-25 14:57:24 -07003303 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003304 break;
3305 }
3306 }
Nick Piggin41c7ce92005-06-25 14:57:24 -07003307
3308 if (!sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309 return 0;
3310
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003311 for_each_cpu_mask(i, sd->span) {
Ingo Molnar36c8b582006-07-03 00:25:41 -07003312 struct task_struct *smt_curr;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003313 struct rq *smt_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003315 if (i == this_cpu)
3316 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003318 smt_rq = cpu_rq(i);
3319 if (unlikely(!spin_trylock(&smt_rq->lock)))
3320 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003322 smt_curr = smt_rq->curr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003324 if (!smt_curr->mm)
3325 goto unlock;
Con Kolivasfc38ed72005-09-10 00:26:08 -07003326
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 /*
3328 * If a user task with lower static priority than the
3329 * running task on the SMT sibling is trying to schedule,
3330 * delay it till there is proportionately less timeslice
3331 * left of the sibling task to prevent a lower priority
3332 * task from using an unfair proportion of the
3333 * physical cpu's resources. -ck
3334 */
Con Kolivasfc38ed72005-09-10 00:26:08 -07003335 if (rt_task(smt_curr)) {
3336 /*
3337 * With real time tasks we run non-rt tasks only
3338 * per_cpu_gain% of the time.
3339 */
3340 if ((jiffies % DEF_TIMESLICE) >
3341 (sd->per_cpu_gain * DEF_TIMESLICE / 100))
3342 ret = 1;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003343 } else {
Ingo Molnar67f9a612005-09-10 00:26:16 -07003344 if (smt_curr->static_prio < p->static_prio &&
3345 !TASK_PREEMPTS_CURR(p, smt_rq) &&
3346 smt_slice(smt_curr, sd) > task_timeslice(p))
Con Kolivasfc38ed72005-09-10 00:26:08 -07003347 ret = 1;
Con Kolivasfc38ed72005-09-10 00:26:08 -07003348 }
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003349unlock:
3350 spin_unlock(&smt_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 return ret;
3353}
3354#else
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003355static inline void wake_sleeping_dependent(int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356{
3357}
Ingo Molnar48f24c42006-07-03 00:25:40 -07003358static inline int
Ingo Molnar70b97a72006-07-03 00:25:42 -07003359dependent_sleeper(int this_cpu, struct rq *this_rq, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360{
3361 return 0;
3362}
3363#endif
3364
3365#if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
3366
3367void fastcall add_preempt_count(int val)
3368{
3369 /*
3370 * Underflow?
3371 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003372 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
3373 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 preempt_count() += val;
3375 /*
3376 * Spinlock count overflowing soon?
3377 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08003378 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >=
3379 PREEMPT_MASK - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380}
3381EXPORT_SYMBOL(add_preempt_count);
3382
3383void fastcall sub_preempt_count(int val)
3384{
3385 /*
3386 * Underflow?
3387 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003388 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
3389 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390 /*
3391 * Is the spinlock portion underflowing?
3392 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003393 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
3394 !(preempt_count() & PREEMPT_MASK)))
3395 return;
3396
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 preempt_count() -= val;
3398}
3399EXPORT_SYMBOL(sub_preempt_count);
3400
3401#endif
3402
Con Kolivas3dee3862006-03-31 02:31:23 -08003403static inline int interactive_sleep(enum sleep_type sleep_type)
3404{
3405 return (sleep_type == SLEEP_INTERACTIVE ||
3406 sleep_type == SLEEP_INTERRUPTED);
3407}
3408
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409/*
3410 * schedule() is the main scheduler function.
3411 */
3412asmlinkage void __sched schedule(void)
3413{
Ingo Molnar36c8b582006-07-03 00:25:41 -07003414 struct task_struct *prev, *next;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003415 struct prio_array *array;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 struct list_head *queue;
3417 unsigned long long now;
3418 unsigned long run_time;
Chen Shanga3464a12005-06-25 14:57:31 -07003419 int cpu, idx, new_prio;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003420 long *switch_count;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003421 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422
3423 /*
3424 * Test if we are atomic. Since do_exit() needs to call into
3425 * schedule() atomically, we ignore that path for now.
3426 * Otherwise, whine if we are scheduling when we should not be.
3427 */
Andreas Mohr77e4bfb2006-03-27 01:15:20 -08003428 if (unlikely(in_atomic() && !current->exit_state)) {
3429 printk(KERN_ERR "BUG: scheduling while atomic: "
3430 "%s/0x%08x/%d\n",
3431 current->comm, preempt_count(), current->pid);
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08003432 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08003433 if (irqs_disabled())
3434 print_irqtrace_events(current);
Andreas Mohr77e4bfb2006-03-27 01:15:20 -08003435 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436 }
3437 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
3438
3439need_resched:
3440 preempt_disable();
3441 prev = current;
3442 release_kernel_lock(prev);
3443need_resched_nonpreemptible:
3444 rq = this_rq();
3445
3446 /*
3447 * The idle thread is not allowed to schedule!
3448 * Remove this check after it has been exercised a bit.
3449 */
3450 if (unlikely(prev == rq->idle) && prev->state != TASK_RUNNING) {
3451 printk(KERN_ERR "bad: scheduling from the idle thread!\n");
3452 dump_stack();
3453 }
3454
3455 schedstat_inc(rq, sched_cnt);
3456 now = sched_clock();
Ingo Molnar238628e2005-04-18 10:58:36 -07003457 if (likely((long long)(now - prev->timestamp) < NS_MAX_SLEEP_AVG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458 run_time = now - prev->timestamp;
Ingo Molnar238628e2005-04-18 10:58:36 -07003459 if (unlikely((long long)(now - prev->timestamp) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 run_time = 0;
3461 } else
3462 run_time = NS_MAX_SLEEP_AVG;
3463
3464 /*
3465 * Tasks charged proportionately less run_time at high sleep_avg to
3466 * delay them losing their interactive status
3467 */
3468 run_time /= (CURRENT_BONUS(prev) ? : 1);
3469
3470 spin_lock_irq(&rq->lock);
3471
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472 switch_count = &prev->nivcsw;
3473 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
3474 switch_count = &prev->nvcsw;
3475 if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
3476 unlikely(signal_pending(prev))))
3477 prev->state = TASK_RUNNING;
3478 else {
3479 if (prev->state == TASK_UNINTERRUPTIBLE)
3480 rq->nr_uninterruptible++;
3481 deactivate_task(prev, rq);
3482 }
3483 }
3484
3485 cpu = smp_processor_id();
3486 if (unlikely(!rq->nr_running)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 idle_balance(cpu, rq);
3488 if (!rq->nr_running) {
3489 next = rq->idle;
3490 rq->expired_timestamp = 0;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003491 wake_sleeping_dependent(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492 goto switch_tasks;
3493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494 }
3495
3496 array = rq->active;
3497 if (unlikely(!array->nr_active)) {
3498 /*
3499 * Switch the active and expired arrays.
3500 */
3501 schedstat_inc(rq, sched_switch);
3502 rq->active = rq->expired;
3503 rq->expired = array;
3504 array = rq->active;
3505 rq->expired_timestamp = 0;
3506 rq->best_expired_prio = MAX_PRIO;
3507 }
3508
3509 idx = sched_find_first_bit(array->bitmap);
3510 queue = array->queue + idx;
Ingo Molnar36c8b582006-07-03 00:25:41 -07003511 next = list_entry(queue->next, struct task_struct, run_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512
Con Kolivas3dee3862006-03-31 02:31:23 -08003513 if (!rt_task(next) && interactive_sleep(next->sleep_type)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514 unsigned long long delta = now - next->timestamp;
Ingo Molnar238628e2005-04-18 10:58:36 -07003515 if (unlikely((long long)(now - next->timestamp) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516 delta = 0;
3517
Con Kolivas3dee3862006-03-31 02:31:23 -08003518 if (next->sleep_type == SLEEP_INTERACTIVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 delta = delta * (ON_RUNQUEUE_WEIGHT * 128 / 100) / 128;
3520
3521 array = next->array;
Chen Shanga3464a12005-06-25 14:57:31 -07003522 new_prio = recalc_task_prio(next, next->timestamp + delta);
3523
3524 if (unlikely(next->prio != new_prio)) {
3525 dequeue_task(next, array);
3526 next->prio = new_prio;
3527 enqueue_task(next, array);
Con Kolivas7c4bb1f2006-03-31 02:31:29 -08003528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 }
Con Kolivas3dee3862006-03-31 02:31:23 -08003530 next->sleep_type = SLEEP_NORMAL;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003531 if (dependent_sleeper(cpu, rq, next))
3532 next = rq->idle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533switch_tasks:
3534 if (next == rq->idle)
3535 schedstat_inc(rq, sched_goidle);
3536 prefetch(next);
Chen, Kenneth W383f2832005-09-09 13:02:02 -07003537 prefetch_stack(next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 clear_tsk_need_resched(prev);
3539 rcu_qsctr_inc(task_cpu(prev));
3540
3541 update_cpu_clock(prev, rq, now);
3542
3543 prev->sleep_avg -= run_time;
3544 if ((long)prev->sleep_avg <= 0)
3545 prev->sleep_avg = 0;
3546 prev->timestamp = prev->last_ran = now;
3547
3548 sched_info_switch(prev, next);
3549 if (likely(prev != next)) {
3550 next->timestamp = now;
3551 rq->nr_switches++;
3552 rq->curr = next;
3553 ++*switch_count;
3554
Nick Piggin4866cde2005-06-25 14:57:23 -07003555 prepare_task_switch(rq, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556 prev = context_switch(rq, prev, next);
3557 barrier();
Nick Piggin4866cde2005-06-25 14:57:23 -07003558 /*
3559 * this_rq must be evaluated again because prev may have moved
3560 * CPUs since it called schedule(), thus the 'rq' on its stack
3561 * frame will be invalid.
3562 */
3563 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 } else
3565 spin_unlock_irq(&rq->lock);
3566
3567 prev = current;
3568 if (unlikely(reacquire_kernel_lock(prev) < 0))
3569 goto need_resched_nonpreemptible;
3570 preempt_enable_no_resched();
3571 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3572 goto need_resched;
3573}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574EXPORT_SYMBOL(schedule);
3575
3576#ifdef CONFIG_PREEMPT
3577/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003578 * this is the entry point to schedule() from in-kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579 * off of preempt_enable. Kernel preemptions off return from interrupt
3580 * occur there and call schedule directly.
3581 */
3582asmlinkage void __sched preempt_schedule(void)
3583{
3584 struct thread_info *ti = current_thread_info();
3585#ifdef CONFIG_PREEMPT_BKL
3586 struct task_struct *task = current;
3587 int saved_lock_depth;
3588#endif
3589 /*
3590 * If there is a non-zero preempt_count or interrupts are disabled,
3591 * we do not want to preempt the current task. Just return..
3592 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07003593 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594 return;
3595
3596need_resched:
3597 add_preempt_count(PREEMPT_ACTIVE);
3598 /*
3599 * We keep the big kernel semaphore locked, but we
3600 * clear ->lock_depth so that schedule() doesnt
3601 * auto-release the semaphore:
3602 */
3603#ifdef CONFIG_PREEMPT_BKL
3604 saved_lock_depth = task->lock_depth;
3605 task->lock_depth = -1;
3606#endif
3607 schedule();
3608#ifdef CONFIG_PREEMPT_BKL
3609 task->lock_depth = saved_lock_depth;
3610#endif
3611 sub_preempt_count(PREEMPT_ACTIVE);
3612
3613 /* we could miss a preemption opportunity between schedule and now */
3614 barrier();
3615 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3616 goto need_resched;
3617}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618EXPORT_SYMBOL(preempt_schedule);
3619
3620/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003621 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622 * off of irq context.
3623 * Note, that this is called and return with irqs disabled. This will
3624 * protect us against recursive calling from irq.
3625 */
3626asmlinkage void __sched preempt_schedule_irq(void)
3627{
3628 struct thread_info *ti = current_thread_info();
3629#ifdef CONFIG_PREEMPT_BKL
3630 struct task_struct *task = current;
3631 int saved_lock_depth;
3632#endif
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003633 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634 BUG_ON(ti->preempt_count || !irqs_disabled());
3635
3636need_resched:
3637 add_preempt_count(PREEMPT_ACTIVE);
3638 /*
3639 * We keep the big kernel semaphore locked, but we
3640 * clear ->lock_depth so that schedule() doesnt
3641 * auto-release the semaphore:
3642 */
3643#ifdef CONFIG_PREEMPT_BKL
3644 saved_lock_depth = task->lock_depth;
3645 task->lock_depth = -1;
3646#endif
3647 local_irq_enable();
3648 schedule();
3649 local_irq_disable();
3650#ifdef CONFIG_PREEMPT_BKL
3651 task->lock_depth = saved_lock_depth;
3652#endif
3653 sub_preempt_count(PREEMPT_ACTIVE);
3654
3655 /* we could miss a preemption opportunity between schedule and now */
3656 barrier();
3657 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3658 goto need_resched;
3659}
3660
3661#endif /* CONFIG_PREEMPT */
3662
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003663int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
3664 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665{
Ingo Molnar48f24c42006-07-03 00:25:40 -07003666 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668EXPORT_SYMBOL(default_wake_function);
3669
3670/*
3671 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
3672 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
3673 * number) then we wake all the non-exclusive tasks and one exclusive task.
3674 *
3675 * There are circumstances in which we can try to wake a task which has already
3676 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
3677 * zero in this (rare) case, and we handle it by continuing to scan the queue.
3678 */
3679static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
3680 int nr_exclusive, int sync, void *key)
3681{
3682 struct list_head *tmp, *next;
3683
3684 list_for_each_safe(tmp, next, &q->task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07003685 wait_queue_t *curr = list_entry(tmp, wait_queue_t, task_list);
3686 unsigned flags = curr->flags;
3687
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003689 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690 break;
3691 }
3692}
3693
3694/**
3695 * __wake_up - wake up threads blocked on a waitqueue.
3696 * @q: the waitqueue
3697 * @mode: which threads
3698 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07003699 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700 */
3701void fastcall __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003702 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703{
3704 unsigned long flags;
3705
3706 spin_lock_irqsave(&q->lock, flags);
3707 __wake_up_common(q, mode, nr_exclusive, 0, key);
3708 spin_unlock_irqrestore(&q->lock, flags);
3709}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710EXPORT_SYMBOL(__wake_up);
3711
3712/*
3713 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
3714 */
3715void fastcall __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
3716{
3717 __wake_up_common(q, mode, 1, 0, NULL);
3718}
3719
3720/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07003721 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722 * @q: the waitqueue
3723 * @mode: which threads
3724 * @nr_exclusive: how many wake-one or wake-many threads to wake up
3725 *
3726 * The sync wakeup differs that the waker knows that it will schedule
3727 * away soon, so while the target thread will be woken up, it will not
3728 * be migrated to another CPU - ie. the two threads are 'synchronized'
3729 * with each other. This can prevent needless bouncing between CPUs.
3730 *
3731 * On UP it can prevent extra preemption.
3732 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003733void fastcall
3734__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735{
3736 unsigned long flags;
3737 int sync = 1;
3738
3739 if (unlikely(!q))
3740 return;
3741
3742 if (unlikely(!nr_exclusive))
3743 sync = 0;
3744
3745 spin_lock_irqsave(&q->lock, flags);
3746 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
3747 spin_unlock_irqrestore(&q->lock, flags);
3748}
3749EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
3750
3751void fastcall complete(struct completion *x)
3752{
3753 unsigned long flags;
3754
3755 spin_lock_irqsave(&x->wait.lock, flags);
3756 x->done++;
3757 __wake_up_common(&x->wait, TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE,
3758 1, 0, NULL);
3759 spin_unlock_irqrestore(&x->wait.lock, flags);
3760}
3761EXPORT_SYMBOL(complete);
3762
3763void fastcall complete_all(struct completion *x)
3764{
3765 unsigned long flags;
3766
3767 spin_lock_irqsave(&x->wait.lock, flags);
3768 x->done += UINT_MAX/2;
3769 __wake_up_common(&x->wait, TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE,
3770 0, 0, NULL);
3771 spin_unlock_irqrestore(&x->wait.lock, flags);
3772}
3773EXPORT_SYMBOL(complete_all);
3774
3775void fastcall __sched wait_for_completion(struct completion *x)
3776{
3777 might_sleep();
Ingo Molnar48f24c42006-07-03 00:25:40 -07003778
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779 spin_lock_irq(&x->wait.lock);
3780 if (!x->done) {
3781 DECLARE_WAITQUEUE(wait, current);
3782
3783 wait.flags |= WQ_FLAG_EXCLUSIVE;
3784 __add_wait_queue_tail(&x->wait, &wait);
3785 do {
3786 __set_current_state(TASK_UNINTERRUPTIBLE);
3787 spin_unlock_irq(&x->wait.lock);
3788 schedule();
3789 spin_lock_irq(&x->wait.lock);
3790 } while (!x->done);
3791 __remove_wait_queue(&x->wait, &wait);
3792 }
3793 x->done--;
3794 spin_unlock_irq(&x->wait.lock);
3795}
3796EXPORT_SYMBOL(wait_for_completion);
3797
3798unsigned long fastcall __sched
3799wait_for_completion_timeout(struct completion *x, unsigned long timeout)
3800{
3801 might_sleep();
3802
3803 spin_lock_irq(&x->wait.lock);
3804 if (!x->done) {
3805 DECLARE_WAITQUEUE(wait, current);
3806
3807 wait.flags |= WQ_FLAG_EXCLUSIVE;
3808 __add_wait_queue_tail(&x->wait, &wait);
3809 do {
3810 __set_current_state(TASK_UNINTERRUPTIBLE);
3811 spin_unlock_irq(&x->wait.lock);
3812 timeout = schedule_timeout(timeout);
3813 spin_lock_irq(&x->wait.lock);
3814 if (!timeout) {
3815 __remove_wait_queue(&x->wait, &wait);
3816 goto out;
3817 }
3818 } while (!x->done);
3819 __remove_wait_queue(&x->wait, &wait);
3820 }
3821 x->done--;
3822out:
3823 spin_unlock_irq(&x->wait.lock);
3824 return timeout;
3825}
3826EXPORT_SYMBOL(wait_for_completion_timeout);
3827
3828int fastcall __sched wait_for_completion_interruptible(struct completion *x)
3829{
3830 int ret = 0;
3831
3832 might_sleep();
3833
3834 spin_lock_irq(&x->wait.lock);
3835 if (!x->done) {
3836 DECLARE_WAITQUEUE(wait, current);
3837
3838 wait.flags |= WQ_FLAG_EXCLUSIVE;
3839 __add_wait_queue_tail(&x->wait, &wait);
3840 do {
3841 if (signal_pending(current)) {
3842 ret = -ERESTARTSYS;
3843 __remove_wait_queue(&x->wait, &wait);
3844 goto out;
3845 }
3846 __set_current_state(TASK_INTERRUPTIBLE);
3847 spin_unlock_irq(&x->wait.lock);
3848 schedule();
3849 spin_lock_irq(&x->wait.lock);
3850 } while (!x->done);
3851 __remove_wait_queue(&x->wait, &wait);
3852 }
3853 x->done--;
3854out:
3855 spin_unlock_irq(&x->wait.lock);
3856
3857 return ret;
3858}
3859EXPORT_SYMBOL(wait_for_completion_interruptible);
3860
3861unsigned long fastcall __sched
3862wait_for_completion_interruptible_timeout(struct completion *x,
3863 unsigned long timeout)
3864{
3865 might_sleep();
3866
3867 spin_lock_irq(&x->wait.lock);
3868 if (!x->done) {
3869 DECLARE_WAITQUEUE(wait, current);
3870
3871 wait.flags |= WQ_FLAG_EXCLUSIVE;
3872 __add_wait_queue_tail(&x->wait, &wait);
3873 do {
3874 if (signal_pending(current)) {
3875 timeout = -ERESTARTSYS;
3876 __remove_wait_queue(&x->wait, &wait);
3877 goto out;
3878 }
3879 __set_current_state(TASK_INTERRUPTIBLE);
3880 spin_unlock_irq(&x->wait.lock);
3881 timeout = schedule_timeout(timeout);
3882 spin_lock_irq(&x->wait.lock);
3883 if (!timeout) {
3884 __remove_wait_queue(&x->wait, &wait);
3885 goto out;
3886 }
3887 } while (!x->done);
3888 __remove_wait_queue(&x->wait, &wait);
3889 }
3890 x->done--;
3891out:
3892 spin_unlock_irq(&x->wait.lock);
3893 return timeout;
3894}
3895EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
3896
3897
3898#define SLEEP_ON_VAR \
3899 unsigned long flags; \
3900 wait_queue_t wait; \
3901 init_waitqueue_entry(&wait, current);
3902
3903#define SLEEP_ON_HEAD \
3904 spin_lock_irqsave(&q->lock,flags); \
3905 __add_wait_queue(q, &wait); \
3906 spin_unlock(&q->lock);
3907
3908#define SLEEP_ON_TAIL \
3909 spin_lock_irq(&q->lock); \
3910 __remove_wait_queue(q, &wait); \
3911 spin_unlock_irqrestore(&q->lock, flags);
3912
3913void fastcall __sched interruptible_sleep_on(wait_queue_head_t *q)
3914{
3915 SLEEP_ON_VAR
3916
3917 current->state = TASK_INTERRUPTIBLE;
3918
3919 SLEEP_ON_HEAD
3920 schedule();
3921 SLEEP_ON_TAIL
3922}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923EXPORT_SYMBOL(interruptible_sleep_on);
3924
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003925long fastcall __sched
3926interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927{
3928 SLEEP_ON_VAR
3929
3930 current->state = TASK_INTERRUPTIBLE;
3931
3932 SLEEP_ON_HEAD
3933 timeout = schedule_timeout(timeout);
3934 SLEEP_ON_TAIL
3935
3936 return timeout;
3937}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938EXPORT_SYMBOL(interruptible_sleep_on_timeout);
3939
3940void fastcall __sched sleep_on(wait_queue_head_t *q)
3941{
3942 SLEEP_ON_VAR
3943
3944 current->state = TASK_UNINTERRUPTIBLE;
3945
3946 SLEEP_ON_HEAD
3947 schedule();
3948 SLEEP_ON_TAIL
3949}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950EXPORT_SYMBOL(sleep_on);
3951
3952long fastcall __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
3953{
3954 SLEEP_ON_VAR
3955
3956 current->state = TASK_UNINTERRUPTIBLE;
3957
3958 SLEEP_ON_HEAD
3959 timeout = schedule_timeout(timeout);
3960 SLEEP_ON_TAIL
3961
3962 return timeout;
3963}
3964
3965EXPORT_SYMBOL(sleep_on_timeout);
3966
Ingo Molnarb29739f2006-06-27 02:54:51 -07003967#ifdef CONFIG_RT_MUTEXES
3968
3969/*
3970 * rt_mutex_setprio - set the current priority of a task
3971 * @p: task
3972 * @prio: prio value (kernel-internal form)
3973 *
3974 * This function changes the 'effective' priority of a task. It does
3975 * not touch ->normal_prio like __setscheduler().
3976 *
3977 * Used by the rt_mutex code to implement priority inheritance logic.
3978 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003979void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07003980{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003981 struct prio_array *array;
Ingo Molnarb29739f2006-06-27 02:54:51 -07003982 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003983 struct rq *rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -07003984 int oldprio;
3985
3986 BUG_ON(prio < 0 || prio > MAX_PRIO);
3987
3988 rq = task_rq_lock(p, &flags);
3989
3990 oldprio = p->prio;
3991 array = p->array;
3992 if (array)
3993 dequeue_task(p, array);
3994 p->prio = prio;
3995
3996 if (array) {
3997 /*
3998 * If changing to an RT priority then queue it
3999 * in the active array!
4000 */
4001 if (rt_task(p))
4002 array = rq->active;
4003 enqueue_task(p, array);
4004 /*
4005 * Reschedule if we are currently running on this runqueue and
4006 * our priority decreased, or if we are not currently running on
4007 * this runqueue and our priority is higher than the current's
4008 */
4009 if (task_running(rq, p)) {
4010 if (p->prio > oldprio)
4011 resched_task(rq->curr);
4012 } else if (TASK_PREEMPTS_CURR(p, rq))
4013 resched_task(rq->curr);
4014 }
4015 task_rq_unlock(rq, &flags);
4016}
4017
4018#endif
4019
Ingo Molnar36c8b582006-07-03 00:25:41 -07004020void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004022 struct prio_array *array;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004023 int old_prio, delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004025 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026
4027 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
4028 return;
4029 /*
4030 * We have to be careful, if called from sys_setpriority(),
4031 * the task might be in the middle of scheduling on another CPU.
4032 */
4033 rq = task_rq_lock(p, &flags);
4034 /*
4035 * The RT priorities are set via sched_setscheduler(), but we still
4036 * allow the 'normal' nice value to be set - but as expected
4037 * it wont have any effect on scheduling until the task is
Ingo Molnarb0a94992006-01-14 13:20:41 -08004038 * not SCHED_NORMAL/SCHED_BATCH:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07004040 if (has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 p->static_prio = NICE_TO_PRIO(nice);
4042 goto out_unlock;
4043 }
4044 array = p->array;
Peter Williams2dd73a42006-06-27 02:54:34 -07004045 if (array) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046 dequeue_task(p, array);
Peter Williams2dd73a42006-06-27 02:54:34 -07004047 dec_raw_weighted_load(rq, p);
4048 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07004051 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07004052 old_prio = p->prio;
4053 p->prio = effective_prio(p);
4054 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055
4056 if (array) {
4057 enqueue_task(p, array);
Peter Williams2dd73a42006-06-27 02:54:34 -07004058 inc_raw_weighted_load(rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059 /*
4060 * If the task increased its priority or is running and
4061 * lowered its priority, then reschedule its CPU:
4062 */
4063 if (delta < 0 || (delta > 0 && task_running(rq, p)))
4064 resched_task(rq->curr);
4065 }
4066out_unlock:
4067 task_rq_unlock(rq, &flags);
4068}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069EXPORT_SYMBOL(set_user_nice);
4070
Matt Mackalle43379f2005-05-01 08:59:00 -07004071/*
4072 * can_nice - check if a task can reduce its nice value
4073 * @p: task
4074 * @nice: nice value
4075 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004076int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07004077{
Matt Mackall024f4742005-08-18 11:24:19 -07004078 /* convert nice value [19,-20] to rlimit style value [1,40] */
4079 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004080
Matt Mackalle43379f2005-05-01 08:59:00 -07004081 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
4082 capable(CAP_SYS_NICE));
4083}
4084
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085#ifdef __ARCH_WANT_SYS_NICE
4086
4087/*
4088 * sys_nice - change the priority of the current process.
4089 * @increment: priority increment
4090 *
4091 * sys_setpriority is a more generic, but much slower function that
4092 * does similar things.
4093 */
4094asmlinkage long sys_nice(int increment)
4095{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004096 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097
4098 /*
4099 * Setpriority might change our priority at the same moment.
4100 * We don't have to worry. Conceptually one call occurs first
4101 * and we have a single winner.
4102 */
Matt Mackalle43379f2005-05-01 08:59:00 -07004103 if (increment < -40)
4104 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105 if (increment > 40)
4106 increment = 40;
4107
4108 nice = PRIO_TO_NICE(current->static_prio) + increment;
4109 if (nice < -20)
4110 nice = -20;
4111 if (nice > 19)
4112 nice = 19;
4113
Matt Mackalle43379f2005-05-01 08:59:00 -07004114 if (increment < 0 && !can_nice(current, nice))
4115 return -EPERM;
4116
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117 retval = security_task_setnice(current, nice);
4118 if (retval)
4119 return retval;
4120
4121 set_user_nice(current, nice);
4122 return 0;
4123}
4124
4125#endif
4126
4127/**
4128 * task_prio - return the priority value of a given task.
4129 * @p: the task in question.
4130 *
4131 * This is the priority value as seen by users in /proc.
4132 * RT tasks are offset by -200. Normal tasks are centered
4133 * around 0, value goes from -16 to +15.
4134 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004135int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136{
4137 return p->prio - MAX_RT_PRIO;
4138}
4139
4140/**
4141 * task_nice - return the nice value of a given task.
4142 * @p: the task in question.
4143 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004144int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145{
4146 return TASK_NICE(p);
4147}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148EXPORT_SYMBOL_GPL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149
4150/**
4151 * idle_cpu - is a given cpu idle currently?
4152 * @cpu: the processor in question.
4153 */
4154int idle_cpu(int cpu)
4155{
4156 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
4157}
4158
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159/**
4160 * idle_task - return the idle task for a given cpu.
4161 * @cpu: the processor in question.
4162 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004163struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164{
4165 return cpu_rq(cpu)->idle;
4166}
4167
4168/**
4169 * find_process_by_pid - find a process with a matching PID value.
4170 * @pid: the pid in question.
4171 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004172static inline struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173{
4174 return pid ? find_task_by_pid(pid) : current;
4175}
4176
4177/* Actually do priority change: must hold rq lock. */
4178static void __setscheduler(struct task_struct *p, int policy, int prio)
4179{
4180 BUG_ON(p->array);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004181
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182 p->policy = policy;
4183 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004184 p->normal_prio = normal_prio(p);
4185 /* we are holding p->pi_lock already */
4186 p->prio = rt_mutex_getprio(p);
4187 /*
4188 * SCHED_BATCH tasks are treated as perpetual CPU hogs:
4189 */
4190 if (policy == SCHED_BATCH)
4191 p->sleep_avg = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07004192 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193}
4194
4195/**
4196 * sched_setscheduler - change the scheduling policy and/or RT priority of
4197 * a thread.
4198 * @p: the task in question.
4199 * @policy: new policy.
4200 * @param: structure containing the new RT priority.
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004201 *
4202 * NOTE: the task may be already dead
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004204int sched_setscheduler(struct task_struct *p, int policy,
4205 struct sched_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004207 int retval, oldprio, oldpolicy = -1;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004208 struct prio_array *array;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004210 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211
Steven Rostedt66e53932006-06-27 02:54:44 -07004212 /* may grab non-irq protected spin_locks */
4213 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214recheck:
4215 /* double check policy once rq lock held */
4216 if (policy < 0)
4217 policy = oldpolicy = p->policy;
4218 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnarb0a94992006-01-14 13:20:41 -08004219 policy != SCHED_NORMAL && policy != SCHED_BATCH)
4220 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221 /*
4222 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnarb0a94992006-01-14 13:20:41 -08004223 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL and
4224 * SCHED_BATCH is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225 */
4226 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004227 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04004228 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229 return -EINVAL;
Oleg Nesterov57a6f51c2006-09-29 02:00:49 -07004230 if (is_rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231 return -EINVAL;
4232
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004233 /*
4234 * Allow unprivileged RT tasks to decrease priority:
4235 */
4236 if (!capable(CAP_SYS_NICE)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004237 if (is_rt_policy(policy)) {
4238 unsigned long rlim_rtprio;
4239 unsigned long flags;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004240
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004241 if (!lock_task_sighand(p, &flags))
4242 return -ESRCH;
4243 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
4244 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004245
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004246 /* can't set/change the rt policy */
4247 if (policy != p->policy && !rlim_rtprio)
4248 return -EPERM;
4249
4250 /* can't increase priority */
4251 if (param->sched_priority > p->rt_priority &&
4252 param->sched_priority > rlim_rtprio)
4253 return -EPERM;
4254 }
4255
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004256 /* can't change other user's priorities */
4257 if ((current->euid != p->euid) &&
4258 (current->euid != p->uid))
4259 return -EPERM;
4260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261
4262 retval = security_task_setscheduler(p, policy, param);
4263 if (retval)
4264 return retval;
4265 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07004266 * make sure no PI-waiters arrive (or leave) while we are
4267 * changing the priority of the task:
4268 */
4269 spin_lock_irqsave(&p->pi_lock, flags);
4270 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271 * To be able to change p->policy safely, the apropriate
4272 * runqueue lock must be held.
4273 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07004274 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275 /* recheck policy now with rq lock held */
4276 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
4277 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004278 __task_rq_unlock(rq);
4279 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280 goto recheck;
4281 }
4282 array = p->array;
4283 if (array)
4284 deactivate_task(p, rq);
4285 oldprio = p->prio;
4286 __setscheduler(p, policy, param->sched_priority);
4287 if (array) {
4288 __activate_task(p, rq);
4289 /*
4290 * Reschedule if we are currently running on this runqueue and
4291 * our priority decreased, or if we are not currently running on
4292 * this runqueue and our priority is higher than the current's
4293 */
4294 if (task_running(rq, p)) {
4295 if (p->prio > oldprio)
4296 resched_task(rq->curr);
4297 } else if (TASK_PREEMPTS_CURR(p, rq))
4298 resched_task(rq->curr);
4299 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07004300 __task_rq_unlock(rq);
4301 spin_unlock_irqrestore(&p->pi_lock, flags);
4302
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07004303 rt_mutex_adjust_pi(p);
4304
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305 return 0;
4306}
4307EXPORT_SYMBOL_GPL(sched_setscheduler);
4308
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004309static int
4310do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312 struct sched_param lparam;
4313 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004314 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315
4316 if (!param || pid < 0)
4317 return -EINVAL;
4318 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
4319 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004320
4321 rcu_read_lock();
4322 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004324 if (p != NULL)
4325 retval = sched_setscheduler(p, policy, &lparam);
4326 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07004327
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328 return retval;
4329}
4330
4331/**
4332 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
4333 * @pid: the pid in question.
4334 * @policy: new policy.
4335 * @param: structure containing the new RT priority.
4336 */
4337asmlinkage long sys_sched_setscheduler(pid_t pid, int policy,
4338 struct sched_param __user *param)
4339{
Jason Baronc21761f2006-01-18 17:43:03 -08004340 /* negative values for policy are not valid */
4341 if (policy < 0)
4342 return -EINVAL;
4343
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344 return do_sched_setscheduler(pid, policy, param);
4345}
4346
4347/**
4348 * sys_sched_setparam - set/change the RT priority of a thread
4349 * @pid: the pid in question.
4350 * @param: structure containing the new RT priority.
4351 */
4352asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
4353{
4354 return do_sched_setscheduler(pid, -1, param);
4355}
4356
4357/**
4358 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
4359 * @pid: the pid in question.
4360 */
4361asmlinkage long sys_sched_getscheduler(pid_t pid)
4362{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004363 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365
4366 if (pid < 0)
4367 goto out_nounlock;
4368
4369 retval = -ESRCH;
4370 read_lock(&tasklist_lock);
4371 p = find_process_by_pid(pid);
4372 if (p) {
4373 retval = security_task_getscheduler(p);
4374 if (!retval)
4375 retval = p->policy;
4376 }
4377 read_unlock(&tasklist_lock);
4378
4379out_nounlock:
4380 return retval;
4381}
4382
4383/**
4384 * sys_sched_getscheduler - get the RT priority of a thread
4385 * @pid: the pid in question.
4386 * @param: structure containing the RT priority.
4387 */
4388asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
4389{
4390 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004391 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393
4394 if (!param || pid < 0)
4395 goto out_nounlock;
4396
4397 read_lock(&tasklist_lock);
4398 p = find_process_by_pid(pid);
4399 retval = -ESRCH;
4400 if (!p)
4401 goto out_unlock;
4402
4403 retval = security_task_getscheduler(p);
4404 if (retval)
4405 goto out_unlock;
4406
4407 lp.sched_priority = p->rt_priority;
4408 read_unlock(&tasklist_lock);
4409
4410 /*
4411 * This one might sleep, we cannot do it with a spinlock held ...
4412 */
4413 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
4414
4415out_nounlock:
4416 return retval;
4417
4418out_unlock:
4419 read_unlock(&tasklist_lock);
4420 return retval;
4421}
4422
4423long sched_setaffinity(pid_t pid, cpumask_t new_mask)
4424{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425 cpumask_t cpus_allowed;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004426 struct task_struct *p;
4427 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428
4429 lock_cpu_hotplug();
4430 read_lock(&tasklist_lock);
4431
4432 p = find_process_by_pid(pid);
4433 if (!p) {
4434 read_unlock(&tasklist_lock);
4435 unlock_cpu_hotplug();
4436 return -ESRCH;
4437 }
4438
4439 /*
4440 * It is not safe to call set_cpus_allowed with the
4441 * tasklist_lock held. We will bump the task_struct's
4442 * usage count and then drop tasklist_lock.
4443 */
4444 get_task_struct(p);
4445 read_unlock(&tasklist_lock);
4446
4447 retval = -EPERM;
4448 if ((current->euid != p->euid) && (current->euid != p->uid) &&
4449 !capable(CAP_SYS_NICE))
4450 goto out_unlock;
4451
David Quigleye7834f82006-06-23 02:03:59 -07004452 retval = security_task_setscheduler(p, 0, NULL);
4453 if (retval)
4454 goto out_unlock;
4455
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456 cpus_allowed = cpuset_cpus_allowed(p);
4457 cpus_and(new_mask, new_mask, cpus_allowed);
4458 retval = set_cpus_allowed(p, new_mask);
4459
4460out_unlock:
4461 put_task_struct(p);
4462 unlock_cpu_hotplug();
4463 return retval;
4464}
4465
4466static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
4467 cpumask_t *new_mask)
4468{
4469 if (len < sizeof(cpumask_t)) {
4470 memset(new_mask, 0, sizeof(cpumask_t));
4471 } else if (len > sizeof(cpumask_t)) {
4472 len = sizeof(cpumask_t);
4473 }
4474 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
4475}
4476
4477/**
4478 * sys_sched_setaffinity - set the cpu affinity of a process
4479 * @pid: pid of the process
4480 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4481 * @user_mask_ptr: user-space pointer to the new cpu mask
4482 */
4483asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
4484 unsigned long __user *user_mask_ptr)
4485{
4486 cpumask_t new_mask;
4487 int retval;
4488
4489 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
4490 if (retval)
4491 return retval;
4492
4493 return sched_setaffinity(pid, new_mask);
4494}
4495
4496/*
4497 * Represents all cpu's present in the system
4498 * In systems capable of hotplug, this map could dynamically grow
4499 * as new cpu's are detected in the system via any platform specific
4500 * method, such as ACPI for e.g.
4501 */
4502
Andi Kleen4cef0c62006-01-11 22:44:57 +01004503cpumask_t cpu_present_map __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504EXPORT_SYMBOL(cpu_present_map);
4505
4506#ifndef CONFIG_SMP
Andi Kleen4cef0c62006-01-11 22:44:57 +01004507cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004508EXPORT_SYMBOL(cpu_online_map);
4509
Andi Kleen4cef0c62006-01-11 22:44:57 +01004510cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004511EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512#endif
4513
4514long sched_getaffinity(pid_t pid, cpumask_t *mask)
4515{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004516 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518
4519 lock_cpu_hotplug();
4520 read_lock(&tasklist_lock);
4521
4522 retval = -ESRCH;
4523 p = find_process_by_pid(pid);
4524 if (!p)
4525 goto out_unlock;
4526
David Quigleye7834f82006-06-23 02:03:59 -07004527 retval = security_task_getscheduler(p);
4528 if (retval)
4529 goto out_unlock;
4530
Jack Steiner2f7016d2006-02-01 03:05:18 -08004531 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532
4533out_unlock:
4534 read_unlock(&tasklist_lock);
4535 unlock_cpu_hotplug();
4536 if (retval)
4537 return retval;
4538
4539 return 0;
4540}
4541
4542/**
4543 * sys_sched_getaffinity - get the cpu affinity of a process
4544 * @pid: pid of the process
4545 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4546 * @user_mask_ptr: user-space pointer to hold the current cpu mask
4547 */
4548asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
4549 unsigned long __user *user_mask_ptr)
4550{
4551 int ret;
4552 cpumask_t mask;
4553
4554 if (len < sizeof(cpumask_t))
4555 return -EINVAL;
4556
4557 ret = sched_getaffinity(pid, &mask);
4558 if (ret < 0)
4559 return ret;
4560
4561 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
4562 return -EFAULT;
4563
4564 return sizeof(cpumask_t);
4565}
4566
4567/**
4568 * sys_sched_yield - yield the current processor to other threads.
4569 *
4570 * this function yields the current CPU by moving the calling thread
4571 * to the expired array. If there are no other threads running on this
4572 * CPU then this function will return.
4573 */
4574asmlinkage long sys_sched_yield(void)
4575{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004576 struct rq *rq = this_rq_lock();
4577 struct prio_array *array = current->array, *target = rq->expired;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004578
4579 schedstat_inc(rq, yld_cnt);
4580 /*
4581 * We implement yielding by moving the task into the expired
4582 * queue.
4583 *
4584 * (special rule: RT tasks will just roundrobin in the active
4585 * array.)
4586 */
4587 if (rt_task(current))
4588 target = rq->active;
4589
Renaud Lienhart5927ad72005-09-10 00:26:20 -07004590 if (array->nr_active == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591 schedstat_inc(rq, yld_act_empty);
4592 if (!rq->expired->nr_active)
4593 schedstat_inc(rq, yld_both_empty);
4594 } else if (!rq->expired->nr_active)
4595 schedstat_inc(rq, yld_exp_empty);
4596
4597 if (array != target) {
4598 dequeue_task(current, array);
4599 enqueue_task(current, target);
4600 } else
4601 /*
4602 * requeue_task is cheaper so perform that if possible.
4603 */
4604 requeue_task(current, array);
4605
4606 /*
4607 * Since we are going to call schedule() anyway, there's
4608 * no need to preempt or enable interrupts:
4609 */
4610 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004611 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612 _raw_spin_unlock(&rq->lock);
4613 preempt_enable_no_resched();
4614
4615 schedule();
4616
4617 return 0;
4618}
4619
Andrew Mortone7b38402006-06-30 01:56:00 -07004620static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07004622#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
4623 __might_sleep(__FILE__, __LINE__);
4624#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07004625 /*
4626 * The BKS might be reacquired before we have dropped
4627 * PREEMPT_ACTIVE, which could trigger a second
4628 * cond_resched() call.
4629 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630 do {
4631 add_preempt_count(PREEMPT_ACTIVE);
4632 schedule();
4633 sub_preempt_count(PREEMPT_ACTIVE);
4634 } while (need_resched());
4635}
4636
4637int __sched cond_resched(void)
4638{
Ingo Molnar94142322006-12-29 16:48:13 -08004639 if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) &&
4640 system_state == SYSTEM_RUNNING) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004641 __cond_resched();
4642 return 1;
4643 }
4644 return 0;
4645}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646EXPORT_SYMBOL(cond_resched);
4647
4648/*
4649 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
4650 * call schedule, and on return reacquire the lock.
4651 *
4652 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
4653 * operations here to prevent schedule() from being called twice (once via
4654 * spin_unlock(), once by hand).
4655 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004656int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657{
Jan Kara6df3cec2005-06-13 15:52:32 -07004658 int ret = 0;
4659
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660 if (need_lockbreak(lock)) {
4661 spin_unlock(lock);
4662 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07004663 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664 spin_lock(lock);
4665 }
Ingo Molnar94142322006-12-29 16:48:13 -08004666 if (need_resched() && system_state == SYSTEM_RUNNING) {
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004667 spin_release(&lock->dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668 _raw_spin_unlock(lock);
4669 preempt_enable_no_resched();
4670 __cond_resched();
Jan Kara6df3cec2005-06-13 15:52:32 -07004671 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673 }
Jan Kara6df3cec2005-06-13 15:52:32 -07004674 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676EXPORT_SYMBOL(cond_resched_lock);
4677
4678int __sched cond_resched_softirq(void)
4679{
4680 BUG_ON(!in_softirq());
4681
Ingo Molnar94142322006-12-29 16:48:13 -08004682 if (need_resched() && system_state == SYSTEM_RUNNING) {
Ingo Molnarde30a2b2006-07-03 00:24:42 -07004683 raw_local_irq_disable();
4684 _local_bh_enable();
4685 raw_local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686 __cond_resched();
4687 local_bh_disable();
4688 return 1;
4689 }
4690 return 0;
4691}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692EXPORT_SYMBOL(cond_resched_softirq);
4693
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694/**
4695 * yield - yield the current processor to other threads.
4696 *
4697 * this is a shortcut for kernel-space yielding - it marks the
4698 * thread runnable and calls sys_sched_yield().
4699 */
4700void __sched yield(void)
4701{
4702 set_current_state(TASK_RUNNING);
4703 sys_sched_yield();
4704}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705EXPORT_SYMBOL(yield);
4706
4707/*
4708 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
4709 * that process accounting knows that this is a task in IO wait state.
4710 *
4711 * But don't do that if it is a deliberate, throttling IO wait (this task
4712 * has set its backing_dev_info: the queue against which it should throttle)
4713 */
4714void __sched io_schedule(void)
4715{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004716 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004718 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719 atomic_inc(&rq->nr_iowait);
4720 schedule();
4721 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004722 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724EXPORT_SYMBOL(io_schedule);
4725
4726long __sched io_schedule_timeout(long timeout)
4727{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004728 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729 long ret;
4730
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004731 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732 atomic_inc(&rq->nr_iowait);
4733 ret = schedule_timeout(timeout);
4734 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004735 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736 return ret;
4737}
4738
4739/**
4740 * sys_sched_get_priority_max - return maximum RT priority.
4741 * @policy: scheduling class.
4742 *
4743 * this syscall returns the maximum rt_priority that can be used
4744 * by a given scheduling class.
4745 */
4746asmlinkage long sys_sched_get_priority_max(int policy)
4747{
4748 int ret = -EINVAL;
4749
4750 switch (policy) {
4751 case SCHED_FIFO:
4752 case SCHED_RR:
4753 ret = MAX_USER_RT_PRIO-1;
4754 break;
4755 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08004756 case SCHED_BATCH:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757 ret = 0;
4758 break;
4759 }
4760 return ret;
4761}
4762
4763/**
4764 * sys_sched_get_priority_min - return minimum RT priority.
4765 * @policy: scheduling class.
4766 *
4767 * this syscall returns the minimum rt_priority that can be used
4768 * by a given scheduling class.
4769 */
4770asmlinkage long sys_sched_get_priority_min(int policy)
4771{
4772 int ret = -EINVAL;
4773
4774 switch (policy) {
4775 case SCHED_FIFO:
4776 case SCHED_RR:
4777 ret = 1;
4778 break;
4779 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08004780 case SCHED_BATCH:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781 ret = 0;
4782 }
4783 return ret;
4784}
4785
4786/**
4787 * sys_sched_rr_get_interval - return the default timeslice of a process.
4788 * @pid: pid of the process.
4789 * @interval: userspace pointer to the timeslice value.
4790 *
4791 * this syscall writes the default timeslice value of a given process
4792 * into the user-space timespec buffer. A value of '0' means infinity.
4793 */
4794asmlinkage
4795long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
4796{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004797 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798 int retval = -EINVAL;
4799 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800
4801 if (pid < 0)
4802 goto out_nounlock;
4803
4804 retval = -ESRCH;
4805 read_lock(&tasklist_lock);
4806 p = find_process_by_pid(pid);
4807 if (!p)
4808 goto out_unlock;
4809
4810 retval = security_task_getscheduler(p);
4811 if (retval)
4812 goto out_unlock;
4813
Peter Williamsb78709c2006-06-26 16:58:00 +10004814 jiffies_to_timespec(p->policy == SCHED_FIFO ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815 0 : task_timeslice(p), &t);
4816 read_unlock(&tasklist_lock);
4817 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
4818out_nounlock:
4819 return retval;
4820out_unlock:
4821 read_unlock(&tasklist_lock);
4822 return retval;
4823}
4824
4825static inline struct task_struct *eldest_child(struct task_struct *p)
4826{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004827 if (list_empty(&p->children))
4828 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829 return list_entry(p->children.next,struct task_struct,sibling);
4830}
4831
4832static inline struct task_struct *older_sibling(struct task_struct *p)
4833{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004834 if (p->sibling.prev==&p->parent->children)
4835 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836 return list_entry(p->sibling.prev,struct task_struct,sibling);
4837}
4838
4839static inline struct task_struct *younger_sibling(struct task_struct *p)
4840{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004841 if (p->sibling.next==&p->parent->children)
4842 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843 return list_entry(p->sibling.next,struct task_struct,sibling);
4844}
4845
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004846static const char stat_nam[] = "RSDTtZX";
Ingo Molnar36c8b582006-07-03 00:25:41 -07004847
4848static void show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004850 struct task_struct *relative;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004851 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004852 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854 state = p->state ? __ffs(p->state) + 1 : 0;
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004855 printk("%-13.13s %c", p->comm,
4856 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857#if (BITS_PER_LONG == 32)
4858 if (state == TASK_RUNNING)
4859 printk(" running ");
4860 else
4861 printk(" %08lX ", thread_saved_pc(p));
4862#else
4863 if (state == TASK_RUNNING)
4864 printk(" running task ");
4865 else
4866 printk(" %016lx ", thread_saved_pc(p));
4867#endif
4868#ifdef CONFIG_DEBUG_STACK_USAGE
4869 {
Al Viro10ebffd2005-11-13 16:06:56 -08004870 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871 while (!*n)
4872 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08004873 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874 }
4875#endif
4876 printk("%5lu %5d %6d ", free, p->pid, p->parent->pid);
4877 if ((relative = eldest_child(p)))
4878 printk("%5d ", relative->pid);
4879 else
4880 printk(" ");
4881 if ((relative = younger_sibling(p)))
4882 printk("%7d", relative->pid);
4883 else
4884 printk(" ");
4885 if ((relative = older_sibling(p)))
4886 printk(" %5d", relative->pid);
4887 else
4888 printk(" ");
4889 if (!p->mm)
4890 printk(" (L-TLB)\n");
4891 else
4892 printk(" (NOTLB)\n");
4893
4894 if (state != TASK_RUNNING)
4895 show_stack(p, NULL);
4896}
4897
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004898void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004900 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901
4902#if (BITS_PER_LONG == 32)
4903 printk("\n"
Chris Caputo301827a2006-12-06 20:39:11 -08004904 " free sibling\n");
4905 printk(" task PC stack pid father child younger older\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906#else
4907 printk("\n"
Chris Caputo301827a2006-12-06 20:39:11 -08004908 " free sibling\n");
4909 printk(" task PC stack pid father child younger older\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004910#endif
4911 read_lock(&tasklist_lock);
4912 do_each_thread(g, p) {
4913 /*
4914 * reset the NMI-timeout, listing all files on a slow
4915 * console might take alot of time:
4916 */
4917 touch_nmi_watchdog();
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004918 if (p->state & state_filter)
4919 show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920 } while_each_thread(g, p);
4921
4922 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004923 /*
4924 * Only show locks if all tasks are dumped:
4925 */
4926 if (state_filter == -1)
4927 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928}
4929
Ingo Molnarf340c0d2005-06-28 16:40:42 +02004930/**
4931 * init_idle - set up an idle thread for a given CPU
4932 * @idle: task in question
4933 * @cpu: cpu the idle task belongs to
4934 *
4935 * NOTE: this function does not set the idle thread's NEED_RESCHED
4936 * flag, to make booting more robust.
4937 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07004938void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004940 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004941 unsigned long flags;
4942
Ingo Molnar81c29a82006-03-07 21:55:27 -08004943 idle->timestamp = sched_clock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944 idle->sleep_avg = 0;
4945 idle->array = NULL;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004946 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947 idle->state = TASK_RUNNING;
4948 idle->cpus_allowed = cpumask_of_cpu(cpu);
4949 set_task_cpu(idle, cpu);
4950
4951 spin_lock_irqsave(&rq->lock, flags);
4952 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07004953#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
4954 idle->oncpu = 1;
4955#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956 spin_unlock_irqrestore(&rq->lock, flags);
4957
4958 /* Set the preempt count _outside_ the spinlocks! */
4959#if defined(CONFIG_PREEMPT) && !defined(CONFIG_PREEMPT_BKL)
Al Viroa1261f542005-11-13 16:06:55 -08004960 task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961#else
Al Viroa1261f542005-11-13 16:06:55 -08004962 task_thread_info(idle)->preempt_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963#endif
4964}
4965
4966/*
4967 * In a system that switches off the HZ timer nohz_cpu_mask
4968 * indicates which cpus entered this state. This is used
4969 * in the rcu update to wait only for active cpus. For system
4970 * which do not switch off the HZ timer nohz_cpu_mask should
4971 * always be CPU_MASK_NONE.
4972 */
4973cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
4974
4975#ifdef CONFIG_SMP
4976/*
4977 * This is how migration works:
4978 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07004979 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980 * runqueue and wake up that CPU's migration thread.
4981 * 2) we down() the locked semaphore => thread blocks.
4982 * 3) migration thread wakes up (implicitly it forces the migrated
4983 * thread off the CPU)
4984 * 4) it gets the migration request and checks whether the migrated
4985 * task is still in the wrong runqueue.
4986 * 5) if it's in the wrong runqueue then the migration thread removes
4987 * it and puts it into the right queue.
4988 * 6) migration thread up()s the semaphore.
4989 * 7) we wake up and the migration is done.
4990 */
4991
4992/*
4993 * Change a given task's CPU affinity. Migrate the thread to a
4994 * proper CPU and schedule it away if the CPU it's executing on
4995 * is removed from the allowed bitmask.
4996 *
4997 * NOTE: the caller must have a valid reference to the task, the
4998 * task must not exit() & deallocate itself prematurely. The
4999 * call is not atomic; no spinlocks may be held.
5000 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005001int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005002{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005003 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005004 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005005 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005006 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005007
5008 rq = task_rq_lock(p, &flags);
5009 if (!cpus_intersects(new_mask, cpu_online_map)) {
5010 ret = -EINVAL;
5011 goto out;
5012 }
5013
5014 p->cpus_allowed = new_mask;
5015 /* Can the task run on the task's current CPU? If so, we're done */
5016 if (cpu_isset(task_cpu(p), new_mask))
5017 goto out;
5018
5019 if (migrate_task(p, any_online_cpu(new_mask), &req)) {
5020 /* Need help from migration thread: drop lock and wait. */
5021 task_rq_unlock(rq, &flags);
5022 wake_up_process(rq->migration_thread);
5023 wait_for_completion(&req.done);
5024 tlb_migrate_finish(p->mm);
5025 return 0;
5026 }
5027out:
5028 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005029
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030 return ret;
5031}
Linus Torvalds1da177e2005-04-16 15:20:36 -07005032EXPORT_SYMBOL_GPL(set_cpus_allowed);
5033
5034/*
5035 * Move (not current) task off this cpu, onto dest cpu. We're doing
5036 * this because either it can't run here any more (set_cpus_allowed()
5037 * away from this CPU, or CPU going down), or because we're
5038 * attempting to rebalance this task on exec (sched_exec).
5039 *
5040 * So we race with normal scheduler movements, but that's OK, as long
5041 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07005042 *
5043 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005044 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07005045static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005047 struct rq *rq_dest, *rq_src;
Kirill Korotaevefc30812006-06-27 02:54:32 -07005048 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005049
5050 if (unlikely(cpu_is_offline(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07005051 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005052
5053 rq_src = cpu_rq(src_cpu);
5054 rq_dest = cpu_rq(dest_cpu);
5055
5056 double_rq_lock(rq_src, rq_dest);
5057 /* Already moved. */
5058 if (task_cpu(p) != src_cpu)
5059 goto out;
5060 /* Affinity changed (again). */
5061 if (!cpu_isset(dest_cpu, p->cpus_allowed))
5062 goto out;
5063
5064 set_task_cpu(p, dest_cpu);
5065 if (p->array) {
5066 /*
5067 * Sync timestamp with rq_dest's before activating.
5068 * The same thing could be achieved by doing this step
5069 * afterwards, and pretending it was a local activate.
5070 * This way is cleaner and logically correct.
5071 */
Mike Galbraithb18ec802006-12-10 02:20:31 -08005072 p->timestamp = p->timestamp - rq_src->most_recent_timestamp
5073 + rq_dest->most_recent_timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005074 deactivate_task(p, rq_src);
Peter Williams0a565f72006-07-10 04:43:51 -07005075 __activate_task(p, rq_dest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005076 if (TASK_PREEMPTS_CURR(p, rq_dest))
5077 resched_task(rq_dest->curr);
5078 }
Kirill Korotaevefc30812006-06-27 02:54:32 -07005079 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005080out:
5081 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005082 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005083}
5084
5085/*
5086 * migration_thread - this is a highprio system thread that performs
5087 * thread migration by bumping thread off CPU then 'pushing' onto
5088 * another runqueue.
5089 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005090static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005091{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005092 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005093 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005094
5095 rq = cpu_rq(cpu);
5096 BUG_ON(rq->migration_thread != current);
5097
5098 set_current_state(TASK_INTERRUPTIBLE);
5099 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005100 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005102
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07005103 try_to_freeze();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104
5105 spin_lock_irq(&rq->lock);
5106
5107 if (cpu_is_offline(cpu)) {
5108 spin_unlock_irq(&rq->lock);
5109 goto wait_to_die;
5110 }
5111
5112 if (rq->active_balance) {
5113 active_load_balance(rq, cpu);
5114 rq->active_balance = 0;
5115 }
5116
5117 head = &rq->migration_queue;
5118
5119 if (list_empty(head)) {
5120 spin_unlock_irq(&rq->lock);
5121 schedule();
5122 set_current_state(TASK_INTERRUPTIBLE);
5123 continue;
5124 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07005125 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126 list_del_init(head->next);
5127
Nick Piggin674311d2005-06-25 14:57:27 -07005128 spin_unlock(&rq->lock);
5129 __migrate_task(req->task, cpu, req->dest_cpu);
5130 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131
5132 complete(&req->done);
5133 }
5134 __set_current_state(TASK_RUNNING);
5135 return 0;
5136
5137wait_to_die:
5138 /* Wait for kthread_stop */
5139 set_current_state(TASK_INTERRUPTIBLE);
5140 while (!kthread_should_stop()) {
5141 schedule();
5142 set_current_state(TASK_INTERRUPTIBLE);
5143 }
5144 __set_current_state(TASK_RUNNING);
5145 return 0;
5146}
5147
5148#ifdef CONFIG_HOTPLUG_CPU
Kirill Korotaev054b9102006-12-10 02:20:11 -08005149/*
5150 * Figure out where task on dead CPU should go, use force if neccessary.
5151 * NOTE: interrupts should be disabled by the caller
5152 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005153static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154{
Kirill Korotaevefc30812006-06-27 02:54:32 -07005155 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005157 struct rq *rq;
5158 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159
Kirill Korotaevefc30812006-06-27 02:54:32 -07005160restart:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005161 /* On same node? */
5162 mask = node_to_cpumask(cpu_to_node(dead_cpu));
Ingo Molnar48f24c42006-07-03 00:25:40 -07005163 cpus_and(mask, mask, p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005164 dest_cpu = any_online_cpu(mask);
5165
5166 /* On any allowed CPU? */
5167 if (dest_cpu == NR_CPUS)
Ingo Molnar48f24c42006-07-03 00:25:40 -07005168 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169
5170 /* No more Mr. Nice Guy. */
5171 if (dest_cpu == NR_CPUS) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07005172 rq = task_rq_lock(p, &flags);
5173 cpus_setall(p->cpus_allowed);
5174 dest_cpu = any_online_cpu(p->cpus_allowed);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005175 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005176
5177 /*
5178 * Don't tell them about moving exiting tasks or
5179 * kernel threads (both mm NULL), since they never
5180 * leave kernel.
5181 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005182 if (p->mm && printk_ratelimit())
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183 printk(KERN_INFO "process %d (%s) no "
5184 "longer affine to cpu%d\n",
Ingo Molnar48f24c42006-07-03 00:25:40 -07005185 p->pid, p->comm, dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07005187 if (!__migrate_task(p, dead_cpu, dest_cpu))
Kirill Korotaevefc30812006-06-27 02:54:32 -07005188 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005189}
5190
5191/*
5192 * While a dead CPU has no uninterruptible tasks queued at this point,
5193 * it might still have a nonzero ->nr_uninterruptible counter, because
5194 * for performance reasons the counter is not stricly tracking tasks to
5195 * their home CPUs. So we just add the counter to another CPU's counter,
5196 * to keep the global sum constant after CPU-down:
5197 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07005198static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005200 struct rq *rq_dest = cpu_rq(any_online_cpu(CPU_MASK_ALL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005201 unsigned long flags;
5202
5203 local_irq_save(flags);
5204 double_rq_lock(rq_src, rq_dest);
5205 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
5206 rq_src->nr_uninterruptible = 0;
5207 double_rq_unlock(rq_src, rq_dest);
5208 local_irq_restore(flags);
5209}
5210
5211/* Run through task list and migrate tasks from the dead cpu. */
5212static void migrate_live_tasks(int src_cpu)
5213{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005214 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215
5216 write_lock_irq(&tasklist_lock);
5217
Ingo Molnar48f24c42006-07-03 00:25:40 -07005218 do_each_thread(t, p) {
5219 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005220 continue;
5221
Ingo Molnar48f24c42006-07-03 00:25:40 -07005222 if (task_cpu(p) == src_cpu)
5223 move_task_off_dead_cpu(src_cpu, p);
5224 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225
5226 write_unlock_irq(&tasklist_lock);
5227}
5228
5229/* Schedules idle task to be the next runnable task on current CPU.
5230 * It does so by boosting its priority to highest possible and adding it to
Ingo Molnar48f24c42006-07-03 00:25:40 -07005231 * the _front_ of the runqueue. Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232 */
5233void sched_idle_next(void)
5234{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005235 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07005236 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005237 struct task_struct *p = rq->idle;
5238 unsigned long flags;
5239
5240 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005241 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242
Ingo Molnar48f24c42006-07-03 00:25:40 -07005243 /*
5244 * Strictly not necessary since rest of the CPUs are stopped by now
5245 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005246 */
5247 spin_lock_irqsave(&rq->lock, flags);
5248
5249 __setscheduler(p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005250
5251 /* Add idle task to the _front_ of its priority queue: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252 __activate_idle_task(p, rq);
5253
5254 spin_unlock_irqrestore(&rq->lock, flags);
5255}
5256
Ingo Molnar48f24c42006-07-03 00:25:40 -07005257/*
5258 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259 * offline.
5260 */
5261void idle_task_exit(void)
5262{
5263 struct mm_struct *mm = current->active_mm;
5264
5265 BUG_ON(cpu_online(smp_processor_id()));
5266
5267 if (mm != &init_mm)
5268 switch_mm(mm, &init_mm, current);
5269 mmdrop(mm);
5270}
5271
Kirill Korotaev054b9102006-12-10 02:20:11 -08005272/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005273static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005275 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276
5277 /* Must be exiting, otherwise would be on tasklist. */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005278 BUG_ON(p->exit_state != EXIT_ZOMBIE && p->exit_state != EXIT_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279
5280 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07005281 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282
Ingo Molnar48f24c42006-07-03 00:25:40 -07005283 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005284
5285 /*
5286 * Drop lock around migration; if someone else moves it,
5287 * that's OK. No task can be added to this CPU, so iteration is
5288 * fine.
Kirill Korotaev054b9102006-12-10 02:20:11 -08005289 * NOTE: interrupts should be left disabled --dev@
Linus Torvalds1da177e2005-04-16 15:20:36 -07005290 */
Kirill Korotaev054b9102006-12-10 02:20:11 -08005291 spin_unlock(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005292 move_task_off_dead_cpu(dead_cpu, p);
Kirill Korotaev054b9102006-12-10 02:20:11 -08005293 spin_lock(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294
Ingo Molnar48f24c42006-07-03 00:25:40 -07005295 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296}
5297
5298/* release_task() removes task from tasklist, so we won't find dead tasks. */
5299static void migrate_dead_tasks(unsigned int dead_cpu)
5300{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005301 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005302 unsigned int arr, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303
5304 for (arr = 0; arr < 2; arr++) {
5305 for (i = 0; i < MAX_PRIO; i++) {
5306 struct list_head *list = &rq->arrays[arr].queue[i];
Ingo Molnar48f24c42006-07-03 00:25:40 -07005307
Linus Torvalds1da177e2005-04-16 15:20:36 -07005308 while (!list_empty(list))
Ingo Molnar36c8b582006-07-03 00:25:41 -07005309 migrate_dead(dead_cpu, list_entry(list->next,
5310 struct task_struct, run_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005311 }
5312 }
5313}
5314#endif /* CONFIG_HOTPLUG_CPU */
5315
5316/*
5317 * migration_call - callback that gets triggered when a CPU is added.
5318 * Here we can start up the necessary migration thread for the new CPU.
5319 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005320static int __cpuinit
5321migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005323 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005324 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005326 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005327
5328 switch (action) {
5329 case CPU_UP_PREPARE:
5330 p = kthread_create(migration_thread, hcpu, "migration/%d",cpu);
5331 if (IS_ERR(p))
5332 return NOTIFY_BAD;
5333 p->flags |= PF_NOFREEZE;
5334 kthread_bind(p, cpu);
5335 /* Must be high prio: stop_machine expects to yield to it. */
5336 rq = task_rq_lock(p, &flags);
5337 __setscheduler(p, SCHED_FIFO, MAX_RT_PRIO-1);
5338 task_rq_unlock(rq, &flags);
5339 cpu_rq(cpu)->migration_thread = p;
5340 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005341
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342 case CPU_ONLINE:
5343 /* Strictly unneccessary, as first user will wake it. */
5344 wake_up_process(cpu_rq(cpu)->migration_thread);
5345 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005346
Linus Torvalds1da177e2005-04-16 15:20:36 -07005347#ifdef CONFIG_HOTPLUG_CPU
5348 case CPU_UP_CANCELED:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07005349 if (!cpu_rq(cpu)->migration_thread)
5350 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005351 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08005352 kthread_bind(cpu_rq(cpu)->migration_thread,
5353 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354 kthread_stop(cpu_rq(cpu)->migration_thread);
5355 cpu_rq(cpu)->migration_thread = NULL;
5356 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005357
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358 case CPU_DEAD:
5359 migrate_live_tasks(cpu);
5360 rq = cpu_rq(cpu);
5361 kthread_stop(rq->migration_thread);
5362 rq->migration_thread = NULL;
5363 /* Idle task back to normal (off runqueue, low prio) */
5364 rq = task_rq_lock(rq->idle, &flags);
5365 deactivate_task(rq->idle, rq);
5366 rq->idle->static_prio = MAX_PRIO;
5367 __setscheduler(rq->idle, SCHED_NORMAL, 0);
5368 migrate_dead_tasks(cpu);
5369 task_rq_unlock(rq, &flags);
5370 migrate_nr_uninterruptible(rq);
5371 BUG_ON(rq->nr_running != 0);
5372
5373 /* No need to migrate the tasks: it was best-effort if
5374 * they didn't do lock_cpu_hotplug(). Just wake up
5375 * the requestors. */
5376 spin_lock_irq(&rq->lock);
5377 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005378 struct migration_req *req;
5379
Linus Torvalds1da177e2005-04-16 15:20:36 -07005380 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07005381 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005382 list_del_init(&req->list);
5383 complete(&req->done);
5384 }
5385 spin_unlock_irq(&rq->lock);
5386 break;
5387#endif
5388 }
5389 return NOTIFY_OK;
5390}
5391
5392/* Register at highest priority so that task migration (migrate_all_tasks)
5393 * happens before everything else.
5394 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07005395static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396 .notifier_call = migration_call,
5397 .priority = 10
5398};
5399
5400int __init migration_init(void)
5401{
5402 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07005403 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005404
5405 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07005406 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
5407 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005408 migration_call(&migration_notifier, CPU_ONLINE, cpu);
5409 register_cpu_notifier(&migration_notifier);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005410
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411 return 0;
5412}
5413#endif
5414
5415#ifdef CONFIG_SMP
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07005416#undef SCHED_DOMAIN_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417#ifdef SCHED_DOMAIN_DEBUG
5418static void sched_domain_debug(struct sched_domain *sd, int cpu)
5419{
5420 int level = 0;
5421
Nick Piggin41c7ce92005-06-25 14:57:24 -07005422 if (!sd) {
5423 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
5424 return;
5425 }
5426
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
5428
5429 do {
5430 int i;
5431 char str[NR_CPUS];
5432 struct sched_group *group = sd->groups;
5433 cpumask_t groupmask;
5434
5435 cpumask_scnprintf(str, NR_CPUS, sd->span);
5436 cpus_clear(groupmask);
5437
5438 printk(KERN_DEBUG);
5439 for (i = 0; i < level + 1; i++)
5440 printk(" ");
5441 printk("domain %d: ", level);
5442
5443 if (!(sd->flags & SD_LOAD_BALANCE)) {
5444 printk("does not load-balance\n");
5445 if (sd->parent)
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005446 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain"
5447 " has parent");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005448 break;
5449 }
5450
5451 printk("span %s\n", str);
5452
5453 if (!cpu_isset(cpu, sd->span))
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005454 printk(KERN_ERR "ERROR: domain->span does not contain "
5455 "CPU%d\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456 if (!cpu_isset(cpu, group->cpumask))
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005457 printk(KERN_ERR "ERROR: domain->groups does not contain"
5458 " CPU%d\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005459
5460 printk(KERN_DEBUG);
5461 for (i = 0; i < level + 2; i++)
5462 printk(" ");
5463 printk("groups:");
5464 do {
5465 if (!group) {
5466 printk("\n");
5467 printk(KERN_ERR "ERROR: group is NULL\n");
5468 break;
5469 }
5470
5471 if (!group->cpu_power) {
5472 printk("\n");
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005473 printk(KERN_ERR "ERROR: domain->cpu_power not "
5474 "set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475 }
5476
5477 if (!cpus_weight(group->cpumask)) {
5478 printk("\n");
5479 printk(KERN_ERR "ERROR: empty group\n");
5480 }
5481
5482 if (cpus_intersects(groupmask, group->cpumask)) {
5483 printk("\n");
5484 printk(KERN_ERR "ERROR: repeated CPUs\n");
5485 }
5486
5487 cpus_or(groupmask, groupmask, group->cpumask);
5488
5489 cpumask_scnprintf(str, NR_CPUS, group->cpumask);
5490 printk(" %s", str);
5491
5492 group = group->next;
5493 } while (group != sd->groups);
5494 printk("\n");
5495
5496 if (!cpus_equal(sd->span, groupmask))
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005497 printk(KERN_ERR "ERROR: groups don't span "
5498 "domain->span\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005499
5500 level++;
5501 sd = sd->parent;
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005502 if (!sd)
5503 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005504
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005505 if (!cpus_subset(groupmask, sd->span))
5506 printk(KERN_ERR "ERROR: parent span is not a superset "
5507 "of domain->span\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005508
5509 } while (sd);
5510}
5511#else
Ingo Molnar48f24c42006-07-03 00:25:40 -07005512# define sched_domain_debug(sd, cpu) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513#endif
5514
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07005515static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005516{
5517 if (cpus_weight(sd->span) == 1)
5518 return 1;
5519
5520 /* Following flags need at least 2 groups */
5521 if (sd->flags & (SD_LOAD_BALANCE |
5522 SD_BALANCE_NEWIDLE |
5523 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005524 SD_BALANCE_EXEC |
5525 SD_SHARE_CPUPOWER |
5526 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005527 if (sd->groups != sd->groups->next)
5528 return 0;
5529 }
5530
5531 /* Following flags don't use groups */
5532 if (sd->flags & (SD_WAKE_IDLE |
5533 SD_WAKE_AFFINE |
5534 SD_WAKE_BALANCE))
5535 return 0;
5536
5537 return 1;
5538}
5539
Ingo Molnar48f24c42006-07-03 00:25:40 -07005540static int
5541sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005542{
5543 unsigned long cflags = sd->flags, pflags = parent->flags;
5544
5545 if (sd_degenerate(parent))
5546 return 1;
5547
5548 if (!cpus_equal(sd->span, parent->span))
5549 return 0;
5550
5551 /* Does parent contain flags not in child? */
5552 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
5553 if (cflags & SD_WAKE_AFFINE)
5554 pflags &= ~SD_WAKE_BALANCE;
5555 /* Flags needing groups don't count if only 1 group in parent */
5556 if (parent->groups == parent->groups->next) {
5557 pflags &= ~(SD_LOAD_BALANCE |
5558 SD_BALANCE_NEWIDLE |
5559 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005560 SD_BALANCE_EXEC |
5561 SD_SHARE_CPUPOWER |
5562 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07005563 }
5564 if (~cflags & pflags)
5565 return 0;
5566
5567 return 1;
5568}
5569
Linus Torvalds1da177e2005-04-16 15:20:36 -07005570/*
5571 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
5572 * hold the hotplug lock.
5573 */
John Hawkes9c1cfda2005-09-06 15:18:14 -07005574static void cpu_attach_domain(struct sched_domain *sd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005575{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005576 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07005577 struct sched_domain *tmp;
5578
5579 /* Remove the sched domains which do not contribute to scheduling. */
5580 for (tmp = sd; tmp; tmp = tmp->parent) {
5581 struct sched_domain *parent = tmp->parent;
5582 if (!parent)
5583 break;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005584 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005585 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005586 if (parent->parent)
5587 parent->parent->child = tmp;
5588 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07005589 }
5590
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005591 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005592 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005593 if (sd)
5594 sd->child = NULL;
5595 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005596
5597 sched_domain_debug(sd, cpu);
5598
Nick Piggin674311d2005-06-25 14:57:27 -07005599 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005600}
5601
5602/* cpus with isolated domains */
Tim Chen67af63a2006-12-22 01:07:50 -08005603static cpumask_t cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005604
5605/* Setup the mask of cpus configured for isolated domains */
5606static int __init isolated_cpu_setup(char *str)
5607{
5608 int ints[NR_CPUS], i;
5609
5610 str = get_options(str, ARRAY_SIZE(ints), ints);
5611 cpus_clear(cpu_isolated_map);
5612 for (i = 1; i <= ints[0]; i++)
5613 if (ints[i] < NR_CPUS)
5614 cpu_set(ints[i], cpu_isolated_map);
5615 return 1;
5616}
5617
5618__setup ("isolcpus=", isolated_cpu_setup);
5619
5620/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005621 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
5622 * to a function which identifies what group(along with sched group) a CPU
5623 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
5624 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005625 *
5626 * init_sched_build_groups will build a circular linked list of the groups
5627 * covered by the given span, and will set each group's ->cpumask correctly,
5628 * and ->cpu_power to 0.
5629 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07005630static void
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005631init_sched_build_groups(cpumask_t span, const cpumask_t *cpu_map,
5632 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
5633 struct sched_group **sg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005634{
5635 struct sched_group *first = NULL, *last = NULL;
5636 cpumask_t covered = CPU_MASK_NONE;
5637 int i;
5638
5639 for_each_cpu_mask(i, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005640 struct sched_group *sg;
5641 int group = group_fn(i, cpu_map, &sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005642 int j;
5643
5644 if (cpu_isset(i, covered))
5645 continue;
5646
5647 sg->cpumask = CPU_MASK_NONE;
5648 sg->cpu_power = 0;
5649
5650 for_each_cpu_mask(j, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005651 if (group_fn(j, cpu_map, NULL) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005652 continue;
5653
5654 cpu_set(j, covered);
5655 cpu_set(j, sg->cpumask);
5656 }
5657 if (!first)
5658 first = sg;
5659 if (last)
5660 last->next = sg;
5661 last = sg;
5662 }
5663 last->next = first;
5664}
5665
John Hawkes9c1cfda2005-09-06 15:18:14 -07005666#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07005667
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005668/*
5669 * Self-tuning task migration cost measurement between source and target CPUs.
5670 *
5671 * This is done by measuring the cost of manipulating buffers of varying
5672 * sizes. For a given buffer-size here are the steps that are taken:
5673 *
5674 * 1) the source CPU reads+dirties a shared buffer
5675 * 2) the target CPU reads+dirties the same shared buffer
5676 *
5677 * We measure how long they take, in the following 4 scenarios:
5678 *
5679 * - source: CPU1, target: CPU2 | cost1
5680 * - source: CPU2, target: CPU1 | cost2
5681 * - source: CPU1, target: CPU1 | cost3
5682 * - source: CPU2, target: CPU2 | cost4
5683 *
5684 * We then calculate the cost3+cost4-cost1-cost2 difference - this is
5685 * the cost of migration.
5686 *
5687 * We then start off from a small buffer-size and iterate up to larger
5688 * buffer sizes, in 5% steps - measuring each buffer-size separately, and
5689 * doing a maximum search for the cost. (The maximum cost for a migration
5690 * normally occurs when the working set size is around the effective cache
5691 * size.)
5692 */
5693#define SEARCH_SCOPE 2
5694#define MIN_CACHE_SIZE (64*1024U)
5695#define DEFAULT_CACHE_SIZE (5*1024*1024U)
Ingo Molnar70b4d632006-01-30 20:24:38 +01005696#define ITERATIONS 1
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005697#define SIZE_THRESH 130
5698#define COST_THRESH 130
5699
5700/*
5701 * The migration cost is a function of 'domain distance'. Domain
5702 * distance is the number of steps a CPU has to iterate down its
5703 * domain tree to share a domain with the other CPU. The farther
5704 * two CPUs are from each other, the larger the distance gets.
5705 *
5706 * Note that we use the distance only to cache measurement results,
5707 * the distance value is not used numerically otherwise. When two
5708 * CPUs have the same distance it is assumed that the migration
5709 * cost is the same. (this is a simplification but quite practical)
5710 */
5711#define MAX_DOMAIN_DISTANCE 32
5712
5713static unsigned long long migration_cost[MAX_DOMAIN_DISTANCE] =
Ingo Molnar4bbf39c2006-02-17 13:52:44 -08005714 { [ 0 ... MAX_DOMAIN_DISTANCE-1 ] =
5715/*
5716 * Architectures may override the migration cost and thus avoid
5717 * boot-time calibration. Unit is nanoseconds. Mostly useful for
5718 * virtualized hardware:
5719 */
5720#ifdef CONFIG_DEFAULT_MIGRATION_COST
5721 CONFIG_DEFAULT_MIGRATION_COST
5722#else
5723 -1LL
5724#endif
5725};
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005726
5727/*
5728 * Allow override of migration cost - in units of microseconds.
5729 * E.g. migration_cost=1000,2000,3000 will set up a level-1 cost
5730 * of 1 msec, level-2 cost of 2 msecs and level3 cost of 3 msecs:
5731 */
5732static int __init migration_cost_setup(char *str)
5733{
5734 int ints[MAX_DOMAIN_DISTANCE+1], i;
5735
5736 str = get_options(str, ARRAY_SIZE(ints), ints);
5737
5738 printk("#ints: %d\n", ints[0]);
5739 for (i = 1; i <= ints[0]; i++) {
5740 migration_cost[i-1] = (unsigned long long)ints[i]*1000;
5741 printk("migration_cost[%d]: %Ld\n", i-1, migration_cost[i-1]);
5742 }
5743 return 1;
5744}
5745
5746__setup ("migration_cost=", migration_cost_setup);
5747
5748/*
5749 * Global multiplier (divisor) for migration-cutoff values,
5750 * in percentiles. E.g. use a value of 150 to get 1.5 times
5751 * longer cache-hot cutoff times.
5752 *
5753 * (We scale it from 100 to 128 to long long handling easier.)
5754 */
5755
5756#define MIGRATION_FACTOR_SCALE 128
5757
5758static unsigned int migration_factor = MIGRATION_FACTOR_SCALE;
5759
5760static int __init setup_migration_factor(char *str)
5761{
5762 get_option(&str, &migration_factor);
5763 migration_factor = migration_factor * MIGRATION_FACTOR_SCALE / 100;
5764 return 1;
5765}
5766
5767__setup("migration_factor=", setup_migration_factor);
5768
5769/*
5770 * Estimated distance of two CPUs, measured via the number of domains
5771 * we have to pass for the two CPUs to be in the same span:
5772 */
5773static unsigned long domain_distance(int cpu1, int cpu2)
5774{
5775 unsigned long distance = 0;
5776 struct sched_domain *sd;
5777
5778 for_each_domain(cpu1, sd) {
5779 WARN_ON(!cpu_isset(cpu1, sd->span));
5780 if (cpu_isset(cpu2, sd->span))
5781 return distance;
5782 distance++;
5783 }
5784 if (distance >= MAX_DOMAIN_DISTANCE) {
5785 WARN_ON(1);
5786 distance = MAX_DOMAIN_DISTANCE-1;
5787 }
5788
5789 return distance;
5790}
5791
5792static unsigned int migration_debug;
5793
5794static int __init setup_migration_debug(char *str)
5795{
5796 get_option(&str, &migration_debug);
5797 return 1;
5798}
5799
5800__setup("migration_debug=", setup_migration_debug);
5801
5802/*
5803 * Maximum cache-size that the scheduler should try to measure.
5804 * Architectures with larger caches should tune this up during
5805 * bootup. Gets used in the domain-setup code (i.e. during SMP
5806 * bootup).
5807 */
5808unsigned int max_cache_size;
5809
5810static int __init setup_max_cache_size(char *str)
5811{
5812 get_option(&str, &max_cache_size);
5813 return 1;
5814}
5815
5816__setup("max_cache_size=", setup_max_cache_size);
5817
5818/*
5819 * Dirty a big buffer in a hard-to-predict (for the L2 cache) way. This
5820 * is the operation that is timed, so we try to generate unpredictable
5821 * cachemisses that still end up filling the L2 cache:
5822 */
5823static void touch_cache(void *__cache, unsigned long __size)
5824{
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005825 unsigned long size = __size / sizeof(long);
5826 unsigned long chunk1 = size / 3;
5827 unsigned long chunk2 = 2 * size / 3;
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005828 unsigned long *cache = __cache;
5829 int i;
5830
5831 for (i = 0; i < size/6; i += 8) {
5832 switch (i % 6) {
5833 case 0: cache[i]++;
5834 case 1: cache[size-1-i]++;
5835 case 2: cache[chunk1-i]++;
5836 case 3: cache[chunk1+i]++;
5837 case 4: cache[chunk2-i]++;
5838 case 5: cache[chunk2+i]++;
5839 }
5840 }
5841}
5842
5843/*
5844 * Measure the cache-cost of one task migration. Returns in units of nsec.
5845 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005846static unsigned long long
5847measure_one(void *cache, unsigned long size, int source, int target)
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005848{
5849 cpumask_t mask, saved_mask;
5850 unsigned long long t0, t1, t2, t3, cost;
5851
5852 saved_mask = current->cpus_allowed;
5853
5854 /*
5855 * Flush source caches to RAM and invalidate them:
5856 */
5857 sched_cacheflush();
5858
5859 /*
5860 * Migrate to the source CPU:
5861 */
5862 mask = cpumask_of_cpu(source);
5863 set_cpus_allowed(current, mask);
5864 WARN_ON(smp_processor_id() != source);
5865
5866 /*
5867 * Dirty the working set:
5868 */
5869 t0 = sched_clock();
5870 touch_cache(cache, size);
5871 t1 = sched_clock();
5872
5873 /*
5874 * Migrate to the target CPU, dirty the L2 cache and access
5875 * the shared buffer. (which represents the working set
5876 * of a migrated task.)
5877 */
5878 mask = cpumask_of_cpu(target);
5879 set_cpus_allowed(current, mask);
5880 WARN_ON(smp_processor_id() != target);
5881
5882 t2 = sched_clock();
5883 touch_cache(cache, size);
5884 t3 = sched_clock();
5885
5886 cost = t1-t0 + t3-t2;
5887
5888 if (migration_debug >= 2)
5889 printk("[%d->%d]: %8Ld %8Ld %8Ld => %10Ld.\n",
5890 source, target, t1-t0, t1-t0, t3-t2, cost);
5891 /*
5892 * Flush target caches to RAM and invalidate them:
5893 */
5894 sched_cacheflush();
5895
5896 set_cpus_allowed(current, saved_mask);
5897
5898 return cost;
5899}
5900
5901/*
5902 * Measure a series of task migrations and return the average
5903 * result. Since this code runs early during bootup the system
5904 * is 'undisturbed' and the average latency makes sense.
5905 *
5906 * The algorithm in essence auto-detects the relevant cache-size,
5907 * so it will properly detect different cachesizes for different
5908 * cache-hierarchies, depending on how the CPUs are connected.
5909 *
5910 * Architectures can prime the upper limit of the search range via
5911 * max_cache_size, otherwise the search range defaults to 20MB...64K.
5912 */
5913static unsigned long long
5914measure_cost(int cpu1, int cpu2, void *cache, unsigned int size)
5915{
5916 unsigned long long cost1, cost2;
5917 int i;
5918
5919 /*
5920 * Measure the migration cost of 'size' bytes, over an
5921 * average of 10 runs:
5922 *
5923 * (We perturb the cache size by a small (0..4k)
5924 * value to compensate size/alignment related artifacts.
5925 * We also subtract the cost of the operation done on
5926 * the same CPU.)
5927 */
5928 cost1 = 0;
5929
5930 /*
5931 * dry run, to make sure we start off cache-cold on cpu1,
5932 * and to get any vmalloc pagefaults in advance:
5933 */
5934 measure_one(cache, size, cpu1, cpu2);
5935 for (i = 0; i < ITERATIONS; i++)
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005936 cost1 += measure_one(cache, size - i * 1024, cpu1, cpu2);
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005937
5938 measure_one(cache, size, cpu2, cpu1);
5939 for (i = 0; i < ITERATIONS; i++)
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005940 cost1 += measure_one(cache, size - i * 1024, cpu2, cpu1);
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005941
5942 /*
5943 * (We measure the non-migrating [cached] cost on both
5944 * cpu1 and cpu2, to handle CPUs with different speeds)
5945 */
5946 cost2 = 0;
5947
5948 measure_one(cache, size, cpu1, cpu1);
5949 for (i = 0; i < ITERATIONS; i++)
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005950 cost2 += measure_one(cache, size - i * 1024, cpu1, cpu1);
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005951
5952 measure_one(cache, size, cpu2, cpu2);
5953 for (i = 0; i < ITERATIONS; i++)
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005954 cost2 += measure_one(cache, size - i * 1024, cpu2, cpu2);
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005955
5956 /*
5957 * Get the per-iteration migration cost:
5958 */
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005959 do_div(cost1, 2 * ITERATIONS);
5960 do_div(cost2, 2 * ITERATIONS);
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005961
5962 return cost1 - cost2;
5963}
5964
5965static unsigned long long measure_migration_cost(int cpu1, int cpu2)
5966{
5967 unsigned long long max_cost = 0, fluct = 0, avg_fluct = 0;
5968 unsigned int max_size, size, size_found = 0;
5969 long long cost = 0, prev_cost;
5970 void *cache;
5971
5972 /*
5973 * Search from max_cache_size*5 down to 64K - the real relevant
5974 * cachesize has to lie somewhere inbetween.
5975 */
5976 if (max_cache_size) {
5977 max_size = max(max_cache_size * SEARCH_SCOPE, MIN_CACHE_SIZE);
5978 size = max(max_cache_size / SEARCH_SCOPE, MIN_CACHE_SIZE);
5979 } else {
5980 /*
5981 * Since we have no estimation about the relevant
5982 * search range
5983 */
5984 max_size = DEFAULT_CACHE_SIZE * SEARCH_SCOPE;
5985 size = MIN_CACHE_SIZE;
5986 }
5987
5988 if (!cpu_online(cpu1) || !cpu_online(cpu2)) {
5989 printk("cpu %d and %d not both online!\n", cpu1, cpu2);
5990 return 0;
5991 }
5992
5993 /*
5994 * Allocate the working set:
5995 */
5996 cache = vmalloc(max_size);
5997 if (!cache) {
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08005998 printk("could not vmalloc %d bytes for cache!\n", 2 * max_size);
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005999 return 1000000; /* return 1 msec on very small boxen */
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006000 }
6001
6002 while (size <= max_size) {
6003 prev_cost = cost;
6004 cost = measure_cost(cpu1, cpu2, cache, size);
6005
6006 /*
6007 * Update the max:
6008 */
6009 if (cost > 0) {
6010 if (max_cost < cost) {
6011 max_cost = cost;
6012 size_found = size;
6013 }
6014 }
6015 /*
6016 * Calculate average fluctuation, we use this to prevent
6017 * noise from triggering an early break out of the loop:
6018 */
6019 fluct = abs(cost - prev_cost);
6020 avg_fluct = (avg_fluct + fluct)/2;
6021
6022 if (migration_debug)
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006023 printk("-> [%d][%d][%7d] %3ld.%ld [%3ld.%ld] (%ld): "
6024 "(%8Ld %8Ld)\n",
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006025 cpu1, cpu2, size,
6026 (long)cost / 1000000,
6027 ((long)cost / 100000) % 10,
6028 (long)max_cost / 1000000,
6029 ((long)max_cost / 100000) % 10,
6030 domain_distance(cpu1, cpu2),
6031 cost, avg_fluct);
6032
6033 /*
6034 * If we iterated at least 20% past the previous maximum,
6035 * and the cost has dropped by more than 20% already,
6036 * (taking fluctuations into account) then we assume to
6037 * have found the maximum and break out of the loop early:
6038 */
6039 if (size_found && (size*100 > size_found*SIZE_THRESH))
6040 if (cost+avg_fluct <= 0 ||
6041 max_cost*100 > (cost+avg_fluct)*COST_THRESH) {
6042
6043 if (migration_debug)
6044 printk("-> found max.\n");
6045 break;
6046 }
6047 /*
Ingo Molnar70b4d632006-01-30 20:24:38 +01006048 * Increase the cachesize in 10% steps:
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006049 */
Ingo Molnar70b4d632006-01-30 20:24:38 +01006050 size = size * 10 / 9;
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006051 }
6052
6053 if (migration_debug)
6054 printk("[%d][%d] working set size found: %d, cost: %Ld\n",
6055 cpu1, cpu2, size_found, max_cost);
6056
6057 vfree(cache);
6058
6059 /*
6060 * A task is considered 'cache cold' if at least 2 times
6061 * the worst-case cost of migration has passed.
6062 *
6063 * (this limit is only listened to if the load-balancing
6064 * situation is 'nice' - if there is a large imbalance we
6065 * ignore it for the sake of CPU utilization and
6066 * processing fairness.)
6067 */
6068 return 2 * max_cost * migration_factor / MIGRATION_FACTOR_SCALE;
6069}
6070
6071static void calibrate_migration_costs(const cpumask_t *cpu_map)
6072{
6073 int cpu1 = -1, cpu2 = -1, cpu, orig_cpu = raw_smp_processor_id();
6074 unsigned long j0, j1, distance, max_distance = 0;
6075 struct sched_domain *sd;
6076
6077 j0 = jiffies;
6078
6079 /*
6080 * First pass - calculate the cacheflush times:
6081 */
6082 for_each_cpu_mask(cpu1, *cpu_map) {
6083 for_each_cpu_mask(cpu2, *cpu_map) {
6084 if (cpu1 == cpu2)
6085 continue;
6086 distance = domain_distance(cpu1, cpu2);
6087 max_distance = max(max_distance, distance);
6088 /*
6089 * No result cached yet?
6090 */
6091 if (migration_cost[distance] == -1LL)
6092 migration_cost[distance] =
6093 measure_migration_cost(cpu1, cpu2);
6094 }
6095 }
6096 /*
6097 * Second pass - update the sched domain hierarchy with
6098 * the new cache-hot-time estimations:
6099 */
6100 for_each_cpu_mask(cpu, *cpu_map) {
6101 distance = 0;
6102 for_each_domain(cpu, sd) {
6103 sd->cache_hot_time = migration_cost[distance];
6104 distance++;
6105 }
6106 }
6107 /*
6108 * Print the matrix:
6109 */
6110 if (migration_debug)
6111 printk("migration: max_cache_size: %d, cpu: %d MHz:\n",
6112 max_cache_size,
6113#ifdef CONFIG_X86
6114 cpu_khz/1000
6115#else
6116 -1
6117#endif
6118 );
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006119 if (system_state == SYSTEM_BOOTING && num_online_cpus() > 1) {
6120 printk("migration_cost=");
6121 for (distance = 0; distance <= max_distance; distance++) {
6122 if (distance)
6123 printk(",");
6124 printk("%ld", (long)migration_cost[distance] / 1000);
Chuck Ebbertbd576c92006-02-04 23:27:42 -08006125 }
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006126 printk("\n");
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006127 }
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006128 j1 = jiffies;
6129 if (migration_debug)
Miguel Ojeda Sandonis33859f72006-12-10 02:20:38 -08006130 printk("migration: %ld seconds\n", (j1-j0) / HZ);
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006131
6132 /*
6133 * Move back to the original CPU. NUMA-Q gets confused
6134 * if we migrate to another quad during bootup.
6135 */
6136 if (raw_smp_processor_id() != orig_cpu) {
6137 cpumask_t mask = cpumask_of_cpu(orig_cpu),
6138 saved_mask = current->cpus_allowed;
6139
6140 set_cpus_allowed(current, mask);
6141 set_cpus_allowed(current, saved_mask);
6142 }
6143}
6144
John Hawkes9c1cfda2005-09-06 15:18:14 -07006145#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006146
John Hawkes9c1cfda2005-09-06 15:18:14 -07006147/**
6148 * find_next_best_node - find the next node to include in a sched_domain
6149 * @node: node whose sched_domain we're building
6150 * @used_nodes: nodes already in the sched_domain
6151 *
6152 * Find the next node to include in a given scheduling domain. Simply
6153 * finds the closest node not already in the @used_nodes map.
6154 *
6155 * Should use nodemask_t.
6156 */
6157static int find_next_best_node(int node, unsigned long *used_nodes)
6158{
6159 int i, n, val, min_val, best_node = 0;
6160
6161 min_val = INT_MAX;
6162
6163 for (i = 0; i < MAX_NUMNODES; i++) {
6164 /* Start at @node */
6165 n = (node + i) % MAX_NUMNODES;
6166
6167 if (!nr_cpus_node(n))
6168 continue;
6169
6170 /* Skip already used nodes */
6171 if (test_bit(n, used_nodes))
6172 continue;
6173
6174 /* Simple min distance search */
6175 val = node_distance(node, n);
6176
6177 if (val < min_val) {
6178 min_val = val;
6179 best_node = n;
6180 }
6181 }
6182
6183 set_bit(best_node, used_nodes);
6184 return best_node;
6185}
6186
6187/**
6188 * sched_domain_node_span - get a cpumask for a node's sched_domain
6189 * @node: node whose cpumask we're constructing
6190 * @size: number of nodes to include in this span
6191 *
6192 * Given a node, construct a good cpumask for its sched_domain to span. It
6193 * should be one that prevents unnecessary balancing, but also spreads tasks
6194 * out optimally.
6195 */
6196static cpumask_t sched_domain_node_span(int node)
6197{
John Hawkes9c1cfda2005-09-06 15:18:14 -07006198 DECLARE_BITMAP(used_nodes, MAX_NUMNODES);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006199 cpumask_t span, nodemask;
6200 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006201
6202 cpus_clear(span);
6203 bitmap_zero(used_nodes, MAX_NUMNODES);
6204
6205 nodemask = node_to_cpumask(node);
6206 cpus_or(span, span, nodemask);
6207 set_bit(node, used_nodes);
6208
6209 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
6210 int next_node = find_next_best_node(node, used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006211
John Hawkes9c1cfda2005-09-06 15:18:14 -07006212 nodemask = node_to_cpumask(next_node);
6213 cpus_or(span, span, nodemask);
6214 }
6215
6216 return span;
6217}
6218#endif
6219
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006220int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006221
John Hawkes9c1cfda2005-09-06 15:18:14 -07006222/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07006223 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07006224 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006225#ifdef CONFIG_SCHED_SMT
6226static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006227static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006228
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006229static int cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map,
6230 struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006231{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006232 if (sg)
6233 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006234 return cpu;
6235}
6236#endif
6237
Ingo Molnar48f24c42006-07-03 00:25:40 -07006238/*
6239 * multi-core sched-domains:
6240 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006241#ifdef CONFIG_SCHED_MC
6242static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006243static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006244#endif
6245
6246#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006247static int cpu_to_core_group(int cpu, const cpumask_t *cpu_map,
6248 struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006249{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006250 int group;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006251 cpumask_t mask = cpu_sibling_map[cpu];
6252 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006253 group = first_cpu(mask);
6254 if (sg)
6255 *sg = &per_cpu(sched_group_core, group);
6256 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006257}
6258#elif defined(CONFIG_SCHED_MC)
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006259static int cpu_to_core_group(int cpu, const cpumask_t *cpu_map,
6260 struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006261{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006262 if (sg)
6263 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006264 return cpu;
6265}
6266#endif
6267
Linus Torvalds1da177e2005-04-16 15:20:36 -07006268static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006269static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006270
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006271static int cpu_to_phys_group(int cpu, const cpumask_t *cpu_map,
6272 struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006273{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006274 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006275#ifdef CONFIG_SCHED_MC
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006276 cpumask_t mask = cpu_coregroup_map(cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006277 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006278 group = first_cpu(mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006279#elif defined(CONFIG_SCHED_SMT)
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006280 cpumask_t mask = cpu_sibling_map[cpu];
6281 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006282 group = first_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006283#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006284 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006285#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006286 if (sg)
6287 *sg = &per_cpu(sched_group_phys, group);
6288 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006289}
6290
6291#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07006292/*
6293 * The init_sched_build_groups can't handle what we want to do with node
6294 * groups, so roll our own. Now each node has its own list of groups which
6295 * gets dynamically allocated.
6296 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006297static DEFINE_PER_CPU(struct sched_domain, node_domains);
John Hawkesd1b55132005-09-06 15:18:14 -07006298static struct sched_group **sched_group_nodes_bycpu[NR_CPUS];
John Hawkes9c1cfda2005-09-06 15:18:14 -07006299
6300static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006301static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006302
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006303static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map,
6304 struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006305{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006306 cpumask_t nodemask = node_to_cpumask(cpu_to_node(cpu));
6307 int group;
6308
6309 cpus_and(nodemask, nodemask, *cpu_map);
6310 group = first_cpu(nodemask);
6311
6312 if (sg)
6313 *sg = &per_cpu(sched_group_allnodes, group);
6314 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006315}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006316
Siddha, Suresh B08069032006-03-27 01:15:23 -08006317static void init_numa_sched_groups_power(struct sched_group *group_head)
6318{
6319 struct sched_group *sg = group_head;
6320 int j;
6321
6322 if (!sg)
6323 return;
6324next_sg:
6325 for_each_cpu_mask(j, sg->cpumask) {
6326 struct sched_domain *sd;
6327
6328 sd = &per_cpu(phys_domains, j);
6329 if (j != first_cpu(sd->groups->cpumask)) {
6330 /*
6331 * Only add "power" once for each
6332 * physical package.
6333 */
6334 continue;
6335 }
6336
6337 sg->cpu_power += sd->groups->cpu_power;
6338 }
6339 sg = sg->next;
6340 if (sg != group_head)
6341 goto next_sg;
6342}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006343#endif
6344
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006345#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006346/* Free memory allocated for various sched_group structures */
6347static void free_sched_groups(const cpumask_t *cpu_map)
6348{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006349 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006350
6351 for_each_cpu_mask(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006352 struct sched_group **sched_group_nodes
6353 = sched_group_nodes_bycpu[cpu];
6354
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006355 if (!sched_group_nodes)
6356 continue;
6357
6358 for (i = 0; i < MAX_NUMNODES; i++) {
6359 cpumask_t nodemask = node_to_cpumask(i);
6360 struct sched_group *oldsg, *sg = sched_group_nodes[i];
6361
6362 cpus_and(nodemask, nodemask, *cpu_map);
6363 if (cpus_empty(nodemask))
6364 continue;
6365
6366 if (sg == NULL)
6367 continue;
6368 sg = sg->next;
6369next_sg:
6370 oldsg = sg;
6371 sg = sg->next;
6372 kfree(oldsg);
6373 if (oldsg != sched_group_nodes[i])
6374 goto next_sg;
6375 }
6376 kfree(sched_group_nodes);
6377 sched_group_nodes_bycpu[cpu] = NULL;
6378 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006379}
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006380#else
6381static void free_sched_groups(const cpumask_t *cpu_map)
6382{
6383}
6384#endif
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006385
Linus Torvalds1da177e2005-04-16 15:20:36 -07006386/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006387 * Initialize sched groups cpu_power.
6388 *
6389 * cpu_power indicates the capacity of sched group, which is used while
6390 * distributing the load between different sched groups in a sched domain.
6391 * Typically cpu_power for all the groups in a sched domain will be same unless
6392 * there are asymmetries in the topology. If there are asymmetries, group
6393 * having more cpu_power will pickup more load compared to the group having
6394 * less cpu_power.
6395 *
6396 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
6397 * the maximum number of tasks a group can handle in the presence of other idle
6398 * or lightly loaded groups in the same sched domain.
6399 */
6400static void init_sched_groups_power(int cpu, struct sched_domain *sd)
6401{
6402 struct sched_domain *child;
6403 struct sched_group *group;
6404
6405 WARN_ON(!sd || !sd->groups);
6406
6407 if (cpu != first_cpu(sd->groups->cpumask))
6408 return;
6409
6410 child = sd->child;
6411
6412 /*
6413 * For perf policy, if the groups in child domain share resources
6414 * (for example cores sharing some portions of the cache hierarchy
6415 * or SMT), then set this domain groups cpu_power such that each group
6416 * can handle only one task, when there are other idle groups in the
6417 * same sched domain.
6418 */
6419 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
6420 (child->flags &
6421 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
6422 sd->groups->cpu_power = SCHED_LOAD_SCALE;
6423 return;
6424 }
6425
6426 sd->groups->cpu_power = 0;
6427
6428 /*
6429 * add cpu_power of each child group to this groups cpu_power
6430 */
6431 group = child->groups;
6432 do {
6433 sd->groups->cpu_power += group->cpu_power;
6434 group = group->next;
6435 } while (group != child->groups);
6436}
6437
6438/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006439 * Build sched domains for a given set of cpus and attach the sched domains
6440 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07006441 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006442static int build_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006443{
6444 int i;
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006445 struct sched_domain *sd;
John Hawkesd1b55132005-09-06 15:18:14 -07006446#ifdef CONFIG_NUMA
6447 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006448 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07006449
6450 /*
6451 * Allocate the per-node list of sched groups
6452 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006453 sched_group_nodes = kzalloc(sizeof(struct sched_group*)*MAX_NUMNODES,
Srivatsa Vaddagirid3a5aa92006-06-27 02:54:39 -07006454 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07006455 if (!sched_group_nodes) {
6456 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006457 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07006458 }
6459 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
6460#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006461
6462 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006463 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006464 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006465 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006466 struct sched_domain *sd = NULL, *p;
6467 cpumask_t nodemask = node_to_cpumask(cpu_to_node(i));
6468
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006469 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006470
6471#ifdef CONFIG_NUMA
John Hawkesd1b55132005-09-06 15:18:14 -07006472 if (cpus_weight(*cpu_map)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006473 > SD_NODES_PER_DOMAIN*cpus_weight(nodemask)) {
6474 sd = &per_cpu(allnodes_domains, i);
6475 *sd = SD_ALLNODES_INIT;
6476 sd->span = *cpu_map;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006477 cpu_to_allnodes_group(i, cpu_map, &sd->groups);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006478 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006479 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006480 } else
6481 p = NULL;
6482
Linus Torvalds1da177e2005-04-16 15:20:36 -07006483 sd = &per_cpu(node_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006484 *sd = SD_NODE_INIT;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006485 sd->span = sched_domain_node_span(cpu_to_node(i));
6486 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006487 if (p)
6488 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006489 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006490#endif
6491
6492 p = sd;
6493 sd = &per_cpu(phys_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006494 *sd = SD_CPU_INIT;
6495 sd->span = nodemask;
6496 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006497 if (p)
6498 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006499 cpu_to_phys_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006500
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006501#ifdef CONFIG_SCHED_MC
6502 p = sd;
6503 sd = &per_cpu(core_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006504 *sd = SD_MC_INIT;
6505 sd->span = cpu_coregroup_map(i);
6506 cpus_and(sd->span, sd->span, *cpu_map);
6507 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006508 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006509 cpu_to_core_group(i, cpu_map, &sd->groups);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006510#endif
6511
Linus Torvalds1da177e2005-04-16 15:20:36 -07006512#ifdef CONFIG_SCHED_SMT
6513 p = sd;
6514 sd = &per_cpu(cpu_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006515 *sd = SD_SIBLING_INIT;
6516 sd->span = cpu_sibling_map[i];
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006517 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006518 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006519 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006520 cpu_to_cpu_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006521#endif
6522 }
6523
6524#ifdef CONFIG_SCHED_SMT
6525 /* Set up CPU (sibling) groups */
John Hawkes9c1cfda2005-09-06 15:18:14 -07006526 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006527 cpumask_t this_sibling_map = cpu_sibling_map[i];
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006528 cpus_and(this_sibling_map, this_sibling_map, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006529 if (i != first_cpu(this_sibling_map))
6530 continue;
6531
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006532 init_sched_build_groups(this_sibling_map, cpu_map, &cpu_to_cpu_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006533 }
6534#endif
6535
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006536#ifdef CONFIG_SCHED_MC
6537 /* Set up multi-core groups */
6538 for_each_cpu_mask(i, *cpu_map) {
6539 cpumask_t this_core_map = cpu_coregroup_map(i);
6540 cpus_and(this_core_map, this_core_map, *cpu_map);
6541 if (i != first_cpu(this_core_map))
6542 continue;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006543 init_sched_build_groups(this_core_map, cpu_map, &cpu_to_core_group);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006544 }
6545#endif
6546
6547
Linus Torvalds1da177e2005-04-16 15:20:36 -07006548 /* Set up physical groups */
6549 for (i = 0; i < MAX_NUMNODES; i++) {
6550 cpumask_t nodemask = node_to_cpumask(i);
6551
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006552 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006553 if (cpus_empty(nodemask))
6554 continue;
6555
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006556 init_sched_build_groups(nodemask, cpu_map, &cpu_to_phys_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006557 }
6558
6559#ifdef CONFIG_NUMA
6560 /* Set up node groups */
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006561 if (sd_allnodes)
6562 init_sched_build_groups(*cpu_map, cpu_map, &cpu_to_allnodes_group);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006563
6564 for (i = 0; i < MAX_NUMNODES; i++) {
6565 /* Set up node groups */
6566 struct sched_group *sg, *prev;
6567 cpumask_t nodemask = node_to_cpumask(i);
6568 cpumask_t domainspan;
6569 cpumask_t covered = CPU_MASK_NONE;
6570 int j;
6571
6572 cpus_and(nodemask, nodemask, *cpu_map);
John Hawkesd1b55132005-09-06 15:18:14 -07006573 if (cpus_empty(nodemask)) {
6574 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006575 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07006576 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006577
6578 domainspan = sched_domain_node_span(i);
6579 cpus_and(domainspan, domainspan, *cpu_map);
6580
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006581 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006582 if (!sg) {
6583 printk(KERN_WARNING "Can not alloc domain group for "
6584 "node %d\n", i);
6585 goto error;
6586 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006587 sched_group_nodes[i] = sg;
6588 for_each_cpu_mask(j, nodemask) {
6589 struct sched_domain *sd;
6590 sd = &per_cpu(node_domains, j);
6591 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006592 }
6593 sg->cpu_power = 0;
6594 sg->cpumask = nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006595 sg->next = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006596 cpus_or(covered, covered, nodemask);
6597 prev = sg;
6598
6599 for (j = 0; j < MAX_NUMNODES; j++) {
6600 cpumask_t tmp, notcovered;
6601 int n = (i + j) % MAX_NUMNODES;
6602
6603 cpus_complement(notcovered, covered);
6604 cpus_and(tmp, notcovered, *cpu_map);
6605 cpus_and(tmp, tmp, domainspan);
6606 if (cpus_empty(tmp))
6607 break;
6608
6609 nodemask = node_to_cpumask(n);
6610 cpus_and(tmp, tmp, nodemask);
6611 if (cpus_empty(tmp))
6612 continue;
6613
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006614 sg = kmalloc_node(sizeof(struct sched_group),
6615 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006616 if (!sg) {
6617 printk(KERN_WARNING
6618 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006619 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006620 }
6621 sg->cpu_power = 0;
6622 sg->cpumask = tmp;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006623 sg->next = prev->next;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006624 cpus_or(covered, covered, tmp);
6625 prev->next = sg;
6626 prev = sg;
6627 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006629#endif
6630
6631 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006632#ifdef CONFIG_SCHED_SMT
6633 for_each_cpu_mask(i, *cpu_map) {
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006634 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006635 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006636 }
6637#endif
6638#ifdef CONFIG_SCHED_MC
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006639 for_each_cpu_mask(i, *cpu_map) {
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006640 sd = &per_cpu(core_domains, i);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006641 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006642 }
6643#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006644
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006645 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006646 sd = &per_cpu(phys_domains, i);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006647 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006648 }
6649
John Hawkes9c1cfda2005-09-06 15:18:14 -07006650#ifdef CONFIG_NUMA
Siddha, Suresh B08069032006-03-27 01:15:23 -08006651 for (i = 0; i < MAX_NUMNODES; i++)
6652 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006653
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006654 if (sd_allnodes) {
6655 struct sched_group *sg;
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07006656
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006657 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg);
Siddha, Suresh Bf712c0c72006-07-30 03:02:59 -07006658 init_numa_sched_groups_power(sg);
6659 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006660#endif
6661
Linus Torvalds1da177e2005-04-16 15:20:36 -07006662 /* Attach the domains */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006663 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006664 struct sched_domain *sd;
6665#ifdef CONFIG_SCHED_SMT
6666 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006667#elif defined(CONFIG_SCHED_MC)
6668 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006669#else
6670 sd = &per_cpu(phys_domains, i);
6671#endif
6672 cpu_attach_domain(sd, i);
6673 }
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006674 /*
6675 * Tune cache-hot values:
6676 */
6677 calibrate_migration_costs(cpu_map);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006678
6679 return 0;
6680
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006681#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006682error:
6683 free_sched_groups(cpu_map);
6684 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006685#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006686}
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006687/*
6688 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
6689 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006690static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006691{
6692 cpumask_t cpu_default_map;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006693 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006694
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006695 /*
6696 * Setup mask for cpus without special case scheduling requirements.
6697 * For now this just excludes isolated cpus, but could be used to
6698 * exclude other special cases in the future.
6699 */
6700 cpus_andnot(cpu_default_map, *cpu_map, cpu_isolated_map);
6701
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006702 err = build_sched_domains(&cpu_default_map);
6703
6704 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006705}
6706
6707static void arch_destroy_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006708{
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006709 free_sched_groups(cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006710}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006711
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006712/*
6713 * Detach sched domains from a group of cpus specified in cpu_map
6714 * These cpus will now be attached to the NULL domain
6715 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08006716static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006717{
6718 int i;
6719
6720 for_each_cpu_mask(i, *cpu_map)
6721 cpu_attach_domain(NULL, i);
6722 synchronize_sched();
6723 arch_destroy_sched_domains(cpu_map);
6724}
6725
6726/*
6727 * Partition sched domains as specified by the cpumasks below.
6728 * This attaches all cpus from the cpumasks to the NULL domain,
6729 * waits for a RCU quiescent period, recalculates sched
6730 * domain information and then attaches them back to the
6731 * correct sched domains
6732 * Call with hotplug lock held
6733 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006734int partition_sched_domains(cpumask_t *partition1, cpumask_t *partition2)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006735{
6736 cpumask_t change_map;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006737 int err = 0;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006738
6739 cpus_and(*partition1, *partition1, cpu_online_map);
6740 cpus_and(*partition2, *partition2, cpu_online_map);
6741 cpus_or(change_map, *partition1, *partition2);
6742
6743 /* Detach sched domains from all of the affected cpus */
6744 detach_destroy_domains(&change_map);
6745 if (!cpus_empty(*partition1))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006746 err = build_sched_domains(partition1);
6747 if (!err && !cpus_empty(*partition2))
6748 err = build_sched_domains(partition2);
6749
6750 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006751}
6752
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006753#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
6754int arch_reinit_sched_domains(void)
6755{
6756 int err;
6757
6758 lock_cpu_hotplug();
6759 detach_destroy_domains(&cpu_online_map);
6760 err = arch_init_sched_domains(&cpu_online_map);
6761 unlock_cpu_hotplug();
6762
6763 return err;
6764}
6765
6766static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
6767{
6768 int ret;
6769
6770 if (buf[0] != '0' && buf[0] != '1')
6771 return -EINVAL;
6772
6773 if (smt)
6774 sched_smt_power_savings = (buf[0] == '1');
6775 else
6776 sched_mc_power_savings = (buf[0] == '1');
6777
6778 ret = arch_reinit_sched_domains();
6779
6780 return ret ? ret : count;
6781}
6782
6783int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
6784{
6785 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006786
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006787#ifdef CONFIG_SCHED_SMT
6788 if (smt_capable())
6789 err = sysfs_create_file(&cls->kset.kobj,
6790 &attr_sched_smt_power_savings.attr);
6791#endif
6792#ifdef CONFIG_SCHED_MC
6793 if (!err && mc_capable())
6794 err = sysfs_create_file(&cls->kset.kobj,
6795 &attr_sched_mc_power_savings.attr);
6796#endif
6797 return err;
6798}
6799#endif
6800
6801#ifdef CONFIG_SCHED_MC
6802static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
6803{
6804 return sprintf(page, "%u\n", sched_mc_power_savings);
6805}
Ingo Molnar48f24c42006-07-03 00:25:40 -07006806static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
6807 const char *buf, size_t count)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006808{
6809 return sched_power_savings_store(buf, count, 0);
6810}
6811SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
6812 sched_mc_power_savings_store);
6813#endif
6814
6815#ifdef CONFIG_SCHED_SMT
6816static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
6817{
6818 return sprintf(page, "%u\n", sched_smt_power_savings);
6819}
Ingo Molnar48f24c42006-07-03 00:25:40 -07006820static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
6821 const char *buf, size_t count)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006822{
6823 return sched_power_savings_store(buf, count, 1);
6824}
6825SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
6826 sched_smt_power_savings_store);
6827#endif
6828
Linus Torvalds1da177e2005-04-16 15:20:36 -07006829/*
6830 * Force a reinitialization of the sched domains hierarchy. The domains
6831 * and groups cannot be updated in place without racing with the balancing
Nick Piggin41c7ce92005-06-25 14:57:24 -07006832 * code, so we temporarily attach all running cpus to the NULL domain
Linus Torvalds1da177e2005-04-16 15:20:36 -07006833 * which will prevent rebalancing while the sched domains are recalculated.
6834 */
6835static int update_sched_domains(struct notifier_block *nfb,
6836 unsigned long action, void *hcpu)
6837{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006838 switch (action) {
6839 case CPU_UP_PREPARE:
6840 case CPU_DOWN_PREPARE:
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006841 detach_destroy_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006842 return NOTIFY_OK;
6843
6844 case CPU_UP_CANCELED:
6845 case CPU_DOWN_FAILED:
6846 case CPU_ONLINE:
6847 case CPU_DEAD:
6848 /*
6849 * Fall through and re-initialise the domains.
6850 */
6851 break;
6852 default:
6853 return NOTIFY_DONE;
6854 }
6855
6856 /* The hotplug lock is already held by cpu_up/cpu_down */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006857 arch_init_sched_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006858
6859 return NOTIFY_OK;
6860}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006861
6862void __init sched_init_smp(void)
6863{
Nick Piggin5c1e1762006-10-03 01:14:04 -07006864 cpumask_t non_isolated_cpus;
6865
Linus Torvalds1da177e2005-04-16 15:20:36 -07006866 lock_cpu_hotplug();
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006867 arch_init_sched_domains(&cpu_online_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07006868 cpus_andnot(non_isolated_cpus, cpu_online_map, cpu_isolated_map);
6869 if (cpus_empty(non_isolated_cpus))
6870 cpu_set(smp_processor_id(), non_isolated_cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006871 unlock_cpu_hotplug();
6872 /* XXX: Theoretical race here - CPU may be hotplugged now */
6873 hotcpu_notifier(update_sched_domains, 0);
Nick Piggin5c1e1762006-10-03 01:14:04 -07006874
6875 /* Move init over to a non-isolated CPU */
6876 if (set_cpus_allowed(current, non_isolated_cpus) < 0)
6877 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006878}
6879#else
6880void __init sched_init_smp(void)
6881{
6882}
6883#endif /* CONFIG_SMP */
6884
6885int in_sched_functions(unsigned long addr)
6886{
6887 /* Linker adds these: start and end of __sched functions */
6888 extern char __sched_text_start[], __sched_text_end[];
Ingo Molnar48f24c42006-07-03 00:25:40 -07006889
Linus Torvalds1da177e2005-04-16 15:20:36 -07006890 return in_lock_functions(addr) ||
6891 (addr >= (unsigned long)__sched_text_start
6892 && addr < (unsigned long)__sched_text_end);
6893}
6894
6895void __init sched_init(void)
6896{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006897 int i, j, k;
6898
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08006899 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006900 struct prio_array *array;
6901 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006902
6903 rq = cpu_rq(i);
6904 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07006905 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07006906 rq->nr_running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006907 rq->active = rq->arrays;
6908 rq->expired = rq->arrays + 1;
6909 rq->best_expired_prio = MAX_PRIO;
6910
6911#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07006912 rq->sd = NULL;
Nick Piggin78979862005-06-25 14:57:13 -07006913 for (j = 1; j < 3; j++)
6914 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006915 rq->active_balance = 0;
6916 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07006917 rq->cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006918 rq->migration_thread = NULL;
6919 INIT_LIST_HEAD(&rq->migration_queue);
6920#endif
6921 atomic_set(&rq->nr_iowait, 0);
6922
6923 for (j = 0; j < 2; j++) {
6924 array = rq->arrays + j;
6925 for (k = 0; k < MAX_PRIO; k++) {
6926 INIT_LIST_HEAD(array->queue + k);
6927 __clear_bit(k, array->bitmap);
6928 }
6929 // delimiter for bitsearch
6930 __set_bit(MAX_PRIO, array->bitmap);
6931 }
6932 }
6933
Peter Williams2dd73a42006-06-27 02:54:34 -07006934 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07006935
Christoph Lameterc9819f42006-12-10 02:20:25 -08006936#ifdef CONFIG_SMP
6937 open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL);
6938#endif
6939
Heiko Carstensb50f60c2006-07-30 03:03:52 -07006940#ifdef CONFIG_RT_MUTEXES
6941 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
6942#endif
6943
Linus Torvalds1da177e2005-04-16 15:20:36 -07006944 /*
6945 * The boot idle thread does lazy MMU switching as well:
6946 */
6947 atomic_inc(&init_mm.mm_count);
6948 enter_lazy_tlb(&init_mm, current);
6949
6950 /*
6951 * Make us the idle thread. Technically, schedule() should not be
6952 * called from this thread, however somewhere below it might be,
6953 * but because we are the idle thread, we just pick up running again
6954 * when this runqueue becomes "idle".
6955 */
6956 init_idle(current, smp_processor_id());
6957}
6958
6959#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
6960void __might_sleep(char *file, int line)
6961{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006962#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07006963 static unsigned long prev_jiffy; /* ratelimiting */
6964
6965 if ((in_atomic() || irqs_disabled()) &&
6966 system_state == SYSTEM_RUNNING && !oops_in_progress) {
6967 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
6968 return;
6969 prev_jiffy = jiffies;
Ingo Molnar91368d72006-03-23 03:00:54 -08006970 printk(KERN_ERR "BUG: sleeping function called from invalid"
Linus Torvalds1da177e2005-04-16 15:20:36 -07006971 " context at %s:%d\n", file, line);
6972 printk("in_atomic():%d, irqs_disabled():%d\n",
6973 in_atomic(), irqs_disabled());
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08006974 debug_show_held_locks(current);
Ingo Molnar3117df02006-12-13 00:34:43 -08006975 if (irqs_disabled())
6976 print_irqtrace_events(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006977 dump_stack();
6978 }
6979#endif
6980}
6981EXPORT_SYMBOL(__might_sleep);
6982#endif
6983
6984#ifdef CONFIG_MAGIC_SYSRQ
6985void normalize_rt_tasks(void)
6986{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006987 struct prio_array *array;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006988 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006989 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006990 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006991
6992 read_lock_irq(&tasklist_lock);
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07006993 for_each_process(p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006994 if (!rt_task(p))
6995 continue;
6996
Ingo Molnarb29739f2006-06-27 02:54:51 -07006997 spin_lock_irqsave(&p->pi_lock, flags);
6998 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006999
7000 array = p->array;
7001 if (array)
7002 deactivate_task(p, task_rq(p));
7003 __setscheduler(p, SCHED_NORMAL, 0);
7004 if (array) {
7005 __activate_task(p, task_rq(p));
7006 resched_task(rq->curr);
7007 }
7008
Ingo Molnarb29739f2006-06-27 02:54:51 -07007009 __task_rq_unlock(rq);
7010 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007011 }
7012 read_unlock_irq(&tasklist_lock);
7013}
7014
7015#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07007016
7017#ifdef CONFIG_IA64
7018/*
7019 * These functions are only useful for the IA64 MCA handling.
7020 *
7021 * They can only be called when the whole system has been
7022 * stopped - every CPU needs to be quiescent, and no scheduling
7023 * activity can take place. Using them for anything else would
7024 * be a serious bug, and as a result, they aren't even visible
7025 * under any other configuration.
7026 */
7027
7028/**
7029 * curr_task - return the current task for a given cpu.
7030 * @cpu: the processor in question.
7031 *
7032 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7033 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007034struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007035{
7036 return cpu_curr(cpu);
7037}
7038
7039/**
7040 * set_curr_task - set the current task for a given cpu.
7041 * @cpu: the processor in question.
7042 * @p: the task pointer to set.
7043 *
7044 * Description: This function must only be used when non-maskable interrupts
7045 * are serviced on a separate stack. It allows the architecture to switch the
7046 * notion of the current task on a cpu in a non-blocking manner. This function
7047 * must be called with all CPU's synchronized, and interrupts disabled, the
7048 * and caller must save the original value of the current task (see
7049 * curr_task() above) and restore that value before reenabling interrupts and
7050 * re-starting the system.
7051 *
7052 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
7053 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07007054void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07007055{
7056 cpu_curr(cpu) = p;
7057}
7058
7059#endif