blob: 14a8d9050cd431c6420769e712d71468445c653b [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;
228 unsigned long long timestamp_last_tick;
Ingo Molnar36c8b582006-07-03 00:25:41 -0700229 struct task_struct *curr, *idle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 struct mm_struct *prev_mm;
Ingo Molnar70b97a72006-07-03 00:25:42 -0700231 struct prio_array *active, *expired, arrays[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 int best_expired_prio;
233 atomic_t nr_iowait;
234
235#ifdef CONFIG_SMP
236 struct sched_domain *sd;
237
238 /* For active balancing */
239 int active_balance;
240 int push_cpu;
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700241 int cpu; /* cpu of this runqueue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Ingo Molnar36c8b582006-07-03 00:25:41 -0700243 struct task_struct *migration_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 struct list_head migration_queue;
245#endif
246
247#ifdef CONFIG_SCHEDSTATS
248 /* latency stats */
249 struct sched_info rq_sched_info;
250
251 /* sys_sched_yield() stats */
252 unsigned long yld_exp_empty;
253 unsigned long yld_act_empty;
254 unsigned long yld_both_empty;
255 unsigned long yld_cnt;
256
257 /* schedule() stats */
258 unsigned long sched_switch;
259 unsigned long sched_cnt;
260 unsigned long sched_goidle;
261
262 /* try_to_wake_up() stats */
263 unsigned long ttwu_cnt;
264 unsigned long ttwu_local;
265#endif
Ingo Molnarfcb99372006-07-03 00:25:10 -0700266 struct lock_class_key rq_lock_key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267};
268
Ingo Molnar70b97a72006-07-03 00:25:42 -0700269static DEFINE_PER_CPU(struct rq, runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Christoph Lameter0a2966b2006-09-25 23:30:51 -0700271static inline int cpu_of(struct rq *rq)
272{
273#ifdef CONFIG_SMP
274 return rq->cpu;
275#else
276 return 0;
277#endif
278}
279
Nick Piggin674311d2005-06-25 14:57:27 -0700280/*
281 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -0700282 * See detach_destroy_domains: synchronize_sched for details.
Nick Piggin674311d2005-06-25 14:57:27 -0700283 *
284 * The domain tree of any CPU may only be accessed from within
285 * preempt-disabled sections.
286 */
Ingo Molnar48f24c42006-07-03 00:25:40 -0700287#define for_each_domain(cpu, __sd) \
288 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
291#define this_rq() (&__get_cpu_var(runqueues))
292#define task_rq(p) cpu_rq(task_cpu(p))
293#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295#ifndef prepare_arch_switch
Nick Piggin4866cde2005-06-25 14:57:23 -0700296# define prepare_arch_switch(next) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297#endif
Nick Piggin4866cde2005-06-25 14:57:23 -0700298#ifndef finish_arch_switch
299# define finish_arch_switch(prev) do { } while (0)
300#endif
301
302#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar70b97a72006-07-03 00:25:42 -0700303static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700304{
305 return rq->curr == p;
306}
307
Ingo Molnar70b97a72006-07-03 00:25:42 -0700308static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700309{
310}
311
Ingo Molnar70b97a72006-07-03 00:25:42 -0700312static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700313{
Ingo Molnarda04c032005-09-13 11:17:59 +0200314#ifdef CONFIG_DEBUG_SPINLOCK
315 /* this is a valid case when another task releases the spinlock */
316 rq->lock.owner = current;
317#endif
Ingo Molnar8a25d5d2006-07-03 00:24:54 -0700318 /*
319 * If we are tracking spinlock dependencies then we have to
320 * fix up the runqueue lock - which gets 'carried over' from
321 * prev into current:
322 */
323 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
324
Nick Piggin4866cde2005-06-25 14:57:23 -0700325 spin_unlock_irq(&rq->lock);
326}
327
328#else /* __ARCH_WANT_UNLOCKED_CTXSW */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700329static inline int task_running(struct rq *rq, struct task_struct *p)
Nick Piggin4866cde2005-06-25 14:57:23 -0700330{
331#ifdef CONFIG_SMP
332 return p->oncpu;
333#else
334 return rq->curr == p;
335#endif
336}
337
Ingo Molnar70b97a72006-07-03 00:25:42 -0700338static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -0700339{
340#ifdef CONFIG_SMP
341 /*
342 * We can optimise this out completely for !SMP, because the
343 * SMP rebalancing from interrupt is the only thing that cares
344 * here.
345 */
346 next->oncpu = 1;
347#endif
348#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
349 spin_unlock_irq(&rq->lock);
350#else
351 spin_unlock(&rq->lock);
352#endif
353}
354
Ingo Molnar70b97a72006-07-03 00:25:42 -0700355static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
Nick Piggin4866cde2005-06-25 14:57:23 -0700356{
357#ifdef CONFIG_SMP
358 /*
359 * After ->oncpu is cleared, the task can be moved to a different CPU.
360 * We must ensure this doesn't happen until the switch is completely
361 * finished.
362 */
363 smp_wmb();
364 prev->oncpu = 0;
365#endif
366#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
367 local_irq_enable();
368#endif
369}
370#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
372/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700373 * __task_rq_lock - lock the runqueue a given task resides on.
374 * Must be called interrupts disabled.
375 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700376static inline struct rq *__task_rq_lock(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700377 __acquires(rq->lock)
378{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700379 struct rq *rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -0700380
381repeat_lock_task:
382 rq = task_rq(p);
383 spin_lock(&rq->lock);
384 if (unlikely(rq != task_rq(p))) {
385 spin_unlock(&rq->lock);
386 goto repeat_lock_task;
387 }
388 return rq;
389}
390
391/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 * task_rq_lock - lock the runqueue a given task resides on and disable
393 * interrupts. Note the ordering: we can safely lookup the task_rq without
394 * explicitly disabling preemption.
395 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700396static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 __acquires(rq->lock)
398{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700399 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401repeat_lock_task:
402 local_irq_save(*flags);
403 rq = task_rq(p);
404 spin_lock(&rq->lock);
405 if (unlikely(rq != task_rq(p))) {
406 spin_unlock_irqrestore(&rq->lock, *flags);
407 goto repeat_lock_task;
408 }
409 return rq;
410}
411
Ingo Molnar70b97a72006-07-03 00:25:42 -0700412static inline void __task_rq_unlock(struct rq *rq)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700413 __releases(rq->lock)
414{
415 spin_unlock(&rq->lock);
416}
417
Ingo Molnar70b97a72006-07-03 00:25:42 -0700418static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 __releases(rq->lock)
420{
421 spin_unlock_irqrestore(&rq->lock, *flags);
422}
423
424#ifdef CONFIG_SCHEDSTATS
425/*
426 * bump this up when changing the output format or the meaning of an existing
427 * format, so that tools can adapt (or abort)
428 */
Nick Piggin68767a02005-06-25 14:57:20 -0700429#define SCHEDSTAT_VERSION 12
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431static int show_schedstat(struct seq_file *seq, void *v)
432{
433 int cpu;
434
435 seq_printf(seq, "version %d\n", SCHEDSTAT_VERSION);
436 seq_printf(seq, "timestamp %lu\n", jiffies);
437 for_each_online_cpu(cpu) {
Ingo Molnar70b97a72006-07-03 00:25:42 -0700438 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439#ifdef CONFIG_SMP
440 struct sched_domain *sd;
441 int dcnt = 0;
442#endif
443
444 /* runqueue-specific stats */
445 seq_printf(seq,
446 "cpu%d %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu",
447 cpu, rq->yld_both_empty,
448 rq->yld_act_empty, rq->yld_exp_empty, rq->yld_cnt,
449 rq->sched_switch, rq->sched_cnt, rq->sched_goidle,
450 rq->ttwu_cnt, rq->ttwu_local,
451 rq->rq_sched_info.cpu_time,
452 rq->rq_sched_info.run_delay, rq->rq_sched_info.pcnt);
453
454 seq_printf(seq, "\n");
455
456#ifdef CONFIG_SMP
457 /* domain-specific stats */
Nick Piggin674311d2005-06-25 14:57:27 -0700458 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 for_each_domain(cpu, sd) {
460 enum idle_type itype;
461 char mask_str[NR_CPUS];
462
463 cpumask_scnprintf(mask_str, NR_CPUS, sd->span);
464 seq_printf(seq, "domain%d %s", dcnt++, mask_str);
465 for (itype = SCHED_IDLE; itype < MAX_IDLE_TYPES;
466 itype++) {
467 seq_printf(seq, " %lu %lu %lu %lu %lu %lu %lu %lu",
468 sd->lb_cnt[itype],
469 sd->lb_balanced[itype],
470 sd->lb_failed[itype],
471 sd->lb_imbalance[itype],
472 sd->lb_gained[itype],
473 sd->lb_hot_gained[itype],
474 sd->lb_nobusyq[itype],
475 sd->lb_nobusyg[itype]);
476 }
Nick Piggin68767a02005-06-25 14:57:20 -0700477 seq_printf(seq, " %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 sd->alb_cnt, sd->alb_failed, sd->alb_pushed,
Nick Piggin68767a02005-06-25 14:57:20 -0700479 sd->sbe_cnt, sd->sbe_balanced, sd->sbe_pushed,
480 sd->sbf_cnt, sd->sbf_balanced, sd->sbf_pushed,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 sd->ttwu_wake_remote, sd->ttwu_move_affine, sd->ttwu_move_balance);
482 }
Nick Piggin674311d2005-06-25 14:57:27 -0700483 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484#endif
485 }
486 return 0;
487}
488
489static int schedstat_open(struct inode *inode, struct file *file)
490{
491 unsigned int size = PAGE_SIZE * (1 + num_online_cpus() / 32);
492 char *buf = kmalloc(size, GFP_KERNEL);
493 struct seq_file *m;
494 int res;
495
496 if (!buf)
497 return -ENOMEM;
498 res = single_open(file, show_schedstat, NULL);
499 if (!res) {
500 m = file->private_data;
501 m->buf = buf;
502 m->size = size;
503 } else
504 kfree(buf);
505 return res;
506}
507
Helge Deller15ad7cd2006-12-06 20:40:36 -0800508const struct file_operations proc_schedstat_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 .open = schedstat_open,
510 .read = seq_read,
511 .llseek = seq_lseek,
512 .release = single_release,
513};
514
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700515/*
516 * Expects runqueue lock to be held for atomicity of update
517 */
518static inline void
519rq_sched_info_arrive(struct rq *rq, unsigned long delta_jiffies)
520{
521 if (rq) {
522 rq->rq_sched_info.run_delay += delta_jiffies;
523 rq->rq_sched_info.pcnt++;
524 }
525}
526
527/*
528 * Expects runqueue lock to be held for atomicity of update
529 */
530static inline void
531rq_sched_info_depart(struct rq *rq, unsigned long delta_jiffies)
532{
533 if (rq)
534 rq->rq_sched_info.cpu_time += delta_jiffies;
535}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536# define schedstat_inc(rq, field) do { (rq)->field++; } while (0)
537# define schedstat_add(rq, field, amt) do { (rq)->field += (amt); } while (0)
538#else /* !CONFIG_SCHEDSTATS */
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700539static inline void
540rq_sched_info_arrive(struct rq *rq, unsigned long delta_jiffies)
541{}
542static inline void
543rq_sched_info_depart(struct rq *rq, unsigned long delta_jiffies)
544{}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545# define schedstat_inc(rq, field) do { } while (0)
546# define schedstat_add(rq, field, amt) do { } while (0)
547#endif
548
549/*
Robert P. J. Daycc2a73b2006-12-10 02:20:00 -0800550 * this_rq_lock - lock this runqueue and disable interrupts.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700552static inline struct rq *this_rq_lock(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 __acquires(rq->lock)
554{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700555 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
557 local_irq_disable();
558 rq = this_rq();
559 spin_lock(&rq->lock);
560
561 return rq;
562}
563
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700564#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565/*
566 * Called when a process is dequeued from the active array and given
567 * the cpu. We should note that with the exception of interactive
568 * tasks, the expired queue will become the active queue after the active
569 * queue is empty, without explicitly dequeuing and requeuing tasks in the
570 * expired queue. (Interactive tasks may be requeued directly to the
571 * active queue, thus delaying tasks in the expired queue from running;
572 * see scheduler_tick()).
573 *
574 * This function is only called from sched_info_arrive(), rather than
575 * dequeue_task(). Even though a task may be queued and dequeued multiple
576 * times as it is shuffled about, we're really interested in knowing how
577 * long it was from the *first* time it was queued to the time that it
578 * finally hit a cpu.
579 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700580static inline void sched_info_dequeued(struct task_struct *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
582 t->sched_info.last_queued = 0;
583}
584
585/*
586 * Called when a task finally hits the cpu. We can now calculate how
587 * long it was waiting to run. We also note when it began so that we
588 * can keep stats on how long its timeslice is.
589 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700590static void sched_info_arrive(struct task_struct *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700592 unsigned long now = jiffies, delta_jiffies = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 if (t->sched_info.last_queued)
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700595 delta_jiffies = now - t->sched_info.last_queued;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 sched_info_dequeued(t);
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700597 t->sched_info.run_delay += delta_jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 t->sched_info.last_arrival = now;
599 t->sched_info.pcnt++;
600
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700601 rq_sched_info_arrive(task_rq(t), delta_jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602}
603
604/*
605 * Called when a process is queued into either the active or expired
606 * array. The time is noted and later used to determine how long we
607 * had to wait for us to reach the cpu. Since the expired queue will
608 * become the active queue after active queue is empty, without dequeuing
609 * and requeuing any tasks, we are interested in queuing to either. It
610 * is unusual but not impossible for tasks to be dequeued and immediately
611 * requeued in the same or another array: this can happen in sched_yield(),
612 * set_user_nice(), and even load_balance() as it moves tasks from runqueue
613 * to runqueue.
614 *
615 * This function is only called from enqueue_task(), but also only updates
616 * the timestamp if it is already not set. It's assumed that
617 * sched_info_dequeued() will clear that stamp when appropriate.
618 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700619static inline void sched_info_queued(struct task_struct *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700621 if (unlikely(sched_info_on()))
622 if (!t->sched_info.last_queued)
623 t->sched_info.last_queued = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
625
626/*
627 * Called when a process ceases being the active-running process, either
628 * voluntarily or involuntarily. Now we can calculate how long we ran.
629 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700630static inline void sched_info_depart(struct task_struct *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700632 unsigned long delta_jiffies = jiffies - t->sched_info.last_arrival;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700634 t->sched_info.cpu_time += delta_jiffies;
635 rq_sched_info_depart(task_rq(t), delta_jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636}
637
638/*
639 * Called when tasks are switched involuntarily due, typically, to expiring
640 * their time slice. (This may also be called when switching to or from
641 * the idle task.) We are only called when prev != next.
642 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700643static inline void
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700644__sched_info_switch(struct task_struct *prev, struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700646 struct rq *rq = task_rq(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
648 /*
649 * prev now departs the cpu. It's not interesting to record
650 * stats about how efficient we were at scheduling the idle
651 * process, however.
652 */
653 if (prev != rq->idle)
654 sched_info_depart(prev);
655
656 if (next != rq->idle)
657 sched_info_arrive(next);
658}
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700659static inline void
660sched_info_switch(struct task_struct *prev, struct task_struct *next)
661{
662 if (unlikely(sched_info_on()))
663 __sched_info_switch(prev, next);
664}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665#else
666#define sched_info_queued(t) do { } while (0)
667#define sched_info_switch(t, next) do { } while (0)
Chandra Seetharaman52f17b62006-07-14 00:24:38 -0700668#endif /* CONFIG_SCHEDSTATS || CONFIG_TASK_DELAY_ACCT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
670/*
671 * Adding/removing a task to/from a priority array:
672 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700673static void dequeue_task(struct task_struct *p, struct prio_array *array)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
675 array->nr_active--;
676 list_del(&p->run_list);
677 if (list_empty(array->queue + p->prio))
678 __clear_bit(p->prio, array->bitmap);
679}
680
Ingo Molnar70b97a72006-07-03 00:25:42 -0700681static void enqueue_task(struct task_struct *p, struct prio_array *array)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 sched_info_queued(p);
684 list_add_tail(&p->run_list, array->queue + p->prio);
685 __set_bit(p->prio, array->bitmap);
686 array->nr_active++;
687 p->array = array;
688}
689
690/*
691 * Put task to the end of the run list without the overhead of dequeue
692 * followed by enqueue.
693 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700694static void requeue_task(struct task_struct *p, struct prio_array *array)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
696 list_move_tail(&p->run_list, array->queue + p->prio);
697}
698
Ingo Molnar70b97a72006-07-03 00:25:42 -0700699static inline void
700enqueue_task_head(struct task_struct *p, struct prio_array *array)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
702 list_add(&p->run_list, array->queue + p->prio);
703 __set_bit(p->prio, array->bitmap);
704 array->nr_active++;
705 p->array = array;
706}
707
708/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700709 * __normal_prio - return the priority that is based on the static
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 * priority but is modified by bonuses/penalties.
711 *
712 * We scale the actual sleep average [0 .... MAX_SLEEP_AVG]
713 * into the -5 ... 0 ... +5 bonus/penalty range.
714 *
715 * We use 25% of the full 0...39 priority range so that:
716 *
717 * 1) nice +19 interactive tasks do not preempt nice 0 CPU hogs.
718 * 2) nice -20 CPU hogs do not get preempted by nice 0 tasks.
719 *
720 * Both properties are important to certain workloads.
721 */
Ingo Molnarb29739f2006-06-27 02:54:51 -0700722
Ingo Molnar36c8b582006-07-03 00:25:41 -0700723static inline int __normal_prio(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
725 int bonus, prio;
726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 bonus = CURRENT_BONUS(p) - MAX_BONUS / 2;
728
729 prio = p->static_prio - bonus;
730 if (prio < MAX_RT_PRIO)
731 prio = MAX_RT_PRIO;
732 if (prio > MAX_PRIO-1)
733 prio = MAX_PRIO-1;
734 return prio;
735}
736
737/*
Peter Williams2dd73a42006-06-27 02:54:34 -0700738 * To aid in avoiding the subversion of "niceness" due to uneven distribution
739 * of tasks with abnormal "nice" values across CPUs the contribution that
740 * each task makes to its run queue's load is weighted according to its
741 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
742 * scaled version of the new time slice allocation that they receive on time
743 * slice expiry etc.
744 */
745
746/*
747 * Assume: static_prio_timeslice(NICE_TO_PRIO(0)) == DEF_TIMESLICE
748 * If static_prio_timeslice() is ever changed to break this assumption then
749 * this code will need modification
750 */
751#define TIME_SLICE_NICE_ZERO DEF_TIMESLICE
752#define LOAD_WEIGHT(lp) \
753 (((lp) * SCHED_LOAD_SCALE) / TIME_SLICE_NICE_ZERO)
754#define PRIO_TO_LOAD_WEIGHT(prio) \
755 LOAD_WEIGHT(static_prio_timeslice(prio))
756#define RTPRIO_TO_LOAD_WEIGHT(rp) \
757 (PRIO_TO_LOAD_WEIGHT(MAX_RT_PRIO) + LOAD_WEIGHT(rp))
758
Ingo Molnar36c8b582006-07-03 00:25:41 -0700759static void set_load_weight(struct task_struct *p)
Peter Williams2dd73a42006-06-27 02:54:34 -0700760{
Ingo Molnarb29739f2006-06-27 02:54:51 -0700761 if (has_rt_policy(p)) {
Peter Williams2dd73a42006-06-27 02:54:34 -0700762#ifdef CONFIG_SMP
763 if (p == task_rq(p)->migration_thread)
764 /*
765 * The migration thread does the actual balancing.
766 * Giving its load any weight will skew balancing
767 * adversely.
768 */
769 p->load_weight = 0;
770 else
771#endif
772 p->load_weight = RTPRIO_TO_LOAD_WEIGHT(p->rt_priority);
773 } else
774 p->load_weight = PRIO_TO_LOAD_WEIGHT(p->static_prio);
775}
776
Ingo Molnar36c8b582006-07-03 00:25:41 -0700777static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -0700778inc_raw_weighted_load(struct rq *rq, const struct task_struct *p)
Peter Williams2dd73a42006-06-27 02:54:34 -0700779{
780 rq->raw_weighted_load += p->load_weight;
781}
782
Ingo Molnar36c8b582006-07-03 00:25:41 -0700783static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -0700784dec_raw_weighted_load(struct rq *rq, const struct task_struct *p)
Peter Williams2dd73a42006-06-27 02:54:34 -0700785{
786 rq->raw_weighted_load -= p->load_weight;
787}
788
Ingo Molnar70b97a72006-07-03 00:25:42 -0700789static inline void inc_nr_running(struct task_struct *p, struct rq *rq)
Peter Williams2dd73a42006-06-27 02:54:34 -0700790{
791 rq->nr_running++;
792 inc_raw_weighted_load(rq, p);
793}
794
Ingo Molnar70b97a72006-07-03 00:25:42 -0700795static inline void dec_nr_running(struct task_struct *p, struct rq *rq)
Peter Williams2dd73a42006-06-27 02:54:34 -0700796{
797 rq->nr_running--;
798 dec_raw_weighted_load(rq, p);
799}
800
801/*
Ingo Molnarb29739f2006-06-27 02:54:51 -0700802 * Calculate the expected normal priority: i.e. priority
803 * without taking RT-inheritance into account. Might be
804 * boosted by interactivity modifiers. Changes upon fork,
805 * setprio syscalls, and whenever the interactivity
806 * estimator recalculates.
807 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700808static inline int normal_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700809{
810 int prio;
811
812 if (has_rt_policy(p))
813 prio = MAX_RT_PRIO-1 - p->rt_priority;
814 else
815 prio = __normal_prio(p);
816 return prio;
817}
818
819/*
820 * Calculate the current priority, i.e. the priority
821 * taken into account by the scheduler. This value might
822 * be boosted by RT tasks, or might be boosted by
823 * interactivity modifiers. Will be RT if the task got
824 * RT-boosted. If not then it returns p->normal_prio.
825 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700826static int effective_prio(struct task_struct *p)
Ingo Molnarb29739f2006-06-27 02:54:51 -0700827{
828 p->normal_prio = normal_prio(p);
829 /*
830 * If we are RT tasks or we were boosted to RT priority,
831 * keep the priority unchanged. Otherwise, update priority
832 * to the normal priority:
833 */
834 if (!rt_prio(p->prio))
835 return p->normal_prio;
836 return p->prio;
837}
838
839/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 * __activate_task - move a task to the runqueue.
841 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700842static void __activate_task(struct task_struct *p, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
Ingo Molnar70b97a72006-07-03 00:25:42 -0700844 struct prio_array *target = rq->active;
Con Kolivasd425b272006-03-31 02:31:29 -0800845
Linus Torvaldsf1adad72006-05-21 18:54:09 -0700846 if (batch_task(p))
Con Kolivasd425b272006-03-31 02:31:29 -0800847 target = rq->expired;
848 enqueue_task(p, target);
Peter Williams2dd73a42006-06-27 02:54:34 -0700849 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
851
852/*
853 * __activate_idle_task - move idle task to the _front_ of runqueue.
854 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700855static inline void __activate_idle_task(struct task_struct *p, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
857 enqueue_task_head(p, rq->active);
Peter Williams2dd73a42006-06-27 02:54:34 -0700858 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859}
860
Ingo Molnarb29739f2006-06-27 02:54:51 -0700861/*
862 * Recalculate p->normal_prio and p->prio after having slept,
863 * updating the sleep-average too:
864 */
Ingo Molnar36c8b582006-07-03 00:25:41 -0700865static int recalc_task_prio(struct task_struct *p, unsigned long long now)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866{
867 /* Caller must always ensure 'now >= p->timestamp' */
Con Kolivas72d28542006-06-27 02:54:30 -0700868 unsigned long sleep_time = now - p->timestamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Con Kolivasd425b272006-03-31 02:31:29 -0800870 if (batch_task(p))
Ingo Molnarb0a94992006-01-14 13:20:41 -0800871 sleep_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873 if (likely(sleep_time > 0)) {
874 /*
Con Kolivas72d28542006-06-27 02:54:30 -0700875 * This ceiling is set to the lowest priority that would allow
876 * a task to be reinserted into the active array on timeslice
877 * completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 */
Con Kolivas72d28542006-06-27 02:54:30 -0700879 unsigned long ceiling = INTERACTIVE_SLEEP(p);
Con Kolivase72ff0b2006-03-31 02:31:26 -0800880
Con Kolivas72d28542006-06-27 02:54:30 -0700881 if (p->mm && sleep_time > ceiling && p->sleep_avg < ceiling) {
882 /*
883 * Prevents user tasks from achieving best priority
884 * with one single large enough sleep.
885 */
886 p->sleep_avg = ceiling;
887 /*
888 * Using INTERACTIVE_SLEEP() as a ceiling places a
889 * nice(0) task 1ms sleep away from promotion, and
890 * gives it 700ms to round-robin with no chance of
891 * being demoted. This is more than generous, so
892 * mark this sleep as non-interactive to prevent the
893 * on-runqueue bonus logic from intervening should
894 * this task not receive cpu immediately.
895 */
896 p->sleep_type = SLEEP_NONINTERACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 } else {
898 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 * Tasks waking from uninterruptible sleep are
900 * limited in their sleep_avg rise as they
901 * are likely to be waiting on I/O
902 */
Con Kolivas3dee3862006-03-31 02:31:23 -0800903 if (p->sleep_type == SLEEP_NONINTERACTIVE && p->mm) {
Con Kolivas72d28542006-06-27 02:54:30 -0700904 if (p->sleep_avg >= ceiling)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 sleep_time = 0;
906 else if (p->sleep_avg + sleep_time >=
Con Kolivas72d28542006-06-27 02:54:30 -0700907 ceiling) {
908 p->sleep_avg = ceiling;
909 sleep_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 }
911 }
912
913 /*
914 * This code gives a bonus to interactive tasks.
915 *
916 * The boost works by updating the 'average sleep time'
917 * value here, based on ->timestamp. The more time a
918 * task spends sleeping, the higher the average gets -
919 * and the higher the priority boost gets as well.
920 */
921 p->sleep_avg += sleep_time;
922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 }
Con Kolivas72d28542006-06-27 02:54:30 -0700924 if (p->sleep_avg > NS_MAX_SLEEP_AVG)
925 p->sleep_avg = NS_MAX_SLEEP_AVG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 }
927
Chen Shanga3464a12005-06-25 14:57:31 -0700928 return effective_prio(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929}
930
931/*
932 * activate_task - move a task to the runqueue and do priority recalculation
933 *
934 * Update all the scheduling statistics stuff. (sleep average
935 * calculation, priority modifiers, etc.)
936 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700937static void activate_task(struct task_struct *p, struct rq *rq, int local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
939 unsigned long long now;
940
941 now = sched_clock();
942#ifdef CONFIG_SMP
943 if (!local) {
944 /* Compensate for drifting sched_clock */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700945 struct rq *this_rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 now = (now - this_rq->timestamp_last_tick)
947 + rq->timestamp_last_tick;
948 }
949#endif
950
Ingo Molnarece8a682006-12-06 20:37:24 -0800951 /*
952 * Sleep time is in units of nanosecs, so shift by 20 to get a
953 * milliseconds-range estimation of the amount of time that the task
954 * spent sleeping:
955 */
956 if (unlikely(prof_on == SLEEP_PROFILING)) {
957 if (p->state == TASK_UNINTERRUPTIBLE)
958 profile_hits(SLEEP_PROFILING, (void *)get_wchan(p),
959 (now - p->timestamp) >> 20);
960 }
961
Chen, Kenneth Wa47ab9372005-11-09 15:45:29 -0800962 if (!rt_task(p))
963 p->prio = recalc_task_prio(p, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965 /*
966 * This checks to make sure it's not an uninterruptible task
967 * that is now waking up.
968 */
Con Kolivas3dee3862006-03-31 02:31:23 -0800969 if (p->sleep_type == SLEEP_NORMAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 /*
971 * Tasks which were woken up by interrupts (ie. hw events)
972 * are most likely of interactive nature. So we give them
973 * the credit of extending their sleep time to the period
974 * of time they spend on the runqueue, waiting for execution
975 * on a CPU, first time around:
976 */
977 if (in_interrupt())
Con Kolivas3dee3862006-03-31 02:31:23 -0800978 p->sleep_type = SLEEP_INTERRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 else {
980 /*
981 * Normal first-time wakeups get a credit too for
982 * on-runqueue time, but it will be weighted down:
983 */
Con Kolivas3dee3862006-03-31 02:31:23 -0800984 p->sleep_type = SLEEP_INTERACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 }
986 }
987 p->timestamp = now;
988
989 __activate_task(p, rq);
990}
991
992/*
993 * deactivate_task - remove a task from the runqueue.
994 */
Ingo Molnar70b97a72006-07-03 00:25:42 -0700995static void deactivate_task(struct task_struct *p, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
Peter Williams2dd73a42006-06-27 02:54:34 -0700997 dec_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 dequeue_task(p, p->array);
999 p->array = NULL;
1000}
1001
1002/*
1003 * resched_task - mark a task 'to be rescheduled now'.
1004 *
1005 * On UP this means the setting of the need_resched flag, on SMP it
1006 * might also involve a cross-CPU call to trigger the scheduler on
1007 * the target CPU.
1008 */
1009#ifdef CONFIG_SMP
Andi Kleen495ab9c2006-06-26 13:59:11 +02001010
1011#ifndef tsk_is_polling
1012#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
1013#endif
1014
Ingo Molnar36c8b582006-07-03 00:25:41 -07001015static void resched_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016{
Nick Piggin64c7c8f2005-11-08 21:39:04 -08001017 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
1019 assert_spin_locked(&task_rq(p)->lock);
1020
Nick Piggin64c7c8f2005-11-08 21:39:04 -08001021 if (unlikely(test_tsk_thread_flag(p, TIF_NEED_RESCHED)))
1022 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Nick Piggin64c7c8f2005-11-08 21:39:04 -08001024 set_tsk_thread_flag(p, TIF_NEED_RESCHED);
1025
1026 cpu = task_cpu(p);
1027 if (cpu == smp_processor_id())
1028 return;
1029
Andi Kleen495ab9c2006-06-26 13:59:11 +02001030 /* NEED_RESCHED must be visible before we test polling */
Nick Piggin64c7c8f2005-11-08 21:39:04 -08001031 smp_mb();
Andi Kleen495ab9c2006-06-26 13:59:11 +02001032 if (!tsk_is_polling(p))
Nick Piggin64c7c8f2005-11-08 21:39:04 -08001033 smp_send_reschedule(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034}
1035#else
Ingo Molnar36c8b582006-07-03 00:25:41 -07001036static inline void resched_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037{
Nick Piggin64c7c8f2005-11-08 21:39:04 -08001038 assert_spin_locked(&task_rq(p)->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 set_tsk_need_resched(p);
1040}
1041#endif
1042
1043/**
1044 * task_curr - is this task currently executing on a CPU?
1045 * @p: the task in question.
1046 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001047inline int task_curr(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048{
1049 return cpu_curr(task_cpu(p)) == p;
1050}
1051
Peter Williams2dd73a42006-06-27 02:54:34 -07001052/* Used instead of source_load when we know the type == 0 */
1053unsigned long weighted_cpuload(const int cpu)
1054{
1055 return cpu_rq(cpu)->raw_weighted_load;
1056}
1057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058#ifdef CONFIG_SMP
Ingo Molnar70b97a72006-07-03 00:25:42 -07001059struct migration_req {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Ingo Molnar36c8b582006-07-03 00:25:41 -07001062 struct task_struct *task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 int dest_cpu;
1064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 struct completion done;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001066};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
1068/*
1069 * The task's runqueue lock must be held.
1070 * Returns true if you have to wait for migration thread.
1071 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001072static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07001073migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001075 struct rq *rq = task_rq(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077 /*
1078 * If the task is not on a runqueue (and not running), then
1079 * it is sufficient to simply update the task's cpu field.
1080 */
1081 if (!p->array && !task_running(rq, p)) {
1082 set_task_cpu(p, dest_cpu);
1083 return 0;
1084 }
1085
1086 init_completion(&req->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 req->task = p;
1088 req->dest_cpu = dest_cpu;
1089 list_add(&req->list, &rq->migration_queue);
Ingo Molnar48f24c42006-07-03 00:25:40 -07001090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 return 1;
1092}
1093
1094/*
1095 * wait_task_inactive - wait for a thread to unschedule.
1096 *
1097 * The caller must ensure that the task *will* unschedule sometime soon,
1098 * else this function might spin for a *long* time. This function can't
1099 * be called with interrupts off, or it may introduce deadlock with
1100 * smp_call_function() if an IPI is sent by the same process we are
1101 * waiting to become inactive.
1102 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001103void wait_task_inactive(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104{
1105 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001106 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 int preempted;
1108
1109repeat:
1110 rq = task_rq_lock(p, &flags);
1111 /* Must be off runqueue entirely, not preempted. */
1112 if (unlikely(p->array || task_running(rq, p))) {
1113 /* If it's preempted, we yield. It could be a while. */
1114 preempted = !task_running(rq, p);
1115 task_rq_unlock(rq, &flags);
1116 cpu_relax();
1117 if (preempted)
1118 yield();
1119 goto repeat;
1120 }
1121 task_rq_unlock(rq, &flags);
1122}
1123
1124/***
1125 * kick_process - kick a running thread to enter/exit the kernel
1126 * @p: the to-be-kicked thread
1127 *
1128 * Cause a process which is running on another CPU to enter
1129 * kernel-mode, without any delay. (to get signals handled.)
1130 *
1131 * NOTE: this function doesnt have to take the runqueue lock,
1132 * because all it wants to ensure is that the remote task enters
1133 * the kernel. If the IPI races and the task has been migrated
1134 * to another CPU then no harm is done and the purpose has been
1135 * achieved as well.
1136 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001137void kick_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138{
1139 int cpu;
1140
1141 preempt_disable();
1142 cpu = task_cpu(p);
1143 if ((cpu != smp_processor_id()) && task_curr(p))
1144 smp_send_reschedule(cpu);
1145 preempt_enable();
1146}
1147
1148/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001149 * Return a low guess at the load of a migration-source cpu weighted
1150 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 *
1152 * We want to under-estimate the load of migration sources, to
1153 * balance conservatively.
1154 */
Con Kolivasb9104722005-11-08 21:38:55 -08001155static inline unsigned long source_load(int cpu, int type)
1156{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001157 struct rq *rq = cpu_rq(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001158
Peter Williams2dd73a42006-06-27 02:54:34 -07001159 if (type == 0)
1160 return rq->raw_weighted_load;
1161
1162 return min(rq->cpu_load[type-1], rq->raw_weighted_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163}
1164
1165/*
Peter Williams2dd73a42006-06-27 02:54:34 -07001166 * Return a high guess at the load of a migration-target cpu weighted
1167 * according to the scheduling class and "nice" value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 */
Con Kolivasb9104722005-11-08 21:38:55 -08001169static inline unsigned long target_load(int cpu, int type)
1170{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001171 struct rq *rq = cpu_rq(cpu);
Nick Piggina2000572006-02-10 01:51:02 -08001172
Peter Williams2dd73a42006-06-27 02:54:34 -07001173 if (type == 0)
1174 return rq->raw_weighted_load;
1175
1176 return max(rq->cpu_load[type-1], rq->raw_weighted_load);
1177}
1178
1179/*
1180 * Return the average load per task on the cpu's run queue
1181 */
1182static inline unsigned long cpu_avg_load_per_task(int cpu)
1183{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001184 struct rq *rq = cpu_rq(cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07001185 unsigned long n = rq->nr_running;
1186
Ingo Molnar48f24c42006-07-03 00:25:40 -07001187 return n ? rq->raw_weighted_load / n : SCHED_LOAD_SCALE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188}
1189
Nick Piggin147cbb42005-06-25 14:57:19 -07001190/*
1191 * find_idlest_group finds and returns the least busy CPU group within the
1192 * domain.
1193 */
1194static struct sched_group *
1195find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
1196{
1197 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
1198 unsigned long min_load = ULONG_MAX, this_load = 0;
1199 int load_idx = sd->forkexec_idx;
1200 int imbalance = 100 + (sd->imbalance_pct-100)/2;
1201
1202 do {
1203 unsigned long load, avg_load;
1204 int local_group;
1205 int i;
1206
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001207 /* Skip over this group if it has no CPUs allowed */
1208 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
1209 goto nextgroup;
1210
Nick Piggin147cbb42005-06-25 14:57:19 -07001211 local_group = cpu_isset(this_cpu, group->cpumask);
Nick Piggin147cbb42005-06-25 14:57:19 -07001212
1213 /* Tally up the load of all CPUs in the group */
1214 avg_load = 0;
1215
1216 for_each_cpu_mask(i, group->cpumask) {
1217 /* Bias balancing toward cpus of our domain */
1218 if (local_group)
1219 load = source_load(i, load_idx);
1220 else
1221 load = target_load(i, load_idx);
1222
1223 avg_load += load;
1224 }
1225
1226 /* Adjust by relative CPU power of the group */
1227 avg_load = (avg_load * SCHED_LOAD_SCALE) / group->cpu_power;
1228
1229 if (local_group) {
1230 this_load = avg_load;
1231 this = group;
1232 } else if (avg_load < min_load) {
1233 min_load = avg_load;
1234 idlest = group;
1235 }
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001236nextgroup:
Nick Piggin147cbb42005-06-25 14:57:19 -07001237 group = group->next;
1238 } while (group != sd->groups);
1239
1240 if (!idlest || 100*this_load < imbalance*min_load)
1241 return NULL;
1242 return idlest;
1243}
1244
1245/*
Satoru Takeuchi0feaece2006-10-03 01:14:10 -07001246 * find_idlest_cpu - find the idlest cpu among the cpus in group.
Nick Piggin147cbb42005-06-25 14:57:19 -07001247 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07001248static int
1249find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu)
Nick Piggin147cbb42005-06-25 14:57:19 -07001250{
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001251 cpumask_t tmp;
Nick Piggin147cbb42005-06-25 14:57:19 -07001252 unsigned long load, min_load = ULONG_MAX;
1253 int idlest = -1;
1254 int i;
1255
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001256 /* Traverse only the allowed CPUs */
1257 cpus_and(tmp, group->cpumask, p->cpus_allowed);
1258
1259 for_each_cpu_mask(i, tmp) {
Peter Williams2dd73a42006-06-27 02:54:34 -07001260 load = weighted_cpuload(i);
Nick Piggin147cbb42005-06-25 14:57:19 -07001261
1262 if (load < min_load || (load == min_load && i == this_cpu)) {
1263 min_load = load;
1264 idlest = i;
1265 }
1266 }
1267
1268 return idlest;
1269}
1270
Nick Piggin476d1392005-06-25 14:57:29 -07001271/*
1272 * sched_balance_self: balance the current task (running on cpu) in domains
1273 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
1274 * SD_BALANCE_EXEC.
1275 *
1276 * Balance, ie. select the least loaded group.
1277 *
1278 * Returns the target CPU number, or the same CPU if no balancing is needed.
1279 *
1280 * preempt must be disabled.
1281 */
1282static int sched_balance_self(int cpu, int flag)
1283{
1284 struct task_struct *t = current;
1285 struct sched_domain *tmp, *sd = NULL;
Nick Piggin147cbb42005-06-25 14:57:19 -07001286
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001287 for_each_domain(cpu, tmp) {
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07001288 /*
1289 * If power savings logic is enabled for a domain, stop there.
1290 */
1291 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
1292 break;
Nick Piggin476d1392005-06-25 14:57:29 -07001293 if (tmp->flags & flag)
1294 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001295 }
Nick Piggin476d1392005-06-25 14:57:29 -07001296
1297 while (sd) {
1298 cpumask_t span;
1299 struct sched_group *group;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001300 int new_cpu, weight;
1301
1302 if (!(sd->flags & flag)) {
1303 sd = sd->child;
1304 continue;
1305 }
Nick Piggin476d1392005-06-25 14:57:29 -07001306
1307 span = sd->span;
1308 group = find_idlest_group(sd, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001309 if (!group) {
1310 sd = sd->child;
1311 continue;
1312 }
Nick Piggin476d1392005-06-25 14:57:29 -07001313
M.Baris Demirayda5a5522005-09-10 00:26:09 -07001314 new_cpu = find_idlest_cpu(group, t, cpu);
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001315 if (new_cpu == -1 || new_cpu == cpu) {
1316 /* Now try balancing at a lower domain level of cpu */
1317 sd = sd->child;
1318 continue;
1319 }
Nick Piggin476d1392005-06-25 14:57:29 -07001320
Siddha, Suresh B1a848872006-10-03 01:14:08 -07001321 /* Now try balancing at a lower domain level of new_cpu */
Nick Piggin476d1392005-06-25 14:57:29 -07001322 cpu = new_cpu;
Nick Piggin476d1392005-06-25 14:57:29 -07001323 sd = NULL;
1324 weight = cpus_weight(span);
1325 for_each_domain(cpu, tmp) {
1326 if (weight <= cpus_weight(tmp->span))
1327 break;
1328 if (tmp->flags & flag)
1329 sd = tmp;
1330 }
1331 /* while loop will break here if sd == NULL */
1332 }
1333
1334 return cpu;
1335}
1336
1337#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
1339/*
1340 * wake_idle() will wake a task on an idle cpu if task->cpu is
1341 * not idle and an idle cpu is available. The span of cpus to
1342 * search starts with cpus closest then further out as needed,
1343 * so we always favor a closer, idle cpu.
1344 *
1345 * Returns the CPU we should wake onto.
1346 */
1347#if defined(ARCH_HAS_SCHED_WAKE_IDLE)
Ingo Molnar36c8b582006-07-03 00:25:41 -07001348static int wake_idle(int cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349{
1350 cpumask_t tmp;
1351 struct sched_domain *sd;
1352 int i;
1353
1354 if (idle_cpu(cpu))
1355 return cpu;
1356
1357 for_each_domain(cpu, sd) {
1358 if (sd->flags & SD_WAKE_IDLE) {
Nick Piggine0f364f2005-06-25 14:57:06 -07001359 cpus_and(tmp, sd->span, p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 for_each_cpu_mask(i, tmp) {
1361 if (idle_cpu(i))
1362 return i;
1363 }
1364 }
Nick Piggine0f364f2005-06-25 14:57:06 -07001365 else
1366 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 }
1368 return cpu;
1369}
1370#else
Ingo Molnar36c8b582006-07-03 00:25:41 -07001371static inline int wake_idle(int cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372{
1373 return cpu;
1374}
1375#endif
1376
1377/***
1378 * try_to_wake_up - wake up a thread
1379 * @p: the to-be-woken-up thread
1380 * @state: the mask of task states that can be woken
1381 * @sync: do a synchronous wakeup?
1382 *
1383 * Put it on the run-queue if it's not already there. The "current"
1384 * thread is always on the run-queue (except when the actual
1385 * re-schedule is in progress), and as such you're allowed to do
1386 * the simpler "current->state = TASK_RUNNING" to mark yourself
1387 * runnable without the overhead of this.
1388 *
1389 * returns failure only if the task is already active.
1390 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001391static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392{
1393 int cpu, this_cpu, success = 0;
1394 unsigned long flags;
1395 long old_state;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001396 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397#ifdef CONFIG_SMP
Nick Piggin78979862005-06-25 14:57:13 -07001398 struct sched_domain *sd, *this_sd = NULL;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001399 unsigned long load, this_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 int new_cpu;
1401#endif
1402
1403 rq = task_rq_lock(p, &flags);
1404 old_state = p->state;
1405 if (!(old_state & state))
1406 goto out;
1407
1408 if (p->array)
1409 goto out_running;
1410
1411 cpu = task_cpu(p);
1412 this_cpu = smp_processor_id();
1413
1414#ifdef CONFIG_SMP
1415 if (unlikely(task_running(rq, p)))
1416 goto out_activate;
1417
Nick Piggin78979862005-06-25 14:57:13 -07001418 new_cpu = cpu;
1419
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 schedstat_inc(rq, ttwu_cnt);
1421 if (cpu == this_cpu) {
1422 schedstat_inc(rq, ttwu_local);
Nick Piggin78979862005-06-25 14:57:13 -07001423 goto out_set_cpu;
1424 }
1425
1426 for_each_domain(this_cpu, sd) {
1427 if (cpu_isset(cpu, sd->span)) {
1428 schedstat_inc(sd, ttwu_wake_remote);
1429 this_sd = sd;
1430 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 }
1432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
Nick Piggin78979862005-06-25 14:57:13 -07001434 if (unlikely(!cpu_isset(this_cpu, p->cpus_allowed)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 goto out_set_cpu;
1436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 /*
Nick Piggin78979862005-06-25 14:57:13 -07001438 * Check for affine wakeup and passive balancing possibilities.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 */
Nick Piggin78979862005-06-25 14:57:13 -07001440 if (this_sd) {
1441 int idx = this_sd->wake_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 unsigned int imbalance;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Nick Piggina3f21bc2005-06-25 14:57:15 -07001444 imbalance = 100 + (this_sd->imbalance_pct - 100) / 2;
1445
Nick Piggin78979862005-06-25 14:57:13 -07001446 load = source_load(cpu, idx);
1447 this_load = target_load(this_cpu, idx);
1448
Nick Piggin78979862005-06-25 14:57:13 -07001449 new_cpu = this_cpu; /* Wake to this CPU if we can */
1450
Nick Piggina3f21bc2005-06-25 14:57:15 -07001451 if (this_sd->flags & SD_WAKE_AFFINE) {
1452 unsigned long tl = this_load;
Peter Williams2dd73a42006-06-27 02:54:34 -07001453 unsigned long tl_per_task = cpu_avg_load_per_task(this_cpu);
1454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 /*
Nick Piggina3f21bc2005-06-25 14:57:15 -07001456 * If sync wakeup then subtract the (maximum possible)
1457 * effect of the currently running task from the load
1458 * of the current CPU:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 */
Nick Piggina3f21bc2005-06-25 14:57:15 -07001460 if (sync)
Peter Williams2dd73a42006-06-27 02:54:34 -07001461 tl -= current->load_weight;
Nick Piggina3f21bc2005-06-25 14:57:15 -07001462
1463 if ((tl <= load &&
Peter Williams2dd73a42006-06-27 02:54:34 -07001464 tl + target_load(cpu, idx) <= tl_per_task) ||
1465 100*(tl + p->load_weight) <= imbalance*load) {
Nick Piggina3f21bc2005-06-25 14:57:15 -07001466 /*
1467 * This domain has SD_WAKE_AFFINE and
1468 * p is cache cold in this domain, and
1469 * there is no bad imbalance.
1470 */
1471 schedstat_inc(this_sd, ttwu_move_affine);
1472 goto out_set_cpu;
1473 }
1474 }
1475
1476 /*
1477 * Start passive balancing when half the imbalance_pct
1478 * limit is reached.
1479 */
1480 if (this_sd->flags & SD_WAKE_BALANCE) {
1481 if (imbalance*this_load <= 100*load) {
1482 schedstat_inc(this_sd, ttwu_move_balance);
1483 goto out_set_cpu;
1484 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 }
1486 }
1487
1488 new_cpu = cpu; /* Could not wake to this_cpu. Wake to cpu instead */
1489out_set_cpu:
1490 new_cpu = wake_idle(new_cpu, p);
1491 if (new_cpu != cpu) {
1492 set_task_cpu(p, new_cpu);
1493 task_rq_unlock(rq, &flags);
1494 /* might preempt at this point */
1495 rq = task_rq_lock(p, &flags);
1496 old_state = p->state;
1497 if (!(old_state & state))
1498 goto out;
1499 if (p->array)
1500 goto out_running;
1501
1502 this_cpu = smp_processor_id();
1503 cpu = task_cpu(p);
1504 }
1505
1506out_activate:
1507#endif /* CONFIG_SMP */
1508 if (old_state == TASK_UNINTERRUPTIBLE) {
1509 rq->nr_uninterruptible--;
1510 /*
1511 * Tasks on involuntary sleep don't earn
1512 * sleep_avg beyond just interactive state.
1513 */
Con Kolivas3dee3862006-03-31 02:31:23 -08001514 p->sleep_type = SLEEP_NONINTERACTIVE;
Con Kolivase7c38cb2006-03-31 02:31:25 -08001515 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
1517 /*
Ingo Molnard79fc0f2005-09-10 00:26:12 -07001518 * Tasks that have marked their sleep as noninteractive get
Con Kolivase7c38cb2006-03-31 02:31:25 -08001519 * woken up with their sleep average not weighted in an
1520 * interactive way.
Ingo Molnard79fc0f2005-09-10 00:26:12 -07001521 */
Con Kolivase7c38cb2006-03-31 02:31:25 -08001522 if (old_state & TASK_NONINTERACTIVE)
1523 p->sleep_type = SLEEP_NONINTERACTIVE;
1524
1525
1526 activate_task(p, rq, cpu == this_cpu);
Ingo Molnard79fc0f2005-09-10 00:26:12 -07001527 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 * Sync wakeups (i.e. those types of wakeups where the waker
1529 * has indicated that it will leave the CPU in short order)
1530 * don't trigger a preemption, if the woken up task will run on
1531 * this cpu. (in this case the 'I will reschedule' promise of
1532 * the waker guarantees that the freshly woken up task is going
1533 * to be considered on this CPU.)
1534 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 if (!sync || cpu != this_cpu) {
1536 if (TASK_PREEMPTS_CURR(p, rq))
1537 resched_task(rq->curr);
1538 }
1539 success = 1;
1540
1541out_running:
1542 p->state = TASK_RUNNING;
1543out:
1544 task_rq_unlock(rq, &flags);
1545
1546 return success;
1547}
1548
Ingo Molnar36c8b582006-07-03 00:25:41 -07001549int fastcall wake_up_process(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550{
1551 return try_to_wake_up(p, TASK_STOPPED | TASK_TRACED |
1552 TASK_INTERRUPTIBLE | TASK_UNINTERRUPTIBLE, 0);
1553}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554EXPORT_SYMBOL(wake_up_process);
1555
Ingo Molnar36c8b582006-07-03 00:25:41 -07001556int fastcall wake_up_state(struct task_struct *p, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557{
1558 return try_to_wake_up(p, state, 0);
1559}
1560
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561/*
1562 * Perform scheduler related setup for a newly forked process p.
1563 * p is forked by current.
1564 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001565void fastcall sched_fork(struct task_struct *p, int clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566{
Nick Piggin476d1392005-06-25 14:57:29 -07001567 int cpu = get_cpu();
1568
1569#ifdef CONFIG_SMP
1570 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
1571#endif
1572 set_task_cpu(p, cpu);
1573
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 /*
1575 * We mark the process as running here, but have not actually
1576 * inserted it onto the runqueue yet. This guarantees that
1577 * nobody will actually run it, and a signal or other external
1578 * event cannot wake it up and insert it on the runqueue either.
1579 */
1580 p->state = TASK_RUNNING;
Ingo Molnarb29739f2006-06-27 02:54:51 -07001581
1582 /*
1583 * Make sure we do not leak PI boosting priority to the child:
1584 */
1585 p->prio = current->normal_prio;
1586
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 INIT_LIST_HEAD(&p->run_list);
1588 p->array = NULL;
Chandra Seetharaman52f17b62006-07-14 00:24:38 -07001589#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
1590 if (unlikely(sched_info_on()))
1591 memset(&p->sched_info, 0, sizeof(p->sched_info));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592#endif
Chen, Kenneth Wd6077cb2006-02-14 13:53:10 -08001593#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
Nick Piggin4866cde2005-06-25 14:57:23 -07001594 p->oncpu = 0;
1595#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596#ifdef CONFIG_PREEMPT
Nick Piggin4866cde2005-06-25 14:57:23 -07001597 /* Want to start with kernel preemption disabled. */
Al Viroa1261f52005-11-13 16:06:55 -08001598 task_thread_info(p)->preempt_count = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599#endif
1600 /*
1601 * Share the timeslice between parent and child, thus the
1602 * total amount of pending timeslices in the system doesn't change,
1603 * resulting in more scheduling fairness.
1604 */
1605 local_irq_disable();
1606 p->time_slice = (current->time_slice + 1) >> 1;
1607 /*
1608 * The remainder of the first timeslice might be recovered by
1609 * the parent if the child exits early enough.
1610 */
1611 p->first_time_slice = 1;
1612 current->time_slice >>= 1;
1613 p->timestamp = sched_clock();
1614 if (unlikely(!current->time_slice)) {
1615 /*
1616 * This case is rare, it happens when the parent has only
1617 * a single jiffy left from its timeslice. Taking the
1618 * runqueue lock is not a problem.
1619 */
1620 current->time_slice = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 scheduler_tick();
Nick Piggin476d1392005-06-25 14:57:29 -07001622 }
1623 local_irq_enable();
1624 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625}
1626
1627/*
1628 * wake_up_new_task - wake up a newly created task for the first time.
1629 *
1630 * This function will do some initial scheduler statistics housekeeping
1631 * that must be done for every newly created context, then puts the task
1632 * on the runqueue and wakes it.
1633 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001634void fastcall wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001636 struct rq *rq, *this_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 unsigned long flags;
1638 int this_cpu, cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
1640 rq = task_rq_lock(p, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 BUG_ON(p->state != TASK_RUNNING);
Nick Piggin147cbb42005-06-25 14:57:19 -07001642 this_cpu = smp_processor_id();
1643 cpu = task_cpu(p);
1644
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 /*
1646 * We decrease the sleep average of forking parents
1647 * and children as well, to keep max-interactive tasks
1648 * from forking tasks that are max-interactive. The parent
1649 * (current) is done further down, under its lock.
1650 */
1651 p->sleep_avg = JIFFIES_TO_NS(CURRENT_BONUS(p) *
1652 CHILD_PENALTY / 100 * MAX_SLEEP_AVG / MAX_BONUS);
1653
1654 p->prio = effective_prio(p);
1655
1656 if (likely(cpu == this_cpu)) {
1657 if (!(clone_flags & CLONE_VM)) {
1658 /*
1659 * The VM isn't cloned, so we're in a good position to
1660 * do child-runs-first in anticipation of an exec. This
1661 * usually avoids a lot of COW overhead.
1662 */
1663 if (unlikely(!current->array))
1664 __activate_task(p, rq);
1665 else {
1666 p->prio = current->prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07001667 p->normal_prio = current->normal_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 list_add_tail(&p->run_list, &current->run_list);
1669 p->array = current->array;
1670 p->array->nr_active++;
Peter Williams2dd73a42006-06-27 02:54:34 -07001671 inc_nr_running(p, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 }
1673 set_need_resched();
1674 } else
1675 /* Run child last */
1676 __activate_task(p, rq);
1677 /*
1678 * We skip the following code due to cpu == this_cpu
1679 *
1680 * task_rq_unlock(rq, &flags);
1681 * this_rq = task_rq_lock(current, &flags);
1682 */
1683 this_rq = rq;
1684 } else {
1685 this_rq = cpu_rq(this_cpu);
1686
1687 /*
1688 * Not the local CPU - must adjust timestamp. This should
1689 * get optimised away in the !CONFIG_SMP case.
1690 */
1691 p->timestamp = (p->timestamp - this_rq->timestamp_last_tick)
1692 + rq->timestamp_last_tick;
1693 __activate_task(p, rq);
1694 if (TASK_PREEMPTS_CURR(p, rq))
1695 resched_task(rq->curr);
1696
1697 /*
1698 * Parent and child are on different CPUs, now get the
1699 * parent runqueue to update the parent's ->sleep_avg:
1700 */
1701 task_rq_unlock(rq, &flags);
1702 this_rq = task_rq_lock(current, &flags);
1703 }
1704 current->sleep_avg = JIFFIES_TO_NS(CURRENT_BONUS(current) *
1705 PARENT_PENALTY / 100 * MAX_SLEEP_AVG / MAX_BONUS);
1706 task_rq_unlock(this_rq, &flags);
1707}
1708
1709/*
1710 * Potentially available exiting-child timeslices are
1711 * retrieved here - this way the parent does not get
1712 * penalized for creating too many threads.
1713 *
1714 * (this cannot be used to 'generate' timeslices
1715 * artificially, because any timeslice recovered here
1716 * was given away by the parent in the first place.)
1717 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001718void fastcall sched_exit(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719{
1720 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07001721 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
1723 /*
1724 * If the child was a (relative-) CPU hog then decrease
1725 * the sleep_avg of the parent as well.
1726 */
1727 rq = task_rq_lock(p->parent, &flags);
Oleg Nesterov889dfaf2005-11-04 18:54:30 +03001728 if (p->first_time_slice && task_cpu(p) == task_cpu(p->parent)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 p->parent->time_slice += p->time_slice;
1730 if (unlikely(p->parent->time_slice > task_timeslice(p)))
1731 p->parent->time_slice = task_timeslice(p);
1732 }
1733 if (p->sleep_avg < p->parent->sleep_avg)
1734 p->parent->sleep_avg = p->parent->sleep_avg /
1735 (EXIT_WEIGHT + 1) * EXIT_WEIGHT + p->sleep_avg /
1736 (EXIT_WEIGHT + 1);
1737 task_rq_unlock(rq, &flags);
1738}
1739
1740/**
Nick Piggin4866cde2005-06-25 14:57:23 -07001741 * prepare_task_switch - prepare to switch tasks
1742 * @rq: the runqueue preparing to switch
1743 * @next: the task we are going to switch to.
1744 *
1745 * This is called with the rq lock held and interrupts off. It must
1746 * be paired with a subsequent finish_task_switch after the context
1747 * switch.
1748 *
1749 * prepare_task_switch sets up locking and calls architecture specific
1750 * hooks.
1751 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001752static inline void prepare_task_switch(struct rq *rq, struct task_struct *next)
Nick Piggin4866cde2005-06-25 14:57:23 -07001753{
1754 prepare_lock_switch(rq, next);
1755 prepare_arch_switch(next);
1756}
1757
1758/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 * finish_task_switch - clean up after a task-switch
Jeff Garzik344baba2005-09-07 01:15:17 -04001760 * @rq: runqueue associated with task-switch
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 * @prev: the thread we just switched away from.
1762 *
Nick Piggin4866cde2005-06-25 14:57:23 -07001763 * finish_task_switch must be called after the context switch, paired
1764 * with a prepare_task_switch call before the context switch.
1765 * finish_task_switch will reconcile locking set up by prepare_task_switch,
1766 * and do any other architecture-specific cleanup actions.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 *
1768 * Note that we may have delayed dropping an mm in context_switch(). If
1769 * so, we finish that here outside of the runqueue lock. (Doing it
1770 * with the lock held can cause deadlocks; see schedule() for
1771 * details.)
1772 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001773static inline void finish_task_switch(struct rq *rq, struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 __releases(rq->lock)
1775{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 struct mm_struct *mm = rq->prev_mm;
Oleg Nesterov55a101f2006-09-29 02:01:10 -07001777 long prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
1779 rq->prev_mm = NULL;
1780
1781 /*
1782 * A task struct has one reference for the use as "current".
Oleg Nesterovc394cc92006-09-29 02:01:11 -07001783 * If a task dies, then it sets TASK_DEAD in tsk->state and calls
Oleg Nesterov55a101f2006-09-29 02:01:10 -07001784 * schedule one last time. The schedule call will never return, and
1785 * the scheduled task must drop that reference.
Oleg Nesterovc394cc92006-09-29 02:01:11 -07001786 * The test for TASK_DEAD must occur while the runqueue locks are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 * still held, otherwise prev could be scheduled on another cpu, die
1788 * there before we look at prev->state, and then the reference would
1789 * be dropped twice.
1790 * Manfred Spraul <manfred@colorfullife.com>
1791 */
Oleg Nesterov55a101f2006-09-29 02:01:10 -07001792 prev_state = prev->state;
Nick Piggin4866cde2005-06-25 14:57:23 -07001793 finish_arch_switch(prev);
1794 finish_lock_switch(rq, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 if (mm)
1796 mmdrop(mm);
Oleg Nesterovc394cc92006-09-29 02:01:11 -07001797 if (unlikely(prev_state == TASK_DEAD)) {
bibo maoc6fd91f2006-03-26 01:38:20 -08001798 /*
1799 * Remove function-return probe instances associated with this
1800 * task and put them back on the free list.
1801 */
1802 kprobe_flush_task(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 put_task_struct(prev);
bibo maoc6fd91f2006-03-26 01:38:20 -08001804 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805}
1806
1807/**
1808 * schedule_tail - first thing a freshly forked thread must call.
1809 * @prev: the thread we just switched away from.
1810 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001811asmlinkage void schedule_tail(struct task_struct *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 __releases(rq->lock)
1813{
Ingo Molnar70b97a72006-07-03 00:25:42 -07001814 struct rq *rq = this_rq();
1815
Nick Piggin4866cde2005-06-25 14:57:23 -07001816 finish_task_switch(rq, prev);
1817#ifdef __ARCH_WANT_UNLOCKED_CTXSW
1818 /* In this case, finish_task_switch does not reenable preemption */
1819 preempt_enable();
1820#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 if (current->set_child_tid)
1822 put_user(current->pid, current->set_child_tid);
1823}
1824
1825/*
1826 * context_switch - switch to the new MM and the new
1827 * thread's register state.
1828 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07001829static inline struct task_struct *
Ingo Molnar70b97a72006-07-03 00:25:42 -07001830context_switch(struct rq *rq, struct task_struct *prev,
Ingo Molnar36c8b582006-07-03 00:25:41 -07001831 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832{
1833 struct mm_struct *mm = next->mm;
1834 struct mm_struct *oldmm = prev->active_mm;
1835
Nick Pigginbeed33a2006-10-11 01:21:52 -07001836 if (!mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 next->active_mm = oldmm;
1838 atomic_inc(&oldmm->mm_count);
1839 enter_lazy_tlb(oldmm, next);
1840 } else
1841 switch_mm(oldmm, mm, next);
1842
Nick Pigginbeed33a2006-10-11 01:21:52 -07001843 if (!prev->mm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 prev->active_mm = NULL;
1845 WARN_ON(rq->prev_mm);
1846 rq->prev_mm = oldmm;
1847 }
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07001848 /*
1849 * Since the runqueue lock will be released by the next
1850 * task (which is an invalid locking op but in the case
1851 * of the scheduler it's an obvious special-case), so we
1852 * do an early lockdep release here:
1853 */
1854#ifndef __ARCH_WANT_UNLOCKED_CTXSW
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07001855 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Ingo Molnar3a5f5e42006-07-14 00:24:27 -07001856#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
1858 /* Here we just switch the register state and the stack. */
1859 switch_to(prev, next, prev);
1860
1861 return prev;
1862}
1863
1864/*
1865 * nr_running, nr_uninterruptible and nr_context_switches:
1866 *
1867 * externally visible scheduler statistics: current number of runnable
1868 * threads, current number of uninterruptible-sleeping threads, total
1869 * number of context switches performed since bootup.
1870 */
1871unsigned long nr_running(void)
1872{
1873 unsigned long i, sum = 0;
1874
1875 for_each_online_cpu(i)
1876 sum += cpu_rq(i)->nr_running;
1877
1878 return sum;
1879}
1880
1881unsigned long nr_uninterruptible(void)
1882{
1883 unsigned long i, sum = 0;
1884
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001885 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 sum += cpu_rq(i)->nr_uninterruptible;
1887
1888 /*
1889 * Since we read the counters lockless, it might be slightly
1890 * inaccurate. Do not allow it to go below zero though:
1891 */
1892 if (unlikely((long)sum < 0))
1893 sum = 0;
1894
1895 return sum;
1896}
1897
1898unsigned long long nr_context_switches(void)
1899{
Steven Rostedtcc94abf2006-06-27 02:54:31 -07001900 int i;
1901 unsigned long long sum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001903 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 sum += cpu_rq(i)->nr_switches;
1905
1906 return sum;
1907}
1908
1909unsigned long nr_iowait(void)
1910{
1911 unsigned long i, sum = 0;
1912
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08001913 for_each_possible_cpu(i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 sum += atomic_read(&cpu_rq(i)->nr_iowait);
1915
1916 return sum;
1917}
1918
Jack Steinerdb1b1fe2006-03-31 02:31:21 -08001919unsigned long nr_active(void)
1920{
1921 unsigned long i, running = 0, uninterruptible = 0;
1922
1923 for_each_online_cpu(i) {
1924 running += cpu_rq(i)->nr_running;
1925 uninterruptible += cpu_rq(i)->nr_uninterruptible;
1926 }
1927
1928 if (unlikely((long)uninterruptible < 0))
1929 uninterruptible = 0;
1930
1931 return running + uninterruptible;
1932}
1933
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934#ifdef CONFIG_SMP
1935
1936/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07001937 * Is this task likely cache-hot:
1938 */
1939static inline int
1940task_hot(struct task_struct *p, unsigned long long now, struct sched_domain *sd)
1941{
1942 return (long long)(now - p->last_ran) < (long long)sd->cache_hot_time;
1943}
1944
1945/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 * double_rq_lock - safely lock two runqueues
1947 *
1948 * Note this does not disable interrupts like task_rq_lock,
1949 * you need to do so manually before calling.
1950 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001951static void double_rq_lock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 __acquires(rq1->lock)
1953 __acquires(rq2->lock)
1954{
Kirill Korotaev054b9102006-12-10 02:20:11 -08001955 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 if (rq1 == rq2) {
1957 spin_lock(&rq1->lock);
1958 __acquire(rq2->lock); /* Fake it out ;) */
1959 } else {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07001960 if (rq1 < rq2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 spin_lock(&rq1->lock);
1962 spin_lock(&rq2->lock);
1963 } else {
1964 spin_lock(&rq2->lock);
1965 spin_lock(&rq1->lock);
1966 }
1967 }
1968}
1969
1970/*
1971 * double_rq_unlock - safely unlock two runqueues
1972 *
1973 * Note this does not restore interrupts like task_rq_unlock,
1974 * you need to do so manually after calling.
1975 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001976static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 __releases(rq1->lock)
1978 __releases(rq2->lock)
1979{
1980 spin_unlock(&rq1->lock);
1981 if (rq1 != rq2)
1982 spin_unlock(&rq2->lock);
1983 else
1984 __release(rq2->lock);
1985}
1986
1987/*
1988 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
1989 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07001990static void double_lock_balance(struct rq *this_rq, struct rq *busiest)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 __releases(this_rq->lock)
1992 __acquires(busiest->lock)
1993 __acquires(this_rq->lock)
1994{
Kirill Korotaev054b9102006-12-10 02:20:11 -08001995 if (unlikely(!irqs_disabled())) {
1996 /* printk() doesn't work good under rq->lock */
1997 spin_unlock(&this_rq->lock);
1998 BUG_ON(1);
1999 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 if (unlikely(!spin_trylock(&busiest->lock))) {
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002001 if (busiest < this_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 spin_unlock(&this_rq->lock);
2003 spin_lock(&busiest->lock);
2004 spin_lock(&this_rq->lock);
2005 } else
2006 spin_lock(&busiest->lock);
2007 }
2008}
2009
2010/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 * If dest_cpu is allowed for this process, migrate the task to it.
2012 * This is accomplished by forcing the cpu_allowed mask to only
2013 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
2014 * the cpu_allowed mask is restored.
2015 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002016static void sched_migrate_task(struct task_struct *p, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002018 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002020 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
2022 rq = task_rq_lock(p, &flags);
2023 if (!cpu_isset(dest_cpu, p->cpus_allowed)
2024 || unlikely(cpu_is_offline(dest_cpu)))
2025 goto out;
2026
2027 /* force the process onto the specified CPU */
2028 if (migrate_task(p, dest_cpu, &req)) {
2029 /* Need to wait for migration thread (might exit: take ref). */
2030 struct task_struct *mt = rq->migration_thread;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002031
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 get_task_struct(mt);
2033 task_rq_unlock(rq, &flags);
2034 wake_up_process(mt);
2035 put_task_struct(mt);
2036 wait_for_completion(&req.done);
Ingo Molnar36c8b582006-07-03 00:25:41 -07002037
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 return;
2039 }
2040out:
2041 task_rq_unlock(rq, &flags);
2042}
2043
2044/*
Nick Piggin476d1392005-06-25 14:57:29 -07002045 * sched_exec - execve() is a valuable balancing opportunity, because at
2046 * this point the task has the smallest effective memory and cache footprint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 */
2048void sched_exec(void)
2049{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 int new_cpu, this_cpu = get_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002051 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 put_cpu();
Nick Piggin476d1392005-06-25 14:57:29 -07002053 if (new_cpu != this_cpu)
2054 sched_migrate_task(current, new_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055}
2056
2057/*
2058 * pull_task - move a task from a remote runqueue to the local runqueue.
2059 * Both runqueues must be locked.
2060 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002061static void pull_task(struct rq *src_rq, struct prio_array *src_array,
2062 struct task_struct *p, struct rq *this_rq,
2063 struct prio_array *this_array, int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064{
2065 dequeue_task(p, src_array);
Peter Williams2dd73a42006-06-27 02:54:34 -07002066 dec_nr_running(p, src_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 set_task_cpu(p, this_cpu);
Peter Williams2dd73a42006-06-27 02:54:34 -07002068 inc_nr_running(p, this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 enqueue_task(p, this_array);
2070 p->timestamp = (p->timestamp - src_rq->timestamp_last_tick)
2071 + this_rq->timestamp_last_tick;
2072 /*
2073 * Note that idle threads have a prio of MAX_PRIO, for this test
2074 * to be always true for them.
2075 */
2076 if (TASK_PREEMPTS_CURR(p, this_rq))
2077 resched_task(this_rq->curr);
2078}
2079
2080/*
2081 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
2082 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002083static
Ingo Molnar70b97a72006-07-03 00:25:42 -07002084int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07002085 struct sched_domain *sd, enum idle_type idle,
2086 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087{
2088 /*
2089 * We do not migrate tasks that are:
2090 * 1) running (obviously), or
2091 * 2) cannot be migrated to this CPU due to cpus_allowed, or
2092 * 3) are cache-hot on their current CPU.
2093 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 if (!cpu_isset(this_cpu, p->cpus_allowed))
2095 return 0;
Nick Piggin81026792005-06-25 14:57:07 -07002096 *all_pinned = 0;
2097
2098 if (task_running(rq, p))
2099 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
2101 /*
2102 * Aggressive migration if:
Nick Piggincafb20c2005-06-25 14:57:17 -07002103 * 1) task is cache cold, or
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 * 2) too many balance attempts have failed.
2105 */
2106
Nick Piggincafb20c2005-06-25 14:57:17 -07002107 if (sd->nr_balance_failed > sd->cache_nice_tries)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 return 1;
2109
2110 if (task_hot(p, rq->timestamp_last_tick, sd))
Nick Piggin81026792005-06-25 14:57:07 -07002111 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 return 1;
2113}
2114
Peter Williams615052d2006-06-27 02:54:37 -07002115#define rq_best_prio(rq) min((rq)->curr->prio, (rq)->best_expired_prio)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002116
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117/*
Peter Williams2dd73a42006-06-27 02:54:34 -07002118 * move_tasks tries to move up to max_nr_move tasks and max_load_move weighted
2119 * load from busiest to this_rq, as part of a balancing operation within
2120 * "domain". Returns the number of tasks moved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 *
2122 * Called with both runqueues locked.
2123 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002124static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
Peter Williams2dd73a42006-06-27 02:54:34 -07002125 unsigned long max_nr_move, unsigned long max_load_move,
2126 struct sched_domain *sd, enum idle_type idle,
2127 int *all_pinned)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128{
Ingo Molnar48f24c42006-07-03 00:25:40 -07002129 int idx, pulled = 0, pinned = 0, this_best_prio, best_prio,
2130 best_prio_seen, skip_for_load;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002131 struct prio_array *array, *dst_array;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 struct list_head *head, *curr;
Ingo Molnar36c8b582006-07-03 00:25:41 -07002133 struct task_struct *tmp;
Peter Williams2dd73a42006-06-27 02:54:34 -07002134 long rem_load_move;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Peter Williams2dd73a42006-06-27 02:54:34 -07002136 if (max_nr_move == 0 || max_load_move == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 goto out;
2138
Peter Williams2dd73a42006-06-27 02:54:34 -07002139 rem_load_move = max_load_move;
Nick Piggin81026792005-06-25 14:57:07 -07002140 pinned = 1;
Peter Williams615052d2006-06-27 02:54:37 -07002141 this_best_prio = rq_best_prio(this_rq);
Ingo Molnar48f24c42006-07-03 00:25:40 -07002142 best_prio = rq_best_prio(busiest);
Peter Williams615052d2006-06-27 02:54:37 -07002143 /*
2144 * Enable handling of the case where there is more than one task
2145 * with the best priority. If the current running task is one
Ingo Molnar48f24c42006-07-03 00:25:40 -07002146 * of those with prio==best_prio we know it won't be moved
Peter Williams615052d2006-06-27 02:54:37 -07002147 * and therefore it's safe to override the skip (based on load) of
2148 * any task we find with that prio.
2149 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07002150 best_prio_seen = best_prio == busiest->curr->prio;
Nick Piggin81026792005-06-25 14:57:07 -07002151
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 /*
2153 * We first consider expired tasks. Those will likely not be
2154 * executed in the near future, and they are most likely to
2155 * be cache-cold, thus switching CPUs has the least effect
2156 * on them.
2157 */
2158 if (busiest->expired->nr_active) {
2159 array = busiest->expired;
2160 dst_array = this_rq->expired;
2161 } else {
2162 array = busiest->active;
2163 dst_array = this_rq->active;
2164 }
2165
2166new_array:
2167 /* Start searching at priority 0: */
2168 idx = 0;
2169skip_bitmap:
2170 if (!idx)
2171 idx = sched_find_first_bit(array->bitmap);
2172 else
2173 idx = find_next_bit(array->bitmap, MAX_PRIO, idx);
2174 if (idx >= MAX_PRIO) {
2175 if (array == busiest->expired && busiest->active->nr_active) {
2176 array = busiest->active;
2177 dst_array = this_rq->active;
2178 goto new_array;
2179 }
2180 goto out;
2181 }
2182
2183 head = array->queue + idx;
2184 curr = head->prev;
2185skip_queue:
Ingo Molnar36c8b582006-07-03 00:25:41 -07002186 tmp = list_entry(curr, struct task_struct, run_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187
2188 curr = curr->prev;
2189
Peter Williams50ddd962006-06-27 02:54:36 -07002190 /*
2191 * To help distribute high priority tasks accross CPUs we don't
2192 * skip a task if it will be the highest priority task (i.e. smallest
2193 * prio value) on its new queue regardless of its load weight
2194 */
Peter Williams615052d2006-06-27 02:54:37 -07002195 skip_for_load = tmp->load_weight > rem_load_move;
2196 if (skip_for_load && idx < this_best_prio)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002197 skip_for_load = !best_prio_seen && idx == best_prio;
Peter Williams615052d2006-06-27 02:54:37 -07002198 if (skip_for_load ||
Peter Williams2dd73a42006-06-27 02:54:34 -07002199 !can_migrate_task(tmp, busiest, this_cpu, sd, idle, &pinned)) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07002200
2201 best_prio_seen |= idx == best_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 if (curr != head)
2203 goto skip_queue;
2204 idx++;
2205 goto skip_bitmap;
2206 }
2207
2208#ifdef CONFIG_SCHEDSTATS
2209 if (task_hot(tmp, busiest->timestamp_last_tick, sd))
2210 schedstat_inc(sd, lb_hot_gained[idle]);
2211#endif
2212
2213 pull_task(busiest, array, tmp, this_rq, dst_array, this_cpu);
2214 pulled++;
Peter Williams2dd73a42006-06-27 02:54:34 -07002215 rem_load_move -= tmp->load_weight;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216
Peter Williams2dd73a42006-06-27 02:54:34 -07002217 /*
2218 * We only want to steal up to the prescribed number of tasks
2219 * and the prescribed amount of weighted load.
2220 */
2221 if (pulled < max_nr_move && rem_load_move > 0) {
Peter Williams615052d2006-06-27 02:54:37 -07002222 if (idx < this_best_prio)
2223 this_best_prio = idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 if (curr != head)
2225 goto skip_queue;
2226 idx++;
2227 goto skip_bitmap;
2228 }
2229out:
2230 /*
2231 * Right now, this is the only place pull_task() is called,
2232 * so we can safely collect pull_task() stats here rather than
2233 * inside pull_task().
2234 */
2235 schedstat_add(sd, lb_gained[idle], pulled);
Nick Piggin81026792005-06-25 14:57:07 -07002236
2237 if (all_pinned)
2238 *all_pinned = pinned;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 return pulled;
2240}
2241
2242/*
2243 * find_busiest_group finds and returns the busiest CPU group within the
Ingo Molnar48f24c42006-07-03 00:25:40 -07002244 * domain. It calculates and returns the amount of weighted load which
2245 * should be moved to restore balance via the imbalance parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 */
2247static struct sched_group *
2248find_busiest_group(struct sched_domain *sd, int this_cpu,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002249 unsigned long *imbalance, enum idle_type idle, int *sd_idle,
2250 cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251{
2252 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
2253 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002254 unsigned long max_pull;
Peter Williams2dd73a42006-06-27 02:54:34 -07002255 unsigned long busiest_load_per_task, busiest_nr_running;
2256 unsigned long this_load_per_task, this_nr_running;
Nick Piggin78979862005-06-25 14:57:13 -07002257 int load_idx;
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002258#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2259 int power_savings_balance = 1;
2260 unsigned long leader_nr_running = 0, min_load_per_task = 0;
2261 unsigned long min_nr_running = ULONG_MAX;
2262 struct sched_group *group_min = NULL, *group_leader = NULL;
2263#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
2265 max_load = this_load = total_load = total_pwr = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07002266 busiest_load_per_task = busiest_nr_running = 0;
2267 this_load_per_task = this_nr_running = 0;
Nick Piggin78979862005-06-25 14:57:13 -07002268 if (idle == NOT_IDLE)
2269 load_idx = sd->busy_idx;
2270 else if (idle == NEWLY_IDLE)
2271 load_idx = sd->newidle_idx;
2272 else
2273 load_idx = sd->idle_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
2275 do {
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002276 unsigned long load, group_capacity;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 int local_group;
2278 int i;
Peter Williams2dd73a42006-06-27 02:54:34 -07002279 unsigned long sum_nr_running, sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
2281 local_group = cpu_isset(this_cpu, group->cpumask);
2282
2283 /* Tally up the load of all CPUs in the group */
Peter Williams2dd73a42006-06-27 02:54:34 -07002284 sum_weighted_load = sum_nr_running = avg_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285
2286 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002287 struct rq *rq;
2288
2289 if (!cpu_isset(i, *cpus))
2290 continue;
2291
2292 rq = cpu_rq(i);
Peter Williams2dd73a42006-06-27 02:54:34 -07002293
Nick Piggin5969fe02005-09-10 00:26:19 -07002294 if (*sd_idle && !idle_cpu(i))
2295 *sd_idle = 0;
2296
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 /* Bias balancing toward cpus of our domain */
2298 if (local_group)
Nick Piggina2000572006-02-10 01:51:02 -08002299 load = target_load(i, load_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 else
Nick Piggina2000572006-02-10 01:51:02 -08002301 load = source_load(i, load_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
2303 avg_load += load;
Peter Williams2dd73a42006-06-27 02:54:34 -07002304 sum_nr_running += rq->nr_running;
2305 sum_weighted_load += rq->raw_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 }
2307
2308 total_load += avg_load;
2309 total_pwr += group->cpu_power;
2310
2311 /* Adjust by relative CPU power of the group */
2312 avg_load = (avg_load * SCHED_LOAD_SCALE) / group->cpu_power;
2313
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002314 group_capacity = group->cpu_power / SCHED_LOAD_SCALE;
2315
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 if (local_group) {
2317 this_load = avg_load;
2318 this = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002319 this_nr_running = sum_nr_running;
2320 this_load_per_task = sum_weighted_load;
2321 } else if (avg_load > max_load &&
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002322 sum_nr_running > group_capacity) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 max_load = avg_load;
2324 busiest = group;
Peter Williams2dd73a42006-06-27 02:54:34 -07002325 busiest_nr_running = sum_nr_running;
2326 busiest_load_per_task = sum_weighted_load;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002328
2329#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2330 /*
2331 * Busy processors will not participate in power savings
2332 * balance.
2333 */
2334 if (idle == NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
2335 goto group_next;
2336
2337 /*
2338 * If the local group is idle or completely loaded
2339 * no need to do power savings balance at this domain
2340 */
2341 if (local_group && (this_nr_running >= group_capacity ||
2342 !this_nr_running))
2343 power_savings_balance = 0;
2344
2345 /*
2346 * If a group is already running at full capacity or idle,
2347 * don't include that group in power savings calculations
2348 */
2349 if (!power_savings_balance || sum_nr_running >= group_capacity
2350 || !sum_nr_running)
2351 goto group_next;
2352
2353 /*
2354 * Calculate the group which has the least non-idle load.
2355 * This is the group from where we need to pick up the load
2356 * for saving power
2357 */
2358 if ((sum_nr_running < min_nr_running) ||
2359 (sum_nr_running == min_nr_running &&
2360 first_cpu(group->cpumask) <
2361 first_cpu(group_min->cpumask))) {
2362 group_min = group;
2363 min_nr_running = sum_nr_running;
2364 min_load_per_task = sum_weighted_load /
2365 sum_nr_running;
2366 }
2367
2368 /*
2369 * Calculate the group which is almost near its
2370 * capacity but still has some space to pick up some load
2371 * from other group and save more power
2372 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07002373 if (sum_nr_running <= group_capacity - 1) {
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002374 if (sum_nr_running > leader_nr_running ||
2375 (sum_nr_running == leader_nr_running &&
2376 first_cpu(group->cpumask) >
2377 first_cpu(group_leader->cpumask))) {
2378 group_leader = group;
2379 leader_nr_running = sum_nr_running;
2380 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07002381 }
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002382group_next:
2383#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 group = group->next;
2385 } while (group != sd->groups);
2386
Peter Williams2dd73a42006-06-27 02:54:34 -07002387 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 goto out_balanced;
2389
2390 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
2391
2392 if (this_load >= avg_load ||
2393 100*max_load <= sd->imbalance_pct*this_load)
2394 goto out_balanced;
2395
Peter Williams2dd73a42006-06-27 02:54:34 -07002396 busiest_load_per_task /= busiest_nr_running;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 /*
2398 * We're trying to get all the cpus to the average_load, so we don't
2399 * want to push ourselves above the average load, nor do we wish to
2400 * reduce the max loaded cpu below the average load, as either of these
2401 * actions would just result in more rebalancing later, and ping-pong
2402 * tasks around. Thus we look for the minimum possible imbalance.
2403 * Negative imbalances (*we* are more loaded than anyone else) will
2404 * be counted as no imbalance for these purposes -- we can't fix that
2405 * by pulling tasks to us. Be careful of negative numbers as they'll
2406 * appear as very large values with unsigned longs.
2407 */
Peter Williams2dd73a42006-06-27 02:54:34 -07002408 if (max_load <= busiest_load_per_task)
2409 goto out_balanced;
2410
2411 /*
2412 * In the presence of smp nice balancing, certain scenarios can have
2413 * max load less than avg load(as we skip the groups at or below
2414 * its cpu_power, while calculating max_load..)
2415 */
2416 if (max_load < avg_load) {
2417 *imbalance = 0;
2418 goto small_imbalance;
2419 }
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002420
2421 /* Don't want to pull so many tasks that a group would go idle */
Peter Williams2dd73a42006-06-27 02:54:34 -07002422 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002423
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 /* How much load to actually move to equalise the imbalance */
Siddha, Suresh B0c117f12005-09-10 00:26:21 -07002425 *imbalance = min(max_pull * busiest->cpu_power,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 (avg_load - this_load) * this->cpu_power)
2427 / SCHED_LOAD_SCALE;
2428
Peter Williams2dd73a42006-06-27 02:54:34 -07002429 /*
2430 * if *imbalance is less than the average load per runnable task
2431 * there is no gaurantee that any tasks will be moved so we'll have
2432 * a think about bumping its value to force at least one task to be
2433 * moved
2434 */
2435 if (*imbalance < busiest_load_per_task) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07002436 unsigned long tmp, pwr_now, pwr_move;
Peter Williams2dd73a42006-06-27 02:54:34 -07002437 unsigned int imbn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438
Peter Williams2dd73a42006-06-27 02:54:34 -07002439small_imbalance:
2440 pwr_move = pwr_now = 0;
2441 imbn = 2;
2442 if (this_nr_running) {
2443 this_load_per_task /= this_nr_running;
2444 if (busiest_load_per_task > this_load_per_task)
2445 imbn = 1;
2446 } else
2447 this_load_per_task = SCHED_LOAD_SCALE;
2448
2449 if (max_load - this_load >= busiest_load_per_task * imbn) {
2450 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 return busiest;
2452 }
2453
2454 /*
2455 * OK, we don't have enough imbalance to justify moving tasks,
2456 * however we may be able to increase total CPU power used by
2457 * moving them.
2458 */
2459
Peter Williams2dd73a42006-06-27 02:54:34 -07002460 pwr_now += busiest->cpu_power *
2461 min(busiest_load_per_task, max_load);
2462 pwr_now += this->cpu_power *
2463 min(this_load_per_task, this_load);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 pwr_now /= SCHED_LOAD_SCALE;
2465
2466 /* Amount of load we'd subtract */
Peter Williams2dd73a42006-06-27 02:54:34 -07002467 tmp = busiest_load_per_task*SCHED_LOAD_SCALE/busiest->cpu_power;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 if (max_load > tmp)
Peter Williams2dd73a42006-06-27 02:54:34 -07002469 pwr_move += busiest->cpu_power *
2470 min(busiest_load_per_task, max_load - tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471
2472 /* Amount of load we'd add */
2473 if (max_load*busiest->cpu_power <
Peter Williams2dd73a42006-06-27 02:54:34 -07002474 busiest_load_per_task*SCHED_LOAD_SCALE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 tmp = max_load*busiest->cpu_power/this->cpu_power;
2476 else
Peter Williams2dd73a42006-06-27 02:54:34 -07002477 tmp = busiest_load_per_task*SCHED_LOAD_SCALE/this->cpu_power;
2478 pwr_move += this->cpu_power*min(this_load_per_task, this_load + tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 pwr_move /= SCHED_LOAD_SCALE;
2480
2481 /* Move if we gain throughput */
2482 if (pwr_move <= pwr_now)
2483 goto out_balanced;
2484
Peter Williams2dd73a42006-06-27 02:54:34 -07002485 *imbalance = busiest_load_per_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 }
2487
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 return busiest;
2489
2490out_balanced:
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002491#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2492 if (idle == NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
2493 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002495 if (this == group_leader && group_leader != group_min) {
2496 *imbalance = min_load_per_task;
2497 return group_min;
2498 }
2499ret:
2500#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 *imbalance = 0;
2502 return NULL;
2503}
2504
2505/*
2506 * find_busiest_queue - find the busiest runqueue among the cpus in group.
2507 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002508static struct rq *
Ingo Molnar48f24c42006-07-03 00:25:40 -07002509find_busiest_queue(struct sched_group *group, enum idle_type idle,
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002510 unsigned long imbalance, cpumask_t *cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511{
Ingo Molnar70b97a72006-07-03 00:25:42 -07002512 struct rq *busiest = NULL, *rq;
Peter Williams2dd73a42006-06-27 02:54:34 -07002513 unsigned long max_load = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 int i;
2515
2516 for_each_cpu_mask(i, group->cpumask) {
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002517
2518 if (!cpu_isset(i, *cpus))
2519 continue;
2520
Ingo Molnar48f24c42006-07-03 00:25:40 -07002521 rq = cpu_rq(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
Ingo Molnar48f24c42006-07-03 00:25:40 -07002523 if (rq->nr_running == 1 && rq->raw_weighted_load > imbalance)
Peter Williams2dd73a42006-06-27 02:54:34 -07002524 continue;
2525
Ingo Molnar48f24c42006-07-03 00:25:40 -07002526 if (rq->raw_weighted_load > max_load) {
2527 max_load = rq->raw_weighted_load;
2528 busiest = rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 }
2530 }
2531
2532 return busiest;
2533}
2534
2535/*
Nick Piggin77391d72005-06-25 14:57:30 -07002536 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
2537 * so long as it is large enough.
2538 */
2539#define MAX_PINNED_INTERVAL 512
2540
Ingo Molnar48f24c42006-07-03 00:25:40 -07002541static inline unsigned long minus_1_or_zero(unsigned long n)
2542{
2543 return n > 0 ? n - 1 : 0;
2544}
2545
Nick Piggin77391d72005-06-25 14:57:30 -07002546/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 * Check this_cpu to ensure it is balanced within domain. Attempt to move
2548 * tasks if there is an imbalance.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002550static int load_balance(int this_cpu, struct rq *this_rq,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 struct sched_domain *sd, enum idle_type idle)
2552{
Ingo Molnar48f24c42006-07-03 00:25:40 -07002553 int nr_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 struct sched_group *group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 unsigned long imbalance;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002556 struct rq *busiest;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002557 cpumask_t cpus = CPU_MASK_ALL;
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002558 unsigned long flags;
Nick Piggin5969fe02005-09-10 00:26:19 -07002559
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002560 /*
2561 * When power savings policy is enabled for the parent domain, idle
2562 * sibling can pick up load irrespective of busy siblings. In this case,
2563 * let the state of idle sibling percolate up as IDLE, instead of
2564 * portraying it as NOT_IDLE.
2565 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002566 if (idle != NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002567 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002568 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 schedstat_inc(sd, lb_cnt[idle]);
2571
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002572redo:
2573 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle,
2574 &cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 if (!group) {
2576 schedstat_inc(sd, lb_nobusyg[idle]);
2577 goto out_balanced;
2578 }
2579
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002580 busiest = find_busiest_queue(group, idle, imbalance, &cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 if (!busiest) {
2582 schedstat_inc(sd, lb_nobusyq[idle]);
2583 goto out_balanced;
2584 }
2585
Nick Piggindb935db2005-06-25 14:57:11 -07002586 BUG_ON(busiest == this_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587
2588 schedstat_add(sd, lb_imbalance[idle], imbalance);
2589
2590 nr_moved = 0;
2591 if (busiest->nr_running > 1) {
2592 /*
2593 * Attempt to move tasks. If find_busiest_group has found
2594 * an imbalance but busiest->nr_running <= 1, the group is
2595 * still unbalanced. nr_moved simply stays zero, so it is
2596 * correctly treated as an imbalance.
2597 */
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002598 local_irq_save(flags);
Nick Piggine17224b2005-09-10 00:26:18 -07002599 double_rq_lock(this_rq, busiest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 nr_moved = move_tasks(this_rq, this_cpu, busiest,
Ingo Molnar48f24c42006-07-03 00:25:40 -07002601 minus_1_or_zero(busiest->nr_running),
2602 imbalance, sd, idle, &all_pinned);
Nick Piggine17224b2005-09-10 00:26:18 -07002603 double_rq_unlock(this_rq, busiest);
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002604 local_irq_restore(flags);
Nick Piggin81026792005-06-25 14:57:07 -07002605
2606 /* All tasks on this runqueue were pinned by CPU affinity */
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002607 if (unlikely(all_pinned)) {
2608 cpu_clear(cpu_of(busiest), cpus);
2609 if (!cpus_empty(cpus))
2610 goto redo;
Nick Piggin81026792005-06-25 14:57:07 -07002611 goto out_balanced;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 }
Nick Piggin81026792005-06-25 14:57:07 -07002614
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 if (!nr_moved) {
2616 schedstat_inc(sd, lb_failed[idle]);
2617 sd->nr_balance_failed++;
2618
2619 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002621 spin_lock_irqsave(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07002622
2623 /* don't kick the migration_thread, if the curr
2624 * task on busiest cpu can't be moved to this_cpu
2625 */
2626 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002627 spin_unlock_irqrestore(&busiest->lock, flags);
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07002628 all_pinned = 1;
2629 goto out_one_pinned;
2630 }
2631
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 if (!busiest->active_balance) {
2633 busiest->active_balance = 1;
2634 busiest->push_cpu = this_cpu;
Nick Piggin81026792005-06-25 14:57:07 -07002635 active_balance = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 }
Christoph Lameterfe2eea32006-12-10 02:20:21 -08002637 spin_unlock_irqrestore(&busiest->lock, flags);
Nick Piggin81026792005-06-25 14:57:07 -07002638 if (active_balance)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 wake_up_process(busiest->migration_thread);
2640
2641 /*
2642 * We've kicked active balancing, reset the failure
2643 * counter.
2644 */
Nick Piggin39507452005-06-25 14:57:09 -07002645 sd->nr_balance_failed = sd->cache_nice_tries+1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 }
Nick Piggin81026792005-06-25 14:57:07 -07002647 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 sd->nr_balance_failed = 0;
2649
Nick Piggin81026792005-06-25 14:57:07 -07002650 if (likely(!active_balance)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 /* We were unbalanced, so reset the balancing interval */
2652 sd->balance_interval = sd->min_interval;
Nick Piggin81026792005-06-25 14:57:07 -07002653 } else {
2654 /*
2655 * If we've begun active balancing, start to back off. This
2656 * case may not be covered by the all_pinned logic if there
2657 * is only 1 task on the busy runqueue (because we don't call
2658 * move_tasks).
2659 */
2660 if (sd->balance_interval < sd->max_interval)
2661 sd->balance_interval *= 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 }
2663
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07002664 if (!nr_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002665 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002666 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 return nr_moved;
2668
2669out_balanced:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 schedstat_inc(sd, lb_balanced[idle]);
2671
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002672 sd->nr_balance_failed = 0;
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07002673
2674out_one_pinned:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 /* tune up the balancing interval */
Nick Piggin77391d72005-06-25 14:57:30 -07002676 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
2677 (sd->balance_interval < sd->max_interval))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 sd->balance_interval *= 2;
2679
Ingo Molnar48f24c42006-07-03 00:25:40 -07002680 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002681 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002682 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 return 0;
2684}
2685
2686/*
2687 * Check this_cpu to ensure it is balanced within domain. Attempt to move
2688 * tasks if there is an imbalance.
2689 *
2690 * Called from schedule when this_rq is about to become idle (NEWLY_IDLE).
2691 * this_rq is locked.
2692 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07002693static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07002694load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695{
2696 struct sched_group *group;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002697 struct rq *busiest = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 unsigned long imbalance;
2699 int nr_moved = 0;
Nick Piggin5969fe02005-09-10 00:26:19 -07002700 int sd_idle = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002701 cpumask_t cpus = CPU_MASK_ALL;
Nick Piggin5969fe02005-09-10 00:26:19 -07002702
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002703 /*
2704 * When power savings policy is enabled for the parent domain, idle
2705 * sibling can pick up load irrespective of busy siblings. In this case,
2706 * let the state of idle sibling percolate up as IDLE, instead of
2707 * portraying it as NOT_IDLE.
2708 */
2709 if (sd->flags & SD_SHARE_CPUPOWER &&
2710 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002711 sd_idle = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712
2713 schedstat_inc(sd, lb_cnt[NEWLY_IDLE]);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002714redo:
2715 group = find_busiest_group(sd, this_cpu, &imbalance, NEWLY_IDLE,
2716 &sd_idle, &cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 if (!group) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 schedstat_inc(sd, lb_nobusyg[NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002719 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 }
2721
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002722 busiest = find_busiest_queue(group, NEWLY_IDLE, imbalance,
2723 &cpus);
Nick Piggindb935db2005-06-25 14:57:11 -07002724 if (!busiest) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 schedstat_inc(sd, lb_nobusyq[NEWLY_IDLE]);
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002726 goto out_balanced;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 }
2728
Nick Piggindb935db2005-06-25 14:57:11 -07002729 BUG_ON(busiest == this_rq);
2730
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 schedstat_add(sd, lb_imbalance[NEWLY_IDLE], imbalance);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07002732
2733 nr_moved = 0;
2734 if (busiest->nr_running > 1) {
2735 /* Attempt to move tasks */
2736 double_lock_balance(this_rq, busiest);
2737 nr_moved = move_tasks(this_rq, this_cpu, busiest,
Peter Williams2dd73a42006-06-27 02:54:34 -07002738 minus_1_or_zero(busiest->nr_running),
Nick Piggin81026792005-06-25 14:57:07 -07002739 imbalance, sd, NEWLY_IDLE, NULL);
Nick Piggind6d5cfa2005-09-10 00:26:16 -07002740 spin_unlock(&busiest->lock);
Christoph Lameter0a2966b2006-09-25 23:30:51 -07002741
2742 if (!nr_moved) {
2743 cpu_clear(cpu_of(busiest), cpus);
2744 if (!cpus_empty(cpus))
2745 goto redo;
2746 }
Nick Piggind6d5cfa2005-09-10 00:26:16 -07002747 }
2748
Nick Piggin5969fe02005-09-10 00:26:19 -07002749 if (!nr_moved) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 schedstat_inc(sd, lb_failed[NEWLY_IDLE]);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002751 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
2752 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002753 return -1;
2754 } else
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002755 sd->nr_balance_failed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 return nr_moved;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002758
2759out_balanced:
2760 schedstat_inc(sd, lb_balanced[NEWLY_IDLE]);
Ingo Molnar48f24c42006-07-03 00:25:40 -07002761 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
Siddha, Suresh B89c47102006-10-03 01:14:09 -07002762 !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE))
Nick Piggin5969fe02005-09-10 00:26:19 -07002763 return -1;
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002764 sd->nr_balance_failed = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002765
Nick Piggin16cfb1c2005-06-25 14:57:08 -07002766 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767}
2768
2769/*
2770 * idle_balance is called by schedule() if this_cpu is about to become
2771 * idle. Attempts to pull tasks from other CPUs.
2772 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002773static void idle_balance(int this_cpu, struct rq *this_rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774{
2775 struct sched_domain *sd;
2776
2777 for_each_domain(this_cpu, sd) {
2778 if (sd->flags & SD_BALANCE_NEWIDLE) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07002779 /* If we've pulled tasks over stop searching: */
2780 if (load_balance_newidle(this_cpu, this_rq, sd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 }
2783 }
2784}
2785
2786/*
2787 * active_load_balance is run by migration threads. It pushes running tasks
2788 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
2789 * running on each physical CPU where possible, and avoids physical /
2790 * logical imbalances.
2791 *
2792 * Called with busiest_rq locked.
2793 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002794static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795{
Nick Piggin39507452005-06-25 14:57:09 -07002796 int target_cpu = busiest_rq->push_cpu;
Ingo Molnar70b97a72006-07-03 00:25:42 -07002797 struct sched_domain *sd;
2798 struct rq *target_rq;
Nick Piggin39507452005-06-25 14:57:09 -07002799
Ingo Molnar48f24c42006-07-03 00:25:40 -07002800 /* Is there any task to move? */
Nick Piggin39507452005-06-25 14:57:09 -07002801 if (busiest_rq->nr_running <= 1)
Nick Piggin39507452005-06-25 14:57:09 -07002802 return;
2803
2804 target_rq = cpu_rq(target_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805
2806 /*
Nick Piggin39507452005-06-25 14:57:09 -07002807 * This condition is "impossible", if it occurs
2808 * we need to fix it. Originally reported by
2809 * Bjorn Helgaas on a 128-cpu setup.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 */
Nick Piggin39507452005-06-25 14:57:09 -07002811 BUG_ON(busiest_rq == target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812
Nick Piggin39507452005-06-25 14:57:09 -07002813 /* move a task from busiest_rq to target_rq */
2814 double_lock_balance(busiest_rq, target_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815
Nick Piggin39507452005-06-25 14:57:09 -07002816 /* Search for an sd spanning us and the target CPU. */
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002817 for_each_domain(target_cpu, sd) {
Nick Piggin39507452005-06-25 14:57:09 -07002818 if ((sd->flags & SD_LOAD_BALANCE) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07002819 cpu_isset(busiest_cpu, sd->span))
Nick Piggin39507452005-06-25 14:57:09 -07002820 break;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07002821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822
Ingo Molnar48f24c42006-07-03 00:25:40 -07002823 if (likely(sd)) {
2824 schedstat_inc(sd, alb_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
Ingo Molnar48f24c42006-07-03 00:25:40 -07002826 if (move_tasks(target_rq, target_cpu, busiest_rq, 1,
2827 RTPRIO_TO_LOAD_WEIGHT(100), sd, SCHED_IDLE,
2828 NULL))
2829 schedstat_inc(sd, alb_pushed);
2830 else
2831 schedstat_inc(sd, alb_failed);
2832 }
Nick Piggin39507452005-06-25 14:57:09 -07002833 spin_unlock(&target_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834}
2835
Christoph Lameter7835b982006-12-10 02:20:22 -08002836static void update_load(struct rq *this_rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002837{
Christoph Lameter7835b982006-12-10 02:20:22 -08002838 unsigned long this_load;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002839 int i, scale;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840
Peter Williams2dd73a42006-06-27 02:54:34 -07002841 this_load = this_rq->raw_weighted_load;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002842
2843 /* Update our load: */
2844 for (i = 0, scale = 1; i < 3; i++, scale <<= 1) {
2845 unsigned long old_load, new_load;
2846
Nick Piggin78979862005-06-25 14:57:13 -07002847 old_load = this_rq->cpu_load[i];
Ingo Molnar48f24c42006-07-03 00:25:40 -07002848 new_load = this_load;
Nick Piggin78979862005-06-25 14:57:13 -07002849 /*
2850 * Round up the averaging division if load is increasing. This
2851 * prevents us from getting stuck on 9 if the load is 10, for
2852 * example.
2853 */
2854 if (new_load > old_load)
2855 new_load += scale-1;
2856 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) / scale;
2857 }
Christoph Lameter7835b982006-12-10 02:20:22 -08002858}
2859
2860/*
2861 * rebalance_tick will get called every timer tick, on every CPU.
2862 *
2863 * It checks each scheduling domain to see if it is due to be balanced,
2864 * and initiates a balancing operation if so.
2865 *
2866 * Balancing parameters are set up in arch_init_sched_domains.
2867 */
2868
2869static void
Christoph Lametere418e1c2006-12-10 02:20:23 -08002870rebalance_tick(int this_cpu, struct rq *this_rq)
Christoph Lameter7835b982006-12-10 02:20:22 -08002871{
2872 unsigned long interval;
2873 struct sched_domain *sd;
Christoph Lametere418e1c2006-12-10 02:20:23 -08002874 /*
2875 * We are idle if there are no processes running. This
2876 * is valid even if we are the idle process (SMT).
2877 */
2878 enum idle_type idle = !this_rq->nr_running ?
2879 SCHED_IDLE : NOT_IDLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880
2881 for_each_domain(this_cpu, sd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 if (!(sd->flags & SD_LOAD_BALANCE))
2883 continue;
2884
2885 interval = sd->balance_interval;
2886 if (idle != SCHED_IDLE)
2887 interval *= sd->busy_factor;
2888
2889 /* scale ms to jiffies */
2890 interval = msecs_to_jiffies(interval);
2891 if (unlikely(!interval))
2892 interval = 1;
2893
Christoph Lameter4211a9a2006-12-10 02:20:19 -08002894 if (jiffies - sd->last_balance >= interval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 if (load_balance(this_cpu, this_rq, sd, idle)) {
Siddha, Suresh Bfa3b6dd2005-09-10 00:26:21 -07002896 /*
2897 * We've pulled tasks over so either we're no
Nick Piggin5969fe02005-09-10 00:26:19 -07002898 * longer idle, or one of our SMT siblings is
2899 * not idle.
2900 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 idle = NOT_IDLE;
2902 }
2903 sd->last_balance += interval;
2904 }
2905 }
2906}
2907#else
2908/*
2909 * on UP we do not need to balance between CPUs:
2910 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002911static inline void idle_balance(int cpu, struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912{
2913}
2914#endif
2915
Christoph Lametere418e1c2006-12-10 02:20:23 -08002916static inline void wake_priority_sleeper(struct rq *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918#ifdef CONFIG_SCHED_SMT
Christoph Lameter571f6d22006-12-10 02:20:13 -08002919 if (!rq->nr_running)
Christoph Lametere418e1c2006-12-10 02:20:23 -08002920 return;
Christoph Lameter571f6d22006-12-10 02:20:13 -08002921
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 spin_lock(&rq->lock);
2923 /*
2924 * If an SMT sibling task has been put to sleep for priority
2925 * reasons reschedule the idle task to see if it can now run.
2926 */
Christoph Lametere418e1c2006-12-10 02:20:23 -08002927 if (rq->nr_running)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 resched_task(rq->idle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 spin_unlock(&rq->lock);
2930#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931}
2932
2933DEFINE_PER_CPU(struct kernel_stat, kstat);
2934
2935EXPORT_PER_CPU_SYMBOL(kstat);
2936
2937/*
2938 * This is called on clock ticks and on context switches.
2939 * Bank in p->sched_time the ns elapsed since the last tick or switch.
2940 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07002941static inline void
Ingo Molnar70b97a72006-07-03 00:25:42 -07002942update_cpu_clock(struct task_struct *p, struct rq *rq, unsigned long long now)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943{
Ingo Molnar48f24c42006-07-03 00:25:40 -07002944 p->sched_time += now - max(p->timestamp, rq->timestamp_last_tick);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945}
2946
2947/*
2948 * Return current->sched_time plus any more ns on the sched_clock
2949 * that have not yet been banked.
2950 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07002951unsigned long long current_sched_time(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952{
2953 unsigned long long ns;
2954 unsigned long flags;
Ingo Molnar48f24c42006-07-03 00:25:40 -07002955
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 local_irq_save(flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07002957 ns = max(p->timestamp, task_rq(p)->timestamp_last_tick);
2958 ns = p->sched_time + sched_clock() - ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 local_irq_restore(flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07002960
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 return ns;
2962}
2963
2964/*
Linus Torvaldsf1adad72006-05-21 18:54:09 -07002965 * We place interactive tasks back into the active array, if possible.
2966 *
2967 * To guarantee that this does not starve expired tasks we ignore the
2968 * interactivity of a task if the first expired task had to wait more
2969 * than a 'reasonable' amount of time. This deadline timeout is
2970 * load-dependent, as the frequency of array switched decreases with
2971 * increasing number of running tasks. We also ignore the interactivity
2972 * if a better static_prio task has expired:
2973 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07002974static inline int expired_starving(struct rq *rq)
Ingo Molnar48f24c42006-07-03 00:25:40 -07002975{
2976 if (rq->curr->static_prio > rq->best_expired_prio)
2977 return 1;
2978 if (!STARVATION_LIMIT || !rq->expired_timestamp)
2979 return 0;
2980 if (jiffies - rq->expired_timestamp > STARVATION_LIMIT * rq->nr_running)
2981 return 1;
2982 return 0;
2983}
Linus Torvaldsf1adad72006-05-21 18:54:09 -07002984
2985/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 * Account user cpu time to a process.
2987 * @p: the process that the cpu time gets accounted to
2988 * @hardirq_offset: the offset to subtract from hardirq_count()
2989 * @cputime: the cpu time spent in user space since the last update
2990 */
2991void account_user_time(struct task_struct *p, cputime_t cputime)
2992{
2993 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
2994 cputime64_t tmp;
2995
2996 p->utime = cputime_add(p->utime, cputime);
2997
2998 /* Add user time to cpustat. */
2999 tmp = cputime_to_cputime64(cputime);
3000 if (TASK_NICE(p) > 0)
3001 cpustat->nice = cputime64_add(cpustat->nice, tmp);
3002 else
3003 cpustat->user = cputime64_add(cpustat->user, tmp);
3004}
3005
3006/*
3007 * Account system cpu time to a process.
3008 * @p: the process that the cpu time gets accounted to
3009 * @hardirq_offset: the offset to subtract from hardirq_count()
3010 * @cputime: the cpu time spent in kernel space since the last update
3011 */
3012void account_system_time(struct task_struct *p, int hardirq_offset,
3013 cputime_t cputime)
3014{
3015 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003016 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 cputime64_t tmp;
3018
3019 p->stime = cputime_add(p->stime, cputime);
3020
3021 /* Add system time to cpustat. */
3022 tmp = cputime_to_cputime64(cputime);
3023 if (hardirq_count() - hardirq_offset)
3024 cpustat->irq = cputime64_add(cpustat->irq, tmp);
3025 else if (softirq_count())
3026 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
3027 else if (p != rq->idle)
3028 cpustat->system = cputime64_add(cpustat->system, tmp);
3029 else if (atomic_read(&rq->nr_iowait) > 0)
3030 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3031 else
3032 cpustat->idle = cputime64_add(cpustat->idle, tmp);
3033 /* Account for system time used */
3034 acct_update_integrals(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035}
3036
3037/*
3038 * Account for involuntary wait time.
3039 * @p: the process from which the cpu time has been stolen
3040 * @steal: the cpu time spent in involuntary wait
3041 */
3042void account_steal_time(struct task_struct *p, cputime_t steal)
3043{
3044 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
3045 cputime64_t tmp = cputime_to_cputime64(steal);
Ingo Molnar70b97a72006-07-03 00:25:42 -07003046 struct rq *rq = this_rq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047
3048 if (p == rq->idle) {
3049 p->stime = cputime_add(p->stime, steal);
3050 if (atomic_read(&rq->nr_iowait) > 0)
3051 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
3052 else
3053 cpustat->idle = cputime64_add(cpustat->idle, tmp);
3054 } else
3055 cpustat->steal = cputime64_add(cpustat->steal, tmp);
3056}
3057
Christoph Lameter7835b982006-12-10 02:20:22 -08003058static void task_running_tick(struct rq *rq, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 if (p->array != rq->active) {
Christoph Lameter7835b982006-12-10 02:20:22 -08003061 /* Task has expired but was not scheduled yet */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 set_tsk_need_resched(p);
Christoph Lameter7835b982006-12-10 02:20:22 -08003063 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 }
3065 spin_lock(&rq->lock);
3066 /*
3067 * The task was running during this tick - update the
3068 * time slice counter. Note: we do not update a thread's
3069 * priority until it either goes to sleep or uses up its
3070 * timeslice. This makes it possible for interactive tasks
3071 * to use up their timeslices at their highest priority levels.
3072 */
3073 if (rt_task(p)) {
3074 /*
3075 * RR tasks need a special form of timeslice management.
3076 * FIFO tasks have no timeslices.
3077 */
3078 if ((p->policy == SCHED_RR) && !--p->time_slice) {
3079 p->time_slice = task_timeslice(p);
3080 p->first_time_slice = 0;
3081 set_tsk_need_resched(p);
3082
3083 /* put it at the end of the queue: */
3084 requeue_task(p, rq->active);
3085 }
3086 goto out_unlock;
3087 }
3088 if (!--p->time_slice) {
3089 dequeue_task(p, rq->active);
3090 set_tsk_need_resched(p);
3091 p->prio = effective_prio(p);
3092 p->time_slice = task_timeslice(p);
3093 p->first_time_slice = 0;
3094
3095 if (!rq->expired_timestamp)
3096 rq->expired_timestamp = jiffies;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003097 if (!TASK_INTERACTIVE(p) || expired_starving(rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 enqueue_task(p, rq->expired);
3099 if (p->static_prio < rq->best_expired_prio)
3100 rq->best_expired_prio = p->static_prio;
3101 } else
3102 enqueue_task(p, rq->active);
3103 } else {
3104 /*
3105 * Prevent a too long timeslice allowing a task to monopolize
3106 * the CPU. We do this by splitting up the timeslice into
3107 * smaller pieces.
3108 *
3109 * Note: this does not mean the task's timeslices expire or
3110 * get lost in any way, they just might be preempted by
3111 * another task of equal priority. (one with higher
3112 * priority would have preempted this task already.) We
3113 * requeue this task to the end of the list on this priority
3114 * level, which is in essence a round-robin of tasks with
3115 * equal priority.
3116 *
3117 * This only applies to tasks in the interactive
3118 * delta range with at least TIMESLICE_GRANULARITY to requeue.
3119 */
3120 if (TASK_INTERACTIVE(p) && !((task_timeslice(p) -
3121 p->time_slice) % TIMESLICE_GRANULARITY(p)) &&
3122 (p->time_slice >= TIMESLICE_GRANULARITY(p)) &&
3123 (p->array == rq->active)) {
3124
3125 requeue_task(p, rq->active);
3126 set_tsk_need_resched(p);
3127 }
3128 }
3129out_unlock:
3130 spin_unlock(&rq->lock);
Christoph Lameter7835b982006-12-10 02:20:22 -08003131}
3132
3133/*
3134 * This function gets called by the timer code, with HZ frequency.
3135 * We call it with interrupts disabled.
3136 *
3137 * It also gets called by the fork code, when changing the parent's
3138 * timeslices.
3139 */
3140void scheduler_tick(void)
3141{
3142 unsigned long long now = sched_clock();
3143 struct task_struct *p = current;
3144 int cpu = smp_processor_id();
3145 struct rq *rq = cpu_rq(cpu);
Christoph Lameter7835b982006-12-10 02:20:22 -08003146
3147 update_cpu_clock(p, rq, now);
3148
3149 rq->timestamp_last_tick = now;
3150
Christoph Lametere418e1c2006-12-10 02:20:23 -08003151 if (p == rq->idle)
Christoph Lameter7835b982006-12-10 02:20:22 -08003152 /* Task on the idle queue */
Christoph Lametere418e1c2006-12-10 02:20:23 -08003153 wake_priority_sleeper(rq);
3154 else
Christoph Lameter7835b982006-12-10 02:20:22 -08003155 task_running_tick(rq, p);
Christoph Lametere418e1c2006-12-10 02:20:23 -08003156#ifdef CONFIG_SMP
Christoph Lameter7835b982006-12-10 02:20:22 -08003157 update_load(rq);
Christoph Lametere418e1c2006-12-10 02:20:23 -08003158 rebalance_tick(cpu, rq);
3159#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160}
3161
3162#ifdef CONFIG_SCHED_SMT
Ingo Molnar70b97a72006-07-03 00:25:42 -07003163static inline void wakeup_busy_runqueue(struct rq *rq)
Con Kolivasfc38ed72005-09-10 00:26:08 -07003164{
3165 /* If an SMT runqueue is sleeping due to priority reasons wake it up */
3166 if (rq->curr == rq->idle && rq->nr_running)
3167 resched_task(rq->idle);
3168}
3169
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003170/*
3171 * Called with interrupt disabled and this_rq's runqueue locked.
3172 */
3173static void wake_sleeping_dependent(int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174{
Nick Piggin41c7ce92005-06-25 14:57:24 -07003175 struct sched_domain *tmp, *sd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 int i;
3177
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003178 for_each_domain(this_cpu, tmp) {
3179 if (tmp->flags & SD_SHARE_CPUPOWER) {
Nick Piggin41c7ce92005-06-25 14:57:24 -07003180 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003181 break;
3182 }
3183 }
Nick Piggin41c7ce92005-06-25 14:57:24 -07003184
3185 if (!sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 return;
3187
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003188 for_each_cpu_mask(i, sd->span) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07003189 struct rq *smt_rq = cpu_rq(i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003191 if (i == this_cpu)
3192 continue;
3193 if (unlikely(!spin_trylock(&smt_rq->lock)))
3194 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003196 wakeup_busy_runqueue(smt_rq);
3197 spin_unlock(&smt_rq->lock);
3198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199}
3200
Ingo Molnar67f9a612005-09-10 00:26:16 -07003201/*
3202 * number of 'lost' timeslices this task wont be able to fully
3203 * utilize, if another task runs on a sibling. This models the
3204 * slowdown effect of other tasks running on siblings:
3205 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003206static inline unsigned long
3207smt_slice(struct task_struct *p, struct sched_domain *sd)
Ingo Molnar67f9a612005-09-10 00:26:16 -07003208{
3209 return p->time_slice * (100 - sd->per_cpu_gain) / 100;
3210}
3211
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003212/*
3213 * To minimise lock contention and not have to drop this_rq's runlock we only
3214 * trylock the sibling runqueues and bypass those runqueues if we fail to
3215 * acquire their lock. As we only trylock the normal locking order does not
3216 * need to be obeyed.
3217 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003218static int
Ingo Molnar70b97a72006-07-03 00:25:42 -07003219dependent_sleeper(int this_cpu, struct rq *this_rq, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220{
Nick Piggin41c7ce92005-06-25 14:57:24 -07003221 struct sched_domain *tmp, *sd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 int ret = 0, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003224 /* kernel/rt threads do not participate in dependent sleeping */
3225 if (!p->mm || rt_task(p))
3226 return 0;
3227
3228 for_each_domain(this_cpu, tmp) {
3229 if (tmp->flags & SD_SHARE_CPUPOWER) {
Nick Piggin41c7ce92005-06-25 14:57:24 -07003230 sd = tmp;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003231 break;
3232 }
3233 }
Nick Piggin41c7ce92005-06-25 14:57:24 -07003234
3235 if (!sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 return 0;
3237
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003238 for_each_cpu_mask(i, sd->span) {
Ingo Molnar36c8b582006-07-03 00:25:41 -07003239 struct task_struct *smt_curr;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003240 struct rq *smt_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003242 if (i == this_cpu)
3243 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003245 smt_rq = cpu_rq(i);
3246 if (unlikely(!spin_trylock(&smt_rq->lock)))
3247 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003249 smt_curr = smt_rq->curr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003251 if (!smt_curr->mm)
3252 goto unlock;
Con Kolivasfc38ed72005-09-10 00:26:08 -07003253
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 /*
3255 * If a user task with lower static priority than the
3256 * running task on the SMT sibling is trying to schedule,
3257 * delay it till there is proportionately less timeslice
3258 * left of the sibling task to prevent a lower priority
3259 * task from using an unfair proportion of the
3260 * physical cpu's resources. -ck
3261 */
Con Kolivasfc38ed72005-09-10 00:26:08 -07003262 if (rt_task(smt_curr)) {
3263 /*
3264 * With real time tasks we run non-rt tasks only
3265 * per_cpu_gain% of the time.
3266 */
3267 if ((jiffies % DEF_TIMESLICE) >
3268 (sd->per_cpu_gain * DEF_TIMESLICE / 100))
3269 ret = 1;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003270 } else {
Ingo Molnar67f9a612005-09-10 00:26:16 -07003271 if (smt_curr->static_prio < p->static_prio &&
3272 !TASK_PREEMPTS_CURR(p, smt_rq) &&
3273 smt_slice(smt_curr, sd) > task_timeslice(p))
Con Kolivasfc38ed72005-09-10 00:26:08 -07003274 ret = 1;
Con Kolivasfc38ed72005-09-10 00:26:08 -07003275 }
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003276unlock:
3277 spin_unlock(&smt_rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 return ret;
3280}
3281#else
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003282static inline void wake_sleeping_dependent(int this_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283{
3284}
Ingo Molnar48f24c42006-07-03 00:25:40 -07003285static inline int
Ingo Molnar70b97a72006-07-03 00:25:42 -07003286dependent_sleeper(int this_cpu, struct rq *this_rq, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287{
3288 return 0;
3289}
3290#endif
3291
3292#if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
3293
3294void fastcall add_preempt_count(int val)
3295{
3296 /*
3297 * Underflow?
3298 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003299 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
3300 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301 preempt_count() += val;
3302 /*
3303 * Spinlock count overflowing soon?
3304 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003305 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >= PREEMPT_MASK-10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306}
3307EXPORT_SYMBOL(add_preempt_count);
3308
3309void fastcall sub_preempt_count(int val)
3310{
3311 /*
3312 * Underflow?
3313 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003314 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
3315 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316 /*
3317 * Is the spinlock portion underflowing?
3318 */
Ingo Molnar9a11b49a2006-07-03 00:24:33 -07003319 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
3320 !(preempt_count() & PREEMPT_MASK)))
3321 return;
3322
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 preempt_count() -= val;
3324}
3325EXPORT_SYMBOL(sub_preempt_count);
3326
3327#endif
3328
Con Kolivas3dee3862006-03-31 02:31:23 -08003329static inline int interactive_sleep(enum sleep_type sleep_type)
3330{
3331 return (sleep_type == SLEEP_INTERACTIVE ||
3332 sleep_type == SLEEP_INTERRUPTED);
3333}
3334
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335/*
3336 * schedule() is the main scheduler function.
3337 */
3338asmlinkage void __sched schedule(void)
3339{
Ingo Molnar36c8b582006-07-03 00:25:41 -07003340 struct task_struct *prev, *next;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003341 struct prio_array *array;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342 struct list_head *queue;
3343 unsigned long long now;
3344 unsigned long run_time;
Chen Shanga3464a12005-06-25 14:57:31 -07003345 int cpu, idx, new_prio;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003346 long *switch_count;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003347 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348
3349 /*
3350 * Test if we are atomic. Since do_exit() needs to call into
3351 * schedule() atomically, we ignore that path for now.
3352 * Otherwise, whine if we are scheduling when we should not be.
3353 */
Andreas Mohr77e4bfb2006-03-27 01:15:20 -08003354 if (unlikely(in_atomic() && !current->exit_state)) {
3355 printk(KERN_ERR "BUG: scheduling while atomic: "
3356 "%s/0x%08x/%d\n",
3357 current->comm, preempt_count(), current->pid);
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08003358 debug_show_held_locks(current);
Andreas Mohr77e4bfb2006-03-27 01:15:20 -08003359 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360 }
3361 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
3362
3363need_resched:
3364 preempt_disable();
3365 prev = current;
3366 release_kernel_lock(prev);
3367need_resched_nonpreemptible:
3368 rq = this_rq();
3369
3370 /*
3371 * The idle thread is not allowed to schedule!
3372 * Remove this check after it has been exercised a bit.
3373 */
3374 if (unlikely(prev == rq->idle) && prev->state != TASK_RUNNING) {
3375 printk(KERN_ERR "bad: scheduling from the idle thread!\n");
3376 dump_stack();
3377 }
3378
3379 schedstat_inc(rq, sched_cnt);
3380 now = sched_clock();
Ingo Molnar238628e2005-04-18 10:58:36 -07003381 if (likely((long long)(now - prev->timestamp) < NS_MAX_SLEEP_AVG)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382 run_time = now - prev->timestamp;
Ingo Molnar238628e2005-04-18 10:58:36 -07003383 if (unlikely((long long)(now - prev->timestamp) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 run_time = 0;
3385 } else
3386 run_time = NS_MAX_SLEEP_AVG;
3387
3388 /*
3389 * Tasks charged proportionately less run_time at high sleep_avg to
3390 * delay them losing their interactive status
3391 */
3392 run_time /= (CURRENT_BONUS(prev) ? : 1);
3393
3394 spin_lock_irq(&rq->lock);
3395
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396 switch_count = &prev->nivcsw;
3397 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
3398 switch_count = &prev->nvcsw;
3399 if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
3400 unlikely(signal_pending(prev))))
3401 prev->state = TASK_RUNNING;
3402 else {
3403 if (prev->state == TASK_UNINTERRUPTIBLE)
3404 rq->nr_uninterruptible++;
3405 deactivate_task(prev, rq);
3406 }
3407 }
3408
3409 cpu = smp_processor_id();
3410 if (unlikely(!rq->nr_running)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 idle_balance(cpu, rq);
3412 if (!rq->nr_running) {
3413 next = rq->idle;
3414 rq->expired_timestamp = 0;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003415 wake_sleeping_dependent(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 goto switch_tasks;
3417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 }
3419
3420 array = rq->active;
3421 if (unlikely(!array->nr_active)) {
3422 /*
3423 * Switch the active and expired arrays.
3424 */
3425 schedstat_inc(rq, sched_switch);
3426 rq->active = rq->expired;
3427 rq->expired = array;
3428 array = rq->active;
3429 rq->expired_timestamp = 0;
3430 rq->best_expired_prio = MAX_PRIO;
3431 }
3432
3433 idx = sched_find_first_bit(array->bitmap);
3434 queue = array->queue + idx;
Ingo Molnar36c8b582006-07-03 00:25:41 -07003435 next = list_entry(queue->next, struct task_struct, run_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436
Con Kolivas3dee3862006-03-31 02:31:23 -08003437 if (!rt_task(next) && interactive_sleep(next->sleep_type)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 unsigned long long delta = now - next->timestamp;
Ingo Molnar238628e2005-04-18 10:58:36 -07003439 if (unlikely((long long)(now - next->timestamp) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440 delta = 0;
3441
Con Kolivas3dee3862006-03-31 02:31:23 -08003442 if (next->sleep_type == SLEEP_INTERACTIVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443 delta = delta * (ON_RUNQUEUE_WEIGHT * 128 / 100) / 128;
3444
3445 array = next->array;
Chen Shanga3464a12005-06-25 14:57:31 -07003446 new_prio = recalc_task_prio(next, next->timestamp + delta);
3447
3448 if (unlikely(next->prio != new_prio)) {
3449 dequeue_task(next, array);
3450 next->prio = new_prio;
3451 enqueue_task(next, array);
Con Kolivas7c4bb1f2006-03-31 02:31:29 -08003452 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 }
Con Kolivas3dee3862006-03-31 02:31:23 -08003454 next->sleep_type = SLEEP_NORMAL;
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07003455 if (dependent_sleeper(cpu, rq, next))
3456 next = rq->idle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457switch_tasks:
3458 if (next == rq->idle)
3459 schedstat_inc(rq, sched_goidle);
3460 prefetch(next);
Chen, Kenneth W383f2832005-09-09 13:02:02 -07003461 prefetch_stack(next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 clear_tsk_need_resched(prev);
3463 rcu_qsctr_inc(task_cpu(prev));
3464
3465 update_cpu_clock(prev, rq, now);
3466
3467 prev->sleep_avg -= run_time;
3468 if ((long)prev->sleep_avg <= 0)
3469 prev->sleep_avg = 0;
3470 prev->timestamp = prev->last_ran = now;
3471
3472 sched_info_switch(prev, next);
3473 if (likely(prev != next)) {
3474 next->timestamp = now;
3475 rq->nr_switches++;
3476 rq->curr = next;
3477 ++*switch_count;
3478
Nick Piggin4866cde2005-06-25 14:57:23 -07003479 prepare_task_switch(rq, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480 prev = context_switch(rq, prev, next);
3481 barrier();
Nick Piggin4866cde2005-06-25 14:57:23 -07003482 /*
3483 * this_rq must be evaluated again because prev may have moved
3484 * CPUs since it called schedule(), thus the 'rq' on its stack
3485 * frame will be invalid.
3486 */
3487 finish_task_switch(this_rq(), prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 } else
3489 spin_unlock_irq(&rq->lock);
3490
3491 prev = current;
3492 if (unlikely(reacquire_kernel_lock(prev) < 0))
3493 goto need_resched_nonpreemptible;
3494 preempt_enable_no_resched();
3495 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3496 goto need_resched;
3497}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498EXPORT_SYMBOL(schedule);
3499
3500#ifdef CONFIG_PREEMPT
3501/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003502 * this is the entry point to schedule() from in-kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 * off of preempt_enable. Kernel preemptions off return from interrupt
3504 * occur there and call schedule directly.
3505 */
3506asmlinkage void __sched preempt_schedule(void)
3507{
3508 struct thread_info *ti = current_thread_info();
3509#ifdef CONFIG_PREEMPT_BKL
3510 struct task_struct *task = current;
3511 int saved_lock_depth;
3512#endif
3513 /*
3514 * If there is a non-zero preempt_count or interrupts are disabled,
3515 * we do not want to preempt the current task. Just return..
3516 */
Nick Pigginbeed33a2006-10-11 01:21:52 -07003517 if (likely(ti->preempt_count || irqs_disabled()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 return;
3519
3520need_resched:
3521 add_preempt_count(PREEMPT_ACTIVE);
3522 /*
3523 * We keep the big kernel semaphore locked, but we
3524 * clear ->lock_depth so that schedule() doesnt
3525 * auto-release the semaphore:
3526 */
3527#ifdef CONFIG_PREEMPT_BKL
3528 saved_lock_depth = task->lock_depth;
3529 task->lock_depth = -1;
3530#endif
3531 schedule();
3532#ifdef CONFIG_PREEMPT_BKL
3533 task->lock_depth = saved_lock_depth;
3534#endif
3535 sub_preempt_count(PREEMPT_ACTIVE);
3536
3537 /* we could miss a preemption opportunity between schedule and now */
3538 barrier();
3539 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3540 goto need_resched;
3541}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542EXPORT_SYMBOL(preempt_schedule);
3543
3544/*
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003545 * this is the entry point to schedule() from kernel preemption
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546 * off of irq context.
3547 * Note, that this is called and return with irqs disabled. This will
3548 * protect us against recursive calling from irq.
3549 */
3550asmlinkage void __sched preempt_schedule_irq(void)
3551{
3552 struct thread_info *ti = current_thread_info();
3553#ifdef CONFIG_PREEMPT_BKL
3554 struct task_struct *task = current;
3555 int saved_lock_depth;
3556#endif
Andreas Mohr2ed6e342006-07-10 04:43:52 -07003557 /* Catch callers which need to be fixed */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558 BUG_ON(ti->preempt_count || !irqs_disabled());
3559
3560need_resched:
3561 add_preempt_count(PREEMPT_ACTIVE);
3562 /*
3563 * We keep the big kernel semaphore locked, but we
3564 * clear ->lock_depth so that schedule() doesnt
3565 * auto-release the semaphore:
3566 */
3567#ifdef CONFIG_PREEMPT_BKL
3568 saved_lock_depth = task->lock_depth;
3569 task->lock_depth = -1;
3570#endif
3571 local_irq_enable();
3572 schedule();
3573 local_irq_disable();
3574#ifdef CONFIG_PREEMPT_BKL
3575 task->lock_depth = saved_lock_depth;
3576#endif
3577 sub_preempt_count(PREEMPT_ACTIVE);
3578
3579 /* we could miss a preemption opportunity between schedule and now */
3580 barrier();
3581 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3582 goto need_resched;
3583}
3584
3585#endif /* CONFIG_PREEMPT */
3586
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003587int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
3588 void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589{
Ingo Molnar48f24c42006-07-03 00:25:40 -07003590 return try_to_wake_up(curr->private, mode, sync);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592EXPORT_SYMBOL(default_wake_function);
3593
3594/*
3595 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
3596 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
3597 * number) then we wake all the non-exclusive tasks and one exclusive task.
3598 *
3599 * There are circumstances in which we can try to wake a task which has already
3600 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
3601 * zero in this (rare) case, and we handle it by continuing to scan the queue.
3602 */
3603static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
3604 int nr_exclusive, int sync, void *key)
3605{
3606 struct list_head *tmp, *next;
3607
3608 list_for_each_safe(tmp, next, &q->task_list) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07003609 wait_queue_t *curr = list_entry(tmp, wait_queue_t, task_list);
3610 unsigned flags = curr->flags;
3611
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612 if (curr->func(curr, mode, sync, key) &&
Ingo Molnar48f24c42006-07-03 00:25:40 -07003613 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 break;
3615 }
3616}
3617
3618/**
3619 * __wake_up - wake up threads blocked on a waitqueue.
3620 * @q: the waitqueue
3621 * @mode: which threads
3622 * @nr_exclusive: how many wake-one or wake-many threads to wake up
Martin Waitz67be2dd2005-05-01 08:59:26 -07003623 * @key: is directly passed to the wakeup function
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624 */
3625void fastcall __wake_up(wait_queue_head_t *q, unsigned int mode,
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003626 int nr_exclusive, void *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627{
3628 unsigned long flags;
3629
3630 spin_lock_irqsave(&q->lock, flags);
3631 __wake_up_common(q, mode, nr_exclusive, 0, key);
3632 spin_unlock_irqrestore(&q->lock, flags);
3633}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634EXPORT_SYMBOL(__wake_up);
3635
3636/*
3637 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
3638 */
3639void fastcall __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
3640{
3641 __wake_up_common(q, mode, 1, 0, NULL);
3642}
3643
3644/**
Martin Waitz67be2dd2005-05-01 08:59:26 -07003645 * __wake_up_sync - wake up threads blocked on a waitqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646 * @q: the waitqueue
3647 * @mode: which threads
3648 * @nr_exclusive: how many wake-one or wake-many threads to wake up
3649 *
3650 * The sync wakeup differs that the waker knows that it will schedule
3651 * away soon, so while the target thread will be woken up, it will not
3652 * be migrated to another CPU - ie. the two threads are 'synchronized'
3653 * with each other. This can prevent needless bouncing between CPUs.
3654 *
3655 * On UP it can prevent extra preemption.
3656 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003657void fastcall
3658__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659{
3660 unsigned long flags;
3661 int sync = 1;
3662
3663 if (unlikely(!q))
3664 return;
3665
3666 if (unlikely(!nr_exclusive))
3667 sync = 0;
3668
3669 spin_lock_irqsave(&q->lock, flags);
3670 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
3671 spin_unlock_irqrestore(&q->lock, flags);
3672}
3673EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
3674
3675void fastcall complete(struct completion *x)
3676{
3677 unsigned long flags;
3678
3679 spin_lock_irqsave(&x->wait.lock, flags);
3680 x->done++;
3681 __wake_up_common(&x->wait, TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE,
3682 1, 0, NULL);
3683 spin_unlock_irqrestore(&x->wait.lock, flags);
3684}
3685EXPORT_SYMBOL(complete);
3686
3687void fastcall complete_all(struct completion *x)
3688{
3689 unsigned long flags;
3690
3691 spin_lock_irqsave(&x->wait.lock, flags);
3692 x->done += UINT_MAX/2;
3693 __wake_up_common(&x->wait, TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE,
3694 0, 0, NULL);
3695 spin_unlock_irqrestore(&x->wait.lock, flags);
3696}
3697EXPORT_SYMBOL(complete_all);
3698
3699void fastcall __sched wait_for_completion(struct completion *x)
3700{
3701 might_sleep();
Ingo Molnar48f24c42006-07-03 00:25:40 -07003702
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703 spin_lock_irq(&x->wait.lock);
3704 if (!x->done) {
3705 DECLARE_WAITQUEUE(wait, current);
3706
3707 wait.flags |= WQ_FLAG_EXCLUSIVE;
3708 __add_wait_queue_tail(&x->wait, &wait);
3709 do {
3710 __set_current_state(TASK_UNINTERRUPTIBLE);
3711 spin_unlock_irq(&x->wait.lock);
3712 schedule();
3713 spin_lock_irq(&x->wait.lock);
3714 } while (!x->done);
3715 __remove_wait_queue(&x->wait, &wait);
3716 }
3717 x->done--;
3718 spin_unlock_irq(&x->wait.lock);
3719}
3720EXPORT_SYMBOL(wait_for_completion);
3721
3722unsigned long fastcall __sched
3723wait_for_completion_timeout(struct completion *x, unsigned long timeout)
3724{
3725 might_sleep();
3726
3727 spin_lock_irq(&x->wait.lock);
3728 if (!x->done) {
3729 DECLARE_WAITQUEUE(wait, current);
3730
3731 wait.flags |= WQ_FLAG_EXCLUSIVE;
3732 __add_wait_queue_tail(&x->wait, &wait);
3733 do {
3734 __set_current_state(TASK_UNINTERRUPTIBLE);
3735 spin_unlock_irq(&x->wait.lock);
3736 timeout = schedule_timeout(timeout);
3737 spin_lock_irq(&x->wait.lock);
3738 if (!timeout) {
3739 __remove_wait_queue(&x->wait, &wait);
3740 goto out;
3741 }
3742 } while (!x->done);
3743 __remove_wait_queue(&x->wait, &wait);
3744 }
3745 x->done--;
3746out:
3747 spin_unlock_irq(&x->wait.lock);
3748 return timeout;
3749}
3750EXPORT_SYMBOL(wait_for_completion_timeout);
3751
3752int fastcall __sched wait_for_completion_interruptible(struct completion *x)
3753{
3754 int ret = 0;
3755
3756 might_sleep();
3757
3758 spin_lock_irq(&x->wait.lock);
3759 if (!x->done) {
3760 DECLARE_WAITQUEUE(wait, current);
3761
3762 wait.flags |= WQ_FLAG_EXCLUSIVE;
3763 __add_wait_queue_tail(&x->wait, &wait);
3764 do {
3765 if (signal_pending(current)) {
3766 ret = -ERESTARTSYS;
3767 __remove_wait_queue(&x->wait, &wait);
3768 goto out;
3769 }
3770 __set_current_state(TASK_INTERRUPTIBLE);
3771 spin_unlock_irq(&x->wait.lock);
3772 schedule();
3773 spin_lock_irq(&x->wait.lock);
3774 } while (!x->done);
3775 __remove_wait_queue(&x->wait, &wait);
3776 }
3777 x->done--;
3778out:
3779 spin_unlock_irq(&x->wait.lock);
3780
3781 return ret;
3782}
3783EXPORT_SYMBOL(wait_for_completion_interruptible);
3784
3785unsigned long fastcall __sched
3786wait_for_completion_interruptible_timeout(struct completion *x,
3787 unsigned long timeout)
3788{
3789 might_sleep();
3790
3791 spin_lock_irq(&x->wait.lock);
3792 if (!x->done) {
3793 DECLARE_WAITQUEUE(wait, current);
3794
3795 wait.flags |= WQ_FLAG_EXCLUSIVE;
3796 __add_wait_queue_tail(&x->wait, &wait);
3797 do {
3798 if (signal_pending(current)) {
3799 timeout = -ERESTARTSYS;
3800 __remove_wait_queue(&x->wait, &wait);
3801 goto out;
3802 }
3803 __set_current_state(TASK_INTERRUPTIBLE);
3804 spin_unlock_irq(&x->wait.lock);
3805 timeout = schedule_timeout(timeout);
3806 spin_lock_irq(&x->wait.lock);
3807 if (!timeout) {
3808 __remove_wait_queue(&x->wait, &wait);
3809 goto out;
3810 }
3811 } while (!x->done);
3812 __remove_wait_queue(&x->wait, &wait);
3813 }
3814 x->done--;
3815out:
3816 spin_unlock_irq(&x->wait.lock);
3817 return timeout;
3818}
3819EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
3820
3821
3822#define SLEEP_ON_VAR \
3823 unsigned long flags; \
3824 wait_queue_t wait; \
3825 init_waitqueue_entry(&wait, current);
3826
3827#define SLEEP_ON_HEAD \
3828 spin_lock_irqsave(&q->lock,flags); \
3829 __add_wait_queue(q, &wait); \
3830 spin_unlock(&q->lock);
3831
3832#define SLEEP_ON_TAIL \
3833 spin_lock_irq(&q->lock); \
3834 __remove_wait_queue(q, &wait); \
3835 spin_unlock_irqrestore(&q->lock, flags);
3836
3837void fastcall __sched interruptible_sleep_on(wait_queue_head_t *q)
3838{
3839 SLEEP_ON_VAR
3840
3841 current->state = TASK_INTERRUPTIBLE;
3842
3843 SLEEP_ON_HEAD
3844 schedule();
3845 SLEEP_ON_TAIL
3846}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847EXPORT_SYMBOL(interruptible_sleep_on);
3848
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07003849long fastcall __sched
3850interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851{
3852 SLEEP_ON_VAR
3853
3854 current->state = TASK_INTERRUPTIBLE;
3855
3856 SLEEP_ON_HEAD
3857 timeout = schedule_timeout(timeout);
3858 SLEEP_ON_TAIL
3859
3860 return timeout;
3861}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862EXPORT_SYMBOL(interruptible_sleep_on_timeout);
3863
3864void fastcall __sched sleep_on(wait_queue_head_t *q)
3865{
3866 SLEEP_ON_VAR
3867
3868 current->state = TASK_UNINTERRUPTIBLE;
3869
3870 SLEEP_ON_HEAD
3871 schedule();
3872 SLEEP_ON_TAIL
3873}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874EXPORT_SYMBOL(sleep_on);
3875
3876long fastcall __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
3877{
3878 SLEEP_ON_VAR
3879
3880 current->state = TASK_UNINTERRUPTIBLE;
3881
3882 SLEEP_ON_HEAD
3883 timeout = schedule_timeout(timeout);
3884 SLEEP_ON_TAIL
3885
3886 return timeout;
3887}
3888
3889EXPORT_SYMBOL(sleep_on_timeout);
3890
Ingo Molnarb29739f2006-06-27 02:54:51 -07003891#ifdef CONFIG_RT_MUTEXES
3892
3893/*
3894 * rt_mutex_setprio - set the current priority of a task
3895 * @p: task
3896 * @prio: prio value (kernel-internal form)
3897 *
3898 * This function changes the 'effective' priority of a task. It does
3899 * not touch ->normal_prio like __setscheduler().
3900 *
3901 * Used by the rt_mutex code to implement priority inheritance logic.
3902 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07003903void rt_mutex_setprio(struct task_struct *p, int prio)
Ingo Molnarb29739f2006-06-27 02:54:51 -07003904{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003905 struct prio_array *array;
Ingo Molnarb29739f2006-06-27 02:54:51 -07003906 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003907 struct rq *rq;
Ingo Molnarb29739f2006-06-27 02:54:51 -07003908 int oldprio;
3909
3910 BUG_ON(prio < 0 || prio > MAX_PRIO);
3911
3912 rq = task_rq_lock(p, &flags);
3913
3914 oldprio = p->prio;
3915 array = p->array;
3916 if (array)
3917 dequeue_task(p, array);
3918 p->prio = prio;
3919
3920 if (array) {
3921 /*
3922 * If changing to an RT priority then queue it
3923 * in the active array!
3924 */
3925 if (rt_task(p))
3926 array = rq->active;
3927 enqueue_task(p, array);
3928 /*
3929 * Reschedule if we are currently running on this runqueue and
3930 * our priority decreased, or if we are not currently running on
3931 * this runqueue and our priority is higher than the current's
3932 */
3933 if (task_running(rq, p)) {
3934 if (p->prio > oldprio)
3935 resched_task(rq->curr);
3936 } else if (TASK_PREEMPTS_CURR(p, rq))
3937 resched_task(rq->curr);
3938 }
3939 task_rq_unlock(rq, &flags);
3940}
3941
3942#endif
3943
Ingo Molnar36c8b582006-07-03 00:25:41 -07003944void set_user_nice(struct task_struct *p, long nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945{
Ingo Molnar70b97a72006-07-03 00:25:42 -07003946 struct prio_array *array;
Ingo Molnar48f24c42006-07-03 00:25:40 -07003947 int old_prio, delta;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07003949 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950
3951 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
3952 return;
3953 /*
3954 * We have to be careful, if called from sys_setpriority(),
3955 * the task might be in the middle of scheduling on another CPU.
3956 */
3957 rq = task_rq_lock(p, &flags);
3958 /*
3959 * The RT priorities are set via sched_setscheduler(), but we still
3960 * allow the 'normal' nice value to be set - but as expected
3961 * it wont have any effect on scheduling until the task is
Ingo Molnarb0a94992006-01-14 13:20:41 -08003962 * not SCHED_NORMAL/SCHED_BATCH:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07003964 if (has_rt_policy(p)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 p->static_prio = NICE_TO_PRIO(nice);
3966 goto out_unlock;
3967 }
3968 array = p->array;
Peter Williams2dd73a42006-06-27 02:54:34 -07003969 if (array) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970 dequeue_task(p, array);
Peter Williams2dd73a42006-06-27 02:54:34 -07003971 dec_raw_weighted_load(rq, p);
3972 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974 p->static_prio = NICE_TO_PRIO(nice);
Peter Williams2dd73a42006-06-27 02:54:34 -07003975 set_load_weight(p);
Ingo Molnarb29739f2006-06-27 02:54:51 -07003976 old_prio = p->prio;
3977 p->prio = effective_prio(p);
3978 delta = p->prio - old_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979
3980 if (array) {
3981 enqueue_task(p, array);
Peter Williams2dd73a42006-06-27 02:54:34 -07003982 inc_raw_weighted_load(rq, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 /*
3984 * If the task increased its priority or is running and
3985 * lowered its priority, then reschedule its CPU:
3986 */
3987 if (delta < 0 || (delta > 0 && task_running(rq, p)))
3988 resched_task(rq->curr);
3989 }
3990out_unlock:
3991 task_rq_unlock(rq, &flags);
3992}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993EXPORT_SYMBOL(set_user_nice);
3994
Matt Mackalle43379f2005-05-01 08:59:00 -07003995/*
3996 * can_nice - check if a task can reduce its nice value
3997 * @p: task
3998 * @nice: nice value
3999 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004000int can_nice(const struct task_struct *p, const int nice)
Matt Mackalle43379f2005-05-01 08:59:00 -07004001{
Matt Mackall024f4742005-08-18 11:24:19 -07004002 /* convert nice value [19,-20] to rlimit style value [1,40] */
4003 int nice_rlim = 20 - nice;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004004
Matt Mackalle43379f2005-05-01 08:59:00 -07004005 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
4006 capable(CAP_SYS_NICE));
4007}
4008
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009#ifdef __ARCH_WANT_SYS_NICE
4010
4011/*
4012 * sys_nice - change the priority of the current process.
4013 * @increment: priority increment
4014 *
4015 * sys_setpriority is a more generic, but much slower function that
4016 * does similar things.
4017 */
4018asmlinkage long sys_nice(int increment)
4019{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004020 long nice, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021
4022 /*
4023 * Setpriority might change our priority at the same moment.
4024 * We don't have to worry. Conceptually one call occurs first
4025 * and we have a single winner.
4026 */
Matt Mackalle43379f2005-05-01 08:59:00 -07004027 if (increment < -40)
4028 increment = -40;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029 if (increment > 40)
4030 increment = 40;
4031
4032 nice = PRIO_TO_NICE(current->static_prio) + increment;
4033 if (nice < -20)
4034 nice = -20;
4035 if (nice > 19)
4036 nice = 19;
4037
Matt Mackalle43379f2005-05-01 08:59:00 -07004038 if (increment < 0 && !can_nice(current, nice))
4039 return -EPERM;
4040
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 retval = security_task_setnice(current, nice);
4042 if (retval)
4043 return retval;
4044
4045 set_user_nice(current, nice);
4046 return 0;
4047}
4048
4049#endif
4050
4051/**
4052 * task_prio - return the priority value of a given task.
4053 * @p: the task in question.
4054 *
4055 * This is the priority value as seen by users in /proc.
4056 * RT tasks are offset by -200. Normal tasks are centered
4057 * around 0, value goes from -16 to +15.
4058 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004059int task_prio(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060{
4061 return p->prio - MAX_RT_PRIO;
4062}
4063
4064/**
4065 * task_nice - return the nice value of a given task.
4066 * @p: the task in question.
4067 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004068int task_nice(const struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069{
4070 return TASK_NICE(p);
4071}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072EXPORT_SYMBOL_GPL(task_nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073
4074/**
4075 * idle_cpu - is a given cpu idle currently?
4076 * @cpu: the processor in question.
4077 */
4078int idle_cpu(int cpu)
4079{
4080 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
4081}
4082
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083/**
4084 * idle_task - return the idle task for a given cpu.
4085 * @cpu: the processor in question.
4086 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004087struct task_struct *idle_task(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088{
4089 return cpu_rq(cpu)->idle;
4090}
4091
4092/**
4093 * find_process_by_pid - find a process with a matching PID value.
4094 * @pid: the pid in question.
4095 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004096static inline struct task_struct *find_process_by_pid(pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097{
4098 return pid ? find_task_by_pid(pid) : current;
4099}
4100
4101/* Actually do priority change: must hold rq lock. */
4102static void __setscheduler(struct task_struct *p, int policy, int prio)
4103{
4104 BUG_ON(p->array);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004105
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106 p->policy = policy;
4107 p->rt_priority = prio;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004108 p->normal_prio = normal_prio(p);
4109 /* we are holding p->pi_lock already */
4110 p->prio = rt_mutex_getprio(p);
4111 /*
4112 * SCHED_BATCH tasks are treated as perpetual CPU hogs:
4113 */
4114 if (policy == SCHED_BATCH)
4115 p->sleep_avg = 0;
Peter Williams2dd73a42006-06-27 02:54:34 -07004116 set_load_weight(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117}
4118
4119/**
4120 * sched_setscheduler - change the scheduling policy and/or RT priority of
4121 * a thread.
4122 * @p: the task in question.
4123 * @policy: new policy.
4124 * @param: structure containing the new RT priority.
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004125 *
4126 * NOTE: the task may be already dead
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004128int sched_setscheduler(struct task_struct *p, int policy,
4129 struct sched_param *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004131 int retval, oldprio, oldpolicy = -1;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004132 struct prio_array *array;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004134 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135
Steven Rostedt66e53932006-06-27 02:54:44 -07004136 /* may grab non-irq protected spin_locks */
4137 BUG_ON(in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138recheck:
4139 /* double check policy once rq lock held */
4140 if (policy < 0)
4141 policy = oldpolicy = p->policy;
4142 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
Ingo Molnarb0a94992006-01-14 13:20:41 -08004143 policy != SCHED_NORMAL && policy != SCHED_BATCH)
4144 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145 /*
4146 * Valid priorities for SCHED_FIFO and SCHED_RR are
Ingo Molnarb0a94992006-01-14 13:20:41 -08004147 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL and
4148 * SCHED_BATCH is 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149 */
4150 if (param->sched_priority < 0 ||
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004151 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
Steven Rostedtd46523e2005-07-25 16:28:39 -04004152 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153 return -EINVAL;
Oleg Nesterov57a6f512006-09-29 02:00:49 -07004154 if (is_rt_policy(policy) != (param->sched_priority != 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155 return -EINVAL;
4156
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004157 /*
4158 * Allow unprivileged RT tasks to decrease priority:
4159 */
4160 if (!capable(CAP_SYS_NICE)) {
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004161 if (is_rt_policy(policy)) {
4162 unsigned long rlim_rtprio;
4163 unsigned long flags;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004164
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004165 if (!lock_task_sighand(p, &flags))
4166 return -ESRCH;
4167 rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur;
4168 unlock_task_sighand(p, &flags);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004169
Oleg Nesterov8dc3e902006-09-29 02:00:50 -07004170 /* can't set/change the rt policy */
4171 if (policy != p->policy && !rlim_rtprio)
4172 return -EPERM;
4173
4174 /* can't increase priority */
4175 if (param->sched_priority > p->rt_priority &&
4176 param->sched_priority > rlim_rtprio)
4177 return -EPERM;
4178 }
4179
Olivier Croquette37e4ab32005-06-25 14:57:32 -07004180 /* can't change other user's priorities */
4181 if ((current->euid != p->euid) &&
4182 (current->euid != p->uid))
4183 return -EPERM;
4184 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185
4186 retval = security_task_setscheduler(p, policy, param);
4187 if (retval)
4188 return retval;
4189 /*
Ingo Molnarb29739f2006-06-27 02:54:51 -07004190 * make sure no PI-waiters arrive (or leave) while we are
4191 * changing the priority of the task:
4192 */
4193 spin_lock_irqsave(&p->pi_lock, flags);
4194 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195 * To be able to change p->policy safely, the apropriate
4196 * runqueue lock must be held.
4197 */
Ingo Molnarb29739f2006-06-27 02:54:51 -07004198 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199 /* recheck policy now with rq lock held */
4200 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
4201 policy = oldpolicy = -1;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004202 __task_rq_unlock(rq);
4203 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204 goto recheck;
4205 }
4206 array = p->array;
4207 if (array)
4208 deactivate_task(p, rq);
4209 oldprio = p->prio;
4210 __setscheduler(p, policy, param->sched_priority);
4211 if (array) {
4212 __activate_task(p, rq);
4213 /*
4214 * Reschedule if we are currently running on this runqueue and
4215 * our priority decreased, or if we are not currently running on
4216 * this runqueue and our priority is higher than the current's
4217 */
4218 if (task_running(rq, p)) {
4219 if (p->prio > oldprio)
4220 resched_task(rq->curr);
4221 } else if (TASK_PREEMPTS_CURR(p, rq))
4222 resched_task(rq->curr);
4223 }
Ingo Molnarb29739f2006-06-27 02:54:51 -07004224 __task_rq_unlock(rq);
4225 spin_unlock_irqrestore(&p->pi_lock, flags);
4226
Thomas Gleixner95e02ca2006-06-27 02:55:02 -07004227 rt_mutex_adjust_pi(p);
4228
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229 return 0;
4230}
4231EXPORT_SYMBOL_GPL(sched_setscheduler);
4232
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004233static int
4234do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236 struct sched_param lparam;
4237 struct task_struct *p;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004238 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239
4240 if (!param || pid < 0)
4241 return -EINVAL;
4242 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
4243 return -EFAULT;
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004244
4245 rcu_read_lock();
4246 retval = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247 p = find_process_by_pid(pid);
Oleg Nesterov5fe1d752006-09-29 02:00:48 -07004248 if (p != NULL)
4249 retval = sched_setscheduler(p, policy, &lparam);
4250 rcu_read_unlock();
Ingo Molnar36c8b582006-07-03 00:25:41 -07004251
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252 return retval;
4253}
4254
4255/**
4256 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
4257 * @pid: the pid in question.
4258 * @policy: new policy.
4259 * @param: structure containing the new RT priority.
4260 */
4261asmlinkage long sys_sched_setscheduler(pid_t pid, int policy,
4262 struct sched_param __user *param)
4263{
Jason Baronc21761f2006-01-18 17:43:03 -08004264 /* negative values for policy are not valid */
4265 if (policy < 0)
4266 return -EINVAL;
4267
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268 return do_sched_setscheduler(pid, policy, param);
4269}
4270
4271/**
4272 * sys_sched_setparam - set/change the RT priority of a thread
4273 * @pid: the pid in question.
4274 * @param: structure containing the new RT priority.
4275 */
4276asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
4277{
4278 return do_sched_setscheduler(pid, -1, param);
4279}
4280
4281/**
4282 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
4283 * @pid: the pid in question.
4284 */
4285asmlinkage long sys_sched_getscheduler(pid_t pid)
4286{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004287 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004289
4290 if (pid < 0)
4291 goto out_nounlock;
4292
4293 retval = -ESRCH;
4294 read_lock(&tasklist_lock);
4295 p = find_process_by_pid(pid);
4296 if (p) {
4297 retval = security_task_getscheduler(p);
4298 if (!retval)
4299 retval = p->policy;
4300 }
4301 read_unlock(&tasklist_lock);
4302
4303out_nounlock:
4304 return retval;
4305}
4306
4307/**
4308 * sys_sched_getscheduler - get the RT priority of a thread
4309 * @pid: the pid in question.
4310 * @param: structure containing the RT priority.
4311 */
4312asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
4313{
4314 struct sched_param lp;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004315 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316 int retval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317
4318 if (!param || pid < 0)
4319 goto out_nounlock;
4320
4321 read_lock(&tasklist_lock);
4322 p = find_process_by_pid(pid);
4323 retval = -ESRCH;
4324 if (!p)
4325 goto out_unlock;
4326
4327 retval = security_task_getscheduler(p);
4328 if (retval)
4329 goto out_unlock;
4330
4331 lp.sched_priority = p->rt_priority;
4332 read_unlock(&tasklist_lock);
4333
4334 /*
4335 * This one might sleep, we cannot do it with a spinlock held ...
4336 */
4337 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
4338
4339out_nounlock:
4340 return retval;
4341
4342out_unlock:
4343 read_unlock(&tasklist_lock);
4344 return retval;
4345}
4346
4347long sched_setaffinity(pid_t pid, cpumask_t new_mask)
4348{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349 cpumask_t cpus_allowed;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004350 struct task_struct *p;
4351 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352
4353 lock_cpu_hotplug();
4354 read_lock(&tasklist_lock);
4355
4356 p = find_process_by_pid(pid);
4357 if (!p) {
4358 read_unlock(&tasklist_lock);
4359 unlock_cpu_hotplug();
4360 return -ESRCH;
4361 }
4362
4363 /*
4364 * It is not safe to call set_cpus_allowed with the
4365 * tasklist_lock held. We will bump the task_struct's
4366 * usage count and then drop tasklist_lock.
4367 */
4368 get_task_struct(p);
4369 read_unlock(&tasklist_lock);
4370
4371 retval = -EPERM;
4372 if ((current->euid != p->euid) && (current->euid != p->uid) &&
4373 !capable(CAP_SYS_NICE))
4374 goto out_unlock;
4375
David Quigleye7834f82006-06-23 02:03:59 -07004376 retval = security_task_setscheduler(p, 0, NULL);
4377 if (retval)
4378 goto out_unlock;
4379
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380 cpus_allowed = cpuset_cpus_allowed(p);
4381 cpus_and(new_mask, new_mask, cpus_allowed);
4382 retval = set_cpus_allowed(p, new_mask);
4383
4384out_unlock:
4385 put_task_struct(p);
4386 unlock_cpu_hotplug();
4387 return retval;
4388}
4389
4390static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
4391 cpumask_t *new_mask)
4392{
4393 if (len < sizeof(cpumask_t)) {
4394 memset(new_mask, 0, sizeof(cpumask_t));
4395 } else if (len > sizeof(cpumask_t)) {
4396 len = sizeof(cpumask_t);
4397 }
4398 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
4399}
4400
4401/**
4402 * sys_sched_setaffinity - set the cpu affinity of a process
4403 * @pid: pid of the process
4404 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4405 * @user_mask_ptr: user-space pointer to the new cpu mask
4406 */
4407asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
4408 unsigned long __user *user_mask_ptr)
4409{
4410 cpumask_t new_mask;
4411 int retval;
4412
4413 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
4414 if (retval)
4415 return retval;
4416
4417 return sched_setaffinity(pid, new_mask);
4418}
4419
4420/*
4421 * Represents all cpu's present in the system
4422 * In systems capable of hotplug, this map could dynamically grow
4423 * as new cpu's are detected in the system via any platform specific
4424 * method, such as ACPI for e.g.
4425 */
4426
Andi Kleen4cef0c62006-01-11 22:44:57 +01004427cpumask_t cpu_present_map __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428EXPORT_SYMBOL(cpu_present_map);
4429
4430#ifndef CONFIG_SMP
Andi Kleen4cef0c62006-01-11 22:44:57 +01004431cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004432EXPORT_SYMBOL(cpu_online_map);
4433
Andi Kleen4cef0c62006-01-11 22:44:57 +01004434cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
Greg Bankse16b38f2006-10-02 02:17:40 -07004435EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436#endif
4437
4438long sched_getaffinity(pid_t pid, cpumask_t *mask)
4439{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004440 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442
4443 lock_cpu_hotplug();
4444 read_lock(&tasklist_lock);
4445
4446 retval = -ESRCH;
4447 p = find_process_by_pid(pid);
4448 if (!p)
4449 goto out_unlock;
4450
David Quigleye7834f82006-06-23 02:03:59 -07004451 retval = security_task_getscheduler(p);
4452 if (retval)
4453 goto out_unlock;
4454
Jack Steiner2f7016d2006-02-01 03:05:18 -08004455 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456
4457out_unlock:
4458 read_unlock(&tasklist_lock);
4459 unlock_cpu_hotplug();
4460 if (retval)
4461 return retval;
4462
4463 return 0;
4464}
4465
4466/**
4467 * sys_sched_getaffinity - get the cpu affinity of a process
4468 * @pid: pid of the process
4469 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4470 * @user_mask_ptr: user-space pointer to hold the current cpu mask
4471 */
4472asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
4473 unsigned long __user *user_mask_ptr)
4474{
4475 int ret;
4476 cpumask_t mask;
4477
4478 if (len < sizeof(cpumask_t))
4479 return -EINVAL;
4480
4481 ret = sched_getaffinity(pid, &mask);
4482 if (ret < 0)
4483 return ret;
4484
4485 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
4486 return -EFAULT;
4487
4488 return sizeof(cpumask_t);
4489}
4490
4491/**
4492 * sys_sched_yield - yield the current processor to other threads.
4493 *
4494 * this function yields the current CPU by moving the calling thread
4495 * to the expired array. If there are no other threads running on this
4496 * CPU then this function will return.
4497 */
4498asmlinkage long sys_sched_yield(void)
4499{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004500 struct rq *rq = this_rq_lock();
4501 struct prio_array *array = current->array, *target = rq->expired;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502
4503 schedstat_inc(rq, yld_cnt);
4504 /*
4505 * We implement yielding by moving the task into the expired
4506 * queue.
4507 *
4508 * (special rule: RT tasks will just roundrobin in the active
4509 * array.)
4510 */
4511 if (rt_task(current))
4512 target = rq->active;
4513
Renaud Lienhart5927ad72005-09-10 00:26:20 -07004514 if (array->nr_active == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515 schedstat_inc(rq, yld_act_empty);
4516 if (!rq->expired->nr_active)
4517 schedstat_inc(rq, yld_both_empty);
4518 } else if (!rq->expired->nr_active)
4519 schedstat_inc(rq, yld_exp_empty);
4520
4521 if (array != target) {
4522 dequeue_task(current, array);
4523 enqueue_task(current, target);
4524 } else
4525 /*
4526 * requeue_task is cheaper so perform that if possible.
4527 */
4528 requeue_task(current, array);
4529
4530 /*
4531 * Since we are going to call schedule() anyway, there's
4532 * no need to preempt or enable interrupts:
4533 */
4534 __release(rq->lock);
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004535 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536 _raw_spin_unlock(&rq->lock);
4537 preempt_enable_no_resched();
4538
4539 schedule();
4540
4541 return 0;
4542}
4543
Jim Houston2d7d2532006-07-30 03:03:39 -07004544static inline int __resched_legal(int expected_preempt_count)
Andrew Mortone7b38402006-06-30 01:56:00 -07004545{
Jim Houston2d7d2532006-07-30 03:03:39 -07004546 if (unlikely(preempt_count() != expected_preempt_count))
Andrew Mortone7b38402006-06-30 01:56:00 -07004547 return 0;
4548 if (unlikely(system_state != SYSTEM_RUNNING))
4549 return 0;
4550 return 1;
4551}
4552
4553static void __cond_resched(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554{
Ingo Molnar8e0a43d2006-06-23 02:05:23 -07004555#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
4556 __might_sleep(__FILE__, __LINE__);
4557#endif
Ingo Molnar5bbcfd92005-07-07 17:57:04 -07004558 /*
4559 * The BKS might be reacquired before we have dropped
4560 * PREEMPT_ACTIVE, which could trigger a second
4561 * cond_resched() call.
4562 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563 do {
4564 add_preempt_count(PREEMPT_ACTIVE);
4565 schedule();
4566 sub_preempt_count(PREEMPT_ACTIVE);
4567 } while (need_resched());
4568}
4569
4570int __sched cond_resched(void)
4571{
Jim Houston2d7d2532006-07-30 03:03:39 -07004572 if (need_resched() && __resched_legal(0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573 __cond_resched();
4574 return 1;
4575 }
4576 return 0;
4577}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004578EXPORT_SYMBOL(cond_resched);
4579
4580/*
4581 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
4582 * call schedule, and on return reacquire the lock.
4583 *
4584 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
4585 * operations here to prevent schedule() from being called twice (once via
4586 * spin_unlock(), once by hand).
4587 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07004588int cond_resched_lock(spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589{
Jan Kara6df3cec2005-06-13 15:52:32 -07004590 int ret = 0;
4591
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592 if (need_lockbreak(lock)) {
4593 spin_unlock(lock);
4594 cpu_relax();
Jan Kara6df3cec2005-06-13 15:52:32 -07004595 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596 spin_lock(lock);
4597 }
Jim Houston2d7d2532006-07-30 03:03:39 -07004598 if (need_resched() && __resched_legal(1)) {
Ingo Molnar8a25d5d2006-07-03 00:24:54 -07004599 spin_release(&lock->dep_map, 1, _THIS_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600 _raw_spin_unlock(lock);
4601 preempt_enable_no_resched();
4602 __cond_resched();
Jan Kara6df3cec2005-06-13 15:52:32 -07004603 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604 spin_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605 }
Jan Kara6df3cec2005-06-13 15:52:32 -07004606 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608EXPORT_SYMBOL(cond_resched_lock);
4609
4610int __sched cond_resched_softirq(void)
4611{
4612 BUG_ON(!in_softirq());
4613
Jim Houston2d7d2532006-07-30 03:03:39 -07004614 if (need_resched() && __resched_legal(0)) {
Ingo Molnarde30a2b2006-07-03 00:24:42 -07004615 raw_local_irq_disable();
4616 _local_bh_enable();
4617 raw_local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618 __cond_resched();
4619 local_bh_disable();
4620 return 1;
4621 }
4622 return 0;
4623}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624EXPORT_SYMBOL(cond_resched_softirq);
4625
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626/**
4627 * yield - yield the current processor to other threads.
4628 *
4629 * this is a shortcut for kernel-space yielding - it marks the
4630 * thread runnable and calls sys_sched_yield().
4631 */
4632void __sched yield(void)
4633{
4634 set_current_state(TASK_RUNNING);
4635 sys_sched_yield();
4636}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004637EXPORT_SYMBOL(yield);
4638
4639/*
4640 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
4641 * that process accounting knows that this is a task in IO wait state.
4642 *
4643 * But don't do that if it is a deliberate, throttling IO wait (this task
4644 * has set its backing_dev_info: the queue against which it should throttle)
4645 */
4646void __sched io_schedule(void)
4647{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004648 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004650 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651 atomic_inc(&rq->nr_iowait);
4652 schedule();
4653 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004654 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656EXPORT_SYMBOL(io_schedule);
4657
4658long __sched io_schedule_timeout(long timeout)
4659{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004660 struct rq *rq = &__raw_get_cpu_var(runqueues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661 long ret;
4662
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004663 delayacct_blkio_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664 atomic_inc(&rq->nr_iowait);
4665 ret = schedule_timeout(timeout);
4666 atomic_dec(&rq->nr_iowait);
Shailabh Nagar0ff92242006-07-14 00:24:37 -07004667 delayacct_blkio_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668 return ret;
4669}
4670
4671/**
4672 * sys_sched_get_priority_max - return maximum RT priority.
4673 * @policy: scheduling class.
4674 *
4675 * this syscall returns the maximum rt_priority that can be used
4676 * by a given scheduling class.
4677 */
4678asmlinkage long sys_sched_get_priority_max(int policy)
4679{
4680 int ret = -EINVAL;
4681
4682 switch (policy) {
4683 case SCHED_FIFO:
4684 case SCHED_RR:
4685 ret = MAX_USER_RT_PRIO-1;
4686 break;
4687 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08004688 case SCHED_BATCH:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689 ret = 0;
4690 break;
4691 }
4692 return ret;
4693}
4694
4695/**
4696 * sys_sched_get_priority_min - return minimum RT priority.
4697 * @policy: scheduling class.
4698 *
4699 * this syscall returns the minimum rt_priority that can be used
4700 * by a given scheduling class.
4701 */
4702asmlinkage long sys_sched_get_priority_min(int policy)
4703{
4704 int ret = -EINVAL;
4705
4706 switch (policy) {
4707 case SCHED_FIFO:
4708 case SCHED_RR:
4709 ret = 1;
4710 break;
4711 case SCHED_NORMAL:
Ingo Molnarb0a94992006-01-14 13:20:41 -08004712 case SCHED_BATCH:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713 ret = 0;
4714 }
4715 return ret;
4716}
4717
4718/**
4719 * sys_sched_rr_get_interval - return the default timeslice of a process.
4720 * @pid: pid of the process.
4721 * @interval: userspace pointer to the timeslice value.
4722 *
4723 * this syscall writes the default timeslice value of a given process
4724 * into the user-space timespec buffer. A value of '0' means infinity.
4725 */
4726asmlinkage
4727long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
4728{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004729 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004730 int retval = -EINVAL;
4731 struct timespec t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732
4733 if (pid < 0)
4734 goto out_nounlock;
4735
4736 retval = -ESRCH;
4737 read_lock(&tasklist_lock);
4738 p = find_process_by_pid(pid);
4739 if (!p)
4740 goto out_unlock;
4741
4742 retval = security_task_getscheduler(p);
4743 if (retval)
4744 goto out_unlock;
4745
Peter Williamsb78709c2006-06-26 16:58:00 +10004746 jiffies_to_timespec(p->policy == SCHED_FIFO ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747 0 : task_timeslice(p), &t);
4748 read_unlock(&tasklist_lock);
4749 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
4750out_nounlock:
4751 return retval;
4752out_unlock:
4753 read_unlock(&tasklist_lock);
4754 return retval;
4755}
4756
4757static inline struct task_struct *eldest_child(struct task_struct *p)
4758{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004759 if (list_empty(&p->children))
4760 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004761 return list_entry(p->children.next,struct task_struct,sibling);
4762}
4763
4764static inline struct task_struct *older_sibling(struct task_struct *p)
4765{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004766 if (p->sibling.prev==&p->parent->children)
4767 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004768 return list_entry(p->sibling.prev,struct task_struct,sibling);
4769}
4770
4771static inline struct task_struct *younger_sibling(struct task_struct *p)
4772{
Ingo Molnar48f24c42006-07-03 00:25:40 -07004773 if (p->sibling.next==&p->parent->children)
4774 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004775 return list_entry(p->sibling.next,struct task_struct,sibling);
4776}
4777
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004778static const char stat_nam[] = "RSDTtZX";
Ingo Molnar36c8b582006-07-03 00:25:41 -07004779
4780static void show_task(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004781{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004782 struct task_struct *relative;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783 unsigned long free = 0;
Ingo Molnar36c8b582006-07-03 00:25:41 -07004784 unsigned state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786 state = p->state ? __ffs(p->state) + 1 : 0;
Andreas Mohr2ed6e342006-07-10 04:43:52 -07004787 printk("%-13.13s %c", p->comm,
4788 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789#if (BITS_PER_LONG == 32)
4790 if (state == TASK_RUNNING)
4791 printk(" running ");
4792 else
4793 printk(" %08lX ", thread_saved_pc(p));
4794#else
4795 if (state == TASK_RUNNING)
4796 printk(" running task ");
4797 else
4798 printk(" %016lx ", thread_saved_pc(p));
4799#endif
4800#ifdef CONFIG_DEBUG_STACK_USAGE
4801 {
Al Viro10ebffd2005-11-13 16:06:56 -08004802 unsigned long *n = end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803 while (!*n)
4804 n++;
Al Viro10ebffd2005-11-13 16:06:56 -08004805 free = (unsigned long)n - (unsigned long)end_of_stack(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806 }
4807#endif
4808 printk("%5lu %5d %6d ", free, p->pid, p->parent->pid);
4809 if ((relative = eldest_child(p)))
4810 printk("%5d ", relative->pid);
4811 else
4812 printk(" ");
4813 if ((relative = younger_sibling(p)))
4814 printk("%7d", relative->pid);
4815 else
4816 printk(" ");
4817 if ((relative = older_sibling(p)))
4818 printk(" %5d", relative->pid);
4819 else
4820 printk(" ");
4821 if (!p->mm)
4822 printk(" (L-TLB)\n");
4823 else
4824 printk(" (NOTLB)\n");
4825
4826 if (state != TASK_RUNNING)
4827 show_stack(p, NULL);
4828}
4829
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004830void show_state_filter(unsigned long state_filter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831{
Ingo Molnar36c8b582006-07-03 00:25:41 -07004832 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833
4834#if (BITS_PER_LONG == 32)
4835 printk("\n"
Chris Caputo301827a2006-12-06 20:39:11 -08004836 " free sibling\n");
4837 printk(" task PC stack pid father child younger older\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838#else
4839 printk("\n"
Chris Caputo301827a2006-12-06 20:39:11 -08004840 " free sibling\n");
4841 printk(" task PC stack pid father child younger older\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842#endif
4843 read_lock(&tasklist_lock);
4844 do_each_thread(g, p) {
4845 /*
4846 * reset the NMI-timeout, listing all files on a slow
4847 * console might take alot of time:
4848 */
4849 touch_nmi_watchdog();
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004850 if (p->state & state_filter)
4851 show_task(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852 } while_each_thread(g, p);
4853
4854 read_unlock(&tasklist_lock);
Ingo Molnare59e2ae2006-12-06 20:35:59 -08004855 /*
4856 * Only show locks if all tasks are dumped:
4857 */
4858 if (state_filter == -1)
4859 debug_show_all_locks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860}
4861
Ingo Molnarf340c0d2005-06-28 16:40:42 +02004862/**
4863 * init_idle - set up an idle thread for a given CPU
4864 * @idle: task in question
4865 * @cpu: cpu the idle task belongs to
4866 *
4867 * NOTE: this function does not set the idle thread's NEED_RESCHED
4868 * flag, to make booting more robust.
4869 */
Nick Piggin5c1e1762006-10-03 01:14:04 -07004870void __cpuinit init_idle(struct task_struct *idle, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004872 struct rq *rq = cpu_rq(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004873 unsigned long flags;
4874
Ingo Molnar81c29a82006-03-07 21:55:27 -08004875 idle->timestamp = sched_clock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876 idle->sleep_avg = 0;
4877 idle->array = NULL;
Ingo Molnarb29739f2006-06-27 02:54:51 -07004878 idle->prio = idle->normal_prio = MAX_PRIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879 idle->state = TASK_RUNNING;
4880 idle->cpus_allowed = cpumask_of_cpu(cpu);
4881 set_task_cpu(idle, cpu);
4882
4883 spin_lock_irqsave(&rq->lock, flags);
4884 rq->curr = rq->idle = idle;
Nick Piggin4866cde2005-06-25 14:57:23 -07004885#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
4886 idle->oncpu = 1;
4887#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888 spin_unlock_irqrestore(&rq->lock, flags);
4889
4890 /* Set the preempt count _outside_ the spinlocks! */
4891#if defined(CONFIG_PREEMPT) && !defined(CONFIG_PREEMPT_BKL)
Al Viroa1261f52005-11-13 16:06:55 -08004892 task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893#else
Al Viroa1261f52005-11-13 16:06:55 -08004894 task_thread_info(idle)->preempt_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895#endif
4896}
4897
4898/*
4899 * In a system that switches off the HZ timer nohz_cpu_mask
4900 * indicates which cpus entered this state. This is used
4901 * in the rcu update to wait only for active cpus. For system
4902 * which do not switch off the HZ timer nohz_cpu_mask should
4903 * always be CPU_MASK_NONE.
4904 */
4905cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
4906
4907#ifdef CONFIG_SMP
4908/*
4909 * This is how migration works:
4910 *
Ingo Molnar70b97a72006-07-03 00:25:42 -07004911 * 1) we queue a struct migration_req structure in the source CPU's
Linus Torvalds1da177e2005-04-16 15:20:36 -07004912 * runqueue and wake up that CPU's migration thread.
4913 * 2) we down() the locked semaphore => thread blocks.
4914 * 3) migration thread wakes up (implicitly it forces the migrated
4915 * thread off the CPU)
4916 * 4) it gets the migration request and checks whether the migrated
4917 * task is still in the wrong runqueue.
4918 * 5) if it's in the wrong runqueue then the migration thread removes
4919 * it and puts it into the right queue.
4920 * 6) migration thread up()s the semaphore.
4921 * 7) we wake up and the migration is done.
4922 */
4923
4924/*
4925 * Change a given task's CPU affinity. Migrate the thread to a
4926 * proper CPU and schedule it away if the CPU it's executing on
4927 * is removed from the allowed bitmask.
4928 *
4929 * NOTE: the caller must have a valid reference to the task, the
4930 * task must not exit() & deallocate itself prematurely. The
4931 * call is not atomic; no spinlocks may be held.
4932 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07004933int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004935 struct migration_req req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004936 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07004937 struct rq *rq;
Ingo Molnar48f24c42006-07-03 00:25:40 -07004938 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939
4940 rq = task_rq_lock(p, &flags);
4941 if (!cpus_intersects(new_mask, cpu_online_map)) {
4942 ret = -EINVAL;
4943 goto out;
4944 }
4945
4946 p->cpus_allowed = new_mask;
4947 /* Can the task run on the task's current CPU? If so, we're done */
4948 if (cpu_isset(task_cpu(p), new_mask))
4949 goto out;
4950
4951 if (migrate_task(p, any_online_cpu(new_mask), &req)) {
4952 /* Need help from migration thread: drop lock and wait. */
4953 task_rq_unlock(rq, &flags);
4954 wake_up_process(rq->migration_thread);
4955 wait_for_completion(&req.done);
4956 tlb_migrate_finish(p->mm);
4957 return 0;
4958 }
4959out:
4960 task_rq_unlock(rq, &flags);
Ingo Molnar48f24c42006-07-03 00:25:40 -07004961
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962 return ret;
4963}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964EXPORT_SYMBOL_GPL(set_cpus_allowed);
4965
4966/*
4967 * Move (not current) task off this cpu, onto dest cpu. We're doing
4968 * this because either it can't run here any more (set_cpus_allowed()
4969 * away from this CPU, or CPU going down), or because we're
4970 * attempting to rebalance this task on exec (sched_exec).
4971 *
4972 * So we race with normal scheduler movements, but that's OK, as long
4973 * as the task is no longer on this CPU.
Kirill Korotaevefc30812006-06-27 02:54:32 -07004974 *
4975 * Returns non-zero if task was successfully migrated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976 */
Kirill Korotaevefc30812006-06-27 02:54:32 -07004977static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978{
Ingo Molnar70b97a72006-07-03 00:25:42 -07004979 struct rq *rq_dest, *rq_src;
Kirill Korotaevefc30812006-06-27 02:54:32 -07004980 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981
4982 if (unlikely(cpu_is_offline(dest_cpu)))
Kirill Korotaevefc30812006-06-27 02:54:32 -07004983 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984
4985 rq_src = cpu_rq(src_cpu);
4986 rq_dest = cpu_rq(dest_cpu);
4987
4988 double_rq_lock(rq_src, rq_dest);
4989 /* Already moved. */
4990 if (task_cpu(p) != src_cpu)
4991 goto out;
4992 /* Affinity changed (again). */
4993 if (!cpu_isset(dest_cpu, p->cpus_allowed))
4994 goto out;
4995
4996 set_task_cpu(p, dest_cpu);
4997 if (p->array) {
4998 /*
4999 * Sync timestamp with rq_dest's before activating.
5000 * The same thing could be achieved by doing this step
5001 * afterwards, and pretending it was a local activate.
5002 * This way is cleaner and logically correct.
5003 */
5004 p->timestamp = p->timestamp - rq_src->timestamp_last_tick
5005 + rq_dest->timestamp_last_tick;
5006 deactivate_task(p, rq_src);
Peter Williams0a565f72006-07-10 04:43:51 -07005007 __activate_task(p, rq_dest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005008 if (TASK_PREEMPTS_CURR(p, rq_dest))
5009 resched_task(rq_dest->curr);
5010 }
Kirill Korotaevefc30812006-06-27 02:54:32 -07005011 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005012out:
5013 double_rq_unlock(rq_src, rq_dest);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005014 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015}
5016
5017/*
5018 * migration_thread - this is a highprio system thread that performs
5019 * thread migration by bumping thread off CPU then 'pushing' onto
5020 * another runqueue.
5021 */
Ingo Molnar95cdf3b2005-09-10 00:26:11 -07005022static int migration_thread(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005023{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005024 int cpu = (long)data;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005025 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005026
5027 rq = cpu_rq(cpu);
5028 BUG_ON(rq->migration_thread != current);
5029
5030 set_current_state(TASK_INTERRUPTIBLE);
5031 while (!kthread_should_stop()) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005032 struct migration_req *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005034
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07005035 try_to_freeze();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036
5037 spin_lock_irq(&rq->lock);
5038
5039 if (cpu_is_offline(cpu)) {
5040 spin_unlock_irq(&rq->lock);
5041 goto wait_to_die;
5042 }
5043
5044 if (rq->active_balance) {
5045 active_load_balance(rq, cpu);
5046 rq->active_balance = 0;
5047 }
5048
5049 head = &rq->migration_queue;
5050
5051 if (list_empty(head)) {
5052 spin_unlock_irq(&rq->lock);
5053 schedule();
5054 set_current_state(TASK_INTERRUPTIBLE);
5055 continue;
5056 }
Ingo Molnar70b97a72006-07-03 00:25:42 -07005057 req = list_entry(head->next, struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058 list_del_init(head->next);
5059
Nick Piggin674311d2005-06-25 14:57:27 -07005060 spin_unlock(&rq->lock);
5061 __migrate_task(req->task, cpu, req->dest_cpu);
5062 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063
5064 complete(&req->done);
5065 }
5066 __set_current_state(TASK_RUNNING);
5067 return 0;
5068
5069wait_to_die:
5070 /* Wait for kthread_stop */
5071 set_current_state(TASK_INTERRUPTIBLE);
5072 while (!kthread_should_stop()) {
5073 schedule();
5074 set_current_state(TASK_INTERRUPTIBLE);
5075 }
5076 __set_current_state(TASK_RUNNING);
5077 return 0;
5078}
5079
5080#ifdef CONFIG_HOTPLUG_CPU
Kirill Korotaev054b9102006-12-10 02:20:11 -08005081/*
5082 * Figure out where task on dead CPU should go, use force if neccessary.
5083 * NOTE: interrupts should be disabled by the caller
5084 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005085static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086{
Kirill Korotaevefc30812006-06-27 02:54:32 -07005087 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088 cpumask_t mask;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005089 struct rq *rq;
5090 int dest_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005091
Kirill Korotaevefc30812006-06-27 02:54:32 -07005092restart:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005093 /* On same node? */
5094 mask = node_to_cpumask(cpu_to_node(dead_cpu));
Ingo Molnar48f24c42006-07-03 00:25:40 -07005095 cpus_and(mask, mask, p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005096 dest_cpu = any_online_cpu(mask);
5097
5098 /* On any allowed CPU? */
5099 if (dest_cpu == NR_CPUS)
Ingo Molnar48f24c42006-07-03 00:25:40 -07005100 dest_cpu = any_online_cpu(p->cpus_allowed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101
5102 /* No more Mr. Nice Guy. */
5103 if (dest_cpu == NR_CPUS) {
Ingo Molnar48f24c42006-07-03 00:25:40 -07005104 rq = task_rq_lock(p, &flags);
5105 cpus_setall(p->cpus_allowed);
5106 dest_cpu = any_online_cpu(p->cpus_allowed);
Kirill Korotaevefc30812006-06-27 02:54:32 -07005107 task_rq_unlock(rq, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005108
5109 /*
5110 * Don't tell them about moving exiting tasks or
5111 * kernel threads (both mm NULL), since they never
5112 * leave kernel.
5113 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005114 if (p->mm && printk_ratelimit())
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115 printk(KERN_INFO "process %d (%s) no "
5116 "longer affine to cpu%d\n",
Ingo Molnar48f24c42006-07-03 00:25:40 -07005117 p->pid, p->comm, dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118 }
Ingo Molnar48f24c42006-07-03 00:25:40 -07005119 if (!__migrate_task(p, dead_cpu, dest_cpu))
Kirill Korotaevefc30812006-06-27 02:54:32 -07005120 goto restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121}
5122
5123/*
5124 * While a dead CPU has no uninterruptible tasks queued at this point,
5125 * it might still have a nonzero ->nr_uninterruptible counter, because
5126 * for performance reasons the counter is not stricly tracking tasks to
5127 * their home CPUs. So we just add the counter to another CPU's counter,
5128 * to keep the global sum constant after CPU-down:
5129 */
Ingo Molnar70b97a72006-07-03 00:25:42 -07005130static void migrate_nr_uninterruptible(struct rq *rq_src)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005132 struct rq *rq_dest = cpu_rq(any_online_cpu(CPU_MASK_ALL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005133 unsigned long flags;
5134
5135 local_irq_save(flags);
5136 double_rq_lock(rq_src, rq_dest);
5137 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
5138 rq_src->nr_uninterruptible = 0;
5139 double_rq_unlock(rq_src, rq_dest);
5140 local_irq_restore(flags);
5141}
5142
5143/* Run through task list and migrate tasks from the dead cpu. */
5144static void migrate_live_tasks(int src_cpu)
5145{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005146 struct task_struct *p, *t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147
5148 write_lock_irq(&tasklist_lock);
5149
Ingo Molnar48f24c42006-07-03 00:25:40 -07005150 do_each_thread(t, p) {
5151 if (p == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152 continue;
5153
Ingo Molnar48f24c42006-07-03 00:25:40 -07005154 if (task_cpu(p) == src_cpu)
5155 move_task_off_dead_cpu(src_cpu, p);
5156 } while_each_thread(t, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157
5158 write_unlock_irq(&tasklist_lock);
5159}
5160
5161/* Schedules idle task to be the next runnable task on current CPU.
5162 * It does so by boosting its priority to highest possible and adding it to
Ingo Molnar48f24c42006-07-03 00:25:40 -07005163 * the _front_ of the runqueue. Used by CPU offline code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005164 */
5165void sched_idle_next(void)
5166{
Ingo Molnar48f24c42006-07-03 00:25:40 -07005167 int this_cpu = smp_processor_id();
Ingo Molnar70b97a72006-07-03 00:25:42 -07005168 struct rq *rq = cpu_rq(this_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005169 struct task_struct *p = rq->idle;
5170 unsigned long flags;
5171
5172 /* cpu has to be offline */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005173 BUG_ON(cpu_online(this_cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005174
Ingo Molnar48f24c42006-07-03 00:25:40 -07005175 /*
5176 * Strictly not necessary since rest of the CPUs are stopped by now
5177 * and interrupts disabled on the current cpu.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005178 */
5179 spin_lock_irqsave(&rq->lock, flags);
5180
5181 __setscheduler(p, SCHED_FIFO, MAX_RT_PRIO-1);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005182
5183 /* Add idle task to the _front_ of its priority queue: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005184 __activate_idle_task(p, rq);
5185
5186 spin_unlock_irqrestore(&rq->lock, flags);
5187}
5188
Ingo Molnar48f24c42006-07-03 00:25:40 -07005189/*
5190 * Ensures that the idle task is using init_mm right before its cpu goes
Linus Torvalds1da177e2005-04-16 15:20:36 -07005191 * offline.
5192 */
5193void idle_task_exit(void)
5194{
5195 struct mm_struct *mm = current->active_mm;
5196
5197 BUG_ON(cpu_online(smp_processor_id()));
5198
5199 if (mm != &init_mm)
5200 switch_mm(mm, &init_mm, current);
5201 mmdrop(mm);
5202}
5203
Kirill Korotaev054b9102006-12-10 02:20:11 -08005204/* called under rq->lock with disabled interrupts */
Ingo Molnar36c8b582006-07-03 00:25:41 -07005205static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005206{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005207 struct rq *rq = cpu_rq(dead_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208
5209 /* Must be exiting, otherwise would be on tasklist. */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005210 BUG_ON(p->exit_state != EXIT_ZOMBIE && p->exit_state != EXIT_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211
5212 /* Cannot have done final schedule yet: would have vanished. */
Oleg Nesterovc394cc92006-09-29 02:01:11 -07005213 BUG_ON(p->state == TASK_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005214
Ingo Molnar48f24c42006-07-03 00:25:40 -07005215 get_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216
5217 /*
5218 * Drop lock around migration; if someone else moves it,
5219 * that's OK. No task can be added to this CPU, so iteration is
5220 * fine.
Kirill Korotaev054b9102006-12-10 02:20:11 -08005221 * NOTE: interrupts should be left disabled --dev@
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222 */
Kirill Korotaev054b9102006-12-10 02:20:11 -08005223 spin_unlock(&rq->lock);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005224 move_task_off_dead_cpu(dead_cpu, p);
Kirill Korotaev054b9102006-12-10 02:20:11 -08005225 spin_lock(&rq->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005226
Ingo Molnar48f24c42006-07-03 00:25:40 -07005227 put_task_struct(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005228}
5229
5230/* release_task() removes task from tasklist, so we won't find dead tasks. */
5231static void migrate_dead_tasks(unsigned int dead_cpu)
5232{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005233 struct rq *rq = cpu_rq(dead_cpu);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005234 unsigned int arr, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005235
5236 for (arr = 0; arr < 2; arr++) {
5237 for (i = 0; i < MAX_PRIO; i++) {
5238 struct list_head *list = &rq->arrays[arr].queue[i];
Ingo Molnar48f24c42006-07-03 00:25:40 -07005239
Linus Torvalds1da177e2005-04-16 15:20:36 -07005240 while (!list_empty(list))
Ingo Molnar36c8b582006-07-03 00:25:41 -07005241 migrate_dead(dead_cpu, list_entry(list->next,
5242 struct task_struct, run_list));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005243 }
5244 }
5245}
5246#endif /* CONFIG_HOTPLUG_CPU */
5247
5248/*
5249 * migration_call - callback that gets triggered when a CPU is added.
5250 * Here we can start up the necessary migration thread for the new CPU.
5251 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005252static int __cpuinit
5253migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005254{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255 struct task_struct *p;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005256 int cpu = (long)hcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07005258 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259
5260 switch (action) {
5261 case CPU_UP_PREPARE:
5262 p = kthread_create(migration_thread, hcpu, "migration/%d",cpu);
5263 if (IS_ERR(p))
5264 return NOTIFY_BAD;
5265 p->flags |= PF_NOFREEZE;
5266 kthread_bind(p, cpu);
5267 /* Must be high prio: stop_machine expects to yield to it. */
5268 rq = task_rq_lock(p, &flags);
5269 __setscheduler(p, SCHED_FIFO, MAX_RT_PRIO-1);
5270 task_rq_unlock(rq, &flags);
5271 cpu_rq(cpu)->migration_thread = p;
5272 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005273
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274 case CPU_ONLINE:
5275 /* Strictly unneccessary, as first user will wake it. */
5276 wake_up_process(cpu_rq(cpu)->migration_thread);
5277 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005278
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279#ifdef CONFIG_HOTPLUG_CPU
5280 case CPU_UP_CANCELED:
Heiko Carstensfc75cdf2006-06-25 05:49:10 -07005281 if (!cpu_rq(cpu)->migration_thread)
5282 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005283 /* Unbind it from offline cpu so it can run. Fall thru. */
Heiko Carstensa4c4af72005-11-07 00:58:38 -08005284 kthread_bind(cpu_rq(cpu)->migration_thread,
5285 any_online_cpu(cpu_online_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005286 kthread_stop(cpu_rq(cpu)->migration_thread);
5287 cpu_rq(cpu)->migration_thread = NULL;
5288 break;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005289
Linus Torvalds1da177e2005-04-16 15:20:36 -07005290 case CPU_DEAD:
5291 migrate_live_tasks(cpu);
5292 rq = cpu_rq(cpu);
5293 kthread_stop(rq->migration_thread);
5294 rq->migration_thread = NULL;
5295 /* Idle task back to normal (off runqueue, low prio) */
5296 rq = task_rq_lock(rq->idle, &flags);
5297 deactivate_task(rq->idle, rq);
5298 rq->idle->static_prio = MAX_PRIO;
5299 __setscheduler(rq->idle, SCHED_NORMAL, 0);
5300 migrate_dead_tasks(cpu);
5301 task_rq_unlock(rq, &flags);
5302 migrate_nr_uninterruptible(rq);
5303 BUG_ON(rq->nr_running != 0);
5304
5305 /* No need to migrate the tasks: it was best-effort if
5306 * they didn't do lock_cpu_hotplug(). Just wake up
5307 * the requestors. */
5308 spin_lock_irq(&rq->lock);
5309 while (!list_empty(&rq->migration_queue)) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07005310 struct migration_req *req;
5311
Linus Torvalds1da177e2005-04-16 15:20:36 -07005312 req = list_entry(rq->migration_queue.next,
Ingo Molnar70b97a72006-07-03 00:25:42 -07005313 struct migration_req, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314 list_del_init(&req->list);
5315 complete(&req->done);
5316 }
5317 spin_unlock_irq(&rq->lock);
5318 break;
5319#endif
5320 }
5321 return NOTIFY_OK;
5322}
5323
5324/* Register at highest priority so that task migration (migrate_all_tasks)
5325 * happens before everything else.
5326 */
Chandra Seetharaman26c21432006-06-27 02:54:10 -07005327static struct notifier_block __cpuinitdata migration_notifier = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005328 .notifier_call = migration_call,
5329 .priority = 10
5330};
5331
5332int __init migration_init(void)
5333{
5334 void *cpu = (void *)(long)smp_processor_id();
Akinobu Mita07dccf32006-09-29 02:00:22 -07005335 int err;
Ingo Molnar48f24c42006-07-03 00:25:40 -07005336
5337 /* Start one for the boot CPU: */
Akinobu Mita07dccf32006-09-29 02:00:22 -07005338 err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
5339 BUG_ON(err == NOTIFY_BAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340 migration_call(&migration_notifier, CPU_ONLINE, cpu);
5341 register_cpu_notifier(&migration_notifier);
Ingo Molnar48f24c42006-07-03 00:25:40 -07005342
Linus Torvalds1da177e2005-04-16 15:20:36 -07005343 return 0;
5344}
5345#endif
5346
5347#ifdef CONFIG_SMP
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07005348#undef SCHED_DOMAIN_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349#ifdef SCHED_DOMAIN_DEBUG
5350static void sched_domain_debug(struct sched_domain *sd, int cpu)
5351{
5352 int level = 0;
5353
Nick Piggin41c7ce92005-06-25 14:57:24 -07005354 if (!sd) {
5355 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
5356 return;
5357 }
5358
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
5360
5361 do {
5362 int i;
5363 char str[NR_CPUS];
5364 struct sched_group *group = sd->groups;
5365 cpumask_t groupmask;
5366
5367 cpumask_scnprintf(str, NR_CPUS, sd->span);
5368 cpus_clear(groupmask);
5369
5370 printk(KERN_DEBUG);
5371 for (i = 0; i < level + 1; i++)
5372 printk(" ");
5373 printk("domain %d: ", level);
5374
5375 if (!(sd->flags & SD_LOAD_BALANCE)) {
5376 printk("does not load-balance\n");
5377 if (sd->parent)
5378 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain has parent");
5379 break;
5380 }
5381
5382 printk("span %s\n", str);
5383
5384 if (!cpu_isset(cpu, sd->span))
5385 printk(KERN_ERR "ERROR: domain->span does not contain CPU%d\n", cpu);
5386 if (!cpu_isset(cpu, group->cpumask))
5387 printk(KERN_ERR "ERROR: domain->groups does not contain CPU%d\n", cpu);
5388
5389 printk(KERN_DEBUG);
5390 for (i = 0; i < level + 2; i++)
5391 printk(" ");
5392 printk("groups:");
5393 do {
5394 if (!group) {
5395 printk("\n");
5396 printk(KERN_ERR "ERROR: group is NULL\n");
5397 break;
5398 }
5399
5400 if (!group->cpu_power) {
5401 printk("\n");
5402 printk(KERN_ERR "ERROR: domain->cpu_power not set\n");
5403 }
5404
5405 if (!cpus_weight(group->cpumask)) {
5406 printk("\n");
5407 printk(KERN_ERR "ERROR: empty group\n");
5408 }
5409
5410 if (cpus_intersects(groupmask, group->cpumask)) {
5411 printk("\n");
5412 printk(KERN_ERR "ERROR: repeated CPUs\n");
5413 }
5414
5415 cpus_or(groupmask, groupmask, group->cpumask);
5416
5417 cpumask_scnprintf(str, NR_CPUS, group->cpumask);
5418 printk(" %s", str);
5419
5420 group = group->next;
5421 } while (group != sd->groups);
5422 printk("\n");
5423
5424 if (!cpus_equal(sd->span, groupmask))
5425 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
5426
5427 level++;
5428 sd = sd->parent;
5429
5430 if (sd) {
5431 if (!cpus_subset(groupmask, sd->span))
5432 printk(KERN_ERR "ERROR: parent span is not a superset of domain->span\n");
5433 }
5434
5435 } while (sd);
5436}
5437#else
Ingo Molnar48f24c42006-07-03 00:25:40 -07005438# define sched_domain_debug(sd, cpu) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005439#endif
5440
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07005441static int sd_degenerate(struct sched_domain *sd)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005442{
5443 if (cpus_weight(sd->span) == 1)
5444 return 1;
5445
5446 /* Following flags need at least 2 groups */
5447 if (sd->flags & (SD_LOAD_BALANCE |
5448 SD_BALANCE_NEWIDLE |
5449 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005450 SD_BALANCE_EXEC |
5451 SD_SHARE_CPUPOWER |
5452 SD_SHARE_PKG_RESOURCES)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005453 if (sd->groups != sd->groups->next)
5454 return 0;
5455 }
5456
5457 /* Following flags don't use groups */
5458 if (sd->flags & (SD_WAKE_IDLE |
5459 SD_WAKE_AFFINE |
5460 SD_WAKE_BALANCE))
5461 return 0;
5462
5463 return 1;
5464}
5465
Ingo Molnar48f24c42006-07-03 00:25:40 -07005466static int
5467sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
Suresh Siddha245af2c2005-06-25 14:57:25 -07005468{
5469 unsigned long cflags = sd->flags, pflags = parent->flags;
5470
5471 if (sd_degenerate(parent))
5472 return 1;
5473
5474 if (!cpus_equal(sd->span, parent->span))
5475 return 0;
5476
5477 /* Does parent contain flags not in child? */
5478 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
5479 if (cflags & SD_WAKE_AFFINE)
5480 pflags &= ~SD_WAKE_BALANCE;
5481 /* Flags needing groups don't count if only 1 group in parent */
5482 if (parent->groups == parent->groups->next) {
5483 pflags &= ~(SD_LOAD_BALANCE |
5484 SD_BALANCE_NEWIDLE |
5485 SD_BALANCE_FORK |
Siddha, Suresh B89c47102006-10-03 01:14:09 -07005486 SD_BALANCE_EXEC |
5487 SD_SHARE_CPUPOWER |
5488 SD_SHARE_PKG_RESOURCES);
Suresh Siddha245af2c2005-06-25 14:57:25 -07005489 }
5490 if (~cflags & pflags)
5491 return 0;
5492
5493 return 1;
5494}
5495
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496/*
5497 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
5498 * hold the hotplug lock.
5499 */
John Hawkes9c1cfda2005-09-06 15:18:14 -07005500static void cpu_attach_domain(struct sched_domain *sd, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005501{
Ingo Molnar70b97a72006-07-03 00:25:42 -07005502 struct rq *rq = cpu_rq(cpu);
Suresh Siddha245af2c2005-06-25 14:57:25 -07005503 struct sched_domain *tmp;
5504
5505 /* Remove the sched domains which do not contribute to scheduling. */
5506 for (tmp = sd; tmp; tmp = tmp->parent) {
5507 struct sched_domain *parent = tmp->parent;
5508 if (!parent)
5509 break;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005510 if (sd_parent_degenerate(tmp, parent)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005511 tmp->parent = parent->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005512 if (parent->parent)
5513 parent->parent->child = tmp;
5514 }
Suresh Siddha245af2c2005-06-25 14:57:25 -07005515 }
5516
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005517 if (sd && sd_degenerate(sd)) {
Suresh Siddha245af2c2005-06-25 14:57:25 -07005518 sd = sd->parent;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07005519 if (sd)
5520 sd->child = NULL;
5521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005522
5523 sched_domain_debug(sd, cpu);
5524
Nick Piggin674311d2005-06-25 14:57:27 -07005525 rcu_assign_pointer(rq->sd, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005526}
5527
5528/* cpus with isolated domains */
Nick Piggin5c1e1762006-10-03 01:14:04 -07005529static cpumask_t __cpuinitdata cpu_isolated_map = CPU_MASK_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005530
5531/* Setup the mask of cpus configured for isolated domains */
5532static int __init isolated_cpu_setup(char *str)
5533{
5534 int ints[NR_CPUS], i;
5535
5536 str = get_options(str, ARRAY_SIZE(ints), ints);
5537 cpus_clear(cpu_isolated_map);
5538 for (i = 1; i <= ints[0]; i++)
5539 if (ints[i] < NR_CPUS)
5540 cpu_set(ints[i], cpu_isolated_map);
5541 return 1;
5542}
5543
5544__setup ("isolcpus=", isolated_cpu_setup);
5545
5546/*
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005547 * init_sched_build_groups takes the cpumask we wish to span, and a pointer
5548 * to a function which identifies what group(along with sched group) a CPU
5549 * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS
5550 * (due to the fact that we keep track of groups covered with a cpumask_t).
Linus Torvalds1da177e2005-04-16 15:20:36 -07005551 *
5552 * init_sched_build_groups will build a circular linked list of the groups
5553 * covered by the given span, and will set each group's ->cpumask correctly,
5554 * and ->cpu_power to 0.
5555 */
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07005556static void
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005557init_sched_build_groups(cpumask_t span, const cpumask_t *cpu_map,
5558 int (*group_fn)(int cpu, const cpumask_t *cpu_map,
5559 struct sched_group **sg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005560{
5561 struct sched_group *first = NULL, *last = NULL;
5562 cpumask_t covered = CPU_MASK_NONE;
5563 int i;
5564
5565 for_each_cpu_mask(i, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005566 struct sched_group *sg;
5567 int group = group_fn(i, cpu_map, &sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005568 int j;
5569
5570 if (cpu_isset(i, covered))
5571 continue;
5572
5573 sg->cpumask = CPU_MASK_NONE;
5574 sg->cpu_power = 0;
5575
5576 for_each_cpu_mask(j, span) {
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08005577 if (group_fn(j, cpu_map, NULL) != group)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005578 continue;
5579
5580 cpu_set(j, covered);
5581 cpu_set(j, sg->cpumask);
5582 }
5583 if (!first)
5584 first = sg;
5585 if (last)
5586 last->next = sg;
5587 last = sg;
5588 }
5589 last->next = first;
5590}
5591
John Hawkes9c1cfda2005-09-06 15:18:14 -07005592#define SD_NODES_PER_DOMAIN 16
Linus Torvalds1da177e2005-04-16 15:20:36 -07005593
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005594/*
5595 * Self-tuning task migration cost measurement between source and target CPUs.
5596 *
5597 * This is done by measuring the cost of manipulating buffers of varying
5598 * sizes. For a given buffer-size here are the steps that are taken:
5599 *
5600 * 1) the source CPU reads+dirties a shared buffer
5601 * 2) the target CPU reads+dirties the same shared buffer
5602 *
5603 * We measure how long they take, in the following 4 scenarios:
5604 *
5605 * - source: CPU1, target: CPU2 | cost1
5606 * - source: CPU2, target: CPU1 | cost2
5607 * - source: CPU1, target: CPU1 | cost3
5608 * - source: CPU2, target: CPU2 | cost4
5609 *
5610 * We then calculate the cost3+cost4-cost1-cost2 difference - this is
5611 * the cost of migration.
5612 *
5613 * We then start off from a small buffer-size and iterate up to larger
5614 * buffer sizes, in 5% steps - measuring each buffer-size separately, and
5615 * doing a maximum search for the cost. (The maximum cost for a migration
5616 * normally occurs when the working set size is around the effective cache
5617 * size.)
5618 */
5619#define SEARCH_SCOPE 2
5620#define MIN_CACHE_SIZE (64*1024U)
5621#define DEFAULT_CACHE_SIZE (5*1024*1024U)
Ingo Molnar70b4d632006-01-30 20:24:38 +01005622#define ITERATIONS 1
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005623#define SIZE_THRESH 130
5624#define COST_THRESH 130
5625
5626/*
5627 * The migration cost is a function of 'domain distance'. Domain
5628 * distance is the number of steps a CPU has to iterate down its
5629 * domain tree to share a domain with the other CPU. The farther
5630 * two CPUs are from each other, the larger the distance gets.
5631 *
5632 * Note that we use the distance only to cache measurement results,
5633 * the distance value is not used numerically otherwise. When two
5634 * CPUs have the same distance it is assumed that the migration
5635 * cost is the same. (this is a simplification but quite practical)
5636 */
5637#define MAX_DOMAIN_DISTANCE 32
5638
5639static unsigned long long migration_cost[MAX_DOMAIN_DISTANCE] =
Ingo Molnar4bbf39c2006-02-17 13:52:44 -08005640 { [ 0 ... MAX_DOMAIN_DISTANCE-1 ] =
5641/*
5642 * Architectures may override the migration cost and thus avoid
5643 * boot-time calibration. Unit is nanoseconds. Mostly useful for
5644 * virtualized hardware:
5645 */
5646#ifdef CONFIG_DEFAULT_MIGRATION_COST
5647 CONFIG_DEFAULT_MIGRATION_COST
5648#else
5649 -1LL
5650#endif
5651};
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005652
5653/*
5654 * Allow override of migration cost - in units of microseconds.
5655 * E.g. migration_cost=1000,2000,3000 will set up a level-1 cost
5656 * of 1 msec, level-2 cost of 2 msecs and level3 cost of 3 msecs:
5657 */
5658static int __init migration_cost_setup(char *str)
5659{
5660 int ints[MAX_DOMAIN_DISTANCE+1], i;
5661
5662 str = get_options(str, ARRAY_SIZE(ints), ints);
5663
5664 printk("#ints: %d\n", ints[0]);
5665 for (i = 1; i <= ints[0]; i++) {
5666 migration_cost[i-1] = (unsigned long long)ints[i]*1000;
5667 printk("migration_cost[%d]: %Ld\n", i-1, migration_cost[i-1]);
5668 }
5669 return 1;
5670}
5671
5672__setup ("migration_cost=", migration_cost_setup);
5673
5674/*
5675 * Global multiplier (divisor) for migration-cutoff values,
5676 * in percentiles. E.g. use a value of 150 to get 1.5 times
5677 * longer cache-hot cutoff times.
5678 *
5679 * (We scale it from 100 to 128 to long long handling easier.)
5680 */
5681
5682#define MIGRATION_FACTOR_SCALE 128
5683
5684static unsigned int migration_factor = MIGRATION_FACTOR_SCALE;
5685
5686static int __init setup_migration_factor(char *str)
5687{
5688 get_option(&str, &migration_factor);
5689 migration_factor = migration_factor * MIGRATION_FACTOR_SCALE / 100;
5690 return 1;
5691}
5692
5693__setup("migration_factor=", setup_migration_factor);
5694
5695/*
5696 * Estimated distance of two CPUs, measured via the number of domains
5697 * we have to pass for the two CPUs to be in the same span:
5698 */
5699static unsigned long domain_distance(int cpu1, int cpu2)
5700{
5701 unsigned long distance = 0;
5702 struct sched_domain *sd;
5703
5704 for_each_domain(cpu1, sd) {
5705 WARN_ON(!cpu_isset(cpu1, sd->span));
5706 if (cpu_isset(cpu2, sd->span))
5707 return distance;
5708 distance++;
5709 }
5710 if (distance >= MAX_DOMAIN_DISTANCE) {
5711 WARN_ON(1);
5712 distance = MAX_DOMAIN_DISTANCE-1;
5713 }
5714
5715 return distance;
5716}
5717
5718static unsigned int migration_debug;
5719
5720static int __init setup_migration_debug(char *str)
5721{
5722 get_option(&str, &migration_debug);
5723 return 1;
5724}
5725
5726__setup("migration_debug=", setup_migration_debug);
5727
5728/*
5729 * Maximum cache-size that the scheduler should try to measure.
5730 * Architectures with larger caches should tune this up during
5731 * bootup. Gets used in the domain-setup code (i.e. during SMP
5732 * bootup).
5733 */
5734unsigned int max_cache_size;
5735
5736static int __init setup_max_cache_size(char *str)
5737{
5738 get_option(&str, &max_cache_size);
5739 return 1;
5740}
5741
5742__setup("max_cache_size=", setup_max_cache_size);
5743
5744/*
5745 * Dirty a big buffer in a hard-to-predict (for the L2 cache) way. This
5746 * is the operation that is timed, so we try to generate unpredictable
5747 * cachemisses that still end up filling the L2 cache:
5748 */
5749static void touch_cache(void *__cache, unsigned long __size)
5750{
5751 unsigned long size = __size/sizeof(long), chunk1 = size/3,
5752 chunk2 = 2*size/3;
5753 unsigned long *cache = __cache;
5754 int i;
5755
5756 for (i = 0; i < size/6; i += 8) {
5757 switch (i % 6) {
5758 case 0: cache[i]++;
5759 case 1: cache[size-1-i]++;
5760 case 2: cache[chunk1-i]++;
5761 case 3: cache[chunk1+i]++;
5762 case 4: cache[chunk2-i]++;
5763 case 5: cache[chunk2+i]++;
5764 }
5765 }
5766}
5767
5768/*
5769 * Measure the cache-cost of one task migration. Returns in units of nsec.
5770 */
Ingo Molnar48f24c42006-07-03 00:25:40 -07005771static unsigned long long
5772measure_one(void *cache, unsigned long size, int source, int target)
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005773{
5774 cpumask_t mask, saved_mask;
5775 unsigned long long t0, t1, t2, t3, cost;
5776
5777 saved_mask = current->cpus_allowed;
5778
5779 /*
5780 * Flush source caches to RAM and invalidate them:
5781 */
5782 sched_cacheflush();
5783
5784 /*
5785 * Migrate to the source CPU:
5786 */
5787 mask = cpumask_of_cpu(source);
5788 set_cpus_allowed(current, mask);
5789 WARN_ON(smp_processor_id() != source);
5790
5791 /*
5792 * Dirty the working set:
5793 */
5794 t0 = sched_clock();
5795 touch_cache(cache, size);
5796 t1 = sched_clock();
5797
5798 /*
5799 * Migrate to the target CPU, dirty the L2 cache and access
5800 * the shared buffer. (which represents the working set
5801 * of a migrated task.)
5802 */
5803 mask = cpumask_of_cpu(target);
5804 set_cpus_allowed(current, mask);
5805 WARN_ON(smp_processor_id() != target);
5806
5807 t2 = sched_clock();
5808 touch_cache(cache, size);
5809 t3 = sched_clock();
5810
5811 cost = t1-t0 + t3-t2;
5812
5813 if (migration_debug >= 2)
5814 printk("[%d->%d]: %8Ld %8Ld %8Ld => %10Ld.\n",
5815 source, target, t1-t0, t1-t0, t3-t2, cost);
5816 /*
5817 * Flush target caches to RAM and invalidate them:
5818 */
5819 sched_cacheflush();
5820
5821 set_cpus_allowed(current, saved_mask);
5822
5823 return cost;
5824}
5825
5826/*
5827 * Measure a series of task migrations and return the average
5828 * result. Since this code runs early during bootup the system
5829 * is 'undisturbed' and the average latency makes sense.
5830 *
5831 * The algorithm in essence auto-detects the relevant cache-size,
5832 * so it will properly detect different cachesizes for different
5833 * cache-hierarchies, depending on how the CPUs are connected.
5834 *
5835 * Architectures can prime the upper limit of the search range via
5836 * max_cache_size, otherwise the search range defaults to 20MB...64K.
5837 */
5838static unsigned long long
5839measure_cost(int cpu1, int cpu2, void *cache, unsigned int size)
5840{
5841 unsigned long long cost1, cost2;
5842 int i;
5843
5844 /*
5845 * Measure the migration cost of 'size' bytes, over an
5846 * average of 10 runs:
5847 *
5848 * (We perturb the cache size by a small (0..4k)
5849 * value to compensate size/alignment related artifacts.
5850 * We also subtract the cost of the operation done on
5851 * the same CPU.)
5852 */
5853 cost1 = 0;
5854
5855 /*
5856 * dry run, to make sure we start off cache-cold on cpu1,
5857 * and to get any vmalloc pagefaults in advance:
5858 */
5859 measure_one(cache, size, cpu1, cpu2);
5860 for (i = 0; i < ITERATIONS; i++)
5861 cost1 += measure_one(cache, size - i*1024, cpu1, cpu2);
5862
5863 measure_one(cache, size, cpu2, cpu1);
5864 for (i = 0; i < ITERATIONS; i++)
5865 cost1 += measure_one(cache, size - i*1024, cpu2, cpu1);
5866
5867 /*
5868 * (We measure the non-migrating [cached] cost on both
5869 * cpu1 and cpu2, to handle CPUs with different speeds)
5870 */
5871 cost2 = 0;
5872
5873 measure_one(cache, size, cpu1, cpu1);
5874 for (i = 0; i < ITERATIONS; i++)
5875 cost2 += measure_one(cache, size - i*1024, cpu1, cpu1);
5876
5877 measure_one(cache, size, cpu2, cpu2);
5878 for (i = 0; i < ITERATIONS; i++)
5879 cost2 += measure_one(cache, size - i*1024, cpu2, cpu2);
5880
5881 /*
5882 * Get the per-iteration migration cost:
5883 */
5884 do_div(cost1, 2*ITERATIONS);
5885 do_div(cost2, 2*ITERATIONS);
5886
5887 return cost1 - cost2;
5888}
5889
5890static unsigned long long measure_migration_cost(int cpu1, int cpu2)
5891{
5892 unsigned long long max_cost = 0, fluct = 0, avg_fluct = 0;
5893 unsigned int max_size, size, size_found = 0;
5894 long long cost = 0, prev_cost;
5895 void *cache;
5896
5897 /*
5898 * Search from max_cache_size*5 down to 64K - the real relevant
5899 * cachesize has to lie somewhere inbetween.
5900 */
5901 if (max_cache_size) {
5902 max_size = max(max_cache_size * SEARCH_SCOPE, MIN_CACHE_SIZE);
5903 size = max(max_cache_size / SEARCH_SCOPE, MIN_CACHE_SIZE);
5904 } else {
5905 /*
5906 * Since we have no estimation about the relevant
5907 * search range
5908 */
5909 max_size = DEFAULT_CACHE_SIZE * SEARCH_SCOPE;
5910 size = MIN_CACHE_SIZE;
5911 }
5912
5913 if (!cpu_online(cpu1) || !cpu_online(cpu2)) {
5914 printk("cpu %d and %d not both online!\n", cpu1, cpu2);
5915 return 0;
5916 }
5917
5918 /*
5919 * Allocate the working set:
5920 */
5921 cache = vmalloc(max_size);
5922 if (!cache) {
5923 printk("could not vmalloc %d bytes for cache!\n", 2*max_size);
Andreas Mohr2ed6e342006-07-10 04:43:52 -07005924 return 1000000; /* return 1 msec on very small boxen */
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005925 }
5926
5927 while (size <= max_size) {
5928 prev_cost = cost;
5929 cost = measure_cost(cpu1, cpu2, cache, size);
5930
5931 /*
5932 * Update the max:
5933 */
5934 if (cost > 0) {
5935 if (max_cost < cost) {
5936 max_cost = cost;
5937 size_found = size;
5938 }
5939 }
5940 /*
5941 * Calculate average fluctuation, we use this to prevent
5942 * noise from triggering an early break out of the loop:
5943 */
5944 fluct = abs(cost - prev_cost);
5945 avg_fluct = (avg_fluct + fluct)/2;
5946
5947 if (migration_debug)
5948 printk("-> [%d][%d][%7d] %3ld.%ld [%3ld.%ld] (%ld): (%8Ld %8Ld)\n",
5949 cpu1, cpu2, size,
5950 (long)cost / 1000000,
5951 ((long)cost / 100000) % 10,
5952 (long)max_cost / 1000000,
5953 ((long)max_cost / 100000) % 10,
5954 domain_distance(cpu1, cpu2),
5955 cost, avg_fluct);
5956
5957 /*
5958 * If we iterated at least 20% past the previous maximum,
5959 * and the cost has dropped by more than 20% already,
5960 * (taking fluctuations into account) then we assume to
5961 * have found the maximum and break out of the loop early:
5962 */
5963 if (size_found && (size*100 > size_found*SIZE_THRESH))
5964 if (cost+avg_fluct <= 0 ||
5965 max_cost*100 > (cost+avg_fluct)*COST_THRESH) {
5966
5967 if (migration_debug)
5968 printk("-> found max.\n");
5969 break;
5970 }
5971 /*
Ingo Molnar70b4d632006-01-30 20:24:38 +01005972 * Increase the cachesize in 10% steps:
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005973 */
Ingo Molnar70b4d632006-01-30 20:24:38 +01005974 size = size * 10 / 9;
akpm@osdl.org198e2f12006-01-12 01:05:30 -08005975 }
5976
5977 if (migration_debug)
5978 printk("[%d][%d] working set size found: %d, cost: %Ld\n",
5979 cpu1, cpu2, size_found, max_cost);
5980
5981 vfree(cache);
5982
5983 /*
5984 * A task is considered 'cache cold' if at least 2 times
5985 * the worst-case cost of migration has passed.
5986 *
5987 * (this limit is only listened to if the load-balancing
5988 * situation is 'nice' - if there is a large imbalance we
5989 * ignore it for the sake of CPU utilization and
5990 * processing fairness.)
5991 */
5992 return 2 * max_cost * migration_factor / MIGRATION_FACTOR_SCALE;
5993}
5994
5995static void calibrate_migration_costs(const cpumask_t *cpu_map)
5996{
5997 int cpu1 = -1, cpu2 = -1, cpu, orig_cpu = raw_smp_processor_id();
5998 unsigned long j0, j1, distance, max_distance = 0;
5999 struct sched_domain *sd;
6000
6001 j0 = jiffies;
6002
6003 /*
6004 * First pass - calculate the cacheflush times:
6005 */
6006 for_each_cpu_mask(cpu1, *cpu_map) {
6007 for_each_cpu_mask(cpu2, *cpu_map) {
6008 if (cpu1 == cpu2)
6009 continue;
6010 distance = domain_distance(cpu1, cpu2);
6011 max_distance = max(max_distance, distance);
6012 /*
6013 * No result cached yet?
6014 */
6015 if (migration_cost[distance] == -1LL)
6016 migration_cost[distance] =
6017 measure_migration_cost(cpu1, cpu2);
6018 }
6019 }
6020 /*
6021 * Second pass - update the sched domain hierarchy with
6022 * the new cache-hot-time estimations:
6023 */
6024 for_each_cpu_mask(cpu, *cpu_map) {
6025 distance = 0;
6026 for_each_domain(cpu, sd) {
6027 sd->cache_hot_time = migration_cost[distance];
6028 distance++;
6029 }
6030 }
6031 /*
6032 * Print the matrix:
6033 */
6034 if (migration_debug)
6035 printk("migration: max_cache_size: %d, cpu: %d MHz:\n",
6036 max_cache_size,
6037#ifdef CONFIG_X86
6038 cpu_khz/1000
6039#else
6040 -1
6041#endif
6042 );
Chuck Ebbertbd576c92006-02-04 23:27:42 -08006043 if (system_state == SYSTEM_BOOTING) {
Dave Jones74732642006-10-03 01:14:07 -07006044 if (num_online_cpus() > 1) {
6045 printk("migration_cost=");
6046 for (distance = 0; distance <= max_distance; distance++) {
6047 if (distance)
6048 printk(",");
6049 printk("%ld", (long)migration_cost[distance] / 1000);
6050 }
6051 printk("\n");
Chuck Ebbertbd576c92006-02-04 23:27:42 -08006052 }
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006053 }
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006054 j1 = jiffies;
6055 if (migration_debug)
6056 printk("migration: %ld seconds\n", (j1-j0)/HZ);
6057
6058 /*
6059 * Move back to the original CPU. NUMA-Q gets confused
6060 * if we migrate to another quad during bootup.
6061 */
6062 if (raw_smp_processor_id() != orig_cpu) {
6063 cpumask_t mask = cpumask_of_cpu(orig_cpu),
6064 saved_mask = current->cpus_allowed;
6065
6066 set_cpus_allowed(current, mask);
6067 set_cpus_allowed(current, saved_mask);
6068 }
6069}
6070
John Hawkes9c1cfda2005-09-06 15:18:14 -07006071#ifdef CONFIG_NUMA
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006072
John Hawkes9c1cfda2005-09-06 15:18:14 -07006073/**
6074 * find_next_best_node - find the next node to include in a sched_domain
6075 * @node: node whose sched_domain we're building
6076 * @used_nodes: nodes already in the sched_domain
6077 *
6078 * Find the next node to include in a given scheduling domain. Simply
6079 * finds the closest node not already in the @used_nodes map.
6080 *
6081 * Should use nodemask_t.
6082 */
6083static int find_next_best_node(int node, unsigned long *used_nodes)
6084{
6085 int i, n, val, min_val, best_node = 0;
6086
6087 min_val = INT_MAX;
6088
6089 for (i = 0; i < MAX_NUMNODES; i++) {
6090 /* Start at @node */
6091 n = (node + i) % MAX_NUMNODES;
6092
6093 if (!nr_cpus_node(n))
6094 continue;
6095
6096 /* Skip already used nodes */
6097 if (test_bit(n, used_nodes))
6098 continue;
6099
6100 /* Simple min distance search */
6101 val = node_distance(node, n);
6102
6103 if (val < min_val) {
6104 min_val = val;
6105 best_node = n;
6106 }
6107 }
6108
6109 set_bit(best_node, used_nodes);
6110 return best_node;
6111}
6112
6113/**
6114 * sched_domain_node_span - get a cpumask for a node's sched_domain
6115 * @node: node whose cpumask we're constructing
6116 * @size: number of nodes to include in this span
6117 *
6118 * Given a node, construct a good cpumask for its sched_domain to span. It
6119 * should be one that prevents unnecessary balancing, but also spreads tasks
6120 * out optimally.
6121 */
6122static cpumask_t sched_domain_node_span(int node)
6123{
John Hawkes9c1cfda2005-09-06 15:18:14 -07006124 DECLARE_BITMAP(used_nodes, MAX_NUMNODES);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006125 cpumask_t span, nodemask;
6126 int i;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006127
6128 cpus_clear(span);
6129 bitmap_zero(used_nodes, MAX_NUMNODES);
6130
6131 nodemask = node_to_cpumask(node);
6132 cpus_or(span, span, nodemask);
6133 set_bit(node, used_nodes);
6134
6135 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
6136 int next_node = find_next_best_node(node, used_nodes);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006137
John Hawkes9c1cfda2005-09-06 15:18:14 -07006138 nodemask = node_to_cpumask(next_node);
6139 cpus_or(span, span, nodemask);
6140 }
6141
6142 return span;
6143}
6144#endif
6145
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006146int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006147
John Hawkes9c1cfda2005-09-06 15:18:14 -07006148/*
Ingo Molnar48f24c42006-07-03 00:25:40 -07006149 * SMT sched-domains:
John Hawkes9c1cfda2005-09-06 15:18:14 -07006150 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006151#ifdef CONFIG_SCHED_SMT
6152static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006153static DEFINE_PER_CPU(struct sched_group, sched_group_cpus);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006154
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006155static int cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map,
6156 struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006157{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006158 if (sg)
6159 *sg = &per_cpu(sched_group_cpus, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006160 return cpu;
6161}
6162#endif
6163
Ingo Molnar48f24c42006-07-03 00:25:40 -07006164/*
6165 * multi-core sched-domains:
6166 */
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006167#ifdef CONFIG_SCHED_MC
6168static DEFINE_PER_CPU(struct sched_domain, core_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006169static DEFINE_PER_CPU(struct sched_group, sched_group_core);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006170#endif
6171
6172#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006173static int cpu_to_core_group(int cpu, const cpumask_t *cpu_map,
6174 struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006175{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006176 int group;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006177 cpumask_t mask = cpu_sibling_map[cpu];
6178 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006179 group = first_cpu(mask);
6180 if (sg)
6181 *sg = &per_cpu(sched_group_core, group);
6182 return group;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006183}
6184#elif defined(CONFIG_SCHED_MC)
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006185static int cpu_to_core_group(int cpu, const cpumask_t *cpu_map,
6186 struct sched_group **sg)
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006187{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006188 if (sg)
6189 *sg = &per_cpu(sched_group_core, cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006190 return cpu;
6191}
6192#endif
6193
Linus Torvalds1da177e2005-04-16 15:20:36 -07006194static DEFINE_PER_CPU(struct sched_domain, phys_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006195static DEFINE_PER_CPU(struct sched_group, sched_group_phys);
Ingo Molnar48f24c42006-07-03 00:25:40 -07006196
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006197static int cpu_to_phys_group(int cpu, const cpumask_t *cpu_map,
6198 struct sched_group **sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006199{
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006200 int group;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006201#ifdef CONFIG_SCHED_MC
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006202 cpumask_t mask = cpu_coregroup_map(cpu);
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006203 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006204 group = first_cpu(mask);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006205#elif defined(CONFIG_SCHED_SMT)
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006206 cpumask_t mask = cpu_sibling_map[cpu];
6207 cpus_and(mask, mask, *cpu_map);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006208 group = first_cpu(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006209#else
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006210 group = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006211#endif
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006212 if (sg)
6213 *sg = &per_cpu(sched_group_phys, group);
6214 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006215}
6216
6217#ifdef CONFIG_NUMA
John Hawkes9c1cfda2005-09-06 15:18:14 -07006218/*
6219 * The init_sched_build_groups can't handle what we want to do with node
6220 * groups, so roll our own. Now each node has its own list of groups which
6221 * gets dynamically allocated.
6222 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006223static DEFINE_PER_CPU(struct sched_domain, node_domains);
John Hawkesd1b55132005-09-06 15:18:14 -07006224static struct sched_group **sched_group_nodes_bycpu[NR_CPUS];
John Hawkes9c1cfda2005-09-06 15:18:14 -07006225
6226static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006227static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006228
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006229static int cpu_to_allnodes_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 cpumask_t nodemask = node_to_cpumask(cpu_to_node(cpu));
6233 int group;
6234
6235 cpus_and(nodemask, nodemask, *cpu_map);
6236 group = first_cpu(nodemask);
6237
6238 if (sg)
6239 *sg = &per_cpu(sched_group_allnodes, group);
6240 return group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006241}
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006242
Siddha, Suresh B08069032006-03-27 01:15:23 -08006243static void init_numa_sched_groups_power(struct sched_group *group_head)
6244{
6245 struct sched_group *sg = group_head;
6246 int j;
6247
6248 if (!sg)
6249 return;
6250next_sg:
6251 for_each_cpu_mask(j, sg->cpumask) {
6252 struct sched_domain *sd;
6253
6254 sd = &per_cpu(phys_domains, j);
6255 if (j != first_cpu(sd->groups->cpumask)) {
6256 /*
6257 * Only add "power" once for each
6258 * physical package.
6259 */
6260 continue;
6261 }
6262
6263 sg->cpu_power += sd->groups->cpu_power;
6264 }
6265 sg = sg->next;
6266 if (sg != group_head)
6267 goto next_sg;
6268}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006269#endif
6270
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006271#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006272/* Free memory allocated for various sched_group structures */
6273static void free_sched_groups(const cpumask_t *cpu_map)
6274{
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006275 int cpu, i;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006276
6277 for_each_cpu_mask(cpu, *cpu_map) {
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006278 struct sched_group **sched_group_nodes
6279 = sched_group_nodes_bycpu[cpu];
6280
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006281 if (!sched_group_nodes)
6282 continue;
6283
6284 for (i = 0; i < MAX_NUMNODES; i++) {
6285 cpumask_t nodemask = node_to_cpumask(i);
6286 struct sched_group *oldsg, *sg = sched_group_nodes[i];
6287
6288 cpus_and(nodemask, nodemask, *cpu_map);
6289 if (cpus_empty(nodemask))
6290 continue;
6291
6292 if (sg == NULL)
6293 continue;
6294 sg = sg->next;
6295next_sg:
6296 oldsg = sg;
6297 sg = sg->next;
6298 kfree(oldsg);
6299 if (oldsg != sched_group_nodes[i])
6300 goto next_sg;
6301 }
6302 kfree(sched_group_nodes);
6303 sched_group_nodes_bycpu[cpu] = NULL;
6304 }
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006305}
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006306#else
6307static void free_sched_groups(const cpumask_t *cpu_map)
6308{
6309}
6310#endif
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006311
Linus Torvalds1da177e2005-04-16 15:20:36 -07006312/*
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006313 * Initialize sched groups cpu_power.
6314 *
6315 * cpu_power indicates the capacity of sched group, which is used while
6316 * distributing the load between different sched groups in a sched domain.
6317 * Typically cpu_power for all the groups in a sched domain will be same unless
6318 * there are asymmetries in the topology. If there are asymmetries, group
6319 * having more cpu_power will pickup more load compared to the group having
6320 * less cpu_power.
6321 *
6322 * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents
6323 * the maximum number of tasks a group can handle in the presence of other idle
6324 * or lightly loaded groups in the same sched domain.
6325 */
6326static void init_sched_groups_power(int cpu, struct sched_domain *sd)
6327{
6328 struct sched_domain *child;
6329 struct sched_group *group;
6330
6331 WARN_ON(!sd || !sd->groups);
6332
6333 if (cpu != first_cpu(sd->groups->cpumask))
6334 return;
6335
6336 child = sd->child;
6337
6338 /*
6339 * For perf policy, if the groups in child domain share resources
6340 * (for example cores sharing some portions of the cache hierarchy
6341 * or SMT), then set this domain groups cpu_power such that each group
6342 * can handle only one task, when there are other idle groups in the
6343 * same sched domain.
6344 */
6345 if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) &&
6346 (child->flags &
6347 (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) {
6348 sd->groups->cpu_power = SCHED_LOAD_SCALE;
6349 return;
6350 }
6351
6352 sd->groups->cpu_power = 0;
6353
6354 /*
6355 * add cpu_power of each child group to this groups cpu_power
6356 */
6357 group = child->groups;
6358 do {
6359 sd->groups->cpu_power += group->cpu_power;
6360 group = group->next;
6361 } while (group != child->groups);
6362}
6363
6364/*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006365 * Build sched domains for a given set of cpus and attach the sched domains
6366 * to the individual cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07006367 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006368static int build_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006369{
6370 int i;
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006371 struct sched_domain *sd;
John Hawkesd1b55132005-09-06 15:18:14 -07006372#ifdef CONFIG_NUMA
6373 struct sched_group **sched_group_nodes = NULL;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006374 int sd_allnodes = 0;
John Hawkesd1b55132005-09-06 15:18:14 -07006375
6376 /*
6377 * Allocate the per-node list of sched groups
6378 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006379 sched_group_nodes = kzalloc(sizeof(struct sched_group*)*MAX_NUMNODES,
Srivatsa Vaddagirid3a5aa92006-06-27 02:54:39 -07006380 GFP_KERNEL);
John Hawkesd1b55132005-09-06 15:18:14 -07006381 if (!sched_group_nodes) {
6382 printk(KERN_WARNING "Can not alloc sched group node list\n");
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006383 return -ENOMEM;
John Hawkesd1b55132005-09-06 15:18:14 -07006384 }
6385 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
6386#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006387
6388 /*
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006389 * Set up domains for cpus specified by the cpu_map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006390 */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006391 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006392 struct sched_domain *sd = NULL, *p;
6393 cpumask_t nodemask = node_to_cpumask(cpu_to_node(i));
6394
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006395 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006396
6397#ifdef CONFIG_NUMA
John Hawkesd1b55132005-09-06 15:18:14 -07006398 if (cpus_weight(*cpu_map)
John Hawkes9c1cfda2005-09-06 15:18:14 -07006399 > SD_NODES_PER_DOMAIN*cpus_weight(nodemask)) {
6400 sd = &per_cpu(allnodes_domains, i);
6401 *sd = SD_ALLNODES_INIT;
6402 sd->span = *cpu_map;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006403 cpu_to_allnodes_group(i, cpu_map, &sd->groups);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006404 p = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006405 sd_allnodes = 1;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006406 } else
6407 p = NULL;
6408
Linus Torvalds1da177e2005-04-16 15:20:36 -07006409 sd = &per_cpu(node_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006410 *sd = SD_NODE_INIT;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006411 sd->span = sched_domain_node_span(cpu_to_node(i));
6412 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006413 if (p)
6414 p->child = sd;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006415 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006416#endif
6417
6418 p = sd;
6419 sd = &per_cpu(phys_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006420 *sd = SD_CPU_INIT;
6421 sd->span = nodemask;
6422 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006423 if (p)
6424 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006425 cpu_to_phys_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006426
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006427#ifdef CONFIG_SCHED_MC
6428 p = sd;
6429 sd = &per_cpu(core_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006430 *sd = SD_MC_INIT;
6431 sd->span = cpu_coregroup_map(i);
6432 cpus_and(sd->span, sd->span, *cpu_map);
6433 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006434 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006435 cpu_to_core_group(i, cpu_map, &sd->groups);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006436#endif
6437
Linus Torvalds1da177e2005-04-16 15:20:36 -07006438#ifdef CONFIG_SCHED_SMT
6439 p = sd;
6440 sd = &per_cpu(cpu_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006441 *sd = SD_SIBLING_INIT;
6442 sd->span = cpu_sibling_map[i];
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006443 cpus_and(sd->span, sd->span, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006444 sd->parent = p;
Siddha, Suresh B1a848872006-10-03 01:14:08 -07006445 p->child = sd;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006446 cpu_to_cpu_group(i, cpu_map, &sd->groups);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006447#endif
6448 }
6449
6450#ifdef CONFIG_SCHED_SMT
6451 /* Set up CPU (sibling) groups */
John Hawkes9c1cfda2005-09-06 15:18:14 -07006452 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006453 cpumask_t this_sibling_map = cpu_sibling_map[i];
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006454 cpus_and(this_sibling_map, this_sibling_map, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006455 if (i != first_cpu(this_sibling_map))
6456 continue;
6457
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006458 init_sched_build_groups(this_sibling_map, cpu_map, &cpu_to_cpu_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006459 }
6460#endif
6461
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006462#ifdef CONFIG_SCHED_MC
6463 /* Set up multi-core groups */
6464 for_each_cpu_mask(i, *cpu_map) {
6465 cpumask_t this_core_map = cpu_coregroup_map(i);
6466 cpus_and(this_core_map, this_core_map, *cpu_map);
6467 if (i != first_cpu(this_core_map))
6468 continue;
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006469 init_sched_build_groups(this_core_map, cpu_map, &cpu_to_core_group);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006470 }
6471#endif
6472
6473
Linus Torvalds1da177e2005-04-16 15:20:36 -07006474 /* Set up physical groups */
6475 for (i = 0; i < MAX_NUMNODES; i++) {
6476 cpumask_t nodemask = node_to_cpumask(i);
6477
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006478 cpus_and(nodemask, nodemask, *cpu_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006479 if (cpus_empty(nodemask))
6480 continue;
6481
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006482 init_sched_build_groups(nodemask, cpu_map, &cpu_to_phys_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006483 }
6484
6485#ifdef CONFIG_NUMA
6486 /* Set up node groups */
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006487 if (sd_allnodes)
6488 init_sched_build_groups(*cpu_map, cpu_map, &cpu_to_allnodes_group);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006489
6490 for (i = 0; i < MAX_NUMNODES; i++) {
6491 /* Set up node groups */
6492 struct sched_group *sg, *prev;
6493 cpumask_t nodemask = node_to_cpumask(i);
6494 cpumask_t domainspan;
6495 cpumask_t covered = CPU_MASK_NONE;
6496 int j;
6497
6498 cpus_and(nodemask, nodemask, *cpu_map);
John Hawkesd1b55132005-09-06 15:18:14 -07006499 if (cpus_empty(nodemask)) {
6500 sched_group_nodes[i] = NULL;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006501 continue;
John Hawkesd1b55132005-09-06 15:18:14 -07006502 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006503
6504 domainspan = sched_domain_node_span(i);
6505 cpus_and(domainspan, domainspan, *cpu_map);
6506
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006507 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006508 if (!sg) {
6509 printk(KERN_WARNING "Can not alloc domain group for "
6510 "node %d\n", i);
6511 goto error;
6512 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006513 sched_group_nodes[i] = sg;
6514 for_each_cpu_mask(j, nodemask) {
6515 struct sched_domain *sd;
6516 sd = &per_cpu(node_domains, j);
6517 sd->groups = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006518 }
6519 sg->cpu_power = 0;
6520 sg->cpumask = nodemask;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006521 sg->next = sg;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006522 cpus_or(covered, covered, nodemask);
6523 prev = sg;
6524
6525 for (j = 0; j < MAX_NUMNODES; j++) {
6526 cpumask_t tmp, notcovered;
6527 int n = (i + j) % MAX_NUMNODES;
6528
6529 cpus_complement(notcovered, covered);
6530 cpus_and(tmp, notcovered, *cpu_map);
6531 cpus_and(tmp, tmp, domainspan);
6532 if (cpus_empty(tmp))
6533 break;
6534
6535 nodemask = node_to_cpumask(n);
6536 cpus_and(tmp, tmp, nodemask);
6537 if (cpus_empty(tmp))
6538 continue;
6539
Srivatsa Vaddagiri15f0b672006-06-27 02:54:40 -07006540 sg = kmalloc_node(sizeof(struct sched_group),
6541 GFP_KERNEL, i);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006542 if (!sg) {
6543 printk(KERN_WARNING
6544 "Can not alloc domain group for node %d\n", j);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006545 goto error;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006546 }
6547 sg->cpu_power = 0;
6548 sg->cpumask = tmp;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006549 sg->next = prev->next;
John Hawkes9c1cfda2005-09-06 15:18:14 -07006550 cpus_or(covered, covered, tmp);
6551 prev->next = sg;
6552 prev = sg;
6553 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006555#endif
6556
6557 /* Calculate CPU power for physical packages and nodes */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006558#ifdef CONFIG_SCHED_SMT
6559 for_each_cpu_mask(i, *cpu_map) {
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006560 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006561 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006562 }
6563#endif
6564#ifdef CONFIG_SCHED_MC
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006565 for_each_cpu_mask(i, *cpu_map) {
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006566 sd = &per_cpu(core_domains, i);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006567 init_sched_groups_power(i, sd);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006568 }
6569#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006570
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006571 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006572 sd = &per_cpu(phys_domains, i);
Siddha, Suresh B89c47102006-10-03 01:14:09 -07006573 init_sched_groups_power(i, sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006574 }
6575
John Hawkes9c1cfda2005-09-06 15:18:14 -07006576#ifdef CONFIG_NUMA
Siddha, Suresh B08069032006-03-27 01:15:23 -08006577 for (i = 0; i < MAX_NUMNODES; i++)
6578 init_numa_sched_groups_power(sched_group_nodes[i]);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006579
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006580 if (sd_allnodes) {
6581 struct sched_group *sg;
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07006582
Siddha, Suresh B6711cab2006-12-10 02:20:07 -08006583 cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg);
Siddha, Suresh Bf712c0c2006-07-30 03:02:59 -07006584 init_numa_sched_groups_power(sg);
6585 }
John Hawkes9c1cfda2005-09-06 15:18:14 -07006586#endif
6587
Linus Torvalds1da177e2005-04-16 15:20:36 -07006588 /* Attach the domains */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006589 for_each_cpu_mask(i, *cpu_map) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006590 struct sched_domain *sd;
6591#ifdef CONFIG_SCHED_SMT
6592 sd = &per_cpu(cpu_domains, i);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -08006593#elif defined(CONFIG_SCHED_MC)
6594 sd = &per_cpu(core_domains, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006595#else
6596 sd = &per_cpu(phys_domains, i);
6597#endif
6598 cpu_attach_domain(sd, i);
6599 }
akpm@osdl.org198e2f12006-01-12 01:05:30 -08006600 /*
6601 * Tune cache-hot values:
6602 */
6603 calibrate_migration_costs(cpu_map);
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006604
6605 return 0;
6606
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006607#ifdef CONFIG_NUMA
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006608error:
6609 free_sched_groups(cpu_map);
6610 return -ENOMEM;
Siddha, Suresh Ba6160582006-10-03 01:14:06 -07006611#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07006612}
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006613/*
6614 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
6615 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006616static int arch_init_sched_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006617{
6618 cpumask_t cpu_default_map;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006619 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006620
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006621 /*
6622 * Setup mask for cpus without special case scheduling requirements.
6623 * For now this just excludes isolated cpus, but could be used to
6624 * exclude other special cases in the future.
6625 */
6626 cpus_andnot(cpu_default_map, *cpu_map, cpu_isolated_map);
6627
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006628 err = build_sched_domains(&cpu_default_map);
6629
6630 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006631}
6632
6633static void arch_destroy_sched_domains(const cpumask_t *cpu_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006634{
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006635 free_sched_groups(cpu_map);
John Hawkes9c1cfda2005-09-06 15:18:14 -07006636}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006637
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006638/*
6639 * Detach sched domains from a group of cpus specified in cpu_map
6640 * These cpus will now be attached to the NULL domain
6641 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08006642static void detach_destroy_domains(const cpumask_t *cpu_map)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006643{
6644 int i;
6645
6646 for_each_cpu_mask(i, *cpu_map)
6647 cpu_attach_domain(NULL, i);
6648 synchronize_sched();
6649 arch_destroy_sched_domains(cpu_map);
6650}
6651
6652/*
6653 * Partition sched domains as specified by the cpumasks below.
6654 * This attaches all cpus from the cpumasks to the NULL domain,
6655 * waits for a RCU quiescent period, recalculates sched
6656 * domain information and then attaches them back to the
6657 * correct sched domains
6658 * Call with hotplug lock held
6659 */
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006660int partition_sched_domains(cpumask_t *partition1, cpumask_t *partition2)
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006661{
6662 cpumask_t change_map;
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006663 int err = 0;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006664
6665 cpus_and(*partition1, *partition1, cpu_online_map);
6666 cpus_and(*partition2, *partition2, cpu_online_map);
6667 cpus_or(change_map, *partition1, *partition2);
6668
6669 /* Detach sched domains from all of the affected cpus */
6670 detach_destroy_domains(&change_map);
6671 if (!cpus_empty(*partition1))
Srivatsa Vaddagiri51888ca2006-06-27 02:54:38 -07006672 err = build_sched_domains(partition1);
6673 if (!err && !cpus_empty(*partition2))
6674 err = build_sched_domains(partition2);
6675
6676 return err;
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006677}
6678
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006679#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
6680int arch_reinit_sched_domains(void)
6681{
6682 int err;
6683
6684 lock_cpu_hotplug();
6685 detach_destroy_domains(&cpu_online_map);
6686 err = arch_init_sched_domains(&cpu_online_map);
6687 unlock_cpu_hotplug();
6688
6689 return err;
6690}
6691
6692static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
6693{
6694 int ret;
6695
6696 if (buf[0] != '0' && buf[0] != '1')
6697 return -EINVAL;
6698
6699 if (smt)
6700 sched_smt_power_savings = (buf[0] == '1');
6701 else
6702 sched_mc_power_savings = (buf[0] == '1');
6703
6704 ret = arch_reinit_sched_domains();
6705
6706 return ret ? ret : count;
6707}
6708
6709int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
6710{
6711 int err = 0;
Ingo Molnar48f24c42006-07-03 00:25:40 -07006712
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006713#ifdef CONFIG_SCHED_SMT
6714 if (smt_capable())
6715 err = sysfs_create_file(&cls->kset.kobj,
6716 &attr_sched_smt_power_savings.attr);
6717#endif
6718#ifdef CONFIG_SCHED_MC
6719 if (!err && mc_capable())
6720 err = sysfs_create_file(&cls->kset.kobj,
6721 &attr_sched_mc_power_savings.attr);
6722#endif
6723 return err;
6724}
6725#endif
6726
6727#ifdef CONFIG_SCHED_MC
6728static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
6729{
6730 return sprintf(page, "%u\n", sched_mc_power_savings);
6731}
Ingo Molnar48f24c42006-07-03 00:25:40 -07006732static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
6733 const char *buf, size_t count)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006734{
6735 return sched_power_savings_store(buf, count, 0);
6736}
6737SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
6738 sched_mc_power_savings_store);
6739#endif
6740
6741#ifdef CONFIG_SCHED_SMT
6742static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
6743{
6744 return sprintf(page, "%u\n", sched_smt_power_savings);
6745}
Ingo Molnar48f24c42006-07-03 00:25:40 -07006746static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
6747 const char *buf, size_t count)
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -07006748{
6749 return sched_power_savings_store(buf, count, 1);
6750}
6751SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
6752 sched_smt_power_savings_store);
6753#endif
6754
Linus Torvalds1da177e2005-04-16 15:20:36 -07006755/*
6756 * Force a reinitialization of the sched domains hierarchy. The domains
6757 * and groups cannot be updated in place without racing with the balancing
Nick Piggin41c7ce92005-06-25 14:57:24 -07006758 * code, so we temporarily attach all running cpus to the NULL domain
Linus Torvalds1da177e2005-04-16 15:20:36 -07006759 * which will prevent rebalancing while the sched domains are recalculated.
6760 */
6761static int update_sched_domains(struct notifier_block *nfb,
6762 unsigned long action, void *hcpu)
6763{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006764 switch (action) {
6765 case CPU_UP_PREPARE:
6766 case CPU_DOWN_PREPARE:
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006767 detach_destroy_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006768 return NOTIFY_OK;
6769
6770 case CPU_UP_CANCELED:
6771 case CPU_DOWN_FAILED:
6772 case CPU_ONLINE:
6773 case CPU_DEAD:
6774 /*
6775 * Fall through and re-initialise the domains.
6776 */
6777 break;
6778 default:
6779 return NOTIFY_DONE;
6780 }
6781
6782 /* The hotplug lock is already held by cpu_up/cpu_down */
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006783 arch_init_sched_domains(&cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006784
6785 return NOTIFY_OK;
6786}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006787
6788void __init sched_init_smp(void)
6789{
Nick Piggin5c1e1762006-10-03 01:14:04 -07006790 cpumask_t non_isolated_cpus;
6791
Linus Torvalds1da177e2005-04-16 15:20:36 -07006792 lock_cpu_hotplug();
Dinakar Guniguntala1a20ff22005-06-25 14:57:33 -07006793 arch_init_sched_domains(&cpu_online_map);
Nick Piggin5c1e1762006-10-03 01:14:04 -07006794 cpus_andnot(non_isolated_cpus, cpu_online_map, cpu_isolated_map);
6795 if (cpus_empty(non_isolated_cpus))
6796 cpu_set(smp_processor_id(), non_isolated_cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006797 unlock_cpu_hotplug();
6798 /* XXX: Theoretical race here - CPU may be hotplugged now */
6799 hotcpu_notifier(update_sched_domains, 0);
Nick Piggin5c1e1762006-10-03 01:14:04 -07006800
6801 /* Move init over to a non-isolated CPU */
6802 if (set_cpus_allowed(current, non_isolated_cpus) < 0)
6803 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006804}
6805#else
6806void __init sched_init_smp(void)
6807{
6808}
6809#endif /* CONFIG_SMP */
6810
6811int in_sched_functions(unsigned long addr)
6812{
6813 /* Linker adds these: start and end of __sched functions */
6814 extern char __sched_text_start[], __sched_text_end[];
Ingo Molnar48f24c42006-07-03 00:25:40 -07006815
Linus Torvalds1da177e2005-04-16 15:20:36 -07006816 return in_lock_functions(addr) ||
6817 (addr >= (unsigned long)__sched_text_start
6818 && addr < (unsigned long)__sched_text_end);
6819}
6820
6821void __init sched_init(void)
6822{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006823 int i, j, k;
6824
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08006825 for_each_possible_cpu(i) {
Ingo Molnar70b97a72006-07-03 00:25:42 -07006826 struct prio_array *array;
6827 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006828
6829 rq = cpu_rq(i);
6830 spin_lock_init(&rq->lock);
Ingo Molnarfcb99372006-07-03 00:25:10 -07006831 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
Nick Piggin78979862005-06-25 14:57:13 -07006832 rq->nr_running = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006833 rq->active = rq->arrays;
6834 rq->expired = rq->arrays + 1;
6835 rq->best_expired_prio = MAX_PRIO;
6836
6837#ifdef CONFIG_SMP
Nick Piggin41c7ce92005-06-25 14:57:24 -07006838 rq->sd = NULL;
Nick Piggin78979862005-06-25 14:57:13 -07006839 for (j = 1; j < 3; j++)
6840 rq->cpu_load[j] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006841 rq->active_balance = 0;
6842 rq->push_cpu = 0;
Christoph Lameter0a2966b2006-09-25 23:30:51 -07006843 rq->cpu = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006844 rq->migration_thread = NULL;
6845 INIT_LIST_HEAD(&rq->migration_queue);
6846#endif
6847 atomic_set(&rq->nr_iowait, 0);
6848
6849 for (j = 0; j < 2; j++) {
6850 array = rq->arrays + j;
6851 for (k = 0; k < MAX_PRIO; k++) {
6852 INIT_LIST_HEAD(array->queue + k);
6853 __clear_bit(k, array->bitmap);
6854 }
6855 // delimiter for bitsearch
6856 __set_bit(MAX_PRIO, array->bitmap);
6857 }
6858 }
6859
Peter Williams2dd73a42006-06-27 02:54:34 -07006860 set_load_weight(&init_task);
Heiko Carstensb50f60c2006-07-30 03:03:52 -07006861
6862#ifdef CONFIG_RT_MUTEXES
6863 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
6864#endif
6865
Linus Torvalds1da177e2005-04-16 15:20:36 -07006866 /*
6867 * The boot idle thread does lazy MMU switching as well:
6868 */
6869 atomic_inc(&init_mm.mm_count);
6870 enter_lazy_tlb(&init_mm, current);
6871
6872 /*
6873 * Make us the idle thread. Technically, schedule() should not be
6874 * called from this thread, however somewhere below it might be,
6875 * but because we are the idle thread, we just pick up running again
6876 * when this runqueue becomes "idle".
6877 */
6878 init_idle(current, smp_processor_id());
6879}
6880
6881#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
6882void __might_sleep(char *file, int line)
6883{
Ingo Molnar48f24c42006-07-03 00:25:40 -07006884#ifdef in_atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -07006885 static unsigned long prev_jiffy; /* ratelimiting */
6886
6887 if ((in_atomic() || irqs_disabled()) &&
6888 system_state == SYSTEM_RUNNING && !oops_in_progress) {
6889 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
6890 return;
6891 prev_jiffy = jiffies;
Ingo Molnar91368d72006-03-23 03:00:54 -08006892 printk(KERN_ERR "BUG: sleeping function called from invalid"
Linus Torvalds1da177e2005-04-16 15:20:36 -07006893 " context at %s:%d\n", file, line);
6894 printk("in_atomic():%d, irqs_disabled():%d\n",
6895 in_atomic(), irqs_disabled());
Peter Zijlstraa4c410f2006-12-06 20:37:21 -08006896 debug_show_held_locks(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006897 dump_stack();
6898 }
6899#endif
6900}
6901EXPORT_SYMBOL(__might_sleep);
6902#endif
6903
6904#ifdef CONFIG_MAGIC_SYSRQ
6905void normalize_rt_tasks(void)
6906{
Ingo Molnar70b97a72006-07-03 00:25:42 -07006907 struct prio_array *array;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006908 struct task_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006909 unsigned long flags;
Ingo Molnar70b97a72006-07-03 00:25:42 -07006910 struct rq *rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006911
6912 read_lock_irq(&tasklist_lock);
Chen, Kenneth Wc96d1452006-06-27 02:54:28 -07006913 for_each_process(p) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006914 if (!rt_task(p))
6915 continue;
6916
Ingo Molnarb29739f2006-06-27 02:54:51 -07006917 spin_lock_irqsave(&p->pi_lock, flags);
6918 rq = __task_rq_lock(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006919
6920 array = p->array;
6921 if (array)
6922 deactivate_task(p, task_rq(p));
6923 __setscheduler(p, SCHED_NORMAL, 0);
6924 if (array) {
6925 __activate_task(p, task_rq(p));
6926 resched_task(rq->curr);
6927 }
6928
Ingo Molnarb29739f2006-06-27 02:54:51 -07006929 __task_rq_unlock(rq);
6930 spin_unlock_irqrestore(&p->pi_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006931 }
6932 read_unlock_irq(&tasklist_lock);
6933}
6934
6935#endif /* CONFIG_MAGIC_SYSRQ */
Linus Torvalds1df5c102005-09-12 07:59:21 -07006936
6937#ifdef CONFIG_IA64
6938/*
6939 * These functions are only useful for the IA64 MCA handling.
6940 *
6941 * They can only be called when the whole system has been
6942 * stopped - every CPU needs to be quiescent, and no scheduling
6943 * activity can take place. Using them for anything else would
6944 * be a serious bug, and as a result, they aren't even visible
6945 * under any other configuration.
6946 */
6947
6948/**
6949 * curr_task - return the current task for a given cpu.
6950 * @cpu: the processor in question.
6951 *
6952 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
6953 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006954struct task_struct *curr_task(int cpu)
Linus Torvalds1df5c102005-09-12 07:59:21 -07006955{
6956 return cpu_curr(cpu);
6957}
6958
6959/**
6960 * set_curr_task - set the current task for a given cpu.
6961 * @cpu: the processor in question.
6962 * @p: the task pointer to set.
6963 *
6964 * Description: This function must only be used when non-maskable interrupts
6965 * are serviced on a separate stack. It allows the architecture to switch the
6966 * notion of the current task on a cpu in a non-blocking manner. This function
6967 * must be called with all CPU's synchronized, and interrupts disabled, the
6968 * and caller must save the original value of the current task (see
6969 * curr_task() above) and restore that value before reenabling interrupts and
6970 * re-starting the system.
6971 *
6972 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
6973 */
Ingo Molnar36c8b582006-07-03 00:25:41 -07006974void set_curr_task(int cpu, struct task_struct *p)
Linus Torvalds1df5c102005-09-12 07:59:21 -07006975{
6976 cpu_curr(cpu) = p;
6977}
6978
6979#endif