Merge branch 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik...
[linux-2.6-block.git] / kernel / sched.c
CommitLineData
1da177e4
LT
1/*
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>
c59ede7b 30#include <linux/capability.h>
1da177e4
LT
31#include <linux/completion.h>
32#include <linux/kernel_stat.h>
9a11b49a 33#include <linux/debug_locks.h>
1da177e4
LT
34#include <linux/security.h>
35#include <linux/notifier.h>
36#include <linux/profile.h>
37#include <linux/suspend.h>
198e2f18 38#include <linux/vmalloc.h>
1da177e4
LT
39#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>
52#include <linux/acct.h>
c6fd91f0 53#include <linux/kprobes.h>
0ff92245 54#include <linux/delayacct.h>
1da177e4
LT
55#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) \
013d3868
MA
150 (SCALE(TASK_NICE(p) + 20, 40, MAX_BONUS) - 20 * MAX_BONUS / 40 + \
151 INTERACTIVE_DELTA)
1da177e4
LT
152
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
163/*
164 * task_timeslice() scales user-nice values [ -20 ... 0 ... 19 ]
165 * to time slice values: [800ms ... 100ms ... 5ms]
166 *
167 * The higher a thread's priority, the bigger timeslices
168 * it gets during one round of execution. But even the lowest
169 * priority thread gets MIN_TIMESLICE worth of execution time.
170 */
171
172#define SCALE_PRIO(x, prio) \
2dd73a4f 173 max(x * (MAX_PRIO - prio) / (MAX_USER_PRIO / 2), MIN_TIMESLICE)
1da177e4 174
2dd73a4f 175static unsigned int static_prio_timeslice(int static_prio)
1da177e4 176{
2dd73a4f
PW
177 if (static_prio < NICE_TO_PRIO(0))
178 return SCALE_PRIO(DEF_TIMESLICE * 4, static_prio);
1da177e4 179 else
2dd73a4f 180 return SCALE_PRIO(DEF_TIMESLICE, static_prio);
1da177e4 181}
2dd73a4f 182
36c8b586 183static inline unsigned int task_timeslice(struct task_struct *p)
2dd73a4f
PW
184{
185 return static_prio_timeslice(p->static_prio);
186}
187
1da177e4
LT
188/*
189 * These are the runqueue data structures:
190 */
191
1da177e4
LT
192struct prio_array {
193 unsigned int nr_active;
d444886e 194 DECLARE_BITMAP(bitmap, MAX_PRIO+1); /* include 1 bit for delimiter */
1da177e4
LT
195 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 */
70b97a7f 205struct rq {
1da177e4
LT
206 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;
2dd73a4f 213 unsigned long raw_weighted_load;
1da177e4 214#ifdef CONFIG_SMP
7897986b 215 unsigned long cpu_load[3];
1da177e4
LT
216#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;
36c8b586 229 struct task_struct *curr, *idle;
1da177e4 230 struct mm_struct *prev_mm;
70b97a7f 231 struct prio_array *active, *expired, arrays[2];
1da177e4
LT
232 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;
241
36c8b586 242 struct task_struct *migration_thread;
1da177e4
LT
243 struct list_head migration_queue;
244#endif
245
246#ifdef CONFIG_SCHEDSTATS
247 /* latency stats */
248 struct sched_info rq_sched_info;
249
250 /* sys_sched_yield() stats */
251 unsigned long yld_exp_empty;
252 unsigned long yld_act_empty;
253 unsigned long yld_both_empty;
254 unsigned long yld_cnt;
255
256 /* schedule() stats */
257 unsigned long sched_switch;
258 unsigned long sched_cnt;
259 unsigned long sched_goidle;
260
261 /* try_to_wake_up() stats */
262 unsigned long ttwu_cnt;
263 unsigned long ttwu_local;
264#endif
fcb99371 265 struct lock_class_key rq_lock_key;
1da177e4
LT
266};
267
70b97a7f 268static DEFINE_PER_CPU(struct rq, runqueues);
1da177e4 269
674311d5
NP
270/*
271 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
1a20ff27 272 * See detach_destroy_domains: synchronize_sched for details.
674311d5
NP
273 *
274 * The domain tree of any CPU may only be accessed from within
275 * preempt-disabled sections.
276 */
48f24c4d
IM
277#define for_each_domain(cpu, __sd) \
278 for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent)
1da177e4
LT
279
280#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
281#define this_rq() (&__get_cpu_var(runqueues))
282#define task_rq(p) cpu_rq(task_cpu(p))
283#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
284
1da177e4 285#ifndef prepare_arch_switch
4866cde0
NP
286# define prepare_arch_switch(next) do { } while (0)
287#endif
288#ifndef finish_arch_switch
289# define finish_arch_switch(prev) do { } while (0)
290#endif
291
292#ifndef __ARCH_WANT_UNLOCKED_CTXSW
70b97a7f 293static inline int task_running(struct rq *rq, struct task_struct *p)
4866cde0
NP
294{
295 return rq->curr == p;
296}
297
70b97a7f 298static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
4866cde0
NP
299{
300}
301
70b97a7f 302static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
4866cde0 303{
da04c035
IM
304#ifdef CONFIG_DEBUG_SPINLOCK
305 /* this is a valid case when another task releases the spinlock */
306 rq->lock.owner = current;
307#endif
8a25d5de
IM
308 /*
309 * If we are tracking spinlock dependencies then we have to
310 * fix up the runqueue lock - which gets 'carried over' from
311 * prev into current:
312 */
313 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
314
4866cde0
NP
315 spin_unlock_irq(&rq->lock);
316}
317
318#else /* __ARCH_WANT_UNLOCKED_CTXSW */
70b97a7f 319static inline int task_running(struct rq *rq, struct task_struct *p)
4866cde0
NP
320{
321#ifdef CONFIG_SMP
322 return p->oncpu;
323#else
324 return rq->curr == p;
325#endif
326}
327
70b97a7f 328static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
4866cde0
NP
329{
330#ifdef CONFIG_SMP
331 /*
332 * We can optimise this out completely for !SMP, because the
333 * SMP rebalancing from interrupt is the only thing that cares
334 * here.
335 */
336 next->oncpu = 1;
337#endif
338#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
339 spin_unlock_irq(&rq->lock);
340#else
341 spin_unlock(&rq->lock);
342#endif
343}
344
70b97a7f 345static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
4866cde0
NP
346{
347#ifdef CONFIG_SMP
348 /*
349 * After ->oncpu is cleared, the task can be moved to a different CPU.
350 * We must ensure this doesn't happen until the switch is completely
351 * finished.
352 */
353 smp_wmb();
354 prev->oncpu = 0;
355#endif
356#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
357 local_irq_enable();
1da177e4 358#endif
4866cde0
NP
359}
360#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
1da177e4 361
b29739f9
IM
362/*
363 * __task_rq_lock - lock the runqueue a given task resides on.
364 * Must be called interrupts disabled.
365 */
70b97a7f 366static inline struct rq *__task_rq_lock(struct task_struct *p)
b29739f9
IM
367 __acquires(rq->lock)
368{
70b97a7f 369 struct rq *rq;
b29739f9
IM
370
371repeat_lock_task:
372 rq = task_rq(p);
373 spin_lock(&rq->lock);
374 if (unlikely(rq != task_rq(p))) {
375 spin_unlock(&rq->lock);
376 goto repeat_lock_task;
377 }
378 return rq;
379}
380
1da177e4
LT
381/*
382 * task_rq_lock - lock the runqueue a given task resides on and disable
383 * interrupts. Note the ordering: we can safely lookup the task_rq without
384 * explicitly disabling preemption.
385 */
70b97a7f 386static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags)
1da177e4
LT
387 __acquires(rq->lock)
388{
70b97a7f 389 struct rq *rq;
1da177e4
LT
390
391repeat_lock_task:
392 local_irq_save(*flags);
393 rq = task_rq(p);
394 spin_lock(&rq->lock);
395 if (unlikely(rq != task_rq(p))) {
396 spin_unlock_irqrestore(&rq->lock, *flags);
397 goto repeat_lock_task;
398 }
399 return rq;
400}
401
70b97a7f 402static inline void __task_rq_unlock(struct rq *rq)
b29739f9
IM
403 __releases(rq->lock)
404{
405 spin_unlock(&rq->lock);
406}
407
70b97a7f 408static inline void task_rq_unlock(struct rq *rq, unsigned long *flags)
1da177e4
LT
409 __releases(rq->lock)
410{
411 spin_unlock_irqrestore(&rq->lock, *flags);
412}
413
414#ifdef CONFIG_SCHEDSTATS
415/*
416 * bump this up when changing the output format or the meaning of an existing
417 * format, so that tools can adapt (or abort)
418 */
68767a0a 419#define SCHEDSTAT_VERSION 12
1da177e4
LT
420
421static int show_schedstat(struct seq_file *seq, void *v)
422{
423 int cpu;
424
425 seq_printf(seq, "version %d\n", SCHEDSTAT_VERSION);
426 seq_printf(seq, "timestamp %lu\n", jiffies);
427 for_each_online_cpu(cpu) {
70b97a7f 428 struct rq *rq = cpu_rq(cpu);
1da177e4
LT
429#ifdef CONFIG_SMP
430 struct sched_domain *sd;
431 int dcnt = 0;
432#endif
433
434 /* runqueue-specific stats */
435 seq_printf(seq,
436 "cpu%d %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu",
437 cpu, rq->yld_both_empty,
438 rq->yld_act_empty, rq->yld_exp_empty, rq->yld_cnt,
439 rq->sched_switch, rq->sched_cnt, rq->sched_goidle,
440 rq->ttwu_cnt, rq->ttwu_local,
441 rq->rq_sched_info.cpu_time,
442 rq->rq_sched_info.run_delay, rq->rq_sched_info.pcnt);
443
444 seq_printf(seq, "\n");
445
446#ifdef CONFIG_SMP
447 /* domain-specific stats */
674311d5 448 preempt_disable();
1da177e4
LT
449 for_each_domain(cpu, sd) {
450 enum idle_type itype;
451 char mask_str[NR_CPUS];
452
453 cpumask_scnprintf(mask_str, NR_CPUS, sd->span);
454 seq_printf(seq, "domain%d %s", dcnt++, mask_str);
455 for (itype = SCHED_IDLE; itype < MAX_IDLE_TYPES;
456 itype++) {
457 seq_printf(seq, " %lu %lu %lu %lu %lu %lu %lu %lu",
458 sd->lb_cnt[itype],
459 sd->lb_balanced[itype],
460 sd->lb_failed[itype],
461 sd->lb_imbalance[itype],
462 sd->lb_gained[itype],
463 sd->lb_hot_gained[itype],
464 sd->lb_nobusyq[itype],
465 sd->lb_nobusyg[itype]);
466 }
68767a0a 467 seq_printf(seq, " %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu\n",
1da177e4 468 sd->alb_cnt, sd->alb_failed, sd->alb_pushed,
68767a0a
NP
469 sd->sbe_cnt, sd->sbe_balanced, sd->sbe_pushed,
470 sd->sbf_cnt, sd->sbf_balanced, sd->sbf_pushed,
1da177e4
LT
471 sd->ttwu_wake_remote, sd->ttwu_move_affine, sd->ttwu_move_balance);
472 }
674311d5 473 preempt_enable();
1da177e4
LT
474#endif
475 }
476 return 0;
477}
478
479static int schedstat_open(struct inode *inode, struct file *file)
480{
481 unsigned int size = PAGE_SIZE * (1 + num_online_cpus() / 32);
482 char *buf = kmalloc(size, GFP_KERNEL);
483 struct seq_file *m;
484 int res;
485
486 if (!buf)
487 return -ENOMEM;
488 res = single_open(file, show_schedstat, NULL);
489 if (!res) {
490 m = file->private_data;
491 m->buf = buf;
492 m->size = size;
493 } else
494 kfree(buf);
495 return res;
496}
497
498struct file_operations proc_schedstat_operations = {
499 .open = schedstat_open,
500 .read = seq_read,
501 .llseek = seq_lseek,
502 .release = single_release,
503};
504
52f17b6c
CS
505/*
506 * Expects runqueue lock to be held for atomicity of update
507 */
508static inline void
509rq_sched_info_arrive(struct rq *rq, unsigned long delta_jiffies)
510{
511 if (rq) {
512 rq->rq_sched_info.run_delay += delta_jiffies;
513 rq->rq_sched_info.pcnt++;
514 }
515}
516
517/*
518 * Expects runqueue lock to be held for atomicity of update
519 */
520static inline void
521rq_sched_info_depart(struct rq *rq, unsigned long delta_jiffies)
522{
523 if (rq)
524 rq->rq_sched_info.cpu_time += delta_jiffies;
525}
1da177e4
LT
526# define schedstat_inc(rq, field) do { (rq)->field++; } while (0)
527# define schedstat_add(rq, field, amt) do { (rq)->field += (amt); } while (0)
528#else /* !CONFIG_SCHEDSTATS */
52f17b6c
CS
529static inline void
530rq_sched_info_arrive(struct rq *rq, unsigned long delta_jiffies)
531{}
532static inline void
533rq_sched_info_depart(struct rq *rq, unsigned long delta_jiffies)
534{}
1da177e4
LT
535# define schedstat_inc(rq, field) do { } while (0)
536# define schedstat_add(rq, field, amt) do { } while (0)
537#endif
538
539/*
540 * rq_lock - lock a given runqueue and disable interrupts.
541 */
70b97a7f 542static inline struct rq *this_rq_lock(void)
1da177e4
LT
543 __acquires(rq->lock)
544{
70b97a7f 545 struct rq *rq;
1da177e4
LT
546
547 local_irq_disable();
548 rq = this_rq();
549 spin_lock(&rq->lock);
550
551 return rq;
552}
553
52f17b6c 554#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
1da177e4
LT
555/*
556 * Called when a process is dequeued from the active array and given
557 * the cpu. We should note that with the exception of interactive
558 * tasks, the expired queue will become the active queue after the active
559 * queue is empty, without explicitly dequeuing and requeuing tasks in the
560 * expired queue. (Interactive tasks may be requeued directly to the
561 * active queue, thus delaying tasks in the expired queue from running;
562 * see scheduler_tick()).
563 *
564 * This function is only called from sched_info_arrive(), rather than
565 * dequeue_task(). Even though a task may be queued and dequeued multiple
566 * times as it is shuffled about, we're really interested in knowing how
567 * long it was from the *first* time it was queued to the time that it
568 * finally hit a cpu.
569 */
36c8b586 570static inline void sched_info_dequeued(struct task_struct *t)
1da177e4
LT
571{
572 t->sched_info.last_queued = 0;
573}
574
575/*
576 * Called when a task finally hits the cpu. We can now calculate how
577 * long it was waiting to run. We also note when it began so that we
578 * can keep stats on how long its timeslice is.
579 */
36c8b586 580static void sched_info_arrive(struct task_struct *t)
1da177e4 581{
52f17b6c 582 unsigned long now = jiffies, delta_jiffies = 0;
1da177e4
LT
583
584 if (t->sched_info.last_queued)
52f17b6c 585 delta_jiffies = now - t->sched_info.last_queued;
1da177e4 586 sched_info_dequeued(t);
52f17b6c 587 t->sched_info.run_delay += delta_jiffies;
1da177e4
LT
588 t->sched_info.last_arrival = now;
589 t->sched_info.pcnt++;
590
52f17b6c 591 rq_sched_info_arrive(task_rq(t), delta_jiffies);
1da177e4
LT
592}
593
594/*
595 * Called when a process is queued into either the active or expired
596 * array. The time is noted and later used to determine how long we
597 * had to wait for us to reach the cpu. Since the expired queue will
598 * become the active queue after active queue is empty, without dequeuing
599 * and requeuing any tasks, we are interested in queuing to either. It
600 * is unusual but not impossible for tasks to be dequeued and immediately
601 * requeued in the same or another array: this can happen in sched_yield(),
602 * set_user_nice(), and even load_balance() as it moves tasks from runqueue
603 * to runqueue.
604 *
605 * This function is only called from enqueue_task(), but also only updates
606 * the timestamp if it is already not set. It's assumed that
607 * sched_info_dequeued() will clear that stamp when appropriate.
608 */
36c8b586 609static inline void sched_info_queued(struct task_struct *t)
1da177e4 610{
52f17b6c
CS
611 if (unlikely(sched_info_on()))
612 if (!t->sched_info.last_queued)
613 t->sched_info.last_queued = jiffies;
1da177e4
LT
614}
615
616/*
617 * Called when a process ceases being the active-running process, either
618 * voluntarily or involuntarily. Now we can calculate how long we ran.
619 */
36c8b586 620static inline void sched_info_depart(struct task_struct *t)
1da177e4 621{
52f17b6c 622 unsigned long delta_jiffies = jiffies - t->sched_info.last_arrival;
1da177e4 623
52f17b6c
CS
624 t->sched_info.cpu_time += delta_jiffies;
625 rq_sched_info_depart(task_rq(t), delta_jiffies);
1da177e4
LT
626}
627
628/*
629 * Called when tasks are switched involuntarily due, typically, to expiring
630 * their time slice. (This may also be called when switching to or from
631 * the idle task.) We are only called when prev != next.
632 */
36c8b586 633static inline void
52f17b6c 634__sched_info_switch(struct task_struct *prev, struct task_struct *next)
1da177e4 635{
70b97a7f 636 struct rq *rq = task_rq(prev);
1da177e4
LT
637
638 /*
639 * prev now departs the cpu. It's not interesting to record
640 * stats about how efficient we were at scheduling the idle
641 * process, however.
642 */
643 if (prev != rq->idle)
644 sched_info_depart(prev);
645
646 if (next != rq->idle)
647 sched_info_arrive(next);
648}
52f17b6c
CS
649static inline void
650sched_info_switch(struct task_struct *prev, struct task_struct *next)
651{
652 if (unlikely(sched_info_on()))
653 __sched_info_switch(prev, next);
654}
1da177e4
LT
655#else
656#define sched_info_queued(t) do { } while (0)
657#define sched_info_switch(t, next) do { } while (0)
52f17b6c 658#endif /* CONFIG_SCHEDSTATS || CONFIG_TASK_DELAY_ACCT */
1da177e4
LT
659
660/*
661 * Adding/removing a task to/from a priority array:
662 */
70b97a7f 663static void dequeue_task(struct task_struct *p, struct prio_array *array)
1da177e4
LT
664{
665 array->nr_active--;
666 list_del(&p->run_list);
667 if (list_empty(array->queue + p->prio))
668 __clear_bit(p->prio, array->bitmap);
669}
670
70b97a7f 671static void enqueue_task(struct task_struct *p, struct prio_array *array)
1da177e4
LT
672{
673 sched_info_queued(p);
674 list_add_tail(&p->run_list, array->queue + p->prio);
675 __set_bit(p->prio, array->bitmap);
676 array->nr_active++;
677 p->array = array;
678}
679
680/*
681 * Put task to the end of the run list without the overhead of dequeue
682 * followed by enqueue.
683 */
70b97a7f 684static void requeue_task(struct task_struct *p, struct prio_array *array)
1da177e4
LT
685{
686 list_move_tail(&p->run_list, array->queue + p->prio);
687}
688
70b97a7f
IM
689static inline void
690enqueue_task_head(struct task_struct *p, struct prio_array *array)
1da177e4
LT
691{
692 list_add(&p->run_list, array->queue + p->prio);
693 __set_bit(p->prio, array->bitmap);
694 array->nr_active++;
695 p->array = array;
696}
697
698/*
b29739f9 699 * __normal_prio - return the priority that is based on the static
1da177e4
LT
700 * priority but is modified by bonuses/penalties.
701 *
702 * We scale the actual sleep average [0 .... MAX_SLEEP_AVG]
703 * into the -5 ... 0 ... +5 bonus/penalty range.
704 *
705 * We use 25% of the full 0...39 priority range so that:
706 *
707 * 1) nice +19 interactive tasks do not preempt nice 0 CPU hogs.
708 * 2) nice -20 CPU hogs do not get preempted by nice 0 tasks.
709 *
710 * Both properties are important to certain workloads.
711 */
b29739f9 712
36c8b586 713static inline int __normal_prio(struct task_struct *p)
1da177e4
LT
714{
715 int bonus, prio;
716
1da177e4
LT
717 bonus = CURRENT_BONUS(p) - MAX_BONUS / 2;
718
719 prio = p->static_prio - bonus;
720 if (prio < MAX_RT_PRIO)
721 prio = MAX_RT_PRIO;
722 if (prio > MAX_PRIO-1)
723 prio = MAX_PRIO-1;
724 return prio;
725}
726
2dd73a4f
PW
727/*
728 * To aid in avoiding the subversion of "niceness" due to uneven distribution
729 * of tasks with abnormal "nice" values across CPUs the contribution that
730 * each task makes to its run queue's load is weighted according to its
731 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
732 * scaled version of the new time slice allocation that they receive on time
733 * slice expiry etc.
734 */
735
736/*
737 * Assume: static_prio_timeslice(NICE_TO_PRIO(0)) == DEF_TIMESLICE
738 * If static_prio_timeslice() is ever changed to break this assumption then
739 * this code will need modification
740 */
741#define TIME_SLICE_NICE_ZERO DEF_TIMESLICE
742#define LOAD_WEIGHT(lp) \
743 (((lp) * SCHED_LOAD_SCALE) / TIME_SLICE_NICE_ZERO)
744#define PRIO_TO_LOAD_WEIGHT(prio) \
745 LOAD_WEIGHT(static_prio_timeslice(prio))
746#define RTPRIO_TO_LOAD_WEIGHT(rp) \
747 (PRIO_TO_LOAD_WEIGHT(MAX_RT_PRIO) + LOAD_WEIGHT(rp))
748
36c8b586 749static void set_load_weight(struct task_struct *p)
2dd73a4f 750{
b29739f9 751 if (has_rt_policy(p)) {
2dd73a4f
PW
752#ifdef CONFIG_SMP
753 if (p == task_rq(p)->migration_thread)
754 /*
755 * The migration thread does the actual balancing.
756 * Giving its load any weight will skew balancing
757 * adversely.
758 */
759 p->load_weight = 0;
760 else
761#endif
762 p->load_weight = RTPRIO_TO_LOAD_WEIGHT(p->rt_priority);
763 } else
764 p->load_weight = PRIO_TO_LOAD_WEIGHT(p->static_prio);
765}
766
36c8b586 767static inline void
70b97a7f 768inc_raw_weighted_load(struct rq *rq, const struct task_struct *p)
2dd73a4f
PW
769{
770 rq->raw_weighted_load += p->load_weight;
771}
772
36c8b586 773static inline void
70b97a7f 774dec_raw_weighted_load(struct rq *rq, const struct task_struct *p)
2dd73a4f
PW
775{
776 rq->raw_weighted_load -= p->load_weight;
777}
778
70b97a7f 779static inline void inc_nr_running(struct task_struct *p, struct rq *rq)
2dd73a4f
PW
780{
781 rq->nr_running++;
782 inc_raw_weighted_load(rq, p);
783}
784
70b97a7f 785static inline void dec_nr_running(struct task_struct *p, struct rq *rq)
2dd73a4f
PW
786{
787 rq->nr_running--;
788 dec_raw_weighted_load(rq, p);
789}
790
b29739f9
IM
791/*
792 * Calculate the expected normal priority: i.e. priority
793 * without taking RT-inheritance into account. Might be
794 * boosted by interactivity modifiers. Changes upon fork,
795 * setprio syscalls, and whenever the interactivity
796 * estimator recalculates.
797 */
36c8b586 798static inline int normal_prio(struct task_struct *p)
b29739f9
IM
799{
800 int prio;
801
802 if (has_rt_policy(p))
803 prio = MAX_RT_PRIO-1 - p->rt_priority;
804 else
805 prio = __normal_prio(p);
806 return prio;
807}
808
809/*
810 * Calculate the current priority, i.e. the priority
811 * taken into account by the scheduler. This value might
812 * be boosted by RT tasks, or might be boosted by
813 * interactivity modifiers. Will be RT if the task got
814 * RT-boosted. If not then it returns p->normal_prio.
815 */
36c8b586 816static int effective_prio(struct task_struct *p)
b29739f9
IM
817{
818 p->normal_prio = normal_prio(p);
819 /*
820 * If we are RT tasks or we were boosted to RT priority,
821 * keep the priority unchanged. Otherwise, update priority
822 * to the normal priority:
823 */
824 if (!rt_prio(p->prio))
825 return p->normal_prio;
826 return p->prio;
827}
828
1da177e4
LT
829/*
830 * __activate_task - move a task to the runqueue.
831 */
70b97a7f 832static void __activate_task(struct task_struct *p, struct rq *rq)
1da177e4 833{
70b97a7f 834 struct prio_array *target = rq->active;
d425b274 835
f1adad78 836 if (batch_task(p))
d425b274
CK
837 target = rq->expired;
838 enqueue_task(p, target);
2dd73a4f 839 inc_nr_running(p, rq);
1da177e4
LT
840}
841
842/*
843 * __activate_idle_task - move idle task to the _front_ of runqueue.
844 */
70b97a7f 845static inline void __activate_idle_task(struct task_struct *p, struct rq *rq)
1da177e4
LT
846{
847 enqueue_task_head(p, rq->active);
2dd73a4f 848 inc_nr_running(p, rq);
1da177e4
LT
849}
850
b29739f9
IM
851/*
852 * Recalculate p->normal_prio and p->prio after having slept,
853 * updating the sleep-average too:
854 */
36c8b586 855static int recalc_task_prio(struct task_struct *p, unsigned long long now)
1da177e4
LT
856{
857 /* Caller must always ensure 'now >= p->timestamp' */
72d2854d 858 unsigned long sleep_time = now - p->timestamp;
1da177e4 859
d425b274 860 if (batch_task(p))
b0a9499c 861 sleep_time = 0;
1da177e4
LT
862
863 if (likely(sleep_time > 0)) {
864 /*
72d2854d
CK
865 * This ceiling is set to the lowest priority that would allow
866 * a task to be reinserted into the active array on timeslice
867 * completion.
1da177e4 868 */
72d2854d 869 unsigned long ceiling = INTERACTIVE_SLEEP(p);
e72ff0bb 870
72d2854d
CK
871 if (p->mm && sleep_time > ceiling && p->sleep_avg < ceiling) {
872 /*
873 * Prevents user tasks from achieving best priority
874 * with one single large enough sleep.
875 */
876 p->sleep_avg = ceiling;
877 /*
878 * Using INTERACTIVE_SLEEP() as a ceiling places a
879 * nice(0) task 1ms sleep away from promotion, and
880 * gives it 700ms to round-robin with no chance of
881 * being demoted. This is more than generous, so
882 * mark this sleep as non-interactive to prevent the
883 * on-runqueue bonus logic from intervening should
884 * this task not receive cpu immediately.
885 */
886 p->sleep_type = SLEEP_NONINTERACTIVE;
1da177e4 887 } else {
1da177e4
LT
888 /*
889 * Tasks waking from uninterruptible sleep are
890 * limited in their sleep_avg rise as they
891 * are likely to be waiting on I/O
892 */
3dee386e 893 if (p->sleep_type == SLEEP_NONINTERACTIVE && p->mm) {
72d2854d 894 if (p->sleep_avg >= ceiling)
1da177e4
LT
895 sleep_time = 0;
896 else if (p->sleep_avg + sleep_time >=
72d2854d
CK
897 ceiling) {
898 p->sleep_avg = ceiling;
899 sleep_time = 0;
1da177e4
LT
900 }
901 }
902
903 /*
904 * This code gives a bonus to interactive tasks.
905 *
906 * The boost works by updating the 'average sleep time'
907 * value here, based on ->timestamp. The more time a
908 * task spends sleeping, the higher the average gets -
909 * and the higher the priority boost gets as well.
910 */
911 p->sleep_avg += sleep_time;
912
1da177e4 913 }
72d2854d
CK
914 if (p->sleep_avg > NS_MAX_SLEEP_AVG)
915 p->sleep_avg = NS_MAX_SLEEP_AVG;
1da177e4
LT
916 }
917
a3464a10 918 return effective_prio(p);
1da177e4
LT
919}
920
921/*
922 * activate_task - move a task to the runqueue and do priority recalculation
923 *
924 * Update all the scheduling statistics stuff. (sleep average
925 * calculation, priority modifiers, etc.)
926 */
70b97a7f 927static void activate_task(struct task_struct *p, struct rq *rq, int local)
1da177e4
LT
928{
929 unsigned long long now;
930
931 now = sched_clock();
932#ifdef CONFIG_SMP
933 if (!local) {
934 /* Compensate for drifting sched_clock */
70b97a7f 935 struct rq *this_rq = this_rq();
1da177e4
LT
936 now = (now - this_rq->timestamp_last_tick)
937 + rq->timestamp_last_tick;
938 }
939#endif
940
a47ab937
CK
941 if (!rt_task(p))
942 p->prio = recalc_task_prio(p, now);
1da177e4
LT
943
944 /*
945 * This checks to make sure it's not an uninterruptible task
946 * that is now waking up.
947 */
3dee386e 948 if (p->sleep_type == SLEEP_NORMAL) {
1da177e4
LT
949 /*
950 * Tasks which were woken up by interrupts (ie. hw events)
951 * are most likely of interactive nature. So we give them
952 * the credit of extending their sleep time to the period
953 * of time they spend on the runqueue, waiting for execution
954 * on a CPU, first time around:
955 */
956 if (in_interrupt())
3dee386e 957 p->sleep_type = SLEEP_INTERRUPTED;
1da177e4
LT
958 else {
959 /*
960 * Normal first-time wakeups get a credit too for
961 * on-runqueue time, but it will be weighted down:
962 */
3dee386e 963 p->sleep_type = SLEEP_INTERACTIVE;
1da177e4
LT
964 }
965 }
966 p->timestamp = now;
967
968 __activate_task(p, rq);
969}
970
971/*
972 * deactivate_task - remove a task from the runqueue.
973 */
70b97a7f 974static void deactivate_task(struct task_struct *p, struct rq *rq)
1da177e4 975{
2dd73a4f 976 dec_nr_running(p, rq);
1da177e4
LT
977 dequeue_task(p, p->array);
978 p->array = NULL;
979}
980
981/*
982 * resched_task - mark a task 'to be rescheduled now'.
983 *
984 * On UP this means the setting of the need_resched flag, on SMP it
985 * might also involve a cross-CPU call to trigger the scheduler on
986 * the target CPU.
987 */
988#ifdef CONFIG_SMP
495ab9c0
AK
989
990#ifndef tsk_is_polling
991#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
992#endif
993
36c8b586 994static void resched_task(struct task_struct *p)
1da177e4 995{
64c7c8f8 996 int cpu;
1da177e4
LT
997
998 assert_spin_locked(&task_rq(p)->lock);
999
64c7c8f8
NP
1000 if (unlikely(test_tsk_thread_flag(p, TIF_NEED_RESCHED)))
1001 return;
1002
1003 set_tsk_thread_flag(p, TIF_NEED_RESCHED);
1da177e4 1004
64c7c8f8
NP
1005 cpu = task_cpu(p);
1006 if (cpu == smp_processor_id())
1007 return;
1008
495ab9c0 1009 /* NEED_RESCHED must be visible before we test polling */
64c7c8f8 1010 smp_mb();
495ab9c0 1011 if (!tsk_is_polling(p))
64c7c8f8 1012 smp_send_reschedule(cpu);
1da177e4
LT
1013}
1014#else
36c8b586 1015static inline void resched_task(struct task_struct *p)
1da177e4 1016{
64c7c8f8 1017 assert_spin_locked(&task_rq(p)->lock);
1da177e4
LT
1018 set_tsk_need_resched(p);
1019}
1020#endif
1021
1022/**
1023 * task_curr - is this task currently executing on a CPU?
1024 * @p: the task in question.
1025 */
36c8b586 1026inline int task_curr(const struct task_struct *p)
1da177e4
LT
1027{
1028 return cpu_curr(task_cpu(p)) == p;
1029}
1030
2dd73a4f
PW
1031/* Used instead of source_load when we know the type == 0 */
1032unsigned long weighted_cpuload(const int cpu)
1033{
1034 return cpu_rq(cpu)->raw_weighted_load;
1035}
1036
1da177e4 1037#ifdef CONFIG_SMP
70b97a7f 1038struct migration_req {
1da177e4 1039 struct list_head list;
1da177e4 1040
36c8b586 1041 struct task_struct *task;
1da177e4
LT
1042 int dest_cpu;
1043
1da177e4 1044 struct completion done;
70b97a7f 1045};
1da177e4
LT
1046
1047/*
1048 * The task's runqueue lock must be held.
1049 * Returns true if you have to wait for migration thread.
1050 */
36c8b586 1051static int
70b97a7f 1052migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req)
1da177e4 1053{
70b97a7f 1054 struct rq *rq = task_rq(p);
1da177e4
LT
1055
1056 /*
1057 * If the task is not on a runqueue (and not running), then
1058 * it is sufficient to simply update the task's cpu field.
1059 */
1060 if (!p->array && !task_running(rq, p)) {
1061 set_task_cpu(p, dest_cpu);
1062 return 0;
1063 }
1064
1065 init_completion(&req->done);
1da177e4
LT
1066 req->task = p;
1067 req->dest_cpu = dest_cpu;
1068 list_add(&req->list, &rq->migration_queue);
48f24c4d 1069
1da177e4
LT
1070 return 1;
1071}
1072
1073/*
1074 * wait_task_inactive - wait for a thread to unschedule.
1075 *
1076 * The caller must ensure that the task *will* unschedule sometime soon,
1077 * else this function might spin for a *long* time. This function can't
1078 * be called with interrupts off, or it may introduce deadlock with
1079 * smp_call_function() if an IPI is sent by the same process we are
1080 * waiting to become inactive.
1081 */
36c8b586 1082void wait_task_inactive(struct task_struct *p)
1da177e4
LT
1083{
1084 unsigned long flags;
70b97a7f 1085 struct rq *rq;
1da177e4
LT
1086 int preempted;
1087
1088repeat:
1089 rq = task_rq_lock(p, &flags);
1090 /* Must be off runqueue entirely, not preempted. */
1091 if (unlikely(p->array || task_running(rq, p))) {
1092 /* If it's preempted, we yield. It could be a while. */
1093 preempted = !task_running(rq, p);
1094 task_rq_unlock(rq, &flags);
1095 cpu_relax();
1096 if (preempted)
1097 yield();
1098 goto repeat;
1099 }
1100 task_rq_unlock(rq, &flags);
1101}
1102
1103/***
1104 * kick_process - kick a running thread to enter/exit the kernel
1105 * @p: the to-be-kicked thread
1106 *
1107 * Cause a process which is running on another CPU to enter
1108 * kernel-mode, without any delay. (to get signals handled.)
1109 *
1110 * NOTE: this function doesnt have to take the runqueue lock,
1111 * because all it wants to ensure is that the remote task enters
1112 * the kernel. If the IPI races and the task has been migrated
1113 * to another CPU then no harm is done and the purpose has been
1114 * achieved as well.
1115 */
36c8b586 1116void kick_process(struct task_struct *p)
1da177e4
LT
1117{
1118 int cpu;
1119
1120 preempt_disable();
1121 cpu = task_cpu(p);
1122 if ((cpu != smp_processor_id()) && task_curr(p))
1123 smp_send_reschedule(cpu);
1124 preempt_enable();
1125}
1126
1127/*
2dd73a4f
PW
1128 * Return a low guess at the load of a migration-source cpu weighted
1129 * according to the scheduling class and "nice" value.
1da177e4
LT
1130 *
1131 * We want to under-estimate the load of migration sources, to
1132 * balance conservatively.
1133 */
a2000572 1134static inline unsigned long source_load(int cpu, int type)
1da177e4 1135{
70b97a7f 1136 struct rq *rq = cpu_rq(cpu);
2dd73a4f 1137
3b0bd9bc 1138 if (type == 0)
2dd73a4f 1139 return rq->raw_weighted_load;
b910472d 1140
2dd73a4f 1141 return min(rq->cpu_load[type-1], rq->raw_weighted_load);
1da177e4
LT
1142}
1143
1144/*
2dd73a4f
PW
1145 * Return a high guess at the load of a migration-target cpu weighted
1146 * according to the scheduling class and "nice" value.
1da177e4 1147 */
a2000572 1148static inline unsigned long target_load(int cpu, int type)
1da177e4 1149{
70b97a7f 1150 struct rq *rq = cpu_rq(cpu);
2dd73a4f 1151
7897986b 1152 if (type == 0)
2dd73a4f 1153 return rq->raw_weighted_load;
3b0bd9bc 1154
2dd73a4f
PW
1155 return max(rq->cpu_load[type-1], rq->raw_weighted_load);
1156}
1157
1158/*
1159 * Return the average load per task on the cpu's run queue
1160 */
1161static inline unsigned long cpu_avg_load_per_task(int cpu)
1162{
70b97a7f 1163 struct rq *rq = cpu_rq(cpu);
2dd73a4f
PW
1164 unsigned long n = rq->nr_running;
1165
48f24c4d 1166 return n ? rq->raw_weighted_load / n : SCHED_LOAD_SCALE;
1da177e4
LT
1167}
1168
147cbb4b
NP
1169/*
1170 * find_idlest_group finds and returns the least busy CPU group within the
1171 * domain.
1172 */
1173static struct sched_group *
1174find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
1175{
1176 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
1177 unsigned long min_load = ULONG_MAX, this_load = 0;
1178 int load_idx = sd->forkexec_idx;
1179 int imbalance = 100 + (sd->imbalance_pct-100)/2;
1180
1181 do {
1182 unsigned long load, avg_load;
1183 int local_group;
1184 int i;
1185
da5a5522
BD
1186 /* Skip over this group if it has no CPUs allowed */
1187 if (!cpus_intersects(group->cpumask, p->cpus_allowed))
1188 goto nextgroup;
1189
147cbb4b 1190 local_group = cpu_isset(this_cpu, group->cpumask);
147cbb4b
NP
1191
1192 /* Tally up the load of all CPUs in the group */
1193 avg_load = 0;
1194
1195 for_each_cpu_mask(i, group->cpumask) {
1196 /* Bias balancing toward cpus of our domain */
1197 if (local_group)
1198 load = source_load(i, load_idx);
1199 else
1200 load = target_load(i, load_idx);
1201
1202 avg_load += load;
1203 }
1204
1205 /* Adjust by relative CPU power of the group */
1206 avg_load = (avg_load * SCHED_LOAD_SCALE) / group->cpu_power;
1207
1208 if (local_group) {
1209 this_load = avg_load;
1210 this = group;
1211 } else if (avg_load < min_load) {
1212 min_load = avg_load;
1213 idlest = group;
1214 }
da5a5522 1215nextgroup:
147cbb4b
NP
1216 group = group->next;
1217 } while (group != sd->groups);
1218
1219 if (!idlest || 100*this_load < imbalance*min_load)
1220 return NULL;
1221 return idlest;
1222}
1223
1224/*
1225 * find_idlest_queue - find the idlest runqueue among the cpus in group.
1226 */
95cdf3b7
IM
1227static int
1228find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu)
147cbb4b 1229{
da5a5522 1230 cpumask_t tmp;
147cbb4b
NP
1231 unsigned long load, min_load = ULONG_MAX;
1232 int idlest = -1;
1233 int i;
1234
da5a5522
BD
1235 /* Traverse only the allowed CPUs */
1236 cpus_and(tmp, group->cpumask, p->cpus_allowed);
1237
1238 for_each_cpu_mask(i, tmp) {
2dd73a4f 1239 load = weighted_cpuload(i);
147cbb4b
NP
1240
1241 if (load < min_load || (load == min_load && i == this_cpu)) {
1242 min_load = load;
1243 idlest = i;
1244 }
1245 }
1246
1247 return idlest;
1248}
1249
476d139c
NP
1250/*
1251 * sched_balance_self: balance the current task (running on cpu) in domains
1252 * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and
1253 * SD_BALANCE_EXEC.
1254 *
1255 * Balance, ie. select the least loaded group.
1256 *
1257 * Returns the target CPU number, or the same CPU if no balancing is needed.
1258 *
1259 * preempt must be disabled.
1260 */
1261static int sched_balance_self(int cpu, int flag)
1262{
1263 struct task_struct *t = current;
1264 struct sched_domain *tmp, *sd = NULL;
147cbb4b 1265
c96d145e 1266 for_each_domain(cpu, tmp) {
5c45bf27
SS
1267 /*
1268 * If power savings logic is enabled for a domain, stop there.
1269 */
1270 if (tmp->flags & SD_POWERSAVINGS_BALANCE)
1271 break;
476d139c
NP
1272 if (tmp->flags & flag)
1273 sd = tmp;
c96d145e 1274 }
476d139c
NP
1275
1276 while (sd) {
1277 cpumask_t span;
1278 struct sched_group *group;
1279 int new_cpu;
1280 int weight;
1281
1282 span = sd->span;
1283 group = find_idlest_group(sd, t, cpu);
1284 if (!group)
1285 goto nextlevel;
1286
da5a5522 1287 new_cpu = find_idlest_cpu(group, t, cpu);
476d139c
NP
1288 if (new_cpu == -1 || new_cpu == cpu)
1289 goto nextlevel;
1290
1291 /* Now try balancing at a lower domain level */
1292 cpu = new_cpu;
1293nextlevel:
1294 sd = NULL;
1295 weight = cpus_weight(span);
1296 for_each_domain(cpu, tmp) {
1297 if (weight <= cpus_weight(tmp->span))
1298 break;
1299 if (tmp->flags & flag)
1300 sd = tmp;
1301 }
1302 /* while loop will break here if sd == NULL */
1303 }
1304
1305 return cpu;
1306}
1307
1308#endif /* CONFIG_SMP */
1da177e4
LT
1309
1310/*
1311 * wake_idle() will wake a task on an idle cpu if task->cpu is
1312 * not idle and an idle cpu is available. The span of cpus to
1313 * search starts with cpus closest then further out as needed,
1314 * so we always favor a closer, idle cpu.
1315 *
1316 * Returns the CPU we should wake onto.
1317 */
1318#if defined(ARCH_HAS_SCHED_WAKE_IDLE)
36c8b586 1319static int wake_idle(int cpu, struct task_struct *p)
1da177e4
LT
1320{
1321 cpumask_t tmp;
1322 struct sched_domain *sd;
1323 int i;
1324
1325 if (idle_cpu(cpu))
1326 return cpu;
1327
1328 for_each_domain(cpu, sd) {
1329 if (sd->flags & SD_WAKE_IDLE) {
e0f364f4 1330 cpus_and(tmp, sd->span, p->cpus_allowed);
1da177e4
LT
1331 for_each_cpu_mask(i, tmp) {
1332 if (idle_cpu(i))
1333 return i;
1334 }
1335 }
e0f364f4
NP
1336 else
1337 break;
1da177e4
LT
1338 }
1339 return cpu;
1340}
1341#else
36c8b586 1342static inline int wake_idle(int cpu, struct task_struct *p)
1da177e4
LT
1343{
1344 return cpu;
1345}
1346#endif
1347
1348/***
1349 * try_to_wake_up - wake up a thread
1350 * @p: the to-be-woken-up thread
1351 * @state: the mask of task states that can be woken
1352 * @sync: do a synchronous wakeup?
1353 *
1354 * Put it on the run-queue if it's not already there. The "current"
1355 * thread is always on the run-queue (except when the actual
1356 * re-schedule is in progress), and as such you're allowed to do
1357 * the simpler "current->state = TASK_RUNNING" to mark yourself
1358 * runnable without the overhead of this.
1359 *
1360 * returns failure only if the task is already active.
1361 */
36c8b586 1362static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync)
1da177e4
LT
1363{
1364 int cpu, this_cpu, success = 0;
1365 unsigned long flags;
1366 long old_state;
70b97a7f 1367 struct rq *rq;
1da177e4 1368#ifdef CONFIG_SMP
7897986b 1369 struct sched_domain *sd, *this_sd = NULL;
70b97a7f 1370 unsigned long load, this_load;
1da177e4
LT
1371 int new_cpu;
1372#endif
1373
1374 rq = task_rq_lock(p, &flags);
1375 old_state = p->state;
1376 if (!(old_state & state))
1377 goto out;
1378
1379 if (p->array)
1380 goto out_running;
1381
1382 cpu = task_cpu(p);
1383 this_cpu = smp_processor_id();
1384
1385#ifdef CONFIG_SMP
1386 if (unlikely(task_running(rq, p)))
1387 goto out_activate;
1388
7897986b
NP
1389 new_cpu = cpu;
1390
1da177e4
LT
1391 schedstat_inc(rq, ttwu_cnt);
1392 if (cpu == this_cpu) {
1393 schedstat_inc(rq, ttwu_local);
7897986b
NP
1394 goto out_set_cpu;
1395 }
1396
1397 for_each_domain(this_cpu, sd) {
1398 if (cpu_isset(cpu, sd->span)) {
1399 schedstat_inc(sd, ttwu_wake_remote);
1400 this_sd = sd;
1401 break;
1da177e4
LT
1402 }
1403 }
1da177e4 1404
7897986b 1405 if (unlikely(!cpu_isset(this_cpu, p->cpus_allowed)))
1da177e4
LT
1406 goto out_set_cpu;
1407
1da177e4 1408 /*
7897986b 1409 * Check for affine wakeup and passive balancing possibilities.
1da177e4 1410 */
7897986b
NP
1411 if (this_sd) {
1412 int idx = this_sd->wake_idx;
1413 unsigned int imbalance;
1da177e4 1414
a3f21bce
NP
1415 imbalance = 100 + (this_sd->imbalance_pct - 100) / 2;
1416
7897986b
NP
1417 load = source_load(cpu, idx);
1418 this_load = target_load(this_cpu, idx);
1da177e4 1419
7897986b
NP
1420 new_cpu = this_cpu; /* Wake to this CPU if we can */
1421
a3f21bce
NP
1422 if (this_sd->flags & SD_WAKE_AFFINE) {
1423 unsigned long tl = this_load;
2dd73a4f
PW
1424 unsigned long tl_per_task = cpu_avg_load_per_task(this_cpu);
1425
1da177e4 1426 /*
a3f21bce
NP
1427 * If sync wakeup then subtract the (maximum possible)
1428 * effect of the currently running task from the load
1429 * of the current CPU:
1da177e4 1430 */
a3f21bce 1431 if (sync)
2dd73a4f 1432 tl -= current->load_weight;
a3f21bce
NP
1433
1434 if ((tl <= load &&
2dd73a4f
PW
1435 tl + target_load(cpu, idx) <= tl_per_task) ||
1436 100*(tl + p->load_weight) <= imbalance*load) {
a3f21bce
NP
1437 /*
1438 * This domain has SD_WAKE_AFFINE and
1439 * p is cache cold in this domain, and
1440 * there is no bad imbalance.
1441 */
1442 schedstat_inc(this_sd, ttwu_move_affine);
1443 goto out_set_cpu;
1444 }
1445 }
1446
1447 /*
1448 * Start passive balancing when half the imbalance_pct
1449 * limit is reached.
1450 */
1451 if (this_sd->flags & SD_WAKE_BALANCE) {
1452 if (imbalance*this_load <= 100*load) {
1453 schedstat_inc(this_sd, ttwu_move_balance);
1454 goto out_set_cpu;
1455 }
1da177e4
LT
1456 }
1457 }
1458
1459 new_cpu = cpu; /* Could not wake to this_cpu. Wake to cpu instead */
1460out_set_cpu:
1461 new_cpu = wake_idle(new_cpu, p);
1462 if (new_cpu != cpu) {
1463 set_task_cpu(p, new_cpu);
1464 task_rq_unlock(rq, &flags);
1465 /* might preempt at this point */
1466 rq = task_rq_lock(p, &flags);
1467 old_state = p->state;
1468 if (!(old_state & state))
1469 goto out;
1470 if (p->array)
1471 goto out_running;
1472
1473 this_cpu = smp_processor_id();
1474 cpu = task_cpu(p);
1475 }
1476
1477out_activate:
1478#endif /* CONFIG_SMP */
1479 if (old_state == TASK_UNINTERRUPTIBLE) {
1480 rq->nr_uninterruptible--;
1481 /*
1482 * Tasks on involuntary sleep don't earn
1483 * sleep_avg beyond just interactive state.
1484 */
3dee386e 1485 p->sleep_type = SLEEP_NONINTERACTIVE;
e7c38cb4 1486 } else
1da177e4 1487
d79fc0fc
IM
1488 /*
1489 * Tasks that have marked their sleep as noninteractive get
e7c38cb4
CK
1490 * woken up with their sleep average not weighted in an
1491 * interactive way.
d79fc0fc 1492 */
e7c38cb4
CK
1493 if (old_state & TASK_NONINTERACTIVE)
1494 p->sleep_type = SLEEP_NONINTERACTIVE;
1495
1496
1497 activate_task(p, rq, cpu == this_cpu);
1da177e4
LT
1498 /*
1499 * Sync wakeups (i.e. those types of wakeups where the waker
1500 * has indicated that it will leave the CPU in short order)
1501 * don't trigger a preemption, if the woken up task will run on
1502 * this cpu. (in this case the 'I will reschedule' promise of
1503 * the waker guarantees that the freshly woken up task is going
1504 * to be considered on this CPU.)
1505 */
1da177e4
LT
1506 if (!sync || cpu != this_cpu) {
1507 if (TASK_PREEMPTS_CURR(p, rq))
1508 resched_task(rq->curr);
1509 }
1510 success = 1;
1511
1512out_running:
1513 p->state = TASK_RUNNING;
1514out:
1515 task_rq_unlock(rq, &flags);
1516
1517 return success;
1518}
1519
36c8b586 1520int fastcall wake_up_process(struct task_struct *p)
1da177e4
LT
1521{
1522 return try_to_wake_up(p, TASK_STOPPED | TASK_TRACED |
1523 TASK_INTERRUPTIBLE | TASK_UNINTERRUPTIBLE, 0);
1524}
1da177e4
LT
1525EXPORT_SYMBOL(wake_up_process);
1526
36c8b586 1527int fastcall wake_up_state(struct task_struct *p, unsigned int state)
1da177e4
LT
1528{
1529 return try_to_wake_up(p, state, 0);
1530}
1531
1da177e4
LT
1532/*
1533 * Perform scheduler related setup for a newly forked process p.
1534 * p is forked by current.
1535 */
36c8b586 1536void fastcall sched_fork(struct task_struct *p, int clone_flags)
1da177e4 1537{
476d139c
NP
1538 int cpu = get_cpu();
1539
1540#ifdef CONFIG_SMP
1541 cpu = sched_balance_self(cpu, SD_BALANCE_FORK);
1542#endif
1543 set_task_cpu(p, cpu);
1544
1da177e4
LT
1545 /*
1546 * We mark the process as running here, but have not actually
1547 * inserted it onto the runqueue yet. This guarantees that
1548 * nobody will actually run it, and a signal or other external
1549 * event cannot wake it up and insert it on the runqueue either.
1550 */
1551 p->state = TASK_RUNNING;
b29739f9
IM
1552
1553 /*
1554 * Make sure we do not leak PI boosting priority to the child:
1555 */
1556 p->prio = current->normal_prio;
1557
1da177e4
LT
1558 INIT_LIST_HEAD(&p->run_list);
1559 p->array = NULL;
52f17b6c
CS
1560#if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT)
1561 if (unlikely(sched_info_on()))
1562 memset(&p->sched_info, 0, sizeof(p->sched_info));
1da177e4 1563#endif
d6077cb8 1564#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
4866cde0
NP
1565 p->oncpu = 0;
1566#endif
1da177e4 1567#ifdef CONFIG_PREEMPT
4866cde0 1568 /* Want to start with kernel preemption disabled. */
a1261f54 1569 task_thread_info(p)->preempt_count = 1;
1da177e4
LT
1570#endif
1571 /*
1572 * Share the timeslice between parent and child, thus the
1573 * total amount of pending timeslices in the system doesn't change,
1574 * resulting in more scheduling fairness.
1575 */
1576 local_irq_disable();
1577 p->time_slice = (current->time_slice + 1) >> 1;
1578 /*
1579 * The remainder of the first timeslice might be recovered by
1580 * the parent if the child exits early enough.
1581 */
1582 p->first_time_slice = 1;
1583 current->time_slice >>= 1;
1584 p->timestamp = sched_clock();
1585 if (unlikely(!current->time_slice)) {
1586 /*
1587 * This case is rare, it happens when the parent has only
1588 * a single jiffy left from its timeslice. Taking the
1589 * runqueue lock is not a problem.
1590 */
1591 current->time_slice = 1;
1da177e4 1592 scheduler_tick();
476d139c
NP
1593 }
1594 local_irq_enable();
1595 put_cpu();
1da177e4
LT
1596}
1597
1598/*
1599 * wake_up_new_task - wake up a newly created task for the first time.
1600 *
1601 * This function will do some initial scheduler statistics housekeeping
1602 * that must be done for every newly created context, then puts the task
1603 * on the runqueue and wakes it.
1604 */
36c8b586 1605void fastcall wake_up_new_task(struct task_struct *p, unsigned long clone_flags)
1da177e4 1606{
70b97a7f 1607 struct rq *rq, *this_rq;
1da177e4
LT
1608 unsigned long flags;
1609 int this_cpu, cpu;
1da177e4
LT
1610
1611 rq = task_rq_lock(p, &flags);
147cbb4b 1612 BUG_ON(p->state != TASK_RUNNING);
1da177e4 1613 this_cpu = smp_processor_id();
147cbb4b 1614 cpu = task_cpu(p);
1da177e4 1615
1da177e4
LT
1616 /*
1617 * We decrease the sleep average of forking parents
1618 * and children as well, to keep max-interactive tasks
1619 * from forking tasks that are max-interactive. The parent
1620 * (current) is done further down, under its lock.
1621 */
1622 p->sleep_avg = JIFFIES_TO_NS(CURRENT_BONUS(p) *
1623 CHILD_PENALTY / 100 * MAX_SLEEP_AVG / MAX_BONUS);
1624
1625 p->prio = effective_prio(p);
1626
1627 if (likely(cpu == this_cpu)) {
1628 if (!(clone_flags & CLONE_VM)) {
1629 /*
1630 * The VM isn't cloned, so we're in a good position to
1631 * do child-runs-first in anticipation of an exec. This
1632 * usually avoids a lot of COW overhead.
1633 */
1634 if (unlikely(!current->array))
1635 __activate_task(p, rq);
1636 else {
1637 p->prio = current->prio;
b29739f9 1638 p->normal_prio = current->normal_prio;
1da177e4
LT
1639 list_add_tail(&p->run_list, &current->run_list);
1640 p->array = current->array;
1641 p->array->nr_active++;
2dd73a4f 1642 inc_nr_running(p, rq);
1da177e4
LT
1643 }
1644 set_need_resched();
1645 } else
1646 /* Run child last */
1647 __activate_task(p, rq);
1648 /*
1649 * We skip the following code due to cpu == this_cpu
1650 *
1651 * task_rq_unlock(rq, &flags);
1652 * this_rq = task_rq_lock(current, &flags);
1653 */
1654 this_rq = rq;
1655 } else {
1656 this_rq = cpu_rq(this_cpu);
1657
1658 /*
1659 * Not the local CPU - must adjust timestamp. This should
1660 * get optimised away in the !CONFIG_SMP case.
1661 */
1662 p->timestamp = (p->timestamp - this_rq->timestamp_last_tick)
1663 + rq->timestamp_last_tick;
1664 __activate_task(p, rq);
1665 if (TASK_PREEMPTS_CURR(p, rq))
1666 resched_task(rq->curr);
1667
1668 /*
1669 * Parent and child are on different CPUs, now get the
1670 * parent runqueue to update the parent's ->sleep_avg:
1671 */
1672 task_rq_unlock(rq, &flags);
1673 this_rq = task_rq_lock(current, &flags);
1674 }
1675 current->sleep_avg = JIFFIES_TO_NS(CURRENT_BONUS(current) *
1676 PARENT_PENALTY / 100 * MAX_SLEEP_AVG / MAX_BONUS);
1677 task_rq_unlock(this_rq, &flags);
1678}
1679
1680/*
1681 * Potentially available exiting-child timeslices are
1682 * retrieved here - this way the parent does not get
1683 * penalized for creating too many threads.
1684 *
1685 * (this cannot be used to 'generate' timeslices
1686 * artificially, because any timeslice recovered here
1687 * was given away by the parent in the first place.)
1688 */
36c8b586 1689void fastcall sched_exit(struct task_struct *p)
1da177e4
LT
1690{
1691 unsigned long flags;
70b97a7f 1692 struct rq *rq;
1da177e4
LT
1693
1694 /*
1695 * If the child was a (relative-) CPU hog then decrease
1696 * the sleep_avg of the parent as well.
1697 */
1698 rq = task_rq_lock(p->parent, &flags);
889dfafe 1699 if (p->first_time_slice && task_cpu(p) == task_cpu(p->parent)) {
1da177e4
LT
1700 p->parent->time_slice += p->time_slice;
1701 if (unlikely(p->parent->time_slice > task_timeslice(p)))
1702 p->parent->time_slice = task_timeslice(p);
1703 }
1704 if (p->sleep_avg < p->parent->sleep_avg)
1705 p->parent->sleep_avg = p->parent->sleep_avg /
1706 (EXIT_WEIGHT + 1) * EXIT_WEIGHT + p->sleep_avg /
1707 (EXIT_WEIGHT + 1);
1708 task_rq_unlock(rq, &flags);
1709}
1710
4866cde0
NP
1711/**
1712 * prepare_task_switch - prepare to switch tasks
1713 * @rq: the runqueue preparing to switch
1714 * @next: the task we are going to switch to.
1715 *
1716 * This is called with the rq lock held and interrupts off. It must
1717 * be paired with a subsequent finish_task_switch after the context
1718 * switch.
1719 *
1720 * prepare_task_switch sets up locking and calls architecture specific
1721 * hooks.
1722 */
70b97a7f 1723static inline void prepare_task_switch(struct rq *rq, struct task_struct *next)
4866cde0
NP
1724{
1725 prepare_lock_switch(rq, next);
1726 prepare_arch_switch(next);
1727}
1728
1da177e4
LT
1729/**
1730 * finish_task_switch - clean up after a task-switch
344babaa 1731 * @rq: runqueue associated with task-switch
1da177e4
LT
1732 * @prev: the thread we just switched away from.
1733 *
4866cde0
NP
1734 * finish_task_switch must be called after the context switch, paired
1735 * with a prepare_task_switch call before the context switch.
1736 * finish_task_switch will reconcile locking set up by prepare_task_switch,
1737 * and do any other architecture-specific cleanup actions.
1da177e4
LT
1738 *
1739 * Note that we may have delayed dropping an mm in context_switch(). If
1740 * so, we finish that here outside of the runqueue lock. (Doing it
1741 * with the lock held can cause deadlocks; see schedule() for
1742 * details.)
1743 */
70b97a7f 1744static inline void finish_task_switch(struct rq *rq, struct task_struct *prev)
1da177e4
LT
1745 __releases(rq->lock)
1746{
1da177e4
LT
1747 struct mm_struct *mm = rq->prev_mm;
1748 unsigned long prev_task_flags;
1749
1750 rq->prev_mm = NULL;
1751
1752 /*
1753 * A task struct has one reference for the use as "current".
1754 * If a task dies, then it sets EXIT_ZOMBIE in tsk->exit_state and
1755 * calls schedule one last time. The schedule call will never return,
1756 * and the scheduled task must drop that reference.
1757 * The test for EXIT_ZOMBIE must occur while the runqueue locks are
1758 * still held, otherwise prev could be scheduled on another cpu, die
1759 * there before we look at prev->state, and then the reference would
1760 * be dropped twice.
1761 * Manfred Spraul <manfred@colorfullife.com>
1762 */
1763 prev_task_flags = prev->flags;
4866cde0
NP
1764 finish_arch_switch(prev);
1765 finish_lock_switch(rq, prev);
1da177e4
LT
1766 if (mm)
1767 mmdrop(mm);
c6fd91f0 1768 if (unlikely(prev_task_flags & PF_DEAD)) {
1769 /*
1770 * Remove function-return probe instances associated with this
1771 * task and put them back on the free list.
1772 */
1773 kprobe_flush_task(prev);
1da177e4 1774 put_task_struct(prev);
c6fd91f0 1775 }
1da177e4
LT
1776}
1777
1778/**
1779 * schedule_tail - first thing a freshly forked thread must call.
1780 * @prev: the thread we just switched away from.
1781 */
36c8b586 1782asmlinkage void schedule_tail(struct task_struct *prev)
1da177e4
LT
1783 __releases(rq->lock)
1784{
70b97a7f
IM
1785 struct rq *rq = this_rq();
1786
4866cde0
NP
1787 finish_task_switch(rq, prev);
1788#ifdef __ARCH_WANT_UNLOCKED_CTXSW
1789 /* In this case, finish_task_switch does not reenable preemption */
1790 preempt_enable();
1791#endif
1da177e4
LT
1792 if (current->set_child_tid)
1793 put_user(current->pid, current->set_child_tid);
1794}
1795
1796/*
1797 * context_switch - switch to the new MM and the new
1798 * thread's register state.
1799 */
36c8b586 1800static inline struct task_struct *
70b97a7f 1801context_switch(struct rq *rq, struct task_struct *prev,
36c8b586 1802 struct task_struct *next)
1da177e4
LT
1803{
1804 struct mm_struct *mm = next->mm;
1805 struct mm_struct *oldmm = prev->active_mm;
1806
1807 if (unlikely(!mm)) {
1808 next->active_mm = oldmm;
1809 atomic_inc(&oldmm->mm_count);
1810 enter_lazy_tlb(oldmm, next);
1811 } else
1812 switch_mm(oldmm, mm, next);
1813
1814 if (unlikely(!prev->mm)) {
1815 prev->active_mm = NULL;
1816 WARN_ON(rq->prev_mm);
1817 rq->prev_mm = oldmm;
1818 }
3a5f5e48
IM
1819 /*
1820 * Since the runqueue lock will be released by the next
1821 * task (which is an invalid locking op but in the case
1822 * of the scheduler it's an obvious special-case), so we
1823 * do an early lockdep release here:
1824 */
1825#ifndef __ARCH_WANT_UNLOCKED_CTXSW
8a25d5de 1826 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
3a5f5e48 1827#endif
1da177e4
LT
1828
1829 /* Here we just switch the register state and the stack. */
1830 switch_to(prev, next, prev);
1831
1832 return prev;
1833}
1834
1835/*
1836 * nr_running, nr_uninterruptible and nr_context_switches:
1837 *
1838 * externally visible scheduler statistics: current number of runnable
1839 * threads, current number of uninterruptible-sleeping threads, total
1840 * number of context switches performed since bootup.
1841 */
1842unsigned long nr_running(void)
1843{
1844 unsigned long i, sum = 0;
1845
1846 for_each_online_cpu(i)
1847 sum += cpu_rq(i)->nr_running;
1848
1849 return sum;
1850}
1851
1852unsigned long nr_uninterruptible(void)
1853{
1854 unsigned long i, sum = 0;
1855
0a945022 1856 for_each_possible_cpu(i)
1da177e4
LT
1857 sum += cpu_rq(i)->nr_uninterruptible;
1858
1859 /*
1860 * Since we read the counters lockless, it might be slightly
1861 * inaccurate. Do not allow it to go below zero though:
1862 */
1863 if (unlikely((long)sum < 0))
1864 sum = 0;
1865
1866 return sum;
1867}
1868
1869unsigned long long nr_context_switches(void)
1870{
cc94abfc
SR
1871 int i;
1872 unsigned long long sum = 0;
1da177e4 1873
0a945022 1874 for_each_possible_cpu(i)
1da177e4
LT
1875 sum += cpu_rq(i)->nr_switches;
1876
1877 return sum;
1878}
1879
1880unsigned long nr_iowait(void)
1881{
1882 unsigned long i, sum = 0;
1883
0a945022 1884 for_each_possible_cpu(i)
1da177e4
LT
1885 sum += atomic_read(&cpu_rq(i)->nr_iowait);
1886
1887 return sum;
1888}
1889
db1b1fef
JS
1890unsigned long nr_active(void)
1891{
1892 unsigned long i, running = 0, uninterruptible = 0;
1893
1894 for_each_online_cpu(i) {
1895 running += cpu_rq(i)->nr_running;
1896 uninterruptible += cpu_rq(i)->nr_uninterruptible;
1897 }
1898
1899 if (unlikely((long)uninterruptible < 0))
1900 uninterruptible = 0;
1901
1902 return running + uninterruptible;
1903}
1904
1da177e4
LT
1905#ifdef CONFIG_SMP
1906
48f24c4d
IM
1907/*
1908 * Is this task likely cache-hot:
1909 */
1910static inline int
1911task_hot(struct task_struct *p, unsigned long long now, struct sched_domain *sd)
1912{
1913 return (long long)(now - p->last_ran) < (long long)sd->cache_hot_time;
1914}
1915
1da177e4
LT
1916/*
1917 * double_rq_lock - safely lock two runqueues
1918 *
1919 * Note this does not disable interrupts like task_rq_lock,
1920 * you need to do so manually before calling.
1921 */
70b97a7f 1922static void double_rq_lock(struct rq *rq1, struct rq *rq2)
1da177e4
LT
1923 __acquires(rq1->lock)
1924 __acquires(rq2->lock)
1925{
1926 if (rq1 == rq2) {
1927 spin_lock(&rq1->lock);
1928 __acquire(rq2->lock); /* Fake it out ;) */
1929 } else {
c96d145e 1930 if (rq1 < rq2) {
1da177e4
LT
1931 spin_lock(&rq1->lock);
1932 spin_lock(&rq2->lock);
1933 } else {
1934 spin_lock(&rq2->lock);
1935 spin_lock(&rq1->lock);
1936 }
1937 }
1938}
1939
1940/*
1941 * double_rq_unlock - safely unlock two runqueues
1942 *
1943 * Note this does not restore interrupts like task_rq_unlock,
1944 * you need to do so manually after calling.
1945 */
70b97a7f 1946static void double_rq_unlock(struct rq *rq1, struct rq *rq2)
1da177e4
LT
1947 __releases(rq1->lock)
1948 __releases(rq2->lock)
1949{
1950 spin_unlock(&rq1->lock);
1951 if (rq1 != rq2)
1952 spin_unlock(&rq2->lock);
1953 else
1954 __release(rq2->lock);
1955}
1956
1957/*
1958 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
1959 */
70b97a7f 1960static void double_lock_balance(struct rq *this_rq, struct rq *busiest)
1da177e4
LT
1961 __releases(this_rq->lock)
1962 __acquires(busiest->lock)
1963 __acquires(this_rq->lock)
1964{
1965 if (unlikely(!spin_trylock(&busiest->lock))) {
c96d145e 1966 if (busiest < this_rq) {
1da177e4
LT
1967 spin_unlock(&this_rq->lock);
1968 spin_lock(&busiest->lock);
1969 spin_lock(&this_rq->lock);
1970 } else
1971 spin_lock(&busiest->lock);
1972 }
1973}
1974
1da177e4
LT
1975/*
1976 * If dest_cpu is allowed for this process, migrate the task to it.
1977 * This is accomplished by forcing the cpu_allowed mask to only
1978 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
1979 * the cpu_allowed mask is restored.
1980 */
36c8b586 1981static void sched_migrate_task(struct task_struct *p, int dest_cpu)
1da177e4 1982{
70b97a7f 1983 struct migration_req req;
1da177e4 1984 unsigned long flags;
70b97a7f 1985 struct rq *rq;
1da177e4
LT
1986
1987 rq = task_rq_lock(p, &flags);
1988 if (!cpu_isset(dest_cpu, p->cpus_allowed)
1989 || unlikely(cpu_is_offline(dest_cpu)))
1990 goto out;
1991
1992 /* force the process onto the specified CPU */
1993 if (migrate_task(p, dest_cpu, &req)) {
1994 /* Need to wait for migration thread (might exit: take ref). */
1995 struct task_struct *mt = rq->migration_thread;
36c8b586 1996
1da177e4
LT
1997 get_task_struct(mt);
1998 task_rq_unlock(rq, &flags);
1999 wake_up_process(mt);
2000 put_task_struct(mt);
2001 wait_for_completion(&req.done);
36c8b586 2002
1da177e4
LT
2003 return;
2004 }
2005out:
2006 task_rq_unlock(rq, &flags);
2007}
2008
2009/*
476d139c
NP
2010 * sched_exec - execve() is a valuable balancing opportunity, because at
2011 * this point the task has the smallest effective memory and cache footprint.
1da177e4
LT
2012 */
2013void sched_exec(void)
2014{
1da177e4 2015 int new_cpu, this_cpu = get_cpu();
476d139c 2016 new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC);
1da177e4 2017 put_cpu();
476d139c
NP
2018 if (new_cpu != this_cpu)
2019 sched_migrate_task(current, new_cpu);
1da177e4
LT
2020}
2021
2022/*
2023 * pull_task - move a task from a remote runqueue to the local runqueue.
2024 * Both runqueues must be locked.
2025 */
70b97a7f
IM
2026static void pull_task(struct rq *src_rq, struct prio_array *src_array,
2027 struct task_struct *p, struct rq *this_rq,
2028 struct prio_array *this_array, int this_cpu)
1da177e4
LT
2029{
2030 dequeue_task(p, src_array);
2dd73a4f 2031 dec_nr_running(p, src_rq);
1da177e4 2032 set_task_cpu(p, this_cpu);
2dd73a4f 2033 inc_nr_running(p, this_rq);
1da177e4
LT
2034 enqueue_task(p, this_array);
2035 p->timestamp = (p->timestamp - src_rq->timestamp_last_tick)
2036 + this_rq->timestamp_last_tick;
2037 /*
2038 * Note that idle threads have a prio of MAX_PRIO, for this test
2039 * to be always true for them.
2040 */
2041 if (TASK_PREEMPTS_CURR(p, this_rq))
2042 resched_task(this_rq->curr);
2043}
2044
2045/*
2046 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
2047 */
858119e1 2048static
70b97a7f 2049int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
95cdf3b7
IM
2050 struct sched_domain *sd, enum idle_type idle,
2051 int *all_pinned)
1da177e4
LT
2052{
2053 /*
2054 * We do not migrate tasks that are:
2055 * 1) running (obviously), or
2056 * 2) cannot be migrated to this CPU due to cpus_allowed, or
2057 * 3) are cache-hot on their current CPU.
2058 */
1da177e4
LT
2059 if (!cpu_isset(this_cpu, p->cpus_allowed))
2060 return 0;
81026794
NP
2061 *all_pinned = 0;
2062
2063 if (task_running(rq, p))
2064 return 0;
1da177e4
LT
2065
2066 /*
2067 * Aggressive migration if:
cafb20c1 2068 * 1) task is cache cold, or
1da177e4
LT
2069 * 2) too many balance attempts have failed.
2070 */
2071
cafb20c1 2072 if (sd->nr_balance_failed > sd->cache_nice_tries)
1da177e4
LT
2073 return 1;
2074
2075 if (task_hot(p, rq->timestamp_last_tick, sd))
81026794 2076 return 0;
1da177e4
LT
2077 return 1;
2078}
2079
615052dc 2080#define rq_best_prio(rq) min((rq)->curr->prio, (rq)->best_expired_prio)
48f24c4d 2081
1da177e4 2082/*
2dd73a4f
PW
2083 * move_tasks tries to move up to max_nr_move tasks and max_load_move weighted
2084 * load from busiest to this_rq, as part of a balancing operation within
2085 * "domain". Returns the number of tasks moved.
1da177e4
LT
2086 *
2087 * Called with both runqueues locked.
2088 */
70b97a7f 2089static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest,
2dd73a4f
PW
2090 unsigned long max_nr_move, unsigned long max_load_move,
2091 struct sched_domain *sd, enum idle_type idle,
2092 int *all_pinned)
1da177e4 2093{
48f24c4d
IM
2094 int idx, pulled = 0, pinned = 0, this_best_prio, best_prio,
2095 best_prio_seen, skip_for_load;
70b97a7f 2096 struct prio_array *array, *dst_array;
1da177e4 2097 struct list_head *head, *curr;
36c8b586 2098 struct task_struct *tmp;
2dd73a4f 2099 long rem_load_move;
1da177e4 2100
2dd73a4f 2101 if (max_nr_move == 0 || max_load_move == 0)
1da177e4
LT
2102 goto out;
2103
2dd73a4f 2104 rem_load_move = max_load_move;
81026794 2105 pinned = 1;
615052dc 2106 this_best_prio = rq_best_prio(this_rq);
48f24c4d 2107 best_prio = rq_best_prio(busiest);
615052dc
PW
2108 /*
2109 * Enable handling of the case where there is more than one task
2110 * with the best priority. If the current running task is one
48f24c4d 2111 * of those with prio==best_prio we know it won't be moved
615052dc
PW
2112 * and therefore it's safe to override the skip (based on load) of
2113 * any task we find with that prio.
2114 */
48f24c4d 2115 best_prio_seen = best_prio == busiest->curr->prio;
81026794 2116
1da177e4
LT
2117 /*
2118 * We first consider expired tasks. Those will likely not be
2119 * executed in the near future, and they are most likely to
2120 * be cache-cold, thus switching CPUs has the least effect
2121 * on them.
2122 */
2123 if (busiest->expired->nr_active) {
2124 array = busiest->expired;
2125 dst_array = this_rq->expired;
2126 } else {
2127 array = busiest->active;
2128 dst_array = this_rq->active;
2129 }
2130
2131new_array:
2132 /* Start searching at priority 0: */
2133 idx = 0;
2134skip_bitmap:
2135 if (!idx)
2136 idx = sched_find_first_bit(array->bitmap);
2137 else
2138 idx = find_next_bit(array->bitmap, MAX_PRIO, idx);
2139 if (idx >= MAX_PRIO) {
2140 if (array == busiest->expired && busiest->active->nr_active) {
2141 array = busiest->active;
2142 dst_array = this_rq->active;
2143 goto new_array;
2144 }
2145 goto out;
2146 }
2147
2148 head = array->queue + idx;
2149 curr = head->prev;
2150skip_queue:
36c8b586 2151 tmp = list_entry(curr, struct task_struct, run_list);
1da177e4
LT
2152
2153 curr = curr->prev;
2154
50ddd969
PW
2155 /*
2156 * To help distribute high priority tasks accross CPUs we don't
2157 * skip a task if it will be the highest priority task (i.e. smallest
2158 * prio value) on its new queue regardless of its load weight
2159 */
615052dc
PW
2160 skip_for_load = tmp->load_weight > rem_load_move;
2161 if (skip_for_load && idx < this_best_prio)
48f24c4d 2162 skip_for_load = !best_prio_seen && idx == best_prio;
615052dc 2163 if (skip_for_load ||
2dd73a4f 2164 !can_migrate_task(tmp, busiest, this_cpu, sd, idle, &pinned)) {
48f24c4d
IM
2165
2166 best_prio_seen |= idx == best_prio;
1da177e4
LT
2167 if (curr != head)
2168 goto skip_queue;
2169 idx++;
2170 goto skip_bitmap;
2171 }
2172
2173#ifdef CONFIG_SCHEDSTATS
2174 if (task_hot(tmp, busiest->timestamp_last_tick, sd))
2175 schedstat_inc(sd, lb_hot_gained[idle]);
2176#endif
2177
2178 pull_task(busiest, array, tmp, this_rq, dst_array, this_cpu);
2179 pulled++;
2dd73a4f 2180 rem_load_move -= tmp->load_weight;
1da177e4 2181
2dd73a4f
PW
2182 /*
2183 * We only want to steal up to the prescribed number of tasks
2184 * and the prescribed amount of weighted load.
2185 */
2186 if (pulled < max_nr_move && rem_load_move > 0) {
615052dc
PW
2187 if (idx < this_best_prio)
2188 this_best_prio = idx;
1da177e4
LT
2189 if (curr != head)
2190 goto skip_queue;
2191 idx++;
2192 goto skip_bitmap;
2193 }
2194out:
2195 /*
2196 * Right now, this is the only place pull_task() is called,
2197 * so we can safely collect pull_task() stats here rather than
2198 * inside pull_task().
2199 */
2200 schedstat_add(sd, lb_gained[idle], pulled);
81026794
NP
2201
2202 if (all_pinned)
2203 *all_pinned = pinned;
1da177e4
LT
2204 return pulled;
2205}
2206
2207/*
2208 * find_busiest_group finds and returns the busiest CPU group within the
48f24c4d
IM
2209 * domain. It calculates and returns the amount of weighted load which
2210 * should be moved to restore balance via the imbalance parameter.
1da177e4
LT
2211 */
2212static struct sched_group *
2213find_busiest_group(struct sched_domain *sd, int this_cpu,
5969fe06 2214 unsigned long *imbalance, enum idle_type idle, int *sd_idle)
1da177e4
LT
2215{
2216 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
2217 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
0c117f1b 2218 unsigned long max_pull;
2dd73a4f
PW
2219 unsigned long busiest_load_per_task, busiest_nr_running;
2220 unsigned long this_load_per_task, this_nr_running;
7897986b 2221 int load_idx;
5c45bf27
SS
2222#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2223 int power_savings_balance = 1;
2224 unsigned long leader_nr_running = 0, min_load_per_task = 0;
2225 unsigned long min_nr_running = ULONG_MAX;
2226 struct sched_group *group_min = NULL, *group_leader = NULL;
2227#endif
1da177e4
LT
2228
2229 max_load = this_load = total_load = total_pwr = 0;
2dd73a4f
PW
2230 busiest_load_per_task = busiest_nr_running = 0;
2231 this_load_per_task = this_nr_running = 0;
7897986b
NP
2232 if (idle == NOT_IDLE)
2233 load_idx = sd->busy_idx;
2234 else if (idle == NEWLY_IDLE)
2235 load_idx = sd->newidle_idx;
2236 else
2237 load_idx = sd->idle_idx;
1da177e4
LT
2238
2239 do {
5c45bf27 2240 unsigned long load, group_capacity;
1da177e4
LT
2241 int local_group;
2242 int i;
2dd73a4f 2243 unsigned long sum_nr_running, sum_weighted_load;
1da177e4
LT
2244
2245 local_group = cpu_isset(this_cpu, group->cpumask);
2246
2247 /* Tally up the load of all CPUs in the group */
2dd73a4f 2248 sum_weighted_load = sum_nr_running = avg_load = 0;
1da177e4
LT
2249
2250 for_each_cpu_mask(i, group->cpumask) {
70b97a7f 2251 struct rq *rq = cpu_rq(i);
2dd73a4f 2252
5969fe06
NP
2253 if (*sd_idle && !idle_cpu(i))
2254 *sd_idle = 0;
2255
1da177e4
LT
2256 /* Bias balancing toward cpus of our domain */
2257 if (local_group)
a2000572 2258 load = target_load(i, load_idx);
1da177e4 2259 else
a2000572 2260 load = source_load(i, load_idx);
1da177e4
LT
2261
2262 avg_load += load;
2dd73a4f
PW
2263 sum_nr_running += rq->nr_running;
2264 sum_weighted_load += rq->raw_weighted_load;
1da177e4
LT
2265 }
2266
2267 total_load += avg_load;
2268 total_pwr += group->cpu_power;
2269
2270 /* Adjust by relative CPU power of the group */
2271 avg_load = (avg_load * SCHED_LOAD_SCALE) / group->cpu_power;
2272
5c45bf27
SS
2273 group_capacity = group->cpu_power / SCHED_LOAD_SCALE;
2274
1da177e4
LT
2275 if (local_group) {
2276 this_load = avg_load;
2277 this = group;
2dd73a4f
PW
2278 this_nr_running = sum_nr_running;
2279 this_load_per_task = sum_weighted_load;
2280 } else if (avg_load > max_load &&
5c45bf27 2281 sum_nr_running > group_capacity) {
1da177e4
LT
2282 max_load = avg_load;
2283 busiest = group;
2dd73a4f
PW
2284 busiest_nr_running = sum_nr_running;
2285 busiest_load_per_task = sum_weighted_load;
1da177e4 2286 }
5c45bf27
SS
2287
2288#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2289 /*
2290 * Busy processors will not participate in power savings
2291 * balance.
2292 */
2293 if (idle == NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
2294 goto group_next;
2295
2296 /*
2297 * If the local group is idle or completely loaded
2298 * no need to do power savings balance at this domain
2299 */
2300 if (local_group && (this_nr_running >= group_capacity ||
2301 !this_nr_running))
2302 power_savings_balance = 0;
2303
2304 /*
2305 * If a group is already running at full capacity or idle,
2306 * don't include that group in power savings calculations
2307 */
2308 if (!power_savings_balance || sum_nr_running >= group_capacity
2309 || !sum_nr_running)
2310 goto group_next;
2311
2312 /*
2313 * Calculate the group which has the least non-idle load.
2314 * This is the group from where we need to pick up the load
2315 * for saving power
2316 */
2317 if ((sum_nr_running < min_nr_running) ||
2318 (sum_nr_running == min_nr_running &&
2319 first_cpu(group->cpumask) <
2320 first_cpu(group_min->cpumask))) {
2321 group_min = group;
2322 min_nr_running = sum_nr_running;
2323 min_load_per_task = sum_weighted_load /
2324 sum_nr_running;
2325 }
2326
2327 /*
2328 * Calculate the group which is almost near its
2329 * capacity but still has some space to pick up some load
2330 * from other group and save more power
2331 */
48f24c4d 2332 if (sum_nr_running <= group_capacity - 1) {
5c45bf27
SS
2333 if (sum_nr_running > leader_nr_running ||
2334 (sum_nr_running == leader_nr_running &&
2335 first_cpu(group->cpumask) >
2336 first_cpu(group_leader->cpumask))) {
2337 group_leader = group;
2338 leader_nr_running = sum_nr_running;
2339 }
48f24c4d 2340 }
5c45bf27
SS
2341group_next:
2342#endif
1da177e4
LT
2343 group = group->next;
2344 } while (group != sd->groups);
2345
2dd73a4f 2346 if (!busiest || this_load >= max_load || busiest_nr_running == 0)
1da177e4
LT
2347 goto out_balanced;
2348
2349 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
2350
2351 if (this_load >= avg_load ||
2352 100*max_load <= sd->imbalance_pct*this_load)
2353 goto out_balanced;
2354
2dd73a4f 2355 busiest_load_per_task /= busiest_nr_running;
1da177e4
LT
2356 /*
2357 * We're trying to get all the cpus to the average_load, so we don't
2358 * want to push ourselves above the average load, nor do we wish to
2359 * reduce the max loaded cpu below the average load, as either of these
2360 * actions would just result in more rebalancing later, and ping-pong
2361 * tasks around. Thus we look for the minimum possible imbalance.
2362 * Negative imbalances (*we* are more loaded than anyone else) will
2363 * be counted as no imbalance for these purposes -- we can't fix that
2364 * by pulling tasks to us. Be careful of negative numbers as they'll
2365 * appear as very large values with unsigned longs.
2366 */
2dd73a4f
PW
2367 if (max_load <= busiest_load_per_task)
2368 goto out_balanced;
2369
2370 /*
2371 * In the presence of smp nice balancing, certain scenarios can have
2372 * max load less than avg load(as we skip the groups at or below
2373 * its cpu_power, while calculating max_load..)
2374 */
2375 if (max_load < avg_load) {
2376 *imbalance = 0;
2377 goto small_imbalance;
2378 }
0c117f1b
SS
2379
2380 /* Don't want to pull so many tasks that a group would go idle */
2dd73a4f 2381 max_pull = min(max_load - avg_load, max_load - busiest_load_per_task);
0c117f1b 2382
1da177e4 2383 /* How much load to actually move to equalise the imbalance */
0c117f1b 2384 *imbalance = min(max_pull * busiest->cpu_power,
1da177e4
LT
2385 (avg_load - this_load) * this->cpu_power)
2386 / SCHED_LOAD_SCALE;
2387
2dd73a4f
PW
2388 /*
2389 * if *imbalance is less than the average load per runnable task
2390 * there is no gaurantee that any tasks will be moved so we'll have
2391 * a think about bumping its value to force at least one task to be
2392 * moved
2393 */
2394 if (*imbalance < busiest_load_per_task) {
48f24c4d 2395 unsigned long tmp, pwr_now, pwr_move;
2dd73a4f
PW
2396 unsigned int imbn;
2397
2398small_imbalance:
2399 pwr_move = pwr_now = 0;
2400 imbn = 2;
2401 if (this_nr_running) {
2402 this_load_per_task /= this_nr_running;
2403 if (busiest_load_per_task > this_load_per_task)
2404 imbn = 1;
2405 } else
2406 this_load_per_task = SCHED_LOAD_SCALE;
1da177e4 2407
2dd73a4f
PW
2408 if (max_load - this_load >= busiest_load_per_task * imbn) {
2409 *imbalance = busiest_load_per_task;
1da177e4
LT
2410 return busiest;
2411 }
2412
2413 /*
2414 * OK, we don't have enough imbalance to justify moving tasks,
2415 * however we may be able to increase total CPU power used by
2416 * moving them.
2417 */
2418
2dd73a4f
PW
2419 pwr_now += busiest->cpu_power *
2420 min(busiest_load_per_task, max_load);
2421 pwr_now += this->cpu_power *
2422 min(this_load_per_task, this_load);
1da177e4
LT
2423 pwr_now /= SCHED_LOAD_SCALE;
2424
2425 /* Amount of load we'd subtract */
2dd73a4f 2426 tmp = busiest_load_per_task*SCHED_LOAD_SCALE/busiest->cpu_power;
1da177e4 2427 if (max_load > tmp)
2dd73a4f
PW
2428 pwr_move += busiest->cpu_power *
2429 min(busiest_load_per_task, max_load - tmp);
1da177e4
LT
2430
2431 /* Amount of load we'd add */
2432 if (max_load*busiest->cpu_power <
2dd73a4f 2433 busiest_load_per_task*SCHED_LOAD_SCALE)
1da177e4
LT
2434 tmp = max_load*busiest->cpu_power/this->cpu_power;
2435 else
2dd73a4f
PW
2436 tmp = busiest_load_per_task*SCHED_LOAD_SCALE/this->cpu_power;
2437 pwr_move += this->cpu_power*min(this_load_per_task, this_load + tmp);
1da177e4
LT
2438 pwr_move /= SCHED_LOAD_SCALE;
2439
2440 /* Move if we gain throughput */
2441 if (pwr_move <= pwr_now)
2442 goto out_balanced;
2443
2dd73a4f 2444 *imbalance = busiest_load_per_task;
1da177e4
LT
2445 }
2446
1da177e4
LT
2447 return busiest;
2448
2449out_balanced:
5c45bf27
SS
2450#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
2451 if (idle == NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE))
2452 goto ret;
1da177e4 2453
5c45bf27
SS
2454 if (this == group_leader && group_leader != group_min) {
2455 *imbalance = min_load_per_task;
2456 return group_min;
2457 }
2458ret:
2459#endif
1da177e4
LT
2460 *imbalance = 0;
2461 return NULL;
2462}
2463
2464/*
2465 * find_busiest_queue - find the busiest runqueue among the cpus in group.
2466 */
70b97a7f 2467static struct rq *
48f24c4d
IM
2468find_busiest_queue(struct sched_group *group, enum idle_type idle,
2469 unsigned long imbalance)
1da177e4 2470{
70b97a7f 2471 struct rq *busiest = NULL, *rq;
2dd73a4f 2472 unsigned long max_load = 0;
1da177e4
LT
2473 int i;
2474
2475 for_each_cpu_mask(i, group->cpumask) {
48f24c4d 2476 rq = cpu_rq(i);
2dd73a4f 2477
48f24c4d 2478 if (rq->nr_running == 1 && rq->raw_weighted_load > imbalance)
2dd73a4f 2479 continue;
1da177e4 2480
48f24c4d
IM
2481 if (rq->raw_weighted_load > max_load) {
2482 max_load = rq->raw_weighted_load;
2483 busiest = rq;
1da177e4
LT
2484 }
2485 }
2486
2487 return busiest;
2488}
2489
77391d71
NP
2490/*
2491 * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but
2492 * so long as it is large enough.
2493 */
2494#define MAX_PINNED_INTERVAL 512
2495
48f24c4d
IM
2496static inline unsigned long minus_1_or_zero(unsigned long n)
2497{
2498 return n > 0 ? n - 1 : 0;
2499}
2500
1da177e4
LT
2501/*
2502 * Check this_cpu to ensure it is balanced within domain. Attempt to move
2503 * tasks if there is an imbalance.
2504 *
2505 * Called with this_rq unlocked.
2506 */
70b97a7f 2507static int load_balance(int this_cpu, struct rq *this_rq,
1da177e4
LT
2508 struct sched_domain *sd, enum idle_type idle)
2509{
48f24c4d 2510 int nr_moved, all_pinned = 0, active_balance = 0, sd_idle = 0;
1da177e4 2511 struct sched_group *group;
1da177e4 2512 unsigned long imbalance;
70b97a7f 2513 struct rq *busiest;
5969fe06 2514
5c45bf27
SS
2515 if (idle != NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER &&
2516 !sched_smt_power_savings)
5969fe06 2517 sd_idle = 1;
1da177e4 2518
1da177e4
LT
2519 schedstat_inc(sd, lb_cnt[idle]);
2520
5969fe06 2521 group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle);
1da177e4
LT
2522 if (!group) {
2523 schedstat_inc(sd, lb_nobusyg[idle]);
2524 goto out_balanced;
2525 }
2526
2dd73a4f 2527 busiest = find_busiest_queue(group, idle, imbalance);
1da177e4
LT
2528 if (!busiest) {
2529 schedstat_inc(sd, lb_nobusyq[idle]);
2530 goto out_balanced;
2531 }
2532
db935dbd 2533 BUG_ON(busiest == this_rq);
1da177e4
LT
2534
2535 schedstat_add(sd, lb_imbalance[idle], imbalance);
2536
2537 nr_moved = 0;
2538 if (busiest->nr_running > 1) {
2539 /*
2540 * Attempt to move tasks. If find_busiest_group has found
2541 * an imbalance but busiest->nr_running <= 1, the group is
2542 * still unbalanced. nr_moved simply stays zero, so it is
2543 * correctly treated as an imbalance.
2544 */
e17224bf 2545 double_rq_lock(this_rq, busiest);
1da177e4 2546 nr_moved = move_tasks(this_rq, this_cpu, busiest,
48f24c4d
IM
2547 minus_1_or_zero(busiest->nr_running),
2548 imbalance, sd, idle, &all_pinned);
e17224bf 2549 double_rq_unlock(this_rq, busiest);
81026794
NP
2550
2551 /* All tasks on this runqueue were pinned by CPU affinity */
2552 if (unlikely(all_pinned))
2553 goto out_balanced;
1da177e4 2554 }
81026794 2555
1da177e4
LT
2556 if (!nr_moved) {
2557 schedstat_inc(sd, lb_failed[idle]);
2558 sd->nr_balance_failed++;
2559
2560 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
1da177e4
LT
2561
2562 spin_lock(&busiest->lock);
fa3b6ddc
SS
2563
2564 /* don't kick the migration_thread, if the curr
2565 * task on busiest cpu can't be moved to this_cpu
2566 */
2567 if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) {
2568 spin_unlock(&busiest->lock);
2569 all_pinned = 1;
2570 goto out_one_pinned;
2571 }
2572
1da177e4
LT
2573 if (!busiest->active_balance) {
2574 busiest->active_balance = 1;
2575 busiest->push_cpu = this_cpu;
81026794 2576 active_balance = 1;
1da177e4
LT
2577 }
2578 spin_unlock(&busiest->lock);
81026794 2579 if (active_balance)
1da177e4
LT
2580 wake_up_process(busiest->migration_thread);
2581
2582 /*
2583 * We've kicked active balancing, reset the failure
2584 * counter.
2585 */
39507451 2586 sd->nr_balance_failed = sd->cache_nice_tries+1;
1da177e4 2587 }
81026794 2588 } else
1da177e4
LT
2589 sd->nr_balance_failed = 0;
2590
81026794 2591 if (likely(!active_balance)) {
1da177e4
LT
2592 /* We were unbalanced, so reset the balancing interval */
2593 sd->balance_interval = sd->min_interval;
81026794
NP
2594 } else {
2595 /*
2596 * If we've begun active balancing, start to back off. This
2597 * case may not be covered by the all_pinned logic if there
2598 * is only 1 task on the busy runqueue (because we don't call
2599 * move_tasks).
2600 */
2601 if (sd->balance_interval < sd->max_interval)
2602 sd->balance_interval *= 2;
1da177e4
LT
2603 }
2604
5c45bf27
SS
2605 if (!nr_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
2606 !sched_smt_power_savings)
5969fe06 2607 return -1;
1da177e4
LT
2608 return nr_moved;
2609
2610out_balanced:
1da177e4
LT
2611 schedstat_inc(sd, lb_balanced[idle]);
2612
16cfb1c0 2613 sd->nr_balance_failed = 0;
fa3b6ddc
SS
2614
2615out_one_pinned:
1da177e4 2616 /* tune up the balancing interval */
77391d71
NP
2617 if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) ||
2618 (sd->balance_interval < sd->max_interval))
1da177e4
LT
2619 sd->balance_interval *= 2;
2620
48f24c4d
IM
2621 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
2622 !sched_smt_power_savings)
5969fe06 2623 return -1;
1da177e4
LT
2624 return 0;
2625}
2626
2627/*
2628 * Check this_cpu to ensure it is balanced within domain. Attempt to move
2629 * tasks if there is an imbalance.
2630 *
2631 * Called from schedule when this_rq is about to become idle (NEWLY_IDLE).
2632 * this_rq is locked.
2633 */
48f24c4d 2634static int
70b97a7f 2635load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd)
1da177e4
LT
2636{
2637 struct sched_group *group;
70b97a7f 2638 struct rq *busiest = NULL;
1da177e4
LT
2639 unsigned long imbalance;
2640 int nr_moved = 0;
5969fe06
NP
2641 int sd_idle = 0;
2642
5c45bf27 2643 if (sd->flags & SD_SHARE_CPUPOWER && !sched_smt_power_savings)
5969fe06 2644 sd_idle = 1;
1da177e4
LT
2645
2646 schedstat_inc(sd, lb_cnt[NEWLY_IDLE]);
5969fe06 2647 group = find_busiest_group(sd, this_cpu, &imbalance, NEWLY_IDLE, &sd_idle);
1da177e4 2648 if (!group) {
1da177e4 2649 schedstat_inc(sd, lb_nobusyg[NEWLY_IDLE]);
16cfb1c0 2650 goto out_balanced;
1da177e4
LT
2651 }
2652
2dd73a4f 2653 busiest = find_busiest_queue(group, NEWLY_IDLE, imbalance);
db935dbd 2654 if (!busiest) {
1da177e4 2655 schedstat_inc(sd, lb_nobusyq[NEWLY_IDLE]);
16cfb1c0 2656 goto out_balanced;
1da177e4
LT
2657 }
2658
db935dbd
NP
2659 BUG_ON(busiest == this_rq);
2660
1da177e4 2661 schedstat_add(sd, lb_imbalance[NEWLY_IDLE], imbalance);
d6d5cfaf
NP
2662
2663 nr_moved = 0;
2664 if (busiest->nr_running > 1) {
2665 /* Attempt to move tasks */
2666 double_lock_balance(this_rq, busiest);
2667 nr_moved = move_tasks(this_rq, this_cpu, busiest,
2dd73a4f 2668 minus_1_or_zero(busiest->nr_running),
81026794 2669 imbalance, sd, NEWLY_IDLE, NULL);
d6d5cfaf
NP
2670 spin_unlock(&busiest->lock);
2671 }
2672
5969fe06 2673 if (!nr_moved) {
1da177e4 2674 schedstat_inc(sd, lb_failed[NEWLY_IDLE]);
5969fe06
NP
2675 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER)
2676 return -1;
2677 } else
16cfb1c0 2678 sd->nr_balance_failed = 0;
1da177e4 2679
1da177e4 2680 return nr_moved;
16cfb1c0
NP
2681
2682out_balanced:
2683 schedstat_inc(sd, lb_balanced[NEWLY_IDLE]);
48f24c4d
IM
2684 if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER &&
2685 !sched_smt_power_savings)
5969fe06 2686 return -1;
16cfb1c0 2687 sd->nr_balance_failed = 0;
48f24c4d 2688
16cfb1c0 2689 return 0;
1da177e4
LT
2690}
2691
2692/*
2693 * idle_balance is called by schedule() if this_cpu is about to become
2694 * idle. Attempts to pull tasks from other CPUs.
2695 */
70b97a7f 2696static void idle_balance(int this_cpu, struct rq *this_rq)
1da177e4
LT
2697{
2698 struct sched_domain *sd;
2699
2700 for_each_domain(this_cpu, sd) {
2701 if (sd->flags & SD_BALANCE_NEWIDLE) {
48f24c4d
IM
2702 /* If we've pulled tasks over stop searching: */
2703 if (load_balance_newidle(this_cpu, this_rq, sd))
1da177e4 2704 break;
1da177e4
LT
2705 }
2706 }
2707}
2708
2709/*
2710 * active_load_balance is run by migration threads. It pushes running tasks
2711 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
2712 * running on each physical CPU where possible, and avoids physical /
2713 * logical imbalances.
2714 *
2715 * Called with busiest_rq locked.
2716 */
70b97a7f 2717static void active_load_balance(struct rq *busiest_rq, int busiest_cpu)
1da177e4 2718{
39507451 2719 int target_cpu = busiest_rq->push_cpu;
70b97a7f
IM
2720 struct sched_domain *sd;
2721 struct rq *target_rq;
39507451 2722
48f24c4d 2723 /* Is there any task to move? */
39507451 2724 if (busiest_rq->nr_running <= 1)
39507451
NP
2725 return;
2726
2727 target_rq = cpu_rq(target_cpu);
1da177e4
LT
2728
2729 /*
39507451
NP
2730 * This condition is "impossible", if it occurs
2731 * we need to fix it. Originally reported by
2732 * Bjorn Helgaas on a 128-cpu setup.
1da177e4 2733 */
39507451 2734 BUG_ON(busiest_rq == target_rq);
1da177e4 2735
39507451
NP
2736 /* move a task from busiest_rq to target_rq */
2737 double_lock_balance(busiest_rq, target_rq);
2738
2739 /* Search for an sd spanning us and the target CPU. */
c96d145e 2740 for_each_domain(target_cpu, sd) {
39507451 2741 if ((sd->flags & SD_LOAD_BALANCE) &&
48f24c4d 2742 cpu_isset(busiest_cpu, sd->span))
39507451 2743 break;
c96d145e 2744 }
39507451 2745
48f24c4d
IM
2746 if (likely(sd)) {
2747 schedstat_inc(sd, alb_cnt);
39507451 2748
48f24c4d
IM
2749 if (move_tasks(target_rq, target_cpu, busiest_rq, 1,
2750 RTPRIO_TO_LOAD_WEIGHT(100), sd, SCHED_IDLE,
2751 NULL))
2752 schedstat_inc(sd, alb_pushed);
2753 else
2754 schedstat_inc(sd, alb_failed);
2755 }
39507451 2756 spin_unlock(&target_rq->lock);
1da177e4
LT
2757}
2758
2759/*
2760 * rebalance_tick will get called every timer tick, on every CPU.
2761 *
2762 * It checks each scheduling domain to see if it is due to be balanced,
2763 * and initiates a balancing operation if so.
2764 *
2765 * Balancing parameters are set up in arch_init_sched_domains.
2766 */
2767
48f24c4d
IM
2768/* Don't have all balancing operations going off at once: */
2769static inline unsigned long cpu_offset(int cpu)
2770{
2771 return jiffies + cpu * HZ / NR_CPUS;
2772}
1da177e4 2773
48f24c4d 2774static void
70b97a7f 2775rebalance_tick(int this_cpu, struct rq *this_rq, enum idle_type idle)
1da177e4 2776{
48f24c4d 2777 unsigned long this_load, interval, j = cpu_offset(this_cpu);
1da177e4 2778 struct sched_domain *sd;
48f24c4d 2779 int i, scale;
1da177e4 2780
2dd73a4f 2781 this_load = this_rq->raw_weighted_load;
48f24c4d
IM
2782
2783 /* Update our load: */
2784 for (i = 0, scale = 1; i < 3; i++, scale <<= 1) {
2785 unsigned long old_load, new_load;
2786
7897986b 2787 old_load = this_rq->cpu_load[i];
48f24c4d 2788 new_load = this_load;
7897986b
NP
2789 /*
2790 * Round up the averaging division if load is increasing. This
2791 * prevents us from getting stuck on 9 if the load is 10, for
2792 * example.
2793 */
2794 if (new_load > old_load)
2795 new_load += scale-1;
2796 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) / scale;
2797 }
1da177e4
LT
2798
2799 for_each_domain(this_cpu, sd) {
1da177e4
LT
2800 if (!(sd->flags & SD_LOAD_BALANCE))
2801 continue;
2802
2803 interval = sd->balance_interval;
2804 if (idle != SCHED_IDLE)
2805 interval *= sd->busy_factor;
2806
2807 /* scale ms to jiffies */
2808 interval = msecs_to_jiffies(interval);
2809 if (unlikely(!interval))
2810 interval = 1;
2811
2812 if (j - sd->last_balance >= interval) {
2813 if (load_balance(this_cpu, this_rq, sd, idle)) {
fa3b6ddc
SS
2814 /*
2815 * We've pulled tasks over so either we're no
5969fe06
NP
2816 * longer idle, or one of our SMT siblings is
2817 * not idle.
2818 */
1da177e4
LT
2819 idle = NOT_IDLE;
2820 }
2821 sd->last_balance += interval;
2822 }
2823 }
2824}
2825#else
2826/*
2827 * on UP we do not need to balance between CPUs:
2828 */
70b97a7f 2829static inline void rebalance_tick(int cpu, struct rq *rq, enum idle_type idle)
1da177e4
LT
2830{
2831}
70b97a7f 2832static inline void idle_balance(int cpu, struct rq *rq)
1da177e4
LT
2833{
2834}
2835#endif
2836
70b97a7f 2837static inline int wake_priority_sleeper(struct rq *rq)
1da177e4
LT
2838{
2839 int ret = 0;
48f24c4d 2840
1da177e4
LT
2841#ifdef CONFIG_SCHED_SMT
2842 spin_lock(&rq->lock);
2843 /*
2844 * If an SMT sibling task has been put to sleep for priority
2845 * reasons reschedule the idle task to see if it can now run.
2846 */
2847 if (rq->nr_running) {
2848 resched_task(rq->idle);
2849 ret = 1;
2850 }
2851 spin_unlock(&rq->lock);
2852#endif
2853 return ret;
2854}
2855
2856DEFINE_PER_CPU(struct kernel_stat, kstat);
2857
2858EXPORT_PER_CPU_SYMBOL(kstat);
2859
2860/*
2861 * This is called on clock ticks and on context switches.
2862 * Bank in p->sched_time the ns elapsed since the last tick or switch.
2863 */
48f24c4d 2864static inline void
70b97a7f 2865update_cpu_clock(struct task_struct *p, struct rq *rq, unsigned long long now)
1da177e4 2866{
48f24c4d 2867 p->sched_time += now - max(p->timestamp, rq->timestamp_last_tick);
1da177e4
LT
2868}
2869
2870/*
2871 * Return current->sched_time plus any more ns on the sched_clock
2872 * that have not yet been banked.
2873 */
36c8b586 2874unsigned long long current_sched_time(const struct task_struct *p)
1da177e4
LT
2875{
2876 unsigned long long ns;
2877 unsigned long flags;
48f24c4d 2878
1da177e4 2879 local_irq_save(flags);
48f24c4d
IM
2880 ns = max(p->timestamp, task_rq(p)->timestamp_last_tick);
2881 ns = p->sched_time + sched_clock() - ns;
1da177e4 2882 local_irq_restore(flags);
48f24c4d 2883
1da177e4
LT
2884 return ns;
2885}
2886
f1adad78
LT
2887/*
2888 * We place interactive tasks back into the active array, if possible.
2889 *
2890 * To guarantee that this does not starve expired tasks we ignore the
2891 * interactivity of a task if the first expired task had to wait more
2892 * than a 'reasonable' amount of time. This deadline timeout is
2893 * load-dependent, as the frequency of array switched decreases with
2894 * increasing number of running tasks. We also ignore the interactivity
2895 * if a better static_prio task has expired:
2896 */
70b97a7f 2897static inline int expired_starving(struct rq *rq)
48f24c4d
IM
2898{
2899 if (rq->curr->static_prio > rq->best_expired_prio)
2900 return 1;
2901 if (!STARVATION_LIMIT || !rq->expired_timestamp)
2902 return 0;
2903 if (jiffies - rq->expired_timestamp > STARVATION_LIMIT * rq->nr_running)
2904 return 1;
2905 return 0;
2906}
f1adad78 2907
1da177e4
LT
2908/*
2909 * Account user cpu time to a process.
2910 * @p: the process that the cpu time gets accounted to
2911 * @hardirq_offset: the offset to subtract from hardirq_count()
2912 * @cputime: the cpu time spent in user space since the last update
2913 */
2914void account_user_time(struct task_struct *p, cputime_t cputime)
2915{
2916 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
2917 cputime64_t tmp;
2918
2919 p->utime = cputime_add(p->utime, cputime);
2920
2921 /* Add user time to cpustat. */
2922 tmp = cputime_to_cputime64(cputime);
2923 if (TASK_NICE(p) > 0)
2924 cpustat->nice = cputime64_add(cpustat->nice, tmp);
2925 else
2926 cpustat->user = cputime64_add(cpustat->user, tmp);
2927}
2928
2929/*
2930 * Account system cpu time to a process.
2931 * @p: the process that the cpu time gets accounted to
2932 * @hardirq_offset: the offset to subtract from hardirq_count()
2933 * @cputime: the cpu time spent in kernel space since the last update
2934 */
2935void account_system_time(struct task_struct *p, int hardirq_offset,
2936 cputime_t cputime)
2937{
2938 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
70b97a7f 2939 struct rq *rq = this_rq();
1da177e4
LT
2940 cputime64_t tmp;
2941
2942 p->stime = cputime_add(p->stime, cputime);
2943
2944 /* Add system time to cpustat. */
2945 tmp = cputime_to_cputime64(cputime);
2946 if (hardirq_count() - hardirq_offset)
2947 cpustat->irq = cputime64_add(cpustat->irq, tmp);
2948 else if (softirq_count())
2949 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
2950 else if (p != rq->idle)
2951 cpustat->system = cputime64_add(cpustat->system, tmp);
2952 else if (atomic_read(&rq->nr_iowait) > 0)
2953 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
2954 else
2955 cpustat->idle = cputime64_add(cpustat->idle, tmp);
2956 /* Account for system time used */
2957 acct_update_integrals(p);
1da177e4
LT
2958}
2959
2960/*
2961 * Account for involuntary wait time.
2962 * @p: the process from which the cpu time has been stolen
2963 * @steal: the cpu time spent in involuntary wait
2964 */
2965void account_steal_time(struct task_struct *p, cputime_t steal)
2966{
2967 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
2968 cputime64_t tmp = cputime_to_cputime64(steal);
70b97a7f 2969 struct rq *rq = this_rq();
1da177e4
LT
2970
2971 if (p == rq->idle) {
2972 p->stime = cputime_add(p->stime, steal);
2973 if (atomic_read(&rq->nr_iowait) > 0)
2974 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
2975 else
2976 cpustat->idle = cputime64_add(cpustat->idle, tmp);
2977 } else
2978 cpustat->steal = cputime64_add(cpustat->steal, tmp);
2979}
2980
2981/*
2982 * This function gets called by the timer code, with HZ frequency.
2983 * We call it with interrupts disabled.
2984 *
2985 * It also gets called by the fork code, when changing the parent's
2986 * timeslices.
2987 */
2988void scheduler_tick(void)
2989{
48f24c4d 2990 unsigned long long now = sched_clock();
36c8b586 2991 struct task_struct *p = current;
1da177e4 2992 int cpu = smp_processor_id();
70b97a7f 2993 struct rq *rq = cpu_rq(cpu);
1da177e4
LT
2994
2995 update_cpu_clock(p, rq, now);
2996
2997 rq->timestamp_last_tick = now;
2998
2999 if (p == rq->idle) {
3000 if (wake_priority_sleeper(rq))
3001 goto out;
3002 rebalance_tick(cpu, rq, SCHED_IDLE);
3003 return;
3004 }
3005
3006 /* Task might have expired already, but not scheduled off yet */
3007 if (p->array != rq->active) {
3008 set_tsk_need_resched(p);
3009 goto out;
3010 }
3011 spin_lock(&rq->lock);
3012 /*
3013 * The task was running during this tick - update the
3014 * time slice counter. Note: we do not update a thread's
3015 * priority until it either goes to sleep or uses up its
3016 * timeslice. This makes it possible for interactive tasks
3017 * to use up their timeslices at their highest priority levels.
3018 */
3019 if (rt_task(p)) {
3020 /*
3021 * RR tasks need a special form of timeslice management.
3022 * FIFO tasks have no timeslices.
3023 */
3024 if ((p->policy == SCHED_RR) && !--p->time_slice) {
3025 p->time_slice = task_timeslice(p);
3026 p->first_time_slice = 0;
3027 set_tsk_need_resched(p);
3028
3029 /* put it at the end of the queue: */
3030 requeue_task(p, rq->active);
3031 }
3032 goto out_unlock;
3033 }
3034 if (!--p->time_slice) {
3035 dequeue_task(p, rq->active);
3036 set_tsk_need_resched(p);
3037 p->prio = effective_prio(p);
3038 p->time_slice = task_timeslice(p);
3039 p->first_time_slice = 0;
3040
3041 if (!rq->expired_timestamp)
3042 rq->expired_timestamp = jiffies;
48f24c4d 3043 if (!TASK_INTERACTIVE(p) || expired_starving(rq)) {
1da177e4
LT
3044 enqueue_task(p, rq->expired);
3045 if (p->static_prio < rq->best_expired_prio)
3046 rq->best_expired_prio = p->static_prio;
3047 } else
3048 enqueue_task(p, rq->active);
3049 } else {
3050 /*
3051 * Prevent a too long timeslice allowing a task to monopolize
3052 * the CPU. We do this by splitting up the timeslice into
3053 * smaller pieces.
3054 *
3055 * Note: this does not mean the task's timeslices expire or
3056 * get lost in any way, they just might be preempted by
3057 * another task of equal priority. (one with higher
3058 * priority would have preempted this task already.) We
3059 * requeue this task to the end of the list on this priority
3060 * level, which is in essence a round-robin of tasks with
3061 * equal priority.
3062 *
3063 * This only applies to tasks in the interactive
3064 * delta range with at least TIMESLICE_GRANULARITY to requeue.
3065 */
3066 if (TASK_INTERACTIVE(p) && !((task_timeslice(p) -
3067 p->time_slice) % TIMESLICE_GRANULARITY(p)) &&
3068 (p->time_slice >= TIMESLICE_GRANULARITY(p)) &&
3069 (p->array == rq->active)) {
3070
3071 requeue_task(p, rq->active);
3072 set_tsk_need_resched(p);
3073 }
3074 }
3075out_unlock:
3076 spin_unlock(&rq->lock);
3077out:
3078 rebalance_tick(cpu, rq, NOT_IDLE);
3079}
3080
3081#ifdef CONFIG_SCHED_SMT
70b97a7f 3082static inline void wakeup_busy_runqueue(struct rq *rq)
fc38ed75
CK
3083{
3084 /* If an SMT runqueue is sleeping due to priority reasons wake it up */
3085 if (rq->curr == rq->idle && rq->nr_running)
3086 resched_task(rq->idle);
3087}
3088
c96d145e
CK
3089/*
3090 * Called with interrupt disabled and this_rq's runqueue locked.
3091 */
3092static void wake_sleeping_dependent(int this_cpu)
1da177e4 3093{
41c7ce9a 3094 struct sched_domain *tmp, *sd = NULL;
1da177e4
LT
3095 int i;
3096
c96d145e
CK
3097 for_each_domain(this_cpu, tmp) {
3098 if (tmp->flags & SD_SHARE_CPUPOWER) {
41c7ce9a 3099 sd = tmp;
c96d145e
CK
3100 break;
3101 }
3102 }
41c7ce9a
NP
3103
3104 if (!sd)
1da177e4
LT
3105 return;
3106
c96d145e 3107 for_each_cpu_mask(i, sd->span) {
70b97a7f 3108 struct rq *smt_rq = cpu_rq(i);
1da177e4 3109
c96d145e
CK
3110 if (i == this_cpu)
3111 continue;
3112 if (unlikely(!spin_trylock(&smt_rq->lock)))
3113 continue;
3114
fc38ed75 3115 wakeup_busy_runqueue(smt_rq);
c96d145e 3116 spin_unlock(&smt_rq->lock);
1da177e4 3117 }
1da177e4
LT
3118}
3119
67f9a619
IM
3120/*
3121 * number of 'lost' timeslices this task wont be able to fully
3122 * utilize, if another task runs on a sibling. This models the
3123 * slowdown effect of other tasks running on siblings:
3124 */
36c8b586
IM
3125static inline unsigned long
3126smt_slice(struct task_struct *p, struct sched_domain *sd)
67f9a619
IM
3127{
3128 return p->time_slice * (100 - sd->per_cpu_gain) / 100;
3129}
3130
c96d145e
CK
3131/*
3132 * To minimise lock contention and not have to drop this_rq's runlock we only
3133 * trylock the sibling runqueues and bypass those runqueues if we fail to
3134 * acquire their lock. As we only trylock the normal locking order does not
3135 * need to be obeyed.
3136 */
36c8b586 3137static int
70b97a7f 3138dependent_sleeper(int this_cpu, struct rq *this_rq, struct task_struct *p)
1da177e4 3139{
41c7ce9a 3140 struct sched_domain *tmp, *sd = NULL;
1da177e4 3141 int ret = 0, i;
1da177e4 3142
c96d145e
CK
3143 /* kernel/rt threads do not participate in dependent sleeping */
3144 if (!p->mm || rt_task(p))
3145 return 0;
3146
3147 for_each_domain(this_cpu, tmp) {
3148 if (tmp->flags & SD_SHARE_CPUPOWER) {
41c7ce9a 3149 sd = tmp;
c96d145e
CK
3150 break;
3151 }
3152 }
41c7ce9a
NP
3153
3154 if (!sd)
1da177e4
LT
3155 return 0;
3156
c96d145e 3157 for_each_cpu_mask(i, sd->span) {
36c8b586 3158 struct task_struct *smt_curr;
70b97a7f 3159 struct rq *smt_rq;
1da177e4 3160
c96d145e
CK
3161 if (i == this_cpu)
3162 continue;
1da177e4 3163
c96d145e
CK
3164 smt_rq = cpu_rq(i);
3165 if (unlikely(!spin_trylock(&smt_rq->lock)))
3166 continue;
1da177e4 3167
c96d145e 3168 smt_curr = smt_rq->curr;
1da177e4 3169
c96d145e
CK
3170 if (!smt_curr->mm)
3171 goto unlock;
fc38ed75 3172
1da177e4
LT
3173 /*
3174 * If a user task with lower static priority than the
3175 * running task on the SMT sibling is trying to schedule,
3176 * delay it till there is proportionately less timeslice
3177 * left of the sibling task to prevent a lower priority
3178 * task from using an unfair proportion of the
3179 * physical cpu's resources. -ck
3180 */
fc38ed75
CK
3181 if (rt_task(smt_curr)) {
3182 /*
3183 * With real time tasks we run non-rt tasks only
3184 * per_cpu_gain% of the time.
3185 */
3186 if ((jiffies % DEF_TIMESLICE) >
3187 (sd->per_cpu_gain * DEF_TIMESLICE / 100))
3188 ret = 1;
c96d145e 3189 } else {
67f9a619
IM
3190 if (smt_curr->static_prio < p->static_prio &&
3191 !TASK_PREEMPTS_CURR(p, smt_rq) &&
3192 smt_slice(smt_curr, sd) > task_timeslice(p))
fc38ed75 3193 ret = 1;
fc38ed75 3194 }
c96d145e
CK
3195unlock:
3196 spin_unlock(&smt_rq->lock);
1da177e4 3197 }
1da177e4
LT
3198 return ret;
3199}
3200#else
c96d145e 3201static inline void wake_sleeping_dependent(int this_cpu)
1da177e4
LT
3202{
3203}
48f24c4d 3204static inline int
70b97a7f 3205dependent_sleeper(int this_cpu, struct rq *this_rq, struct task_struct *p)
1da177e4
LT
3206{
3207 return 0;
3208}
3209#endif
3210
3211#if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
3212
3213void fastcall add_preempt_count(int val)
3214{
3215 /*
3216 * Underflow?
3217 */
9a11b49a
IM
3218 if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0)))
3219 return;
1da177e4
LT
3220 preempt_count() += val;
3221 /*
3222 * Spinlock count overflowing soon?
3223 */
9a11b49a 3224 DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >= PREEMPT_MASK-10);
1da177e4
LT
3225}
3226EXPORT_SYMBOL(add_preempt_count);
3227
3228void fastcall sub_preempt_count(int val)
3229{
3230 /*
3231 * Underflow?
3232 */
9a11b49a
IM
3233 if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
3234 return;
1da177e4
LT
3235 /*
3236 * Is the spinlock portion underflowing?
3237 */
9a11b49a
IM
3238 if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) &&
3239 !(preempt_count() & PREEMPT_MASK)))
3240 return;
3241
1da177e4
LT
3242 preempt_count() -= val;
3243}
3244EXPORT_SYMBOL(sub_preempt_count);
3245
3246#endif
3247
3dee386e
CK
3248static inline int interactive_sleep(enum sleep_type sleep_type)
3249{
3250 return (sleep_type == SLEEP_INTERACTIVE ||
3251 sleep_type == SLEEP_INTERRUPTED);
3252}
3253
1da177e4
LT
3254/*
3255 * schedule() is the main scheduler function.
3256 */
3257asmlinkage void __sched schedule(void)
3258{
36c8b586 3259 struct task_struct *prev, *next;
70b97a7f 3260 struct prio_array *array;
1da177e4
LT
3261 struct list_head *queue;
3262 unsigned long long now;
3263 unsigned long run_time;
a3464a10 3264 int cpu, idx, new_prio;
48f24c4d 3265 long *switch_count;
70b97a7f 3266 struct rq *rq;
1da177e4
LT
3267
3268 /*
3269 * Test if we are atomic. Since do_exit() needs to call into
3270 * schedule() atomically, we ignore that path for now.
3271 * Otherwise, whine if we are scheduling when we should not be.
3272 */
77e4bfbc
AM
3273 if (unlikely(in_atomic() && !current->exit_state)) {
3274 printk(KERN_ERR "BUG: scheduling while atomic: "
3275 "%s/0x%08x/%d\n",
3276 current->comm, preempt_count(), current->pid);
3277 dump_stack();
1da177e4
LT
3278 }
3279 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
3280
3281need_resched:
3282 preempt_disable();
3283 prev = current;
3284 release_kernel_lock(prev);
3285need_resched_nonpreemptible:
3286 rq = this_rq();
3287
3288 /*
3289 * The idle thread is not allowed to schedule!
3290 * Remove this check after it has been exercised a bit.
3291 */
3292 if (unlikely(prev == rq->idle) && prev->state != TASK_RUNNING) {
3293 printk(KERN_ERR "bad: scheduling from the idle thread!\n");
3294 dump_stack();
3295 }
3296
3297 schedstat_inc(rq, sched_cnt);
3298 now = sched_clock();
238628ed 3299 if (likely((long long)(now - prev->timestamp) < NS_MAX_SLEEP_AVG)) {
1da177e4 3300 run_time = now - prev->timestamp;
238628ed 3301 if (unlikely((long long)(now - prev->timestamp) < 0))
1da177e4
LT
3302 run_time = 0;
3303 } else
3304 run_time = NS_MAX_SLEEP_AVG;
3305
3306 /*
3307 * Tasks charged proportionately less run_time at high sleep_avg to
3308 * delay them losing their interactive status
3309 */
3310 run_time /= (CURRENT_BONUS(prev) ? : 1);
3311
3312 spin_lock_irq(&rq->lock);
3313
3314 if (unlikely(prev->flags & PF_DEAD))
3315 prev->state = EXIT_DEAD;
3316
3317 switch_count = &prev->nivcsw;
3318 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
3319 switch_count = &prev->nvcsw;
3320 if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
3321 unlikely(signal_pending(prev))))
3322 prev->state = TASK_RUNNING;
3323 else {
3324 if (prev->state == TASK_UNINTERRUPTIBLE)
3325 rq->nr_uninterruptible++;
3326 deactivate_task(prev, rq);
3327 }
3328 }
3329
3330 cpu = smp_processor_id();
3331 if (unlikely(!rq->nr_running)) {
1da177e4
LT
3332 idle_balance(cpu, rq);
3333 if (!rq->nr_running) {
3334 next = rq->idle;
3335 rq->expired_timestamp = 0;
c96d145e 3336 wake_sleeping_dependent(cpu);
1da177e4
LT
3337 goto switch_tasks;
3338 }
1da177e4
LT
3339 }
3340
3341 array = rq->active;
3342 if (unlikely(!array->nr_active)) {
3343 /*
3344 * Switch the active and expired arrays.
3345 */
3346 schedstat_inc(rq, sched_switch);
3347 rq->active = rq->expired;
3348 rq->expired = array;
3349 array = rq->active;
3350 rq->expired_timestamp = 0;
3351 rq->best_expired_prio = MAX_PRIO;
3352 }
3353
3354 idx = sched_find_first_bit(array->bitmap);
3355 queue = array->queue + idx;
36c8b586 3356 next = list_entry(queue->next, struct task_struct, run_list);
1da177e4 3357
3dee386e 3358 if (!rt_task(next) && interactive_sleep(next->sleep_type)) {
1da177e4 3359 unsigned long long delta = now - next->timestamp;
238628ed 3360 if (unlikely((long long)(now - next->timestamp) < 0))
1da177e4
LT
3361 delta = 0;
3362
3dee386e 3363 if (next->sleep_type == SLEEP_INTERACTIVE)
1da177e4
LT
3364 delta = delta * (ON_RUNQUEUE_WEIGHT * 128 / 100) / 128;
3365
3366 array = next->array;
a3464a10
CS
3367 new_prio = recalc_task_prio(next, next->timestamp + delta);
3368
3369 if (unlikely(next->prio != new_prio)) {
3370 dequeue_task(next, array);
3371 next->prio = new_prio;
3372 enqueue_task(next, array);
7c4bb1f9 3373 }
1da177e4 3374 }
3dee386e 3375 next->sleep_type = SLEEP_NORMAL;
c96d145e
CK
3376 if (dependent_sleeper(cpu, rq, next))
3377 next = rq->idle;
1da177e4
LT
3378switch_tasks:
3379 if (next == rq->idle)
3380 schedstat_inc(rq, sched_goidle);
3381 prefetch(next);
383f2835 3382 prefetch_stack(next);
1da177e4
LT
3383 clear_tsk_need_resched(prev);
3384 rcu_qsctr_inc(task_cpu(prev));
3385
3386 update_cpu_clock(prev, rq, now);
3387
3388 prev->sleep_avg -= run_time;
3389 if ((long)prev->sleep_avg <= 0)
3390 prev->sleep_avg = 0;
3391 prev->timestamp = prev->last_ran = now;
3392
3393 sched_info_switch(prev, next);
3394 if (likely(prev != next)) {
3395 next->timestamp = now;
3396 rq->nr_switches++;
3397 rq->curr = next;
3398 ++*switch_count;
3399
4866cde0 3400 prepare_task_switch(rq, next);
1da177e4
LT
3401 prev = context_switch(rq, prev, next);
3402 barrier();
4866cde0
NP
3403 /*
3404 * this_rq must be evaluated again because prev may have moved
3405 * CPUs since it called schedule(), thus the 'rq' on its stack
3406 * frame will be invalid.
3407 */
3408 finish_task_switch(this_rq(), prev);
1da177e4
LT
3409 } else
3410 spin_unlock_irq(&rq->lock);
3411
3412 prev = current;
3413 if (unlikely(reacquire_kernel_lock(prev) < 0))
3414 goto need_resched_nonpreemptible;
3415 preempt_enable_no_resched();
3416 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3417 goto need_resched;
3418}
1da177e4
LT
3419EXPORT_SYMBOL(schedule);
3420
3421#ifdef CONFIG_PREEMPT
3422/*
2ed6e34f 3423 * this is the entry point to schedule() from in-kernel preemption
1da177e4
LT
3424 * off of preempt_enable. Kernel preemptions off return from interrupt
3425 * occur there and call schedule directly.
3426 */
3427asmlinkage void __sched preempt_schedule(void)
3428{
3429 struct thread_info *ti = current_thread_info();
3430#ifdef CONFIG_PREEMPT_BKL
3431 struct task_struct *task = current;
3432 int saved_lock_depth;
3433#endif
3434 /*
3435 * If there is a non-zero preempt_count or interrupts are disabled,
3436 * we do not want to preempt the current task. Just return..
3437 */
3438 if (unlikely(ti->preempt_count || irqs_disabled()))
3439 return;
3440
3441need_resched:
3442 add_preempt_count(PREEMPT_ACTIVE);
3443 /*
3444 * We keep the big kernel semaphore locked, but we
3445 * clear ->lock_depth so that schedule() doesnt
3446 * auto-release the semaphore:
3447 */
3448#ifdef CONFIG_PREEMPT_BKL
3449 saved_lock_depth = task->lock_depth;
3450 task->lock_depth = -1;
3451#endif
3452 schedule();
3453#ifdef CONFIG_PREEMPT_BKL
3454 task->lock_depth = saved_lock_depth;
3455#endif
3456 sub_preempt_count(PREEMPT_ACTIVE);
3457
3458 /* we could miss a preemption opportunity between schedule and now */
3459 barrier();
3460 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3461 goto need_resched;
3462}
1da177e4
LT
3463EXPORT_SYMBOL(preempt_schedule);
3464
3465/*
2ed6e34f 3466 * this is the entry point to schedule() from kernel preemption
1da177e4
LT
3467 * off of irq context.
3468 * Note, that this is called and return with irqs disabled. This will
3469 * protect us against recursive calling from irq.
3470 */
3471asmlinkage void __sched preempt_schedule_irq(void)
3472{
3473 struct thread_info *ti = current_thread_info();
3474#ifdef CONFIG_PREEMPT_BKL
3475 struct task_struct *task = current;
3476 int saved_lock_depth;
3477#endif
2ed6e34f 3478 /* Catch callers which need to be fixed */
1da177e4
LT
3479 BUG_ON(ti->preempt_count || !irqs_disabled());
3480
3481need_resched:
3482 add_preempt_count(PREEMPT_ACTIVE);
3483 /*
3484 * We keep the big kernel semaphore locked, but we
3485 * clear ->lock_depth so that schedule() doesnt
3486 * auto-release the semaphore:
3487 */
3488#ifdef CONFIG_PREEMPT_BKL
3489 saved_lock_depth = task->lock_depth;
3490 task->lock_depth = -1;
3491#endif
3492 local_irq_enable();
3493 schedule();
3494 local_irq_disable();
3495#ifdef CONFIG_PREEMPT_BKL
3496 task->lock_depth = saved_lock_depth;
3497#endif
3498 sub_preempt_count(PREEMPT_ACTIVE);
3499
3500 /* we could miss a preemption opportunity between schedule and now */
3501 barrier();
3502 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3503 goto need_resched;
3504}
3505
3506#endif /* CONFIG_PREEMPT */
3507
95cdf3b7
IM
3508int default_wake_function(wait_queue_t *curr, unsigned mode, int sync,
3509 void *key)
1da177e4 3510{
48f24c4d 3511 return try_to_wake_up(curr->private, mode, sync);
1da177e4 3512}
1da177e4
LT
3513EXPORT_SYMBOL(default_wake_function);
3514
3515/*
3516 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
3517 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
3518 * number) then we wake all the non-exclusive tasks and one exclusive task.
3519 *
3520 * There are circumstances in which we can try to wake a task which has already
3521 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
3522 * zero in this (rare) case, and we handle it by continuing to scan the queue.
3523 */
3524static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
3525 int nr_exclusive, int sync, void *key)
3526{
3527 struct list_head *tmp, *next;
3528
3529 list_for_each_safe(tmp, next, &q->task_list) {
48f24c4d
IM
3530 wait_queue_t *curr = list_entry(tmp, wait_queue_t, task_list);
3531 unsigned flags = curr->flags;
3532
1da177e4 3533 if (curr->func(curr, mode, sync, key) &&
48f24c4d 3534 (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive)
1da177e4
LT
3535 break;
3536 }
3537}
3538
3539/**
3540 * __wake_up - wake up threads blocked on a waitqueue.
3541 * @q: the waitqueue
3542 * @mode: which threads
3543 * @nr_exclusive: how many wake-one or wake-many threads to wake up
67be2dd1 3544 * @key: is directly passed to the wakeup function
1da177e4
LT
3545 */
3546void fastcall __wake_up(wait_queue_head_t *q, unsigned int mode,
95cdf3b7 3547 int nr_exclusive, void *key)
1da177e4
LT
3548{
3549 unsigned long flags;
3550
3551 spin_lock_irqsave(&q->lock, flags);
3552 __wake_up_common(q, mode, nr_exclusive, 0, key);
3553 spin_unlock_irqrestore(&q->lock, flags);
3554}
1da177e4
LT
3555EXPORT_SYMBOL(__wake_up);
3556
3557/*
3558 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
3559 */
3560void fastcall __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
3561{
3562 __wake_up_common(q, mode, 1, 0, NULL);
3563}
3564
3565/**
67be2dd1 3566 * __wake_up_sync - wake up threads blocked on a waitqueue.
1da177e4
LT
3567 * @q: the waitqueue
3568 * @mode: which threads
3569 * @nr_exclusive: how many wake-one or wake-many threads to wake up
3570 *
3571 * The sync wakeup differs that the waker knows that it will schedule
3572 * away soon, so while the target thread will be woken up, it will not
3573 * be migrated to another CPU - ie. the two threads are 'synchronized'
3574 * with each other. This can prevent needless bouncing between CPUs.
3575 *
3576 * On UP it can prevent extra preemption.
3577 */
95cdf3b7
IM
3578void fastcall
3579__wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
1da177e4
LT
3580{
3581 unsigned long flags;
3582 int sync = 1;
3583
3584 if (unlikely(!q))
3585 return;
3586
3587 if (unlikely(!nr_exclusive))
3588 sync = 0;
3589
3590 spin_lock_irqsave(&q->lock, flags);
3591 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
3592 spin_unlock_irqrestore(&q->lock, flags);
3593}
3594EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
3595
3596void fastcall complete(struct completion *x)
3597{
3598 unsigned long flags;
3599
3600 spin_lock_irqsave(&x->wait.lock, flags);
3601 x->done++;
3602 __wake_up_common(&x->wait, TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE,
3603 1, 0, NULL);
3604 spin_unlock_irqrestore(&x->wait.lock, flags);
3605}
3606EXPORT_SYMBOL(complete);
3607
3608void fastcall complete_all(struct completion *x)
3609{
3610 unsigned long flags;
3611
3612 spin_lock_irqsave(&x->wait.lock, flags);
3613 x->done += UINT_MAX/2;
3614 __wake_up_common(&x->wait, TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE,
3615 0, 0, NULL);
3616 spin_unlock_irqrestore(&x->wait.lock, flags);
3617}
3618EXPORT_SYMBOL(complete_all);
3619
3620void fastcall __sched wait_for_completion(struct completion *x)
3621{
3622 might_sleep();
48f24c4d 3623
1da177e4
LT
3624 spin_lock_irq(&x->wait.lock);
3625 if (!x->done) {
3626 DECLARE_WAITQUEUE(wait, current);
3627
3628 wait.flags |= WQ_FLAG_EXCLUSIVE;
3629 __add_wait_queue_tail(&x->wait, &wait);
3630 do {
3631 __set_current_state(TASK_UNINTERRUPTIBLE);
3632 spin_unlock_irq(&x->wait.lock);
3633 schedule();
3634 spin_lock_irq(&x->wait.lock);
3635 } while (!x->done);
3636 __remove_wait_queue(&x->wait, &wait);
3637 }
3638 x->done--;
3639 spin_unlock_irq(&x->wait.lock);
3640}
3641EXPORT_SYMBOL(wait_for_completion);
3642
3643unsigned long fastcall __sched
3644wait_for_completion_timeout(struct completion *x, unsigned long timeout)
3645{
3646 might_sleep();
3647
3648 spin_lock_irq(&x->wait.lock);
3649 if (!x->done) {
3650 DECLARE_WAITQUEUE(wait, current);
3651
3652 wait.flags |= WQ_FLAG_EXCLUSIVE;
3653 __add_wait_queue_tail(&x->wait, &wait);
3654 do {
3655 __set_current_state(TASK_UNINTERRUPTIBLE);
3656 spin_unlock_irq(&x->wait.lock);
3657 timeout = schedule_timeout(timeout);
3658 spin_lock_irq(&x->wait.lock);
3659 if (!timeout) {
3660 __remove_wait_queue(&x->wait, &wait);
3661 goto out;
3662 }
3663 } while (!x->done);
3664 __remove_wait_queue(&x->wait, &wait);
3665 }
3666 x->done--;
3667out:
3668 spin_unlock_irq(&x->wait.lock);
3669 return timeout;
3670}
3671EXPORT_SYMBOL(wait_for_completion_timeout);
3672
3673int fastcall __sched wait_for_completion_interruptible(struct completion *x)
3674{
3675 int ret = 0;
3676
3677 might_sleep();
3678
3679 spin_lock_irq(&x->wait.lock);
3680 if (!x->done) {
3681 DECLARE_WAITQUEUE(wait, current);
3682
3683 wait.flags |= WQ_FLAG_EXCLUSIVE;
3684 __add_wait_queue_tail(&x->wait, &wait);
3685 do {
3686 if (signal_pending(current)) {
3687 ret = -ERESTARTSYS;
3688 __remove_wait_queue(&x->wait, &wait);
3689 goto out;
3690 }
3691 __set_current_state(TASK_INTERRUPTIBLE);
3692 spin_unlock_irq(&x->wait.lock);
3693 schedule();
3694 spin_lock_irq(&x->wait.lock);
3695 } while (!x->done);
3696 __remove_wait_queue(&x->wait, &wait);
3697 }
3698 x->done--;
3699out:
3700 spin_unlock_irq(&x->wait.lock);
3701
3702 return ret;
3703}
3704EXPORT_SYMBOL(wait_for_completion_interruptible);
3705
3706unsigned long fastcall __sched
3707wait_for_completion_interruptible_timeout(struct completion *x,
3708 unsigned long timeout)
3709{
3710 might_sleep();
3711
3712 spin_lock_irq(&x->wait.lock);
3713 if (!x->done) {
3714 DECLARE_WAITQUEUE(wait, current);
3715
3716 wait.flags |= WQ_FLAG_EXCLUSIVE;
3717 __add_wait_queue_tail(&x->wait, &wait);
3718 do {
3719 if (signal_pending(current)) {
3720 timeout = -ERESTARTSYS;
3721 __remove_wait_queue(&x->wait, &wait);
3722 goto out;
3723 }
3724 __set_current_state(TASK_INTERRUPTIBLE);
3725 spin_unlock_irq(&x->wait.lock);
3726 timeout = schedule_timeout(timeout);
3727 spin_lock_irq(&x->wait.lock);
3728 if (!timeout) {
3729 __remove_wait_queue(&x->wait, &wait);
3730 goto out;
3731 }
3732 } while (!x->done);
3733 __remove_wait_queue(&x->wait, &wait);
3734 }
3735 x->done--;
3736out:
3737 spin_unlock_irq(&x->wait.lock);
3738 return timeout;
3739}
3740EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
3741
3742
3743#define SLEEP_ON_VAR \
3744 unsigned long flags; \
3745 wait_queue_t wait; \
3746 init_waitqueue_entry(&wait, current);
3747
3748#define SLEEP_ON_HEAD \
3749 spin_lock_irqsave(&q->lock,flags); \
3750 __add_wait_queue(q, &wait); \
3751 spin_unlock(&q->lock);
3752
3753#define SLEEP_ON_TAIL \
3754 spin_lock_irq(&q->lock); \
3755 __remove_wait_queue(q, &wait); \
3756 spin_unlock_irqrestore(&q->lock, flags);
3757
3758void fastcall __sched interruptible_sleep_on(wait_queue_head_t *q)
3759{
3760 SLEEP_ON_VAR
3761
3762 current->state = TASK_INTERRUPTIBLE;
3763
3764 SLEEP_ON_HEAD
3765 schedule();
3766 SLEEP_ON_TAIL
3767}
1da177e4
LT
3768EXPORT_SYMBOL(interruptible_sleep_on);
3769
95cdf3b7
IM
3770long fastcall __sched
3771interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
1da177e4
LT
3772{
3773 SLEEP_ON_VAR
3774
3775 current->state = TASK_INTERRUPTIBLE;
3776
3777 SLEEP_ON_HEAD
3778 timeout = schedule_timeout(timeout);
3779 SLEEP_ON_TAIL
3780
3781 return timeout;
3782}
1da177e4
LT
3783EXPORT_SYMBOL(interruptible_sleep_on_timeout);
3784
3785void fastcall __sched sleep_on(wait_queue_head_t *q)
3786{
3787 SLEEP_ON_VAR
3788
3789 current->state = TASK_UNINTERRUPTIBLE;
3790
3791 SLEEP_ON_HEAD
3792 schedule();
3793 SLEEP_ON_TAIL
3794}
1da177e4
LT
3795EXPORT_SYMBOL(sleep_on);
3796
3797long fastcall __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
3798{
3799 SLEEP_ON_VAR
3800
3801 current->state = TASK_UNINTERRUPTIBLE;
3802
3803 SLEEP_ON_HEAD
3804 timeout = schedule_timeout(timeout);
3805 SLEEP_ON_TAIL
3806
3807 return timeout;
3808}
3809
3810EXPORT_SYMBOL(sleep_on_timeout);
3811
b29739f9
IM
3812#ifdef CONFIG_RT_MUTEXES
3813
3814/*
3815 * rt_mutex_setprio - set the current priority of a task
3816 * @p: task
3817 * @prio: prio value (kernel-internal form)
3818 *
3819 * This function changes the 'effective' priority of a task. It does
3820 * not touch ->normal_prio like __setscheduler().
3821 *
3822 * Used by the rt_mutex code to implement priority inheritance logic.
3823 */
36c8b586 3824void rt_mutex_setprio(struct task_struct *p, int prio)
b29739f9 3825{
70b97a7f 3826 struct prio_array *array;
b29739f9 3827 unsigned long flags;
70b97a7f 3828 struct rq *rq;
b29739f9
IM
3829 int oldprio;
3830
3831 BUG_ON(prio < 0 || prio > MAX_PRIO);
3832
3833 rq = task_rq_lock(p, &flags);
3834
3835 oldprio = p->prio;
3836 array = p->array;
3837 if (array)
3838 dequeue_task(p, array);
3839 p->prio = prio;
3840
3841 if (array) {
3842 /*
3843 * If changing to an RT priority then queue it
3844 * in the active array!
3845 */
3846 if (rt_task(p))
3847 array = rq->active;
3848 enqueue_task(p, array);
3849 /*
3850 * Reschedule if we are currently running on this runqueue and
3851 * our priority decreased, or if we are not currently running on
3852 * this runqueue and our priority is higher than the current's
3853 */
3854 if (task_running(rq, p)) {
3855 if (p->prio > oldprio)
3856 resched_task(rq->curr);
3857 } else if (TASK_PREEMPTS_CURR(p, rq))
3858 resched_task(rq->curr);
3859 }
3860 task_rq_unlock(rq, &flags);
3861}
3862
3863#endif
3864
36c8b586 3865void set_user_nice(struct task_struct *p, long nice)
1da177e4 3866{
70b97a7f 3867 struct prio_array *array;
48f24c4d 3868 int old_prio, delta;
1da177e4 3869 unsigned long flags;
70b97a7f 3870 struct rq *rq;
1da177e4
LT
3871
3872 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
3873 return;
3874 /*
3875 * We have to be careful, if called from sys_setpriority(),
3876 * the task might be in the middle of scheduling on another CPU.
3877 */
3878 rq = task_rq_lock(p, &flags);
3879 /*
3880 * The RT priorities are set via sched_setscheduler(), but we still
3881 * allow the 'normal' nice value to be set - but as expected
3882 * it wont have any effect on scheduling until the task is
b0a9499c 3883 * not SCHED_NORMAL/SCHED_BATCH:
1da177e4 3884 */
b29739f9 3885 if (has_rt_policy(p)) {
1da177e4
LT
3886 p->static_prio = NICE_TO_PRIO(nice);
3887 goto out_unlock;
3888 }
3889 array = p->array;
2dd73a4f 3890 if (array) {
1da177e4 3891 dequeue_task(p, array);
2dd73a4f
PW
3892 dec_raw_weighted_load(rq, p);
3893 }
1da177e4 3894
1da177e4 3895 p->static_prio = NICE_TO_PRIO(nice);
2dd73a4f 3896 set_load_weight(p);
b29739f9
IM
3897 old_prio = p->prio;
3898 p->prio = effective_prio(p);
3899 delta = p->prio - old_prio;
1da177e4
LT
3900
3901 if (array) {
3902 enqueue_task(p, array);
2dd73a4f 3903 inc_raw_weighted_load(rq, p);
1da177e4
LT
3904 /*
3905 * If the task increased its priority or is running and
3906 * lowered its priority, then reschedule its CPU:
3907 */
3908 if (delta < 0 || (delta > 0 && task_running(rq, p)))
3909 resched_task(rq->curr);
3910 }
3911out_unlock:
3912 task_rq_unlock(rq, &flags);
3913}
1da177e4
LT
3914EXPORT_SYMBOL(set_user_nice);
3915
e43379f1
MM
3916/*
3917 * can_nice - check if a task can reduce its nice value
3918 * @p: task
3919 * @nice: nice value
3920 */
36c8b586 3921int can_nice(const struct task_struct *p, const int nice)
e43379f1 3922{
024f4747
MM
3923 /* convert nice value [19,-20] to rlimit style value [1,40] */
3924 int nice_rlim = 20 - nice;
48f24c4d 3925
e43379f1
MM
3926 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
3927 capable(CAP_SYS_NICE));
3928}
3929
1da177e4
LT
3930#ifdef __ARCH_WANT_SYS_NICE
3931
3932/*
3933 * sys_nice - change the priority of the current process.
3934 * @increment: priority increment
3935 *
3936 * sys_setpriority is a more generic, but much slower function that
3937 * does similar things.
3938 */
3939asmlinkage long sys_nice(int increment)
3940{
48f24c4d 3941 long nice, retval;
1da177e4
LT
3942
3943 /*
3944 * Setpriority might change our priority at the same moment.
3945 * We don't have to worry. Conceptually one call occurs first
3946 * and we have a single winner.
3947 */
e43379f1
MM
3948 if (increment < -40)
3949 increment = -40;
1da177e4
LT
3950 if (increment > 40)
3951 increment = 40;
3952
3953 nice = PRIO_TO_NICE(current->static_prio) + increment;
3954 if (nice < -20)
3955 nice = -20;
3956 if (nice > 19)
3957 nice = 19;
3958
e43379f1
MM
3959 if (increment < 0 && !can_nice(current, nice))
3960 return -EPERM;
3961
1da177e4
LT
3962 retval = security_task_setnice(current, nice);
3963 if (retval)
3964 return retval;
3965
3966 set_user_nice(current, nice);
3967 return 0;
3968}
3969
3970#endif
3971
3972/**
3973 * task_prio - return the priority value of a given task.
3974 * @p: the task in question.
3975 *
3976 * This is the priority value as seen by users in /proc.
3977 * RT tasks are offset by -200. Normal tasks are centered
3978 * around 0, value goes from -16 to +15.
3979 */
36c8b586 3980int task_prio(const struct task_struct *p)
1da177e4
LT
3981{
3982 return p->prio - MAX_RT_PRIO;
3983}
3984
3985/**
3986 * task_nice - return the nice value of a given task.
3987 * @p: the task in question.
3988 */
36c8b586 3989int task_nice(const struct task_struct *p)
1da177e4
LT
3990{
3991 return TASK_NICE(p);
3992}
1da177e4 3993EXPORT_SYMBOL_GPL(task_nice);
1da177e4
LT
3994
3995/**
3996 * idle_cpu - is a given cpu idle currently?
3997 * @cpu: the processor in question.
3998 */
3999int idle_cpu(int cpu)
4000{
4001 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
4002}
4003
1da177e4
LT
4004/**
4005 * idle_task - return the idle task for a given cpu.
4006 * @cpu: the processor in question.
4007 */
36c8b586 4008struct task_struct *idle_task(int cpu)
1da177e4
LT
4009{
4010 return cpu_rq(cpu)->idle;
4011}
4012
4013/**
4014 * find_process_by_pid - find a process with a matching PID value.
4015 * @pid: the pid in question.
4016 */
36c8b586 4017static inline struct task_struct *find_process_by_pid(pid_t pid)
1da177e4
LT
4018{
4019 return pid ? find_task_by_pid(pid) : current;
4020}
4021
4022/* Actually do priority change: must hold rq lock. */
4023static void __setscheduler(struct task_struct *p, int policy, int prio)
4024{
4025 BUG_ON(p->array);
48f24c4d 4026
1da177e4
LT
4027 p->policy = policy;
4028 p->rt_priority = prio;
b29739f9
IM
4029 p->normal_prio = normal_prio(p);
4030 /* we are holding p->pi_lock already */
4031 p->prio = rt_mutex_getprio(p);
4032 /*
4033 * SCHED_BATCH tasks are treated as perpetual CPU hogs:
4034 */
4035 if (policy == SCHED_BATCH)
4036 p->sleep_avg = 0;
2dd73a4f 4037 set_load_weight(p);
1da177e4
LT
4038}
4039
4040/**
4041 * sched_setscheduler - change the scheduling policy and/or RT priority of
4042 * a thread.
4043 * @p: the task in question.
4044 * @policy: new policy.
4045 * @param: structure containing the new RT priority.
4046 */
95cdf3b7
IM
4047int sched_setscheduler(struct task_struct *p, int policy,
4048 struct sched_param *param)
1da177e4 4049{
48f24c4d 4050 int retval, oldprio, oldpolicy = -1;
70b97a7f 4051 struct prio_array *array;
1da177e4 4052 unsigned long flags;
70b97a7f 4053 struct rq *rq;
1da177e4 4054
66e5393a
SR
4055 /* may grab non-irq protected spin_locks */
4056 BUG_ON(in_interrupt());
1da177e4
LT
4057recheck:
4058 /* double check policy once rq lock held */
4059 if (policy < 0)
4060 policy = oldpolicy = p->policy;
4061 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
b0a9499c
IM
4062 policy != SCHED_NORMAL && policy != SCHED_BATCH)
4063 return -EINVAL;
1da177e4
LT
4064 /*
4065 * Valid priorities for SCHED_FIFO and SCHED_RR are
b0a9499c
IM
4066 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL and
4067 * SCHED_BATCH is 0.
1da177e4
LT
4068 */
4069 if (param->sched_priority < 0 ||
95cdf3b7 4070 (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) ||
d46523ea 4071 (!p->mm && param->sched_priority > MAX_RT_PRIO-1))
1da177e4 4072 return -EINVAL;
b0a9499c
IM
4073 if ((policy == SCHED_NORMAL || policy == SCHED_BATCH)
4074 != (param->sched_priority == 0))
1da177e4
LT
4075 return -EINVAL;
4076
37e4ab3f
OC
4077 /*
4078 * Allow unprivileged RT tasks to decrease priority:
4079 */
4080 if (!capable(CAP_SYS_NICE)) {
b0a9499c
IM
4081 /*
4082 * can't change policy, except between SCHED_NORMAL
4083 * and SCHED_BATCH:
4084 */
4085 if (((policy != SCHED_NORMAL && p->policy != SCHED_BATCH) &&
4086 (policy != SCHED_BATCH && p->policy != SCHED_NORMAL)) &&
4087 !p->signal->rlim[RLIMIT_RTPRIO].rlim_cur)
37e4ab3f
OC
4088 return -EPERM;
4089 /* can't increase priority */
b0a9499c 4090 if ((policy != SCHED_NORMAL && policy != SCHED_BATCH) &&
37e4ab3f
OC
4091 param->sched_priority > p->rt_priority &&
4092 param->sched_priority >
4093 p->signal->rlim[RLIMIT_RTPRIO].rlim_cur)
4094 return -EPERM;
4095 /* can't change other user's priorities */
4096 if ((current->euid != p->euid) &&
4097 (current->euid != p->uid))
4098 return -EPERM;
4099 }
1da177e4
LT
4100
4101 retval = security_task_setscheduler(p, policy, param);
4102 if (retval)
4103 return retval;
b29739f9
IM
4104 /*
4105 * make sure no PI-waiters arrive (or leave) while we are
4106 * changing the priority of the task:
4107 */
4108 spin_lock_irqsave(&p->pi_lock, flags);
1da177e4
LT
4109 /*
4110 * To be able to change p->policy safely, the apropriate
4111 * runqueue lock must be held.
4112 */
b29739f9 4113 rq = __task_rq_lock(p);
1da177e4
LT
4114 /* recheck policy now with rq lock held */
4115 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
4116 policy = oldpolicy = -1;
b29739f9
IM
4117 __task_rq_unlock(rq);
4118 spin_unlock_irqrestore(&p->pi_lock, flags);
1da177e4
LT
4119 goto recheck;
4120 }
4121 array = p->array;
4122 if (array)
4123 deactivate_task(p, rq);
4124 oldprio = p->prio;
4125 __setscheduler(p, policy, param->sched_priority);
4126 if (array) {
4127 __activate_task(p, rq);
4128 /*
4129 * Reschedule if we are currently running on this runqueue and
4130 * our priority decreased, or if we are not currently running on
4131 * this runqueue and our priority is higher than the current's
4132 */
4133 if (task_running(rq, p)) {
4134 if (p->prio > oldprio)
4135 resched_task(rq->curr);
4136 } else if (TASK_PREEMPTS_CURR(p, rq))
4137 resched_task(rq->curr);
4138 }
b29739f9
IM
4139 __task_rq_unlock(rq);
4140 spin_unlock_irqrestore(&p->pi_lock, flags);
4141
95e02ca9
TG
4142 rt_mutex_adjust_pi(p);
4143
1da177e4
LT
4144 return 0;
4145}
4146EXPORT_SYMBOL_GPL(sched_setscheduler);
4147
95cdf3b7
IM
4148static int
4149do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
1da177e4 4150{
1da177e4
LT
4151 struct sched_param lparam;
4152 struct task_struct *p;
36c8b586 4153 int retval;
1da177e4
LT
4154
4155 if (!param || pid < 0)
4156 return -EINVAL;
4157 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
4158 return -EFAULT;
4159 read_lock_irq(&tasklist_lock);
4160 p = find_process_by_pid(pid);
4161 if (!p) {
4162 read_unlock_irq(&tasklist_lock);
4163 return -ESRCH;
4164 }
e74c69f4 4165 retval = sched_setscheduler(p, policy, &lparam);
f8986c24 4166 read_unlock_irq(&tasklist_lock);
36c8b586 4167
1da177e4
LT
4168 return retval;
4169}
4170
4171/**
4172 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
4173 * @pid: the pid in question.
4174 * @policy: new policy.
4175 * @param: structure containing the new RT priority.
4176 */
4177asmlinkage long sys_sched_setscheduler(pid_t pid, int policy,
4178 struct sched_param __user *param)
4179{
c21761f1
JB
4180 /* negative values for policy are not valid */
4181 if (policy < 0)
4182 return -EINVAL;
4183
1da177e4
LT
4184 return do_sched_setscheduler(pid, policy, param);
4185}
4186
4187/**
4188 * sys_sched_setparam - set/change the RT priority of a thread
4189 * @pid: the pid in question.
4190 * @param: structure containing the new RT priority.
4191 */
4192asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
4193{
4194 return do_sched_setscheduler(pid, -1, param);
4195}
4196
4197/**
4198 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
4199 * @pid: the pid in question.
4200 */
4201asmlinkage long sys_sched_getscheduler(pid_t pid)
4202{
36c8b586 4203 struct task_struct *p;
1da177e4 4204 int retval = -EINVAL;
1da177e4
LT
4205
4206 if (pid < 0)
4207 goto out_nounlock;
4208
4209 retval = -ESRCH;
4210 read_lock(&tasklist_lock);
4211 p = find_process_by_pid(pid);
4212 if (p) {
4213 retval = security_task_getscheduler(p);
4214 if (!retval)
4215 retval = p->policy;
4216 }
4217 read_unlock(&tasklist_lock);
4218
4219out_nounlock:
4220 return retval;
4221}
4222
4223/**
4224 * sys_sched_getscheduler - get the RT priority of a thread
4225 * @pid: the pid in question.
4226 * @param: structure containing the RT priority.
4227 */
4228asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
4229{
4230 struct sched_param lp;
36c8b586 4231 struct task_struct *p;
1da177e4 4232 int retval = -EINVAL;
1da177e4
LT
4233
4234 if (!param || pid < 0)
4235 goto out_nounlock;
4236
4237 read_lock(&tasklist_lock);
4238 p = find_process_by_pid(pid);
4239 retval = -ESRCH;
4240 if (!p)
4241 goto out_unlock;
4242
4243 retval = security_task_getscheduler(p);
4244 if (retval)
4245 goto out_unlock;
4246
4247 lp.sched_priority = p->rt_priority;
4248 read_unlock(&tasklist_lock);
4249
4250 /*
4251 * This one might sleep, we cannot do it with a spinlock held ...
4252 */
4253 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
4254
4255out_nounlock:
4256 return retval;
4257
4258out_unlock:
4259 read_unlock(&tasklist_lock);
4260 return retval;
4261}
4262
4263long sched_setaffinity(pid_t pid, cpumask_t new_mask)
4264{
1da177e4 4265 cpumask_t cpus_allowed;
36c8b586
IM
4266 struct task_struct *p;
4267 int retval;
1da177e4
LT
4268
4269 lock_cpu_hotplug();
4270 read_lock(&tasklist_lock);
4271
4272 p = find_process_by_pid(pid);
4273 if (!p) {
4274 read_unlock(&tasklist_lock);
4275 unlock_cpu_hotplug();
4276 return -ESRCH;
4277 }
4278
4279 /*
4280 * It is not safe to call set_cpus_allowed with the
4281 * tasklist_lock held. We will bump the task_struct's
4282 * usage count and then drop tasklist_lock.
4283 */
4284 get_task_struct(p);
4285 read_unlock(&tasklist_lock);
4286
4287 retval = -EPERM;
4288 if ((current->euid != p->euid) && (current->euid != p->uid) &&
4289 !capable(CAP_SYS_NICE))
4290 goto out_unlock;
4291
e7834f8f
DQ
4292 retval = security_task_setscheduler(p, 0, NULL);
4293 if (retval)
4294 goto out_unlock;
4295
1da177e4
LT
4296 cpus_allowed = cpuset_cpus_allowed(p);
4297 cpus_and(new_mask, new_mask, cpus_allowed);
4298 retval = set_cpus_allowed(p, new_mask);
4299
4300out_unlock:
4301 put_task_struct(p);
4302 unlock_cpu_hotplug();
4303 return retval;
4304}
4305
4306static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
4307 cpumask_t *new_mask)
4308{
4309 if (len < sizeof(cpumask_t)) {
4310 memset(new_mask, 0, sizeof(cpumask_t));
4311 } else if (len > sizeof(cpumask_t)) {
4312 len = sizeof(cpumask_t);
4313 }
4314 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
4315}
4316
4317/**
4318 * sys_sched_setaffinity - set the cpu affinity of a process
4319 * @pid: pid of the process
4320 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4321 * @user_mask_ptr: user-space pointer to the new cpu mask
4322 */
4323asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
4324 unsigned long __user *user_mask_ptr)
4325{
4326 cpumask_t new_mask;
4327 int retval;
4328
4329 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
4330 if (retval)
4331 return retval;
4332
4333 return sched_setaffinity(pid, new_mask);
4334}
4335
4336/*
4337 * Represents all cpu's present in the system
4338 * In systems capable of hotplug, this map could dynamically grow
4339 * as new cpu's are detected in the system via any platform specific
4340 * method, such as ACPI for e.g.
4341 */
4342
4cef0c61 4343cpumask_t cpu_present_map __read_mostly;
1da177e4
LT
4344EXPORT_SYMBOL(cpu_present_map);
4345
4346#ifndef CONFIG_SMP
4cef0c61
AK
4347cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
4348cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
1da177e4
LT
4349#endif
4350
4351long sched_getaffinity(pid_t pid, cpumask_t *mask)
4352{
36c8b586 4353 struct task_struct *p;
1da177e4 4354 int retval;
1da177e4
LT
4355
4356 lock_cpu_hotplug();
4357 read_lock(&tasklist_lock);
4358
4359 retval = -ESRCH;
4360 p = find_process_by_pid(pid);
4361 if (!p)
4362 goto out_unlock;
4363
e7834f8f
DQ
4364 retval = security_task_getscheduler(p);
4365 if (retval)
4366 goto out_unlock;
4367
2f7016d9 4368 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
1da177e4
LT
4369
4370out_unlock:
4371 read_unlock(&tasklist_lock);
4372 unlock_cpu_hotplug();
4373 if (retval)
4374 return retval;
4375
4376 return 0;
4377}
4378
4379/**
4380 * sys_sched_getaffinity - get the cpu affinity of a process
4381 * @pid: pid of the process
4382 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4383 * @user_mask_ptr: user-space pointer to hold the current cpu mask
4384 */
4385asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
4386 unsigned long __user *user_mask_ptr)
4387{
4388 int ret;
4389 cpumask_t mask;
4390
4391 if (len < sizeof(cpumask_t))
4392 return -EINVAL;
4393
4394 ret = sched_getaffinity(pid, &mask);
4395 if (ret < 0)
4396 return ret;
4397
4398 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
4399 return -EFAULT;
4400
4401 return sizeof(cpumask_t);
4402}
4403
4404/**
4405 * sys_sched_yield - yield the current processor to other threads.
4406 *
4407 * this function yields the current CPU by moving the calling thread
4408 * to the expired array. If there are no other threads running on this
4409 * CPU then this function will return.
4410 */
4411asmlinkage long sys_sched_yield(void)
4412{
70b97a7f
IM
4413 struct rq *rq = this_rq_lock();
4414 struct prio_array *array = current->array, *target = rq->expired;
1da177e4
LT
4415
4416 schedstat_inc(rq, yld_cnt);
4417 /*
4418 * We implement yielding by moving the task into the expired
4419 * queue.
4420 *
4421 * (special rule: RT tasks will just roundrobin in the active
4422 * array.)
4423 */
4424 if (rt_task(current))
4425 target = rq->active;
4426
5927ad78 4427 if (array->nr_active == 1) {
1da177e4
LT
4428 schedstat_inc(rq, yld_act_empty);
4429 if (!rq->expired->nr_active)
4430 schedstat_inc(rq, yld_both_empty);
4431 } else if (!rq->expired->nr_active)
4432 schedstat_inc(rq, yld_exp_empty);
4433
4434 if (array != target) {
4435 dequeue_task(current, array);
4436 enqueue_task(current, target);
4437 } else
4438 /*
4439 * requeue_task is cheaper so perform that if possible.
4440 */
4441 requeue_task(current, array);
4442
4443 /*
4444 * Since we are going to call schedule() anyway, there's
4445 * no need to preempt or enable interrupts:
4446 */
4447 __release(rq->lock);
8a25d5de 4448 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
1da177e4
LT
4449 _raw_spin_unlock(&rq->lock);
4450 preempt_enable_no_resched();
4451
4452 schedule();
4453
4454 return 0;
4455}
4456
2d7d2535 4457static inline int __resched_legal(int expected_preempt_count)
e7b38404 4458{
2d7d2535 4459 if (unlikely(preempt_count() != expected_preempt_count))
e7b38404
AM
4460 return 0;
4461 if (unlikely(system_state != SYSTEM_RUNNING))
4462 return 0;
4463 return 1;
4464}
4465
4466static void __cond_resched(void)
1da177e4 4467{
8e0a43d8
IM
4468#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
4469 __might_sleep(__FILE__, __LINE__);
4470#endif
5bbcfd90
IM
4471 /*
4472 * The BKS might be reacquired before we have dropped
4473 * PREEMPT_ACTIVE, which could trigger a second
4474 * cond_resched() call.
4475 */
1da177e4
LT
4476 do {
4477 add_preempt_count(PREEMPT_ACTIVE);
4478 schedule();
4479 sub_preempt_count(PREEMPT_ACTIVE);
4480 } while (need_resched());
4481}
4482
4483int __sched cond_resched(void)
4484{
2d7d2535 4485 if (need_resched() && __resched_legal(0)) {
1da177e4
LT
4486 __cond_resched();
4487 return 1;
4488 }
4489 return 0;
4490}
1da177e4
LT
4491EXPORT_SYMBOL(cond_resched);
4492
4493/*
4494 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
4495 * call schedule, and on return reacquire the lock.
4496 *
4497 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
4498 * operations here to prevent schedule() from being called twice (once via
4499 * spin_unlock(), once by hand).
4500 */
95cdf3b7 4501int cond_resched_lock(spinlock_t *lock)
1da177e4 4502{
6df3cecb
JK
4503 int ret = 0;
4504
1da177e4
LT
4505 if (need_lockbreak(lock)) {
4506 spin_unlock(lock);
4507 cpu_relax();
6df3cecb 4508 ret = 1;
1da177e4
LT
4509 spin_lock(lock);
4510 }
2d7d2535 4511 if (need_resched() && __resched_legal(1)) {
8a25d5de 4512 spin_release(&lock->dep_map, 1, _THIS_IP_);
1da177e4
LT
4513 _raw_spin_unlock(lock);
4514 preempt_enable_no_resched();
4515 __cond_resched();
6df3cecb 4516 ret = 1;
1da177e4 4517 spin_lock(lock);
1da177e4 4518 }
6df3cecb 4519 return ret;
1da177e4 4520}
1da177e4
LT
4521EXPORT_SYMBOL(cond_resched_lock);
4522
4523int __sched cond_resched_softirq(void)
4524{
4525 BUG_ON(!in_softirq());
4526
2d7d2535 4527 if (need_resched() && __resched_legal(0)) {
de30a2b3
IM
4528 raw_local_irq_disable();
4529 _local_bh_enable();
4530 raw_local_irq_enable();
1da177e4
LT
4531 __cond_resched();
4532 local_bh_disable();
4533 return 1;
4534 }
4535 return 0;
4536}
1da177e4
LT
4537EXPORT_SYMBOL(cond_resched_softirq);
4538
1da177e4
LT
4539/**
4540 * yield - yield the current processor to other threads.
4541 *
4542 * this is a shortcut for kernel-space yielding - it marks the
4543 * thread runnable and calls sys_sched_yield().
4544 */
4545void __sched yield(void)
4546{
4547 set_current_state(TASK_RUNNING);
4548 sys_sched_yield();
4549}
1da177e4
LT
4550EXPORT_SYMBOL(yield);
4551
4552/*
4553 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
4554 * that process accounting knows that this is a task in IO wait state.
4555 *
4556 * But don't do that if it is a deliberate, throttling IO wait (this task
4557 * has set its backing_dev_info: the queue against which it should throttle)
4558 */
4559void __sched io_schedule(void)
4560{
70b97a7f 4561 struct rq *rq = &__raw_get_cpu_var(runqueues);
1da177e4 4562
0ff92245 4563 delayacct_blkio_start();
1da177e4
LT
4564 atomic_inc(&rq->nr_iowait);
4565 schedule();
4566 atomic_dec(&rq->nr_iowait);
0ff92245 4567 delayacct_blkio_end();
1da177e4 4568}
1da177e4
LT
4569EXPORT_SYMBOL(io_schedule);
4570
4571long __sched io_schedule_timeout(long timeout)
4572{
70b97a7f 4573 struct rq *rq = &__raw_get_cpu_var(runqueues);
1da177e4
LT
4574 long ret;
4575
0ff92245 4576 delayacct_blkio_start();
1da177e4
LT
4577 atomic_inc(&rq->nr_iowait);
4578 ret = schedule_timeout(timeout);
4579 atomic_dec(&rq->nr_iowait);
0ff92245 4580 delayacct_blkio_end();
1da177e4
LT
4581 return ret;
4582}
4583
4584/**
4585 * sys_sched_get_priority_max - return maximum RT priority.
4586 * @policy: scheduling class.
4587 *
4588 * this syscall returns the maximum rt_priority that can be used
4589 * by a given scheduling class.
4590 */
4591asmlinkage long sys_sched_get_priority_max(int policy)
4592{
4593 int ret = -EINVAL;
4594
4595 switch (policy) {
4596 case SCHED_FIFO:
4597 case SCHED_RR:
4598 ret = MAX_USER_RT_PRIO-1;
4599 break;
4600 case SCHED_NORMAL:
b0a9499c 4601 case SCHED_BATCH:
1da177e4
LT
4602 ret = 0;
4603 break;
4604 }
4605 return ret;
4606}
4607
4608/**
4609 * sys_sched_get_priority_min - return minimum RT priority.
4610 * @policy: scheduling class.
4611 *
4612 * this syscall returns the minimum rt_priority that can be used
4613 * by a given scheduling class.
4614 */
4615asmlinkage long sys_sched_get_priority_min(int policy)
4616{
4617 int ret = -EINVAL;
4618
4619 switch (policy) {
4620 case SCHED_FIFO:
4621 case SCHED_RR:
4622 ret = 1;
4623 break;
4624 case SCHED_NORMAL:
b0a9499c 4625 case SCHED_BATCH:
1da177e4
LT
4626 ret = 0;
4627 }
4628 return ret;
4629}
4630
4631/**
4632 * sys_sched_rr_get_interval - return the default timeslice of a process.
4633 * @pid: pid of the process.
4634 * @interval: userspace pointer to the timeslice value.
4635 *
4636 * this syscall writes the default timeslice value of a given process
4637 * into the user-space timespec buffer. A value of '0' means infinity.
4638 */
4639asmlinkage
4640long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
4641{
36c8b586 4642 struct task_struct *p;
1da177e4
LT
4643 int retval = -EINVAL;
4644 struct timespec t;
1da177e4
LT
4645
4646 if (pid < 0)
4647 goto out_nounlock;
4648
4649 retval = -ESRCH;
4650 read_lock(&tasklist_lock);
4651 p = find_process_by_pid(pid);
4652 if (!p)
4653 goto out_unlock;
4654
4655 retval = security_task_getscheduler(p);
4656 if (retval)
4657 goto out_unlock;
4658
b78709cf 4659 jiffies_to_timespec(p->policy == SCHED_FIFO ?
1da177e4
LT
4660 0 : task_timeslice(p), &t);
4661 read_unlock(&tasklist_lock);
4662 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
4663out_nounlock:
4664 return retval;
4665out_unlock:
4666 read_unlock(&tasklist_lock);
4667 return retval;
4668}
4669
4670static inline struct task_struct *eldest_child(struct task_struct *p)
4671{
48f24c4d
IM
4672 if (list_empty(&p->children))
4673 return NULL;
1da177e4
LT
4674 return list_entry(p->children.next,struct task_struct,sibling);
4675}
4676
4677static inline struct task_struct *older_sibling(struct task_struct *p)
4678{
48f24c4d
IM
4679 if (p->sibling.prev==&p->parent->children)
4680 return NULL;
1da177e4
LT
4681 return list_entry(p->sibling.prev,struct task_struct,sibling);
4682}
4683
4684static inline struct task_struct *younger_sibling(struct task_struct *p)
4685{
48f24c4d
IM
4686 if (p->sibling.next==&p->parent->children)
4687 return NULL;
1da177e4
LT
4688 return list_entry(p->sibling.next,struct task_struct,sibling);
4689}
4690
2ed6e34f 4691static const char stat_nam[] = "RSDTtZX";
36c8b586
IM
4692
4693static void show_task(struct task_struct *p)
1da177e4 4694{
36c8b586 4695 struct task_struct *relative;
1da177e4 4696 unsigned long free = 0;
36c8b586 4697 unsigned state;
1da177e4 4698
1da177e4 4699 state = p->state ? __ffs(p->state) + 1 : 0;
2ed6e34f
AM
4700 printk("%-13.13s %c", p->comm,
4701 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
1da177e4
LT
4702#if (BITS_PER_LONG == 32)
4703 if (state == TASK_RUNNING)
4704 printk(" running ");
4705 else
4706 printk(" %08lX ", thread_saved_pc(p));
4707#else
4708 if (state == TASK_RUNNING)
4709 printk(" running task ");
4710 else
4711 printk(" %016lx ", thread_saved_pc(p));
4712#endif
4713#ifdef CONFIG_DEBUG_STACK_USAGE
4714 {
10ebffde 4715 unsigned long *n = end_of_stack(p);
1da177e4
LT
4716 while (!*n)
4717 n++;
10ebffde 4718 free = (unsigned long)n - (unsigned long)end_of_stack(p);
1da177e4
LT
4719 }
4720#endif
4721 printk("%5lu %5d %6d ", free, p->pid, p->parent->pid);
4722 if ((relative = eldest_child(p)))
4723 printk("%5d ", relative->pid);
4724 else
4725 printk(" ");
4726 if ((relative = younger_sibling(p)))
4727 printk("%7d", relative->pid);
4728 else
4729 printk(" ");
4730 if ((relative = older_sibling(p)))
4731 printk(" %5d", relative->pid);
4732 else
4733 printk(" ");
4734 if (!p->mm)
4735 printk(" (L-TLB)\n");
4736 else
4737 printk(" (NOTLB)\n");
4738
4739 if (state != TASK_RUNNING)
4740 show_stack(p, NULL);
4741}
4742
4743void show_state(void)
4744{
36c8b586 4745 struct task_struct *g, *p;
1da177e4
LT
4746
4747#if (BITS_PER_LONG == 32)
4748 printk("\n"
4749 " sibling\n");
4750 printk(" task PC pid father child younger older\n");
4751#else
4752 printk("\n"
4753 " sibling\n");
4754 printk(" task PC pid father child younger older\n");
4755#endif
4756 read_lock(&tasklist_lock);
4757 do_each_thread(g, p) {
4758 /*
4759 * reset the NMI-timeout, listing all files on a slow
4760 * console might take alot of time:
4761 */
4762 touch_nmi_watchdog();
4763 show_task(p);
4764 } while_each_thread(g, p);
4765
4766 read_unlock(&tasklist_lock);
9a11b49a 4767 debug_show_all_locks();
1da177e4
LT
4768}
4769
f340c0d1
IM
4770/**
4771 * init_idle - set up an idle thread for a given CPU
4772 * @idle: task in question
4773 * @cpu: cpu the idle task belongs to
4774 *
4775 * NOTE: this function does not set the idle thread's NEED_RESCHED
4776 * flag, to make booting more robust.
4777 */
36c8b586 4778void __devinit init_idle(struct task_struct *idle, int cpu)
1da177e4 4779{
70b97a7f 4780 struct rq *rq = cpu_rq(cpu);
1da177e4
LT
4781 unsigned long flags;
4782
81c29a85 4783 idle->timestamp = sched_clock();
1da177e4
LT
4784 idle->sleep_avg = 0;
4785 idle->array = NULL;
b29739f9 4786 idle->prio = idle->normal_prio = MAX_PRIO;
1da177e4
LT
4787 idle->state = TASK_RUNNING;
4788 idle->cpus_allowed = cpumask_of_cpu(cpu);
4789 set_task_cpu(idle, cpu);
4790
4791 spin_lock_irqsave(&rq->lock, flags);
4792 rq->curr = rq->idle = idle;
4866cde0
NP
4793#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
4794 idle->oncpu = 1;
4795#endif
1da177e4
LT
4796 spin_unlock_irqrestore(&rq->lock, flags);
4797
4798 /* Set the preempt count _outside_ the spinlocks! */
4799#if defined(CONFIG_PREEMPT) && !defined(CONFIG_PREEMPT_BKL)
a1261f54 4800 task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0);
1da177e4 4801#else
a1261f54 4802 task_thread_info(idle)->preempt_count = 0;
1da177e4
LT
4803#endif
4804}
4805
4806/*
4807 * In a system that switches off the HZ timer nohz_cpu_mask
4808 * indicates which cpus entered this state. This is used
4809 * in the rcu update to wait only for active cpus. For system
4810 * which do not switch off the HZ timer nohz_cpu_mask should
4811 * always be CPU_MASK_NONE.
4812 */
4813cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
4814
4815#ifdef CONFIG_SMP
4816/*
4817 * This is how migration works:
4818 *
70b97a7f 4819 * 1) we queue a struct migration_req structure in the source CPU's
1da177e4
LT
4820 * runqueue and wake up that CPU's migration thread.
4821 * 2) we down() the locked semaphore => thread blocks.
4822 * 3) migration thread wakes up (implicitly it forces the migrated
4823 * thread off the CPU)
4824 * 4) it gets the migration request and checks whether the migrated
4825 * task is still in the wrong runqueue.
4826 * 5) if it's in the wrong runqueue then the migration thread removes
4827 * it and puts it into the right queue.
4828 * 6) migration thread up()s the semaphore.
4829 * 7) we wake up and the migration is done.
4830 */
4831
4832/*
4833 * Change a given task's CPU affinity. Migrate the thread to a
4834 * proper CPU and schedule it away if the CPU it's executing on
4835 * is removed from the allowed bitmask.
4836 *
4837 * NOTE: the caller must have a valid reference to the task, the
4838 * task must not exit() & deallocate itself prematurely. The
4839 * call is not atomic; no spinlocks may be held.
4840 */
36c8b586 4841int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask)
1da177e4 4842{
70b97a7f 4843 struct migration_req req;
1da177e4 4844 unsigned long flags;
70b97a7f 4845 struct rq *rq;
48f24c4d 4846 int ret = 0;
1da177e4
LT
4847
4848 rq = task_rq_lock(p, &flags);
4849 if (!cpus_intersects(new_mask, cpu_online_map)) {
4850 ret = -EINVAL;
4851 goto out;
4852 }
4853
4854 p->cpus_allowed = new_mask;
4855 /* Can the task run on the task's current CPU? If so, we're done */
4856 if (cpu_isset(task_cpu(p), new_mask))
4857 goto out;
4858
4859 if (migrate_task(p, any_online_cpu(new_mask), &req)) {
4860 /* Need help from migration thread: drop lock and wait. */
4861 task_rq_unlock(rq, &flags);
4862 wake_up_process(rq->migration_thread);
4863 wait_for_completion(&req.done);
4864 tlb_migrate_finish(p->mm);
4865 return 0;
4866 }
4867out:
4868 task_rq_unlock(rq, &flags);
48f24c4d 4869
1da177e4
LT
4870 return ret;
4871}
1da177e4
LT
4872EXPORT_SYMBOL_GPL(set_cpus_allowed);
4873
4874/*
4875 * Move (not current) task off this cpu, onto dest cpu. We're doing
4876 * this because either it can't run here any more (set_cpus_allowed()
4877 * away from this CPU, or CPU going down), or because we're
4878 * attempting to rebalance this task on exec (sched_exec).
4879 *
4880 * So we race with normal scheduler movements, but that's OK, as long
4881 * as the task is no longer on this CPU.
efc30814
KK
4882 *
4883 * Returns non-zero if task was successfully migrated.
1da177e4 4884 */
efc30814 4885static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
1da177e4 4886{
70b97a7f 4887 struct rq *rq_dest, *rq_src;
efc30814 4888 int ret = 0;
1da177e4
LT
4889
4890 if (unlikely(cpu_is_offline(dest_cpu)))
efc30814 4891 return ret;
1da177e4
LT
4892
4893 rq_src = cpu_rq(src_cpu);
4894 rq_dest = cpu_rq(dest_cpu);
4895
4896 double_rq_lock(rq_src, rq_dest);
4897 /* Already moved. */
4898 if (task_cpu(p) != src_cpu)
4899 goto out;
4900 /* Affinity changed (again). */
4901 if (!cpu_isset(dest_cpu, p->cpus_allowed))
4902 goto out;
4903
4904 set_task_cpu(p, dest_cpu);
4905 if (p->array) {
4906 /*
4907 * Sync timestamp with rq_dest's before activating.
4908 * The same thing could be achieved by doing this step
4909 * afterwards, and pretending it was a local activate.
4910 * This way is cleaner and logically correct.
4911 */
4912 p->timestamp = p->timestamp - rq_src->timestamp_last_tick
4913 + rq_dest->timestamp_last_tick;
4914 deactivate_task(p, rq_src);
0a565f79 4915 __activate_task(p, rq_dest);
1da177e4
LT
4916 if (TASK_PREEMPTS_CURR(p, rq_dest))
4917 resched_task(rq_dest->curr);
4918 }
efc30814 4919 ret = 1;
1da177e4
LT
4920out:
4921 double_rq_unlock(rq_src, rq_dest);
efc30814 4922 return ret;
1da177e4
LT
4923}
4924
4925/*
4926 * migration_thread - this is a highprio system thread that performs
4927 * thread migration by bumping thread off CPU then 'pushing' onto
4928 * another runqueue.
4929 */
95cdf3b7 4930static int migration_thread(void *data)
1da177e4 4931{
1da177e4 4932 int cpu = (long)data;
70b97a7f 4933 struct rq *rq;
1da177e4
LT
4934
4935 rq = cpu_rq(cpu);
4936 BUG_ON(rq->migration_thread != current);
4937
4938 set_current_state(TASK_INTERRUPTIBLE);
4939 while (!kthread_should_stop()) {
70b97a7f 4940 struct migration_req *req;
1da177e4 4941 struct list_head *head;
1da177e4 4942
3e1d1d28 4943 try_to_freeze();
1da177e4
LT
4944
4945 spin_lock_irq(&rq->lock);
4946
4947 if (cpu_is_offline(cpu)) {
4948 spin_unlock_irq(&rq->lock);
4949 goto wait_to_die;
4950 }
4951
4952 if (rq->active_balance) {
4953 active_load_balance(rq, cpu);
4954 rq->active_balance = 0;
4955 }
4956
4957 head = &rq->migration_queue;
4958
4959 if (list_empty(head)) {
4960 spin_unlock_irq(&rq->lock);
4961 schedule();
4962 set_current_state(TASK_INTERRUPTIBLE);
4963 continue;
4964 }
70b97a7f 4965 req = list_entry(head->next, struct migration_req, list);
1da177e4
LT
4966 list_del_init(head->next);
4967
674311d5
NP
4968 spin_unlock(&rq->lock);
4969 __migrate_task(req->task, cpu, req->dest_cpu);
4970 local_irq_enable();
1da177e4
LT
4971
4972 complete(&req->done);
4973 }
4974 __set_current_state(TASK_RUNNING);
4975 return 0;
4976
4977wait_to_die:
4978 /* Wait for kthread_stop */
4979 set_current_state(TASK_INTERRUPTIBLE);
4980 while (!kthread_should_stop()) {
4981 schedule();
4982 set_current_state(TASK_INTERRUPTIBLE);
4983 }
4984 __set_current_state(TASK_RUNNING);
4985 return 0;
4986}
4987
4988#ifdef CONFIG_HOTPLUG_CPU
4989/* Figure out where task on dead CPU should go, use force if neccessary. */
48f24c4d 4990static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
1da177e4 4991{
efc30814 4992 unsigned long flags;
1da177e4 4993 cpumask_t mask;
70b97a7f
IM
4994 struct rq *rq;
4995 int dest_cpu;
1da177e4 4996
efc30814 4997restart:
1da177e4
LT
4998 /* On same node? */
4999 mask = node_to_cpumask(cpu_to_node(dead_cpu));
48f24c4d 5000 cpus_and(mask, mask, p->cpus_allowed);
1da177e4
LT
5001 dest_cpu = any_online_cpu(mask);
5002
5003 /* On any allowed CPU? */
5004 if (dest_cpu == NR_CPUS)
48f24c4d 5005 dest_cpu = any_online_cpu(p->cpus_allowed);
1da177e4
LT
5006
5007 /* No more Mr. Nice Guy. */
5008 if (dest_cpu == NR_CPUS) {
48f24c4d
IM
5009 rq = task_rq_lock(p, &flags);
5010 cpus_setall(p->cpus_allowed);
5011 dest_cpu = any_online_cpu(p->cpus_allowed);
efc30814 5012 task_rq_unlock(rq, &flags);
1da177e4
LT
5013
5014 /*
5015 * Don't tell them about moving exiting tasks or
5016 * kernel threads (both mm NULL), since they never
5017 * leave kernel.
5018 */
48f24c4d 5019 if (p->mm && printk_ratelimit())
1da177e4
LT
5020 printk(KERN_INFO "process %d (%s) no "
5021 "longer affine to cpu%d\n",
48f24c4d 5022 p->pid, p->comm, dead_cpu);
1da177e4 5023 }
48f24c4d 5024 if (!__migrate_task(p, dead_cpu, dest_cpu))
efc30814 5025 goto restart;
1da177e4
LT
5026}
5027
5028/*
5029 * While a dead CPU has no uninterruptible tasks queued at this point,
5030 * it might still have a nonzero ->nr_uninterruptible counter, because
5031 * for performance reasons the counter is not stricly tracking tasks to
5032 * their home CPUs. So we just add the counter to another CPU's counter,
5033 * to keep the global sum constant after CPU-down:
5034 */
70b97a7f 5035static void migrate_nr_uninterruptible(struct rq *rq_src)
1da177e4 5036{
70b97a7f 5037 struct rq *rq_dest = cpu_rq(any_online_cpu(CPU_MASK_ALL));
1da177e4
LT
5038 unsigned long flags;
5039
5040 local_irq_save(flags);
5041 double_rq_lock(rq_src, rq_dest);
5042 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
5043 rq_src->nr_uninterruptible = 0;
5044 double_rq_unlock(rq_src, rq_dest);
5045 local_irq_restore(flags);
5046}
5047
5048/* Run through task list and migrate tasks from the dead cpu. */
5049static void migrate_live_tasks(int src_cpu)
5050{
48f24c4d 5051 struct task_struct *p, *t;
1da177e4
LT
5052
5053 write_lock_irq(&tasklist_lock);
5054
48f24c4d
IM
5055 do_each_thread(t, p) {
5056 if (p == current)
1da177e4
LT
5057 continue;
5058
48f24c4d
IM
5059 if (task_cpu(p) == src_cpu)
5060 move_task_off_dead_cpu(src_cpu, p);
5061 } while_each_thread(t, p);
1da177e4
LT
5062
5063 write_unlock_irq(&tasklist_lock);
5064}
5065
5066/* Schedules idle task to be the next runnable task on current CPU.
5067 * It does so by boosting its priority to highest possible and adding it to
48f24c4d 5068 * the _front_ of the runqueue. Used by CPU offline code.
1da177e4
LT
5069 */
5070void sched_idle_next(void)
5071{
48f24c4d 5072 int this_cpu = smp_processor_id();
70b97a7f 5073 struct rq *rq = cpu_rq(this_cpu);
1da177e4
LT
5074 struct task_struct *p = rq->idle;
5075 unsigned long flags;
5076
5077 /* cpu has to be offline */
48f24c4d 5078 BUG_ON(cpu_online(this_cpu));
1da177e4 5079
48f24c4d
IM
5080 /*
5081 * Strictly not necessary since rest of the CPUs are stopped by now
5082 * and interrupts disabled on the current cpu.
1da177e4
LT
5083 */
5084 spin_lock_irqsave(&rq->lock, flags);
5085
5086 __setscheduler(p, SCHED_FIFO, MAX_RT_PRIO-1);
48f24c4d
IM
5087
5088 /* Add idle task to the _front_ of its priority queue: */
1da177e4
LT
5089 __activate_idle_task(p, rq);
5090
5091 spin_unlock_irqrestore(&rq->lock, flags);
5092}
5093
48f24c4d
IM
5094/*
5095 * Ensures that the idle task is using init_mm right before its cpu goes
1da177e4
LT
5096 * offline.
5097 */
5098void idle_task_exit(void)
5099{
5100 struct mm_struct *mm = current->active_mm;
5101
5102 BUG_ON(cpu_online(smp_processor_id()));
5103
5104 if (mm != &init_mm)
5105 switch_mm(mm, &init_mm, current);
5106 mmdrop(mm);
5107}
5108
36c8b586 5109static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
1da177e4 5110{
70b97a7f 5111 struct rq *rq = cpu_rq(dead_cpu);
1da177e4
LT
5112
5113 /* Must be exiting, otherwise would be on tasklist. */
48f24c4d 5114 BUG_ON(p->exit_state != EXIT_ZOMBIE && p->exit_state != EXIT_DEAD);
1da177e4
LT
5115
5116 /* Cannot have done final schedule yet: would have vanished. */
48f24c4d 5117 BUG_ON(p->flags & PF_DEAD);
1da177e4 5118
48f24c4d 5119 get_task_struct(p);
1da177e4
LT
5120
5121 /*
5122 * Drop lock around migration; if someone else moves it,
5123 * that's OK. No task can be added to this CPU, so iteration is
5124 * fine.
5125 */
5126 spin_unlock_irq(&rq->lock);
48f24c4d 5127 move_task_off_dead_cpu(dead_cpu, p);
1da177e4
LT
5128 spin_lock_irq(&rq->lock);
5129
48f24c4d 5130 put_task_struct(p);
1da177e4
LT
5131}
5132
5133/* release_task() removes task from tasklist, so we won't find dead tasks. */
5134static void migrate_dead_tasks(unsigned int dead_cpu)
5135{
70b97a7f 5136 struct rq *rq = cpu_rq(dead_cpu);
48f24c4d 5137 unsigned int arr, i;
1da177e4
LT
5138
5139 for (arr = 0; arr < 2; arr++) {
5140 for (i = 0; i < MAX_PRIO; i++) {
5141 struct list_head *list = &rq->arrays[arr].queue[i];
48f24c4d 5142
1da177e4 5143 while (!list_empty(list))
36c8b586
IM
5144 migrate_dead(dead_cpu, list_entry(list->next,
5145 struct task_struct, run_list));
1da177e4
LT
5146 }
5147 }
5148}
5149#endif /* CONFIG_HOTPLUG_CPU */
5150
5151/*
5152 * migration_call - callback that gets triggered when a CPU is added.
5153 * Here we can start up the necessary migration thread for the new CPU.
5154 */
48f24c4d
IM
5155static int __cpuinit
5156migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
1da177e4 5157{
1da177e4 5158 struct task_struct *p;
48f24c4d 5159 int cpu = (long)hcpu;
1da177e4 5160 unsigned long flags;
70b97a7f 5161 struct rq *rq;
1da177e4
LT
5162
5163 switch (action) {
5164 case CPU_UP_PREPARE:
5165 p = kthread_create(migration_thread, hcpu, "migration/%d",cpu);
5166 if (IS_ERR(p))
5167 return NOTIFY_BAD;
5168 p->flags |= PF_NOFREEZE;
5169 kthread_bind(p, cpu);
5170 /* Must be high prio: stop_machine expects to yield to it. */
5171 rq = task_rq_lock(p, &flags);
5172 __setscheduler(p, SCHED_FIFO, MAX_RT_PRIO-1);
5173 task_rq_unlock(rq, &flags);
5174 cpu_rq(cpu)->migration_thread = p;
5175 break;
48f24c4d 5176
1da177e4
LT
5177 case CPU_ONLINE:
5178 /* Strictly unneccessary, as first user will wake it. */
5179 wake_up_process(cpu_rq(cpu)->migration_thread);
5180 break;
48f24c4d 5181
1da177e4
LT
5182#ifdef CONFIG_HOTPLUG_CPU
5183 case CPU_UP_CANCELED:
fc75cdfa
HC
5184 if (!cpu_rq(cpu)->migration_thread)
5185 break;
1da177e4 5186 /* Unbind it from offline cpu so it can run. Fall thru. */
a4c4af7c
HC
5187 kthread_bind(cpu_rq(cpu)->migration_thread,
5188 any_online_cpu(cpu_online_map));
1da177e4
LT
5189 kthread_stop(cpu_rq(cpu)->migration_thread);
5190 cpu_rq(cpu)->migration_thread = NULL;
5191 break;
48f24c4d 5192
1da177e4
LT
5193 case CPU_DEAD:
5194 migrate_live_tasks(cpu);
5195 rq = cpu_rq(cpu);
5196 kthread_stop(rq->migration_thread);
5197 rq->migration_thread = NULL;
5198 /* Idle task back to normal (off runqueue, low prio) */
5199 rq = task_rq_lock(rq->idle, &flags);
5200 deactivate_task(rq->idle, rq);
5201 rq->idle->static_prio = MAX_PRIO;
5202 __setscheduler(rq->idle, SCHED_NORMAL, 0);
5203 migrate_dead_tasks(cpu);
5204 task_rq_unlock(rq, &flags);
5205 migrate_nr_uninterruptible(rq);
5206 BUG_ON(rq->nr_running != 0);
5207
5208 /* No need to migrate the tasks: it was best-effort if
5209 * they didn't do lock_cpu_hotplug(). Just wake up
5210 * the requestors. */
5211 spin_lock_irq(&rq->lock);
5212 while (!list_empty(&rq->migration_queue)) {
70b97a7f
IM
5213 struct migration_req *req;
5214
1da177e4 5215 req = list_entry(rq->migration_queue.next,
70b97a7f 5216 struct migration_req, list);
1da177e4
LT
5217 list_del_init(&req->list);
5218 complete(&req->done);
5219 }
5220 spin_unlock_irq(&rq->lock);
5221 break;
5222#endif
5223 }
5224 return NOTIFY_OK;
5225}
5226
5227/* Register at highest priority so that task migration (migrate_all_tasks)
5228 * happens before everything else.
5229 */
26c2143b 5230static struct notifier_block __cpuinitdata migration_notifier = {
1da177e4
LT
5231 .notifier_call = migration_call,
5232 .priority = 10
5233};
5234
5235int __init migration_init(void)
5236{
5237 void *cpu = (void *)(long)smp_processor_id();
48f24c4d
IM
5238
5239 /* Start one for the boot CPU: */
1da177e4
LT
5240 migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
5241 migration_call(&migration_notifier, CPU_ONLINE, cpu);
5242 register_cpu_notifier(&migration_notifier);
48f24c4d 5243
1da177e4
LT
5244 return 0;
5245}
5246#endif
5247
5248#ifdef CONFIG_SMP
1a20ff27 5249#undef SCHED_DOMAIN_DEBUG
1da177e4
LT
5250#ifdef SCHED_DOMAIN_DEBUG
5251static void sched_domain_debug(struct sched_domain *sd, int cpu)
5252{
5253 int level = 0;
5254
41c7ce9a
NP
5255 if (!sd) {
5256 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
5257 return;
5258 }
5259
1da177e4
LT
5260 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
5261
5262 do {
5263 int i;
5264 char str[NR_CPUS];
5265 struct sched_group *group = sd->groups;
5266 cpumask_t groupmask;
5267
5268 cpumask_scnprintf(str, NR_CPUS, sd->span);
5269 cpus_clear(groupmask);
5270
5271 printk(KERN_DEBUG);
5272 for (i = 0; i < level + 1; i++)
5273 printk(" ");
5274 printk("domain %d: ", level);
5275
5276 if (!(sd->flags & SD_LOAD_BALANCE)) {
5277 printk("does not load-balance\n");
5278 if (sd->parent)
5279 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain has parent");
5280 break;
5281 }
5282
5283 printk("span %s\n", str);
5284
5285 if (!cpu_isset(cpu, sd->span))
5286 printk(KERN_ERR "ERROR: domain->span does not contain CPU%d\n", cpu);
5287 if (!cpu_isset(cpu, group->cpumask))
5288 printk(KERN_ERR "ERROR: domain->groups does not contain CPU%d\n", cpu);
5289
5290 printk(KERN_DEBUG);
5291 for (i = 0; i < level + 2; i++)
5292 printk(" ");
5293 printk("groups:");
5294 do {
5295 if (!group) {
5296 printk("\n");
5297 printk(KERN_ERR "ERROR: group is NULL\n");
5298 break;
5299 }
5300
5301 if (!group->cpu_power) {
5302 printk("\n");
5303 printk(KERN_ERR "ERROR: domain->cpu_power not set\n");
5304 }
5305
5306 if (!cpus_weight(group->cpumask)) {
5307 printk("\n");
5308 printk(KERN_ERR "ERROR: empty group\n");
5309 }
5310
5311 if (cpus_intersects(groupmask, group->cpumask)) {
5312 printk("\n");
5313 printk(KERN_ERR "ERROR: repeated CPUs\n");
5314 }
5315
5316 cpus_or(groupmask, groupmask, group->cpumask);
5317
5318 cpumask_scnprintf(str, NR_CPUS, group->cpumask);
5319 printk(" %s", str);
5320
5321 group = group->next;
5322 } while (group != sd->groups);
5323 printk("\n");
5324
5325 if (!cpus_equal(sd->span, groupmask))
5326 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
5327
5328 level++;
5329 sd = sd->parent;
5330
5331 if (sd) {
5332 if (!cpus_subset(groupmask, sd->span))
5333 printk(KERN_ERR "ERROR: parent span is not a superset of domain->span\n");
5334 }
5335
5336 } while (sd);
5337}
5338#else
48f24c4d 5339# define sched_domain_debug(sd, cpu) do { } while (0)
1da177e4
LT
5340#endif
5341
1a20ff27 5342static int sd_degenerate(struct sched_domain *sd)
245af2c7
SS
5343{
5344 if (cpus_weight(sd->span) == 1)
5345 return 1;
5346
5347 /* Following flags need at least 2 groups */
5348 if (sd->flags & (SD_LOAD_BALANCE |
5349 SD_BALANCE_NEWIDLE |
5350 SD_BALANCE_FORK |
5351 SD_BALANCE_EXEC)) {
5352 if (sd->groups != sd->groups->next)
5353 return 0;
5354 }
5355
5356 /* Following flags don't use groups */
5357 if (sd->flags & (SD_WAKE_IDLE |
5358 SD_WAKE_AFFINE |
5359 SD_WAKE_BALANCE))
5360 return 0;
5361
5362 return 1;
5363}
5364
48f24c4d
IM
5365static int
5366sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
245af2c7
SS
5367{
5368 unsigned long cflags = sd->flags, pflags = parent->flags;
5369
5370 if (sd_degenerate(parent))
5371 return 1;
5372
5373 if (!cpus_equal(sd->span, parent->span))
5374 return 0;
5375
5376 /* Does parent contain flags not in child? */
5377 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
5378 if (cflags & SD_WAKE_AFFINE)
5379 pflags &= ~SD_WAKE_BALANCE;
5380 /* Flags needing groups don't count if only 1 group in parent */
5381 if (parent->groups == parent->groups->next) {
5382 pflags &= ~(SD_LOAD_BALANCE |
5383 SD_BALANCE_NEWIDLE |
5384 SD_BALANCE_FORK |
5385 SD_BALANCE_EXEC);
5386 }
5387 if (~cflags & pflags)
5388 return 0;
5389
5390 return 1;
5391}
5392
1da177e4
LT
5393/*
5394 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
5395 * hold the hotplug lock.
5396 */
9c1cfda2 5397static void cpu_attach_domain(struct sched_domain *sd, int cpu)
1da177e4 5398{
70b97a7f 5399 struct rq *rq = cpu_rq(cpu);
245af2c7
SS
5400 struct sched_domain *tmp;
5401
5402 /* Remove the sched domains which do not contribute to scheduling. */
5403 for (tmp = sd; tmp; tmp = tmp->parent) {
5404 struct sched_domain *parent = tmp->parent;
5405 if (!parent)
5406 break;
5407 if (sd_parent_degenerate(tmp, parent))
5408 tmp->parent = parent->parent;
5409 }
5410
5411 if (sd && sd_degenerate(sd))
5412 sd = sd->parent;
1da177e4
LT
5413
5414 sched_domain_debug(sd, cpu);
5415
674311d5 5416 rcu_assign_pointer(rq->sd, sd);
1da177e4
LT
5417}
5418
5419/* cpus with isolated domains */
9c1cfda2 5420static cpumask_t __devinitdata cpu_isolated_map = CPU_MASK_NONE;
1da177e4
LT
5421
5422/* Setup the mask of cpus configured for isolated domains */
5423static int __init isolated_cpu_setup(char *str)
5424{
5425 int ints[NR_CPUS], i;
5426
5427 str = get_options(str, ARRAY_SIZE(ints), ints);
5428 cpus_clear(cpu_isolated_map);
5429 for (i = 1; i <= ints[0]; i++)
5430 if (ints[i] < NR_CPUS)
5431 cpu_set(ints[i], cpu_isolated_map);
5432 return 1;
5433}
5434
5435__setup ("isolcpus=", isolated_cpu_setup);
5436
5437/*
5438 * init_sched_build_groups takes an array of groups, the cpumask we wish
5439 * to span, and a pointer to a function which identifies what group a CPU
5440 * belongs to. The return value of group_fn must be a valid index into the
5441 * groups[] array, and must be >= 0 and < NR_CPUS (due to the fact that we
5442 * keep track of groups covered with a cpumask_t).
5443 *
5444 * init_sched_build_groups will build a circular linked list of the groups
5445 * covered by the given span, and will set each group's ->cpumask correctly,
5446 * and ->cpu_power to 0.
5447 */
9c1cfda2
JH
5448static void init_sched_build_groups(struct sched_group groups[], cpumask_t span,
5449 int (*group_fn)(int cpu))
1da177e4
LT
5450{
5451 struct sched_group *first = NULL, *last = NULL;
5452 cpumask_t covered = CPU_MASK_NONE;
5453 int i;
5454
5455 for_each_cpu_mask(i, span) {
5456 int group = group_fn(i);
5457 struct sched_group *sg = &groups[group];
5458 int j;
5459
5460 if (cpu_isset(i, covered))
5461 continue;
5462
5463 sg->cpumask = CPU_MASK_NONE;
5464 sg->cpu_power = 0;
5465
5466 for_each_cpu_mask(j, span) {
5467 if (group_fn(j) != group)
5468 continue;
5469
5470 cpu_set(j, covered);
5471 cpu_set(j, sg->cpumask);
5472 }
5473 if (!first)
5474 first = sg;
5475 if (last)
5476 last->next = sg;
5477 last = sg;
5478 }
5479 last->next = first;
5480}
5481
9c1cfda2 5482#define SD_NODES_PER_DOMAIN 16
1da177e4 5483
198e2f18 5484/*
5485 * Self-tuning task migration cost measurement between source and target CPUs.
5486 *
5487 * This is done by measuring the cost of manipulating buffers of varying
5488 * sizes. For a given buffer-size here are the steps that are taken:
5489 *
5490 * 1) the source CPU reads+dirties a shared buffer
5491 * 2) the target CPU reads+dirties the same shared buffer
5492 *
5493 * We measure how long they take, in the following 4 scenarios:
5494 *
5495 * - source: CPU1, target: CPU2 | cost1
5496 * - source: CPU2, target: CPU1 | cost2
5497 * - source: CPU1, target: CPU1 | cost3
5498 * - source: CPU2, target: CPU2 | cost4
5499 *
5500 * We then calculate the cost3+cost4-cost1-cost2 difference - this is
5501 * the cost of migration.
5502 *
5503 * We then start off from a small buffer-size and iterate up to larger
5504 * buffer sizes, in 5% steps - measuring each buffer-size separately, and
5505 * doing a maximum search for the cost. (The maximum cost for a migration
5506 * normally occurs when the working set size is around the effective cache
5507 * size.)
5508 */
5509#define SEARCH_SCOPE 2
5510#define MIN_CACHE_SIZE (64*1024U)
5511#define DEFAULT_CACHE_SIZE (5*1024*1024U)
70b4d63e 5512#define ITERATIONS 1
198e2f18 5513#define SIZE_THRESH 130
5514#define COST_THRESH 130
5515
5516/*
5517 * The migration cost is a function of 'domain distance'. Domain
5518 * distance is the number of steps a CPU has to iterate down its
5519 * domain tree to share a domain with the other CPU. The farther
5520 * two CPUs are from each other, the larger the distance gets.
5521 *
5522 * Note that we use the distance only to cache measurement results,
5523 * the distance value is not used numerically otherwise. When two
5524 * CPUs have the same distance it is assumed that the migration
5525 * cost is the same. (this is a simplification but quite practical)
5526 */
5527#define MAX_DOMAIN_DISTANCE 32
5528
5529static unsigned long long migration_cost[MAX_DOMAIN_DISTANCE] =
4bbf39c2
IM
5530 { [ 0 ... MAX_DOMAIN_DISTANCE-1 ] =
5531/*
5532 * Architectures may override the migration cost and thus avoid
5533 * boot-time calibration. Unit is nanoseconds. Mostly useful for
5534 * virtualized hardware:
5535 */
5536#ifdef CONFIG_DEFAULT_MIGRATION_COST
5537 CONFIG_DEFAULT_MIGRATION_COST
5538#else
5539 -1LL
5540#endif
5541};
198e2f18 5542
5543/*
5544 * Allow override of migration cost - in units of microseconds.
5545 * E.g. migration_cost=1000,2000,3000 will set up a level-1 cost
5546 * of 1 msec, level-2 cost of 2 msecs and level3 cost of 3 msecs:
5547 */
5548static int __init migration_cost_setup(char *str)
5549{
5550 int ints[MAX_DOMAIN_DISTANCE+1], i;
5551
5552 str = get_options(str, ARRAY_SIZE(ints), ints);
5553
5554 printk("#ints: %d\n", ints[0]);
5555 for (i = 1; i <= ints[0]; i++) {
5556 migration_cost[i-1] = (unsigned long long)ints[i]*1000;
5557 printk("migration_cost[%d]: %Ld\n", i-1, migration_cost[i-1]);
5558 }
5559 return 1;
5560}
5561
5562__setup ("migration_cost=", migration_cost_setup);
5563
5564/*
5565 * Global multiplier (divisor) for migration-cutoff values,
5566 * in percentiles. E.g. use a value of 150 to get 1.5 times
5567 * longer cache-hot cutoff times.
5568 *
5569 * (We scale it from 100 to 128 to long long handling easier.)
5570 */
5571
5572#define MIGRATION_FACTOR_SCALE 128
5573
5574static unsigned int migration_factor = MIGRATION_FACTOR_SCALE;
5575
5576static int __init setup_migration_factor(char *str)
5577{
5578 get_option(&str, &migration_factor);
5579 migration_factor = migration_factor * MIGRATION_FACTOR_SCALE / 100;
5580 return 1;
5581}
5582
5583__setup("migration_factor=", setup_migration_factor);
5584
5585/*
5586 * Estimated distance of two CPUs, measured via the number of domains
5587 * we have to pass for the two CPUs to be in the same span:
5588 */
5589static unsigned long domain_distance(int cpu1, int cpu2)
5590{
5591 unsigned long distance = 0;
5592 struct sched_domain *sd;
5593
5594 for_each_domain(cpu1, sd) {
5595 WARN_ON(!cpu_isset(cpu1, sd->span));
5596 if (cpu_isset(cpu2, sd->span))
5597 return distance;
5598 distance++;
5599 }
5600 if (distance >= MAX_DOMAIN_DISTANCE) {
5601 WARN_ON(1);
5602 distance = MAX_DOMAIN_DISTANCE-1;
5603 }
5604
5605 return distance;
5606}
5607
5608static unsigned int migration_debug;
5609
5610static int __init setup_migration_debug(char *str)
5611{
5612 get_option(&str, &migration_debug);
5613 return 1;
5614}
5615
5616__setup("migration_debug=", setup_migration_debug);
5617
5618/*
5619 * Maximum cache-size that the scheduler should try to measure.
5620 * Architectures with larger caches should tune this up during
5621 * bootup. Gets used in the domain-setup code (i.e. during SMP
5622 * bootup).
5623 */
5624unsigned int max_cache_size;
5625
5626static int __init setup_max_cache_size(char *str)
5627{
5628 get_option(&str, &max_cache_size);
5629 return 1;
5630}
5631
5632__setup("max_cache_size=", setup_max_cache_size);
5633
5634/*
5635 * Dirty a big buffer in a hard-to-predict (for the L2 cache) way. This
5636 * is the operation that is timed, so we try to generate unpredictable
5637 * cachemisses that still end up filling the L2 cache:
5638 */
5639static void touch_cache(void *__cache, unsigned long __size)
5640{
5641 unsigned long size = __size/sizeof(long), chunk1 = size/3,
5642 chunk2 = 2*size/3;
5643 unsigned long *cache = __cache;
5644 int i;
5645
5646 for (i = 0; i < size/6; i += 8) {
5647 switch (i % 6) {
5648 case 0: cache[i]++;
5649 case 1: cache[size-1-i]++;
5650 case 2: cache[chunk1-i]++;
5651 case 3: cache[chunk1+i]++;
5652 case 4: cache[chunk2-i]++;
5653 case 5: cache[chunk2+i]++;
5654 }
5655 }
5656}
5657
5658/*
5659 * Measure the cache-cost of one task migration. Returns in units of nsec.
5660 */
48f24c4d
IM
5661static unsigned long long
5662measure_one(void *cache, unsigned long size, int source, int target)
198e2f18 5663{
5664 cpumask_t mask, saved_mask;
5665 unsigned long long t0, t1, t2, t3, cost;
5666
5667 saved_mask = current->cpus_allowed;
5668
5669 /*
5670 * Flush source caches to RAM and invalidate them:
5671 */
5672 sched_cacheflush();
5673
5674 /*
5675 * Migrate to the source CPU:
5676 */
5677 mask = cpumask_of_cpu(source);
5678 set_cpus_allowed(current, mask);
5679 WARN_ON(smp_processor_id() != source);
5680
5681 /*
5682 * Dirty the working set:
5683 */
5684 t0 = sched_clock();
5685 touch_cache(cache, size);
5686 t1 = sched_clock();
5687
5688 /*
5689 * Migrate to the target CPU, dirty the L2 cache and access
5690 * the shared buffer. (which represents the working set
5691 * of a migrated task.)
5692 */
5693 mask = cpumask_of_cpu(target);
5694 set_cpus_allowed(current, mask);
5695 WARN_ON(smp_processor_id() != target);
5696
5697 t2 = sched_clock();
5698 touch_cache(cache, size);
5699 t3 = sched_clock();
5700
5701 cost = t1-t0 + t3-t2;
5702
5703 if (migration_debug >= 2)
5704 printk("[%d->%d]: %8Ld %8Ld %8Ld => %10Ld.\n",
5705 source, target, t1-t0, t1-t0, t3-t2, cost);
5706 /*
5707 * Flush target caches to RAM and invalidate them:
5708 */
5709 sched_cacheflush();
5710
5711 set_cpus_allowed(current, saved_mask);
5712
5713 return cost;
5714}
5715
5716/*
5717 * Measure a series of task migrations and return the average
5718 * result. Since this code runs early during bootup the system
5719 * is 'undisturbed' and the average latency makes sense.
5720 *
5721 * The algorithm in essence auto-detects the relevant cache-size,
5722 * so it will properly detect different cachesizes for different
5723 * cache-hierarchies, depending on how the CPUs are connected.
5724 *
5725 * Architectures can prime the upper limit of the search range via
5726 * max_cache_size, otherwise the search range defaults to 20MB...64K.
5727 */
5728static unsigned long long
5729measure_cost(int cpu1, int cpu2, void *cache, unsigned int size)
5730{
5731 unsigned long long cost1, cost2;
5732 int i;
5733
5734 /*
5735 * Measure the migration cost of 'size' bytes, over an
5736 * average of 10 runs:
5737 *
5738 * (We perturb the cache size by a small (0..4k)
5739 * value to compensate size/alignment related artifacts.
5740 * We also subtract the cost of the operation done on
5741 * the same CPU.)
5742 */
5743 cost1 = 0;
5744
5745 /*
5746 * dry run, to make sure we start off cache-cold on cpu1,
5747 * and to get any vmalloc pagefaults in advance:
5748 */
5749 measure_one(cache, size, cpu1, cpu2);
5750 for (i = 0; i < ITERATIONS; i++)
5751 cost1 += measure_one(cache, size - i*1024, cpu1, cpu2);
5752
5753 measure_one(cache, size, cpu2, cpu1);
5754 for (i = 0; i < ITERATIONS; i++)
5755 cost1 += measure_one(cache, size - i*1024, cpu2, cpu1);
5756
5757 /*
5758 * (We measure the non-migrating [cached] cost on both
5759 * cpu1 and cpu2, to handle CPUs with different speeds)
5760 */
5761 cost2 = 0;
5762
5763 measure_one(cache, size, cpu1, cpu1);
5764 for (i = 0; i < ITERATIONS; i++)
5765 cost2 += measure_one(cache, size - i*1024, cpu1, cpu1);
5766
5767 measure_one(cache, size, cpu2, cpu2);
5768 for (i = 0; i < ITERATIONS; i++)
5769 cost2 += measure_one(cache, size - i*1024, cpu2, cpu2);
5770
5771 /*
5772 * Get the per-iteration migration cost:
5773 */
5774 do_div(cost1, 2*ITERATIONS);
5775 do_div(cost2, 2*ITERATIONS);
5776
5777 return cost1 - cost2;
5778}
5779
5780static unsigned long long measure_migration_cost(int cpu1, int cpu2)
5781{
5782 unsigned long long max_cost = 0, fluct = 0, avg_fluct = 0;
5783 unsigned int max_size, size, size_found = 0;
5784 long long cost = 0, prev_cost;
5785 void *cache;
5786
5787 /*
5788 * Search from max_cache_size*5 down to 64K - the real relevant
5789 * cachesize has to lie somewhere inbetween.
5790 */
5791 if (max_cache_size) {
5792 max_size = max(max_cache_size * SEARCH_SCOPE, MIN_CACHE_SIZE);
5793 size = max(max_cache_size / SEARCH_SCOPE, MIN_CACHE_SIZE);
5794 } else {
5795 /*
5796 * Since we have no estimation about the relevant
5797 * search range
5798 */
5799 max_size = DEFAULT_CACHE_SIZE * SEARCH_SCOPE;
5800 size = MIN_CACHE_SIZE;
5801 }
5802
5803 if (!cpu_online(cpu1) || !cpu_online(cpu2)) {
5804 printk("cpu %d and %d not both online!\n", cpu1, cpu2);
5805 return 0;
5806 }
5807
5808 /*
5809 * Allocate the working set:
5810 */
5811 cache = vmalloc(max_size);
5812 if (!cache) {
5813 printk("could not vmalloc %d bytes for cache!\n", 2*max_size);
2ed6e34f 5814 return 1000000; /* return 1 msec on very small boxen */
198e2f18 5815 }
5816
5817 while (size <= max_size) {
5818 prev_cost = cost;
5819 cost = measure_cost(cpu1, cpu2, cache, size);
5820
5821 /*
5822 * Update the max:
5823 */
5824 if (cost > 0) {
5825 if (max_cost < cost) {
5826 max_cost = cost;
5827 size_found = size;
5828 }
5829 }
5830 /*
5831 * Calculate average fluctuation, we use this to prevent
5832 * noise from triggering an early break out of the loop:
5833 */
5834 fluct = abs(cost - prev_cost);
5835 avg_fluct = (avg_fluct + fluct)/2;
5836
5837 if (migration_debug)
5838 printk("-> [%d][%d][%7d] %3ld.%ld [%3ld.%ld] (%ld): (%8Ld %8Ld)\n",
5839 cpu1, cpu2, size,
5840 (long)cost / 1000000,
5841 ((long)cost / 100000) % 10,
5842 (long)max_cost / 1000000,
5843 ((long)max_cost / 100000) % 10,
5844 domain_distance(cpu1, cpu2),
5845 cost, avg_fluct);
5846
5847 /*
5848 * If we iterated at least 20% past the previous maximum,
5849 * and the cost has dropped by more than 20% already,
5850 * (taking fluctuations into account) then we assume to
5851 * have found the maximum and break out of the loop early:
5852 */
5853 if (size_found && (size*100 > size_found*SIZE_THRESH))
5854 if (cost+avg_fluct <= 0 ||
5855 max_cost*100 > (cost+avg_fluct)*COST_THRESH) {
5856
5857 if (migration_debug)
5858 printk("-> found max.\n");
5859 break;
5860 }
5861 /*
70b4d63e 5862 * Increase the cachesize in 10% steps:
198e2f18 5863 */
70b4d63e 5864 size = size * 10 / 9;
198e2f18 5865 }
5866
5867 if (migration_debug)
5868 printk("[%d][%d] working set size found: %d, cost: %Ld\n",
5869 cpu1, cpu2, size_found, max_cost);
5870
5871 vfree(cache);
5872
5873 /*
5874 * A task is considered 'cache cold' if at least 2 times
5875 * the worst-case cost of migration has passed.
5876 *
5877 * (this limit is only listened to if the load-balancing
5878 * situation is 'nice' - if there is a large imbalance we
5879 * ignore it for the sake of CPU utilization and
5880 * processing fairness.)
5881 */
5882 return 2 * max_cost * migration_factor / MIGRATION_FACTOR_SCALE;
5883}
5884
5885static void calibrate_migration_costs(const cpumask_t *cpu_map)
5886{
5887 int cpu1 = -1, cpu2 = -1, cpu, orig_cpu = raw_smp_processor_id();
5888 unsigned long j0, j1, distance, max_distance = 0;
5889 struct sched_domain *sd;
5890
5891 j0 = jiffies;
5892
5893 /*
5894 * First pass - calculate the cacheflush times:
5895 */
5896 for_each_cpu_mask(cpu1, *cpu_map) {
5897 for_each_cpu_mask(cpu2, *cpu_map) {
5898 if (cpu1 == cpu2)
5899 continue;
5900 distance = domain_distance(cpu1, cpu2);
5901 max_distance = max(max_distance, distance);
5902 /*
5903 * No result cached yet?
5904 */
5905 if (migration_cost[distance] == -1LL)
5906 migration_cost[distance] =
5907 measure_migration_cost(cpu1, cpu2);
5908 }
5909 }
5910 /*
5911 * Second pass - update the sched domain hierarchy with
5912 * the new cache-hot-time estimations:
5913 */
5914 for_each_cpu_mask(cpu, *cpu_map) {
5915 distance = 0;
5916 for_each_domain(cpu, sd) {
5917 sd->cache_hot_time = migration_cost[distance];
5918 distance++;
5919 }
5920 }
5921 /*
5922 * Print the matrix:
5923 */
5924 if (migration_debug)
5925 printk("migration: max_cache_size: %d, cpu: %d MHz:\n",
5926 max_cache_size,
5927#ifdef CONFIG_X86
5928 cpu_khz/1000
5929#else
5930 -1
5931#endif
5932 );
bd576c95
CE
5933 if (system_state == SYSTEM_BOOTING) {
5934 printk("migration_cost=");
5935 for (distance = 0; distance <= max_distance; distance++) {
5936 if (distance)
5937 printk(",");
5938 printk("%ld", (long)migration_cost[distance] / 1000);
5939 }
5940 printk("\n");
198e2f18 5941 }
198e2f18 5942 j1 = jiffies;
5943 if (migration_debug)
5944 printk("migration: %ld seconds\n", (j1-j0)/HZ);
5945
5946 /*
5947 * Move back to the original CPU. NUMA-Q gets confused
5948 * if we migrate to another quad during bootup.
5949 */
5950 if (raw_smp_processor_id() != orig_cpu) {
5951 cpumask_t mask = cpumask_of_cpu(orig_cpu),
5952 saved_mask = current->cpus_allowed;
5953
5954 set_cpus_allowed(current, mask);
5955 set_cpus_allowed(current, saved_mask);
5956 }
5957}
5958
9c1cfda2 5959#ifdef CONFIG_NUMA
198e2f18 5960
9c1cfda2
JH
5961/**
5962 * find_next_best_node - find the next node to include in a sched_domain
5963 * @node: node whose sched_domain we're building
5964 * @used_nodes: nodes already in the sched_domain
5965 *
5966 * Find the next node to include in a given scheduling domain. Simply
5967 * finds the closest node not already in the @used_nodes map.
5968 *
5969 * Should use nodemask_t.
5970 */
5971static int find_next_best_node(int node, unsigned long *used_nodes)
5972{
5973 int i, n, val, min_val, best_node = 0;
5974
5975 min_val = INT_MAX;
5976
5977 for (i = 0; i < MAX_NUMNODES; i++) {
5978 /* Start at @node */
5979 n = (node + i) % MAX_NUMNODES;
5980
5981 if (!nr_cpus_node(n))
5982 continue;
5983
5984 /* Skip already used nodes */
5985 if (test_bit(n, used_nodes))
5986 continue;
5987
5988 /* Simple min distance search */
5989 val = node_distance(node, n);
5990
5991 if (val < min_val) {
5992 min_val = val;
5993 best_node = n;
5994 }
5995 }
5996
5997 set_bit(best_node, used_nodes);
5998 return best_node;
5999}
6000
6001/**
6002 * sched_domain_node_span - get a cpumask for a node's sched_domain
6003 * @node: node whose cpumask we're constructing
6004 * @size: number of nodes to include in this span
6005 *
6006 * Given a node, construct a good cpumask for its sched_domain to span. It
6007 * should be one that prevents unnecessary balancing, but also spreads tasks
6008 * out optimally.
6009 */
6010static cpumask_t sched_domain_node_span(int node)
6011{
9c1cfda2 6012 DECLARE_BITMAP(used_nodes, MAX_NUMNODES);
48f24c4d
IM
6013 cpumask_t span, nodemask;
6014 int i;
9c1cfda2
JH
6015
6016 cpus_clear(span);
6017 bitmap_zero(used_nodes, MAX_NUMNODES);
6018
6019 nodemask = node_to_cpumask(node);
6020 cpus_or(span, span, nodemask);
6021 set_bit(node, used_nodes);
6022
6023 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
6024 int next_node = find_next_best_node(node, used_nodes);
48f24c4d 6025
9c1cfda2
JH
6026 nodemask = node_to_cpumask(next_node);
6027 cpus_or(span, span, nodemask);
6028 }
6029
6030 return span;
6031}
6032#endif
6033
5c45bf27 6034int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
48f24c4d 6035
9c1cfda2 6036/*
48f24c4d 6037 * SMT sched-domains:
9c1cfda2 6038 */
1da177e4
LT
6039#ifdef CONFIG_SCHED_SMT
6040static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
6041static struct sched_group sched_group_cpus[NR_CPUS];
48f24c4d 6042
1a20ff27 6043static int cpu_to_cpu_group(int cpu)
1da177e4
LT
6044{
6045 return cpu;
6046}
6047#endif
6048
48f24c4d
IM
6049/*
6050 * multi-core sched-domains:
6051 */
1e9f28fa
SS
6052#ifdef CONFIG_SCHED_MC
6053static DEFINE_PER_CPU(struct sched_domain, core_domains);
36938169 6054static struct sched_group *sched_group_core_bycpu[NR_CPUS];
1e9f28fa
SS
6055#endif
6056
6057#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
6058static int cpu_to_core_group(int cpu)
6059{
6060 return first_cpu(cpu_sibling_map[cpu]);
6061}
6062#elif defined(CONFIG_SCHED_MC)
6063static int cpu_to_core_group(int cpu)
6064{
6065 return cpu;
6066}
6067#endif
6068
1da177e4 6069static DEFINE_PER_CPU(struct sched_domain, phys_domains);
36938169 6070static struct sched_group *sched_group_phys_bycpu[NR_CPUS];
48f24c4d 6071
1a20ff27 6072static int cpu_to_phys_group(int cpu)
1da177e4 6073{
48f24c4d 6074#ifdef CONFIG_SCHED_MC
1e9f28fa
SS
6075 cpumask_t mask = cpu_coregroup_map(cpu);
6076 return first_cpu(mask);
6077#elif defined(CONFIG_SCHED_SMT)
1da177e4
LT
6078 return first_cpu(cpu_sibling_map[cpu]);
6079#else
6080 return cpu;
6081#endif
6082}
6083
6084#ifdef CONFIG_NUMA
1da177e4 6085/*
9c1cfda2
JH
6086 * The init_sched_build_groups can't handle what we want to do with node
6087 * groups, so roll our own. Now each node has its own list of groups which
6088 * gets dynamically allocated.
1da177e4 6089 */
9c1cfda2 6090static DEFINE_PER_CPU(struct sched_domain, node_domains);
d1b55138 6091static struct sched_group **sched_group_nodes_bycpu[NR_CPUS];
1da177e4 6092
9c1cfda2 6093static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
d1b55138 6094static struct sched_group *sched_group_allnodes_bycpu[NR_CPUS];
9c1cfda2
JH
6095
6096static int cpu_to_allnodes_group(int cpu)
6097{
6098 return cpu_to_node(cpu);
1da177e4 6099}
08069033
SS
6100static void init_numa_sched_groups_power(struct sched_group *group_head)
6101{
6102 struct sched_group *sg = group_head;
6103 int j;
6104
6105 if (!sg)
6106 return;
6107next_sg:
6108 for_each_cpu_mask(j, sg->cpumask) {
6109 struct sched_domain *sd;
6110
6111 sd = &per_cpu(phys_domains, j);
6112 if (j != first_cpu(sd->groups->cpumask)) {
6113 /*
6114 * Only add "power" once for each
6115 * physical package.
6116 */
6117 continue;
6118 }
6119
6120 sg->cpu_power += sd->groups->cpu_power;
6121 }
6122 sg = sg->next;
6123 if (sg != group_head)
6124 goto next_sg;
6125}
1da177e4
LT
6126#endif
6127
51888ca2
SV
6128/* Free memory allocated for various sched_group structures */
6129static void free_sched_groups(const cpumask_t *cpu_map)
6130{
36938169 6131 int cpu;
51888ca2
SV
6132#ifdef CONFIG_NUMA
6133 int i;
51888ca2
SV
6134
6135 for_each_cpu_mask(cpu, *cpu_map) {
6136 struct sched_group *sched_group_allnodes
6137 = sched_group_allnodes_bycpu[cpu];
6138 struct sched_group **sched_group_nodes
6139 = sched_group_nodes_bycpu[cpu];
6140
6141 if (sched_group_allnodes) {
6142 kfree(sched_group_allnodes);
6143 sched_group_allnodes_bycpu[cpu] = NULL;
6144 }
6145
6146 if (!sched_group_nodes)
6147 continue;
6148
6149 for (i = 0; i < MAX_NUMNODES; i++) {
6150 cpumask_t nodemask = node_to_cpumask(i);
6151 struct sched_group *oldsg, *sg = sched_group_nodes[i];
6152
6153 cpus_and(nodemask, nodemask, *cpu_map);
6154 if (cpus_empty(nodemask))
6155 continue;
6156
6157 if (sg == NULL)
6158 continue;
6159 sg = sg->next;
6160next_sg:
6161 oldsg = sg;
6162 sg = sg->next;
6163 kfree(oldsg);
6164 if (oldsg != sched_group_nodes[i])
6165 goto next_sg;
6166 }
6167 kfree(sched_group_nodes);
6168 sched_group_nodes_bycpu[cpu] = NULL;
6169 }
6170#endif
36938169
SV
6171 for_each_cpu_mask(cpu, *cpu_map) {
6172 if (sched_group_phys_bycpu[cpu]) {
6173 kfree(sched_group_phys_bycpu[cpu]);
6174 sched_group_phys_bycpu[cpu] = NULL;
6175 }
6176#ifdef CONFIG_SCHED_MC
6177 if (sched_group_core_bycpu[cpu]) {
6178 kfree(sched_group_core_bycpu[cpu]);
6179 sched_group_core_bycpu[cpu] = NULL;
6180 }
6181#endif
6182 }
51888ca2
SV
6183}
6184
1da177e4 6185/*
1a20ff27
DG
6186 * Build sched domains for a given set of cpus and attach the sched domains
6187 * to the individual cpus
1da177e4 6188 */
51888ca2 6189static int build_sched_domains(const cpumask_t *cpu_map)
1da177e4
LT
6190{
6191 int i;
36938169
SV
6192 struct sched_group *sched_group_phys = NULL;
6193#ifdef CONFIG_SCHED_MC
6194 struct sched_group *sched_group_core = NULL;
6195#endif
d1b55138
JH
6196#ifdef CONFIG_NUMA
6197 struct sched_group **sched_group_nodes = NULL;
6198 struct sched_group *sched_group_allnodes = NULL;
6199
6200 /*
6201 * Allocate the per-node list of sched groups
6202 */
51888ca2 6203 sched_group_nodes = kzalloc(sizeof(struct sched_group*)*MAX_NUMNODES,
d3a5aa98 6204 GFP_KERNEL);
d1b55138
JH
6205 if (!sched_group_nodes) {
6206 printk(KERN_WARNING "Can not alloc sched group node list\n");
51888ca2 6207 return -ENOMEM;
d1b55138
JH
6208 }
6209 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
6210#endif
1da177e4
LT
6211
6212 /*
1a20ff27 6213 * Set up domains for cpus specified by the cpu_map.
1da177e4 6214 */
1a20ff27 6215 for_each_cpu_mask(i, *cpu_map) {
1da177e4
LT
6216 int group;
6217 struct sched_domain *sd = NULL, *p;
6218 cpumask_t nodemask = node_to_cpumask(cpu_to_node(i));
6219
1a20ff27 6220 cpus_and(nodemask, nodemask, *cpu_map);
1da177e4
LT
6221
6222#ifdef CONFIG_NUMA
d1b55138 6223 if (cpus_weight(*cpu_map)
9c1cfda2 6224 > SD_NODES_PER_DOMAIN*cpus_weight(nodemask)) {
d1b55138
JH
6225 if (!sched_group_allnodes) {
6226 sched_group_allnodes
6227 = kmalloc(sizeof(struct sched_group)
6228 * MAX_NUMNODES,
6229 GFP_KERNEL);
6230 if (!sched_group_allnodes) {
6231 printk(KERN_WARNING
6232 "Can not alloc allnodes sched group\n");
51888ca2 6233 goto error;
d1b55138
JH
6234 }
6235 sched_group_allnodes_bycpu[i]
6236 = sched_group_allnodes;
6237 }
9c1cfda2
JH
6238 sd = &per_cpu(allnodes_domains, i);
6239 *sd = SD_ALLNODES_INIT;
6240 sd->span = *cpu_map;
6241 group = cpu_to_allnodes_group(i);
6242 sd->groups = &sched_group_allnodes[group];
6243 p = sd;
6244 } else
6245 p = NULL;
6246
1da177e4 6247 sd = &per_cpu(node_domains, i);
1da177e4 6248 *sd = SD_NODE_INIT;
9c1cfda2
JH
6249 sd->span = sched_domain_node_span(cpu_to_node(i));
6250 sd->parent = p;
6251 cpus_and(sd->span, sd->span, *cpu_map);
1da177e4
LT
6252#endif
6253
36938169
SV
6254 if (!sched_group_phys) {
6255 sched_group_phys
6256 = kmalloc(sizeof(struct sched_group) * NR_CPUS,
6257 GFP_KERNEL);
6258 if (!sched_group_phys) {
6259 printk (KERN_WARNING "Can not alloc phys sched"
6260 "group\n");
6261 goto error;
6262 }
6263 sched_group_phys_bycpu[i] = sched_group_phys;
6264 }
6265
1da177e4
LT
6266 p = sd;
6267 sd = &per_cpu(phys_domains, i);
6268 group = cpu_to_phys_group(i);
6269 *sd = SD_CPU_INIT;
6270 sd->span = nodemask;
6271 sd->parent = p;
6272 sd->groups = &sched_group_phys[group];
6273
1e9f28fa 6274#ifdef CONFIG_SCHED_MC
36938169
SV
6275 if (!sched_group_core) {
6276 sched_group_core
6277 = kmalloc(sizeof(struct sched_group) * NR_CPUS,
6278 GFP_KERNEL);
6279 if (!sched_group_core) {
6280 printk (KERN_WARNING "Can not alloc core sched"
6281 "group\n");
6282 goto error;
6283 }
6284 sched_group_core_bycpu[i] = sched_group_core;
6285 }
6286
1e9f28fa
SS
6287 p = sd;
6288 sd = &per_cpu(core_domains, i);
6289 group = cpu_to_core_group(i);
6290 *sd = SD_MC_INIT;
6291 sd->span = cpu_coregroup_map(i);
6292 cpus_and(sd->span, sd->span, *cpu_map);
6293 sd->parent = p;
6294 sd->groups = &sched_group_core[group];
6295#endif
6296
1da177e4
LT
6297#ifdef CONFIG_SCHED_SMT
6298 p = sd;
6299 sd = &per_cpu(cpu_domains, i);
6300 group = cpu_to_cpu_group(i);
6301 *sd = SD_SIBLING_INIT;
6302 sd->span = cpu_sibling_map[i];
1a20ff27 6303 cpus_and(sd->span, sd->span, *cpu_map);
1da177e4
LT
6304 sd->parent = p;
6305 sd->groups = &sched_group_cpus[group];
6306#endif
6307 }
6308
6309#ifdef CONFIG_SCHED_SMT
6310 /* Set up CPU (sibling) groups */
9c1cfda2 6311 for_each_cpu_mask(i, *cpu_map) {
1da177e4 6312 cpumask_t this_sibling_map = cpu_sibling_map[i];
1a20ff27 6313 cpus_and(this_sibling_map, this_sibling_map, *cpu_map);
1da177e4
LT
6314 if (i != first_cpu(this_sibling_map))
6315 continue;
6316
6317 init_sched_build_groups(sched_group_cpus, this_sibling_map,
6318 &cpu_to_cpu_group);
6319 }
6320#endif
6321
1e9f28fa
SS
6322#ifdef CONFIG_SCHED_MC
6323 /* Set up multi-core groups */
6324 for_each_cpu_mask(i, *cpu_map) {
6325 cpumask_t this_core_map = cpu_coregroup_map(i);
6326 cpus_and(this_core_map, this_core_map, *cpu_map);
6327 if (i != first_cpu(this_core_map))
6328 continue;
6329 init_sched_build_groups(sched_group_core, this_core_map,
6330 &cpu_to_core_group);
6331 }
6332#endif
6333
6334
1da177e4
LT
6335 /* Set up physical groups */
6336 for (i = 0; i < MAX_NUMNODES; i++) {
6337 cpumask_t nodemask = node_to_cpumask(i);
6338
1a20ff27 6339 cpus_and(nodemask, nodemask, *cpu_map);
1da177e4
LT
6340 if (cpus_empty(nodemask))
6341 continue;
6342
6343 init_sched_build_groups(sched_group_phys, nodemask,
6344 &cpu_to_phys_group);
6345 }
6346
6347#ifdef CONFIG_NUMA
6348 /* Set up node groups */
d1b55138
JH
6349 if (sched_group_allnodes)
6350 init_sched_build_groups(sched_group_allnodes, *cpu_map,
6351 &cpu_to_allnodes_group);
9c1cfda2
JH
6352
6353 for (i = 0; i < MAX_NUMNODES; i++) {
6354 /* Set up node groups */
6355 struct sched_group *sg, *prev;
6356 cpumask_t nodemask = node_to_cpumask(i);
6357 cpumask_t domainspan;
6358 cpumask_t covered = CPU_MASK_NONE;
6359 int j;
6360
6361 cpus_and(nodemask, nodemask, *cpu_map);
d1b55138
JH
6362 if (cpus_empty(nodemask)) {
6363 sched_group_nodes[i] = NULL;
9c1cfda2 6364 continue;
d1b55138 6365 }
9c1cfda2
JH
6366
6367 domainspan = sched_domain_node_span(i);
6368 cpus_and(domainspan, domainspan, *cpu_map);
6369
15f0b676 6370 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
51888ca2
SV
6371 if (!sg) {
6372 printk(KERN_WARNING "Can not alloc domain group for "
6373 "node %d\n", i);
6374 goto error;
6375 }
9c1cfda2
JH
6376 sched_group_nodes[i] = sg;
6377 for_each_cpu_mask(j, nodemask) {
6378 struct sched_domain *sd;
6379 sd = &per_cpu(node_domains, j);
6380 sd->groups = sg;
9c1cfda2
JH
6381 }
6382 sg->cpu_power = 0;
6383 sg->cpumask = nodemask;
51888ca2 6384 sg->next = sg;
9c1cfda2
JH
6385 cpus_or(covered, covered, nodemask);
6386 prev = sg;
6387
6388 for (j = 0; j < MAX_NUMNODES; j++) {
6389 cpumask_t tmp, notcovered;
6390 int n = (i + j) % MAX_NUMNODES;
6391
6392 cpus_complement(notcovered, covered);
6393 cpus_and(tmp, notcovered, *cpu_map);
6394 cpus_and(tmp, tmp, domainspan);
6395 if (cpus_empty(tmp))
6396 break;
6397
6398 nodemask = node_to_cpumask(n);
6399 cpus_and(tmp, tmp, nodemask);
6400 if (cpus_empty(tmp))
6401 continue;
6402
15f0b676
SV
6403 sg = kmalloc_node(sizeof(struct sched_group),
6404 GFP_KERNEL, i);
9c1cfda2
JH
6405 if (!sg) {
6406 printk(KERN_WARNING
6407 "Can not alloc domain group for node %d\n", j);
51888ca2 6408 goto error;
9c1cfda2
JH
6409 }
6410 sg->cpu_power = 0;
6411 sg->cpumask = tmp;
51888ca2 6412 sg->next = prev->next;
9c1cfda2
JH
6413 cpus_or(covered, covered, tmp);
6414 prev->next = sg;
6415 prev = sg;
6416 }
9c1cfda2 6417 }
1da177e4
LT
6418#endif
6419
6420 /* Calculate CPU power for physical packages and nodes */
5c45bf27 6421#ifdef CONFIG_SCHED_SMT
1a20ff27 6422 for_each_cpu_mask(i, *cpu_map) {
1da177e4 6423 struct sched_domain *sd;
1da177e4 6424 sd = &per_cpu(cpu_domains, i);
5c45bf27
SS
6425 sd->groups->cpu_power = SCHED_LOAD_SCALE;
6426 }
1da177e4 6427#endif
1e9f28fa 6428#ifdef CONFIG_SCHED_MC
5c45bf27
SS
6429 for_each_cpu_mask(i, *cpu_map) {
6430 int power;
6431 struct sched_domain *sd;
1e9f28fa 6432 sd = &per_cpu(core_domains, i);
5c45bf27
SS
6433 if (sched_smt_power_savings)
6434 power = SCHED_LOAD_SCALE * cpus_weight(sd->groups->cpumask);
6435 else
6436 power = SCHED_LOAD_SCALE + (cpus_weight(sd->groups->cpumask)-1)
1e9f28fa
SS
6437 * SCHED_LOAD_SCALE / 10;
6438 sd->groups->cpu_power = power;
5c45bf27
SS
6439 }
6440#endif
1e9f28fa 6441
5c45bf27
SS
6442 for_each_cpu_mask(i, *cpu_map) {
6443 struct sched_domain *sd;
6444#ifdef CONFIG_SCHED_MC
1e9f28fa 6445 sd = &per_cpu(phys_domains, i);
5c45bf27
SS
6446 if (i != first_cpu(sd->groups->cpumask))
6447 continue;
1da177e4 6448
5c45bf27
SS
6449 sd->groups->cpu_power = 0;
6450 if (sched_mc_power_savings || sched_smt_power_savings) {
6451 int j;
6452
6453 for_each_cpu_mask(j, sd->groups->cpumask) {
6454 struct sched_domain *sd1;
6455 sd1 = &per_cpu(core_domains, j);
6456 /*
6457 * for each core we will add once
6458 * to the group in physical domain
6459 */
6460 if (j != first_cpu(sd1->groups->cpumask))
6461 continue;
6462
6463 if (sched_smt_power_savings)
6464 sd->groups->cpu_power += sd1->groups->cpu_power;
6465 else
6466 sd->groups->cpu_power += SCHED_LOAD_SCALE;
6467 }
6468 } else
6469 /*
6470 * This has to be < 2 * SCHED_LOAD_SCALE
6471 * Lets keep it SCHED_LOAD_SCALE, so that
6472 * while calculating NUMA group's cpu_power
6473 * we can simply do
6474 * numa_group->cpu_power += phys_group->cpu_power;
6475 *
6476 * See "only add power once for each physical pkg"
6477 * comment below
6478 */
6479 sd->groups->cpu_power = SCHED_LOAD_SCALE;
1e9f28fa 6480#else
5c45bf27 6481 int power;
1da177e4 6482 sd = &per_cpu(phys_domains, i);
5c45bf27
SS
6483 if (sched_smt_power_savings)
6484 power = SCHED_LOAD_SCALE * cpus_weight(sd->groups->cpumask);
6485 else
6486 power = SCHED_LOAD_SCALE;
1da177e4 6487 sd->groups->cpu_power = power;
1e9f28fa 6488#endif
1da177e4
LT
6489 }
6490
9c1cfda2 6491#ifdef CONFIG_NUMA
08069033
SS
6492 for (i = 0; i < MAX_NUMNODES; i++)
6493 init_numa_sched_groups_power(sched_group_nodes[i]);
9c1cfda2 6494
f712c0c7
SS
6495 if (sched_group_allnodes) {
6496 int group = cpu_to_allnodes_group(first_cpu(*cpu_map));
6497 struct sched_group *sg = &sched_group_allnodes[group];
6498
6499 init_numa_sched_groups_power(sg);
6500 }
9c1cfda2
JH
6501#endif
6502
1da177e4 6503 /* Attach the domains */
1a20ff27 6504 for_each_cpu_mask(i, *cpu_map) {
1da177e4
LT
6505 struct sched_domain *sd;
6506#ifdef CONFIG_SCHED_SMT
6507 sd = &per_cpu(cpu_domains, i);
1e9f28fa
SS
6508#elif defined(CONFIG_SCHED_MC)
6509 sd = &per_cpu(core_domains, i);
1da177e4
LT
6510#else
6511 sd = &per_cpu(phys_domains, i);
6512#endif
6513 cpu_attach_domain(sd, i);
6514 }
198e2f18 6515 /*
6516 * Tune cache-hot values:
6517 */
6518 calibrate_migration_costs(cpu_map);
51888ca2
SV
6519
6520 return 0;
6521
51888ca2
SV
6522error:
6523 free_sched_groups(cpu_map);
6524 return -ENOMEM;
1da177e4 6525}
1a20ff27
DG
6526/*
6527 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
6528 */
51888ca2 6529static int arch_init_sched_domains(const cpumask_t *cpu_map)
1a20ff27
DG
6530{
6531 cpumask_t cpu_default_map;
51888ca2 6532 int err;
1da177e4 6533
1a20ff27
DG
6534 /*
6535 * Setup mask for cpus without special case scheduling requirements.
6536 * For now this just excludes isolated cpus, but could be used to
6537 * exclude other special cases in the future.
6538 */
6539 cpus_andnot(cpu_default_map, *cpu_map, cpu_isolated_map);
6540
51888ca2
SV
6541 err = build_sched_domains(&cpu_default_map);
6542
6543 return err;
1a20ff27
DG
6544}
6545
6546static void arch_destroy_sched_domains(const cpumask_t *cpu_map)
1da177e4 6547{
51888ca2 6548 free_sched_groups(cpu_map);
9c1cfda2 6549}
1da177e4 6550
1a20ff27
DG
6551/*
6552 * Detach sched domains from a group of cpus specified in cpu_map
6553 * These cpus will now be attached to the NULL domain
6554 */
858119e1 6555static void detach_destroy_domains(const cpumask_t *cpu_map)
1a20ff27
DG
6556{
6557 int i;
6558
6559 for_each_cpu_mask(i, *cpu_map)
6560 cpu_attach_domain(NULL, i);
6561 synchronize_sched();
6562 arch_destroy_sched_domains(cpu_map);
6563}
6564
6565/*
6566 * Partition sched domains as specified by the cpumasks below.
6567 * This attaches all cpus from the cpumasks to the NULL domain,
6568 * waits for a RCU quiescent period, recalculates sched
6569 * domain information and then attaches them back to the
6570 * correct sched domains
6571 * Call with hotplug lock held
6572 */
51888ca2 6573int partition_sched_domains(cpumask_t *partition1, cpumask_t *partition2)
1a20ff27
DG
6574{
6575 cpumask_t change_map;
51888ca2 6576 int err = 0;
1a20ff27
DG
6577
6578 cpus_and(*partition1, *partition1, cpu_online_map);
6579 cpus_and(*partition2, *partition2, cpu_online_map);
6580 cpus_or(change_map, *partition1, *partition2);
6581
6582 /* Detach sched domains from all of the affected cpus */
6583 detach_destroy_domains(&change_map);
6584 if (!cpus_empty(*partition1))
51888ca2
SV
6585 err = build_sched_domains(partition1);
6586 if (!err && !cpus_empty(*partition2))
6587 err = build_sched_domains(partition2);
6588
6589 return err;
1a20ff27
DG
6590}
6591
5c45bf27
SS
6592#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
6593int arch_reinit_sched_domains(void)
6594{
6595 int err;
6596
6597 lock_cpu_hotplug();
6598 detach_destroy_domains(&cpu_online_map);
6599 err = arch_init_sched_domains(&cpu_online_map);
6600 unlock_cpu_hotplug();
6601
6602 return err;
6603}
6604
6605static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
6606{
6607 int ret;
6608
6609 if (buf[0] != '0' && buf[0] != '1')
6610 return -EINVAL;
6611
6612 if (smt)
6613 sched_smt_power_savings = (buf[0] == '1');
6614 else
6615 sched_mc_power_savings = (buf[0] == '1');
6616
6617 ret = arch_reinit_sched_domains();
6618
6619 return ret ? ret : count;
6620}
6621
6622int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
6623{
6624 int err = 0;
48f24c4d 6625
5c45bf27
SS
6626#ifdef CONFIG_SCHED_SMT
6627 if (smt_capable())
6628 err = sysfs_create_file(&cls->kset.kobj,
6629 &attr_sched_smt_power_savings.attr);
6630#endif
6631#ifdef CONFIG_SCHED_MC
6632 if (!err && mc_capable())
6633 err = sysfs_create_file(&cls->kset.kobj,
6634 &attr_sched_mc_power_savings.attr);
6635#endif
6636 return err;
6637}
6638#endif
6639
6640#ifdef CONFIG_SCHED_MC
6641static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
6642{
6643 return sprintf(page, "%u\n", sched_mc_power_savings);
6644}
48f24c4d
IM
6645static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
6646 const char *buf, size_t count)
5c45bf27
SS
6647{
6648 return sched_power_savings_store(buf, count, 0);
6649}
6650SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
6651 sched_mc_power_savings_store);
6652#endif
6653
6654#ifdef CONFIG_SCHED_SMT
6655static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
6656{
6657 return sprintf(page, "%u\n", sched_smt_power_savings);
6658}
48f24c4d
IM
6659static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
6660 const char *buf, size_t count)
5c45bf27
SS
6661{
6662 return sched_power_savings_store(buf, count, 1);
6663}
6664SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
6665 sched_smt_power_savings_store);
6666#endif
6667
6668
1da177e4
LT
6669#ifdef CONFIG_HOTPLUG_CPU
6670/*
6671 * Force a reinitialization of the sched domains hierarchy. The domains
6672 * and groups cannot be updated in place without racing with the balancing
41c7ce9a 6673 * code, so we temporarily attach all running cpus to the NULL domain
1da177e4
LT
6674 * which will prevent rebalancing while the sched domains are recalculated.
6675 */
6676static int update_sched_domains(struct notifier_block *nfb,
6677 unsigned long action, void *hcpu)
6678{
1da177e4
LT
6679 switch (action) {
6680 case CPU_UP_PREPARE:
6681 case CPU_DOWN_PREPARE:
1a20ff27 6682 detach_destroy_domains(&cpu_online_map);
1da177e4
LT
6683 return NOTIFY_OK;
6684
6685 case CPU_UP_CANCELED:
6686 case CPU_DOWN_FAILED:
6687 case CPU_ONLINE:
6688 case CPU_DEAD:
6689 /*
6690 * Fall through and re-initialise the domains.
6691 */
6692 break;
6693 default:
6694 return NOTIFY_DONE;
6695 }
6696
6697 /* The hotplug lock is already held by cpu_up/cpu_down */
1a20ff27 6698 arch_init_sched_domains(&cpu_online_map);
1da177e4
LT
6699
6700 return NOTIFY_OK;
6701}
6702#endif
6703
6704void __init sched_init_smp(void)
6705{
6706 lock_cpu_hotplug();
1a20ff27 6707 arch_init_sched_domains(&cpu_online_map);
1da177e4
LT
6708 unlock_cpu_hotplug();
6709 /* XXX: Theoretical race here - CPU may be hotplugged now */
6710 hotcpu_notifier(update_sched_domains, 0);
6711}
6712#else
6713void __init sched_init_smp(void)
6714{
6715}
6716#endif /* CONFIG_SMP */
6717
6718int in_sched_functions(unsigned long addr)
6719{
6720 /* Linker adds these: start and end of __sched functions */
6721 extern char __sched_text_start[], __sched_text_end[];
48f24c4d 6722
1da177e4
LT
6723 return in_lock_functions(addr) ||
6724 (addr >= (unsigned long)__sched_text_start
6725 && addr < (unsigned long)__sched_text_end);
6726}
6727
6728void __init sched_init(void)
6729{
1da177e4
LT
6730 int i, j, k;
6731
0a945022 6732 for_each_possible_cpu(i) {
70b97a7f
IM
6733 struct prio_array *array;
6734 struct rq *rq;
1da177e4
LT
6735
6736 rq = cpu_rq(i);
6737 spin_lock_init(&rq->lock);
fcb99371 6738 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
7897986b 6739 rq->nr_running = 0;
1da177e4
LT
6740 rq->active = rq->arrays;
6741 rq->expired = rq->arrays + 1;
6742 rq->best_expired_prio = MAX_PRIO;
6743
6744#ifdef CONFIG_SMP
41c7ce9a 6745 rq->sd = NULL;
7897986b
NP
6746 for (j = 1; j < 3; j++)
6747 rq->cpu_load[j] = 0;
1da177e4
LT
6748 rq->active_balance = 0;
6749 rq->push_cpu = 0;
6750 rq->migration_thread = NULL;
6751 INIT_LIST_HEAD(&rq->migration_queue);
6752#endif
6753 atomic_set(&rq->nr_iowait, 0);
6754
6755 for (j = 0; j < 2; j++) {
6756 array = rq->arrays + j;
6757 for (k = 0; k < MAX_PRIO; k++) {
6758 INIT_LIST_HEAD(array->queue + k);
6759 __clear_bit(k, array->bitmap);
6760 }
6761 // delimiter for bitsearch
6762 __set_bit(MAX_PRIO, array->bitmap);
6763 }
6764 }
6765
2dd73a4f 6766 set_load_weight(&init_task);
b50f60ce
HC
6767
6768#ifdef CONFIG_RT_MUTEXES
6769 plist_head_init(&init_task.pi_waiters, &init_task.pi_lock);
6770#endif
6771
1da177e4
LT
6772 /*
6773 * The boot idle thread does lazy MMU switching as well:
6774 */
6775 atomic_inc(&init_mm.mm_count);
6776 enter_lazy_tlb(&init_mm, current);
6777
6778 /*
6779 * Make us the idle thread. Technically, schedule() should not be
6780 * called from this thread, however somewhere below it might be,
6781 * but because we are the idle thread, we just pick up running again
6782 * when this runqueue becomes "idle".
6783 */
6784 init_idle(current, smp_processor_id());
6785}
6786
6787#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
6788void __might_sleep(char *file, int line)
6789{
48f24c4d 6790#ifdef in_atomic
1da177e4
LT
6791 static unsigned long prev_jiffy; /* ratelimiting */
6792
6793 if ((in_atomic() || irqs_disabled()) &&
6794 system_state == SYSTEM_RUNNING && !oops_in_progress) {
6795 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
6796 return;
6797 prev_jiffy = jiffies;
91368d73 6798 printk(KERN_ERR "BUG: sleeping function called from invalid"
1da177e4
LT
6799 " context at %s:%d\n", file, line);
6800 printk("in_atomic():%d, irqs_disabled():%d\n",
6801 in_atomic(), irqs_disabled());
6802 dump_stack();
6803 }
6804#endif
6805}
6806EXPORT_SYMBOL(__might_sleep);
6807#endif
6808
6809#ifdef CONFIG_MAGIC_SYSRQ
6810void normalize_rt_tasks(void)
6811{
70b97a7f 6812 struct prio_array *array;
1da177e4 6813 struct task_struct *p;
1da177e4 6814 unsigned long flags;
70b97a7f 6815 struct rq *rq;
1da177e4
LT
6816
6817 read_lock_irq(&tasklist_lock);
c96d145e 6818 for_each_process(p) {
1da177e4
LT
6819 if (!rt_task(p))
6820 continue;
6821
b29739f9
IM
6822 spin_lock_irqsave(&p->pi_lock, flags);
6823 rq = __task_rq_lock(p);
1da177e4
LT
6824
6825 array = p->array;
6826 if (array)
6827 deactivate_task(p, task_rq(p));
6828 __setscheduler(p, SCHED_NORMAL, 0);
6829 if (array) {
6830 __activate_task(p, task_rq(p));
6831 resched_task(rq->curr);
6832 }
6833
b29739f9
IM
6834 __task_rq_unlock(rq);
6835 spin_unlock_irqrestore(&p->pi_lock, flags);
1da177e4
LT
6836 }
6837 read_unlock_irq(&tasklist_lock);
6838}
6839
6840#endif /* CONFIG_MAGIC_SYSRQ */
1df5c10a
LT
6841
6842#ifdef CONFIG_IA64
6843/*
6844 * These functions are only useful for the IA64 MCA handling.
6845 *
6846 * They can only be called when the whole system has been
6847 * stopped - every CPU needs to be quiescent, and no scheduling
6848 * activity can take place. Using them for anything else would
6849 * be a serious bug, and as a result, they aren't even visible
6850 * under any other configuration.
6851 */
6852
6853/**
6854 * curr_task - return the current task for a given cpu.
6855 * @cpu: the processor in question.
6856 *
6857 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
6858 */
36c8b586 6859struct task_struct *curr_task(int cpu)
1df5c10a
LT
6860{
6861 return cpu_curr(cpu);
6862}
6863
6864/**
6865 * set_curr_task - set the current task for a given cpu.
6866 * @cpu: the processor in question.
6867 * @p: the task pointer to set.
6868 *
6869 * Description: This function must only be used when non-maskable interrupts
6870 * are serviced on a separate stack. It allows the architecture to switch the
6871 * notion of the current task on a cpu in a non-blocking manner. This function
6872 * must be called with all CPU's synchronized, and interrupts disabled, the
6873 * and caller must save the original value of the current task (see
6874 * curr_task() above) and restore that value before reenabling interrupts and
6875 * re-starting the system.
6876 *
6877 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
6878 */
36c8b586 6879void set_curr_task(int cpu, struct task_struct *p)
1df5c10a
LT
6880{
6881 cpu_curr(cpu) = p;
6882}
6883
6884#endif