]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - kernel/sched.c
[PATCH] hide onboard graphics drivers on G5
[mirror_ubuntu-artful-kernel.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
KC
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
KC
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
KC
3097 for_each_domain(this_cpu, tmp) {
3098 if (tmp->flags & SD_SHARE_CPUPOWER) {
41c7ce9a 3099 sd = tmp;
c96d145e
KC
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
KC
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
KC
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
KC
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
KC
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
KC
3161 if (i == this_cpu)
3162 continue;
1da177e4 3163
c96d145e
KC
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
KC
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
KC
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
KC
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 get_task_struct(p);
1da177e4 4166 read_unlock_irq(&tasklist_lock);
e74c69f4
TG
4167 retval = sched_setscheduler(p, policy, &lparam);
4168 put_task_struct(p);
36c8b586 4169
1da177e4
LT
4170 return retval;
4171}
4172
4173/**
4174 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
4175 * @pid: the pid in question.
4176 * @policy: new policy.
4177 * @param: structure containing the new RT priority.
4178 */
4179asmlinkage long sys_sched_setscheduler(pid_t pid, int policy,
4180 struct sched_param __user *param)
4181{
c21761f1
JB
4182 /* negative values for policy are not valid */
4183 if (policy < 0)
4184 return -EINVAL;
4185
1da177e4
LT
4186 return do_sched_setscheduler(pid, policy, param);
4187}
4188
4189/**
4190 * sys_sched_setparam - set/change the RT priority of a thread
4191 * @pid: the pid in question.
4192 * @param: structure containing the new RT priority.
4193 */
4194asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
4195{
4196 return do_sched_setscheduler(pid, -1, param);
4197}
4198
4199/**
4200 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
4201 * @pid: the pid in question.
4202 */
4203asmlinkage long sys_sched_getscheduler(pid_t pid)
4204{
36c8b586 4205 struct task_struct *p;
1da177e4 4206 int retval = -EINVAL;
1da177e4
LT
4207
4208 if (pid < 0)
4209 goto out_nounlock;
4210
4211 retval = -ESRCH;
4212 read_lock(&tasklist_lock);
4213 p = find_process_by_pid(pid);
4214 if (p) {
4215 retval = security_task_getscheduler(p);
4216 if (!retval)
4217 retval = p->policy;
4218 }
4219 read_unlock(&tasklist_lock);
4220
4221out_nounlock:
4222 return retval;
4223}
4224
4225/**
4226 * sys_sched_getscheduler - get the RT priority of a thread
4227 * @pid: the pid in question.
4228 * @param: structure containing the RT priority.
4229 */
4230asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
4231{
4232 struct sched_param lp;
36c8b586 4233 struct task_struct *p;
1da177e4 4234 int retval = -EINVAL;
1da177e4
LT
4235
4236 if (!param || pid < 0)
4237 goto out_nounlock;
4238
4239 read_lock(&tasklist_lock);
4240 p = find_process_by_pid(pid);
4241 retval = -ESRCH;
4242 if (!p)
4243 goto out_unlock;
4244
4245 retval = security_task_getscheduler(p);
4246 if (retval)
4247 goto out_unlock;
4248
4249 lp.sched_priority = p->rt_priority;
4250 read_unlock(&tasklist_lock);
4251
4252 /*
4253 * This one might sleep, we cannot do it with a spinlock held ...
4254 */
4255 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
4256
4257out_nounlock:
4258 return retval;
4259
4260out_unlock:
4261 read_unlock(&tasklist_lock);
4262 return retval;
4263}
4264
4265long sched_setaffinity(pid_t pid, cpumask_t new_mask)
4266{
1da177e4 4267 cpumask_t cpus_allowed;
36c8b586
IM
4268 struct task_struct *p;
4269 int retval;
1da177e4
LT
4270
4271 lock_cpu_hotplug();
4272 read_lock(&tasklist_lock);
4273
4274 p = find_process_by_pid(pid);
4275 if (!p) {
4276 read_unlock(&tasklist_lock);
4277 unlock_cpu_hotplug();
4278 return -ESRCH;
4279 }
4280
4281 /*
4282 * It is not safe to call set_cpus_allowed with the
4283 * tasklist_lock held. We will bump the task_struct's
4284 * usage count and then drop tasklist_lock.
4285 */
4286 get_task_struct(p);
4287 read_unlock(&tasklist_lock);
4288
4289 retval = -EPERM;
4290 if ((current->euid != p->euid) && (current->euid != p->uid) &&
4291 !capable(CAP_SYS_NICE))
4292 goto out_unlock;
4293
e7834f8f
DQ
4294 retval = security_task_setscheduler(p, 0, NULL);
4295 if (retval)
4296 goto out_unlock;
4297
1da177e4
LT
4298 cpus_allowed = cpuset_cpus_allowed(p);
4299 cpus_and(new_mask, new_mask, cpus_allowed);
4300 retval = set_cpus_allowed(p, new_mask);
4301
4302out_unlock:
4303 put_task_struct(p);
4304 unlock_cpu_hotplug();
4305 return retval;
4306}
4307
4308static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
4309 cpumask_t *new_mask)
4310{
4311 if (len < sizeof(cpumask_t)) {
4312 memset(new_mask, 0, sizeof(cpumask_t));
4313 } else if (len > sizeof(cpumask_t)) {
4314 len = sizeof(cpumask_t);
4315 }
4316 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
4317}
4318
4319/**
4320 * sys_sched_setaffinity - set the cpu affinity of a process
4321 * @pid: pid of the process
4322 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4323 * @user_mask_ptr: user-space pointer to the new cpu mask
4324 */
4325asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
4326 unsigned long __user *user_mask_ptr)
4327{
4328 cpumask_t new_mask;
4329 int retval;
4330
4331 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
4332 if (retval)
4333 return retval;
4334
4335 return sched_setaffinity(pid, new_mask);
4336}
4337
4338/*
4339 * Represents all cpu's present in the system
4340 * In systems capable of hotplug, this map could dynamically grow
4341 * as new cpu's are detected in the system via any platform specific
4342 * method, such as ACPI for e.g.
4343 */
4344
4cef0c61 4345cpumask_t cpu_present_map __read_mostly;
1da177e4
LT
4346EXPORT_SYMBOL(cpu_present_map);
4347
4348#ifndef CONFIG_SMP
4cef0c61
AK
4349cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL;
4350cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL;
1da177e4
LT
4351#endif
4352
4353long sched_getaffinity(pid_t pid, cpumask_t *mask)
4354{
36c8b586 4355 struct task_struct *p;
1da177e4 4356 int retval;
1da177e4
LT
4357
4358 lock_cpu_hotplug();
4359 read_lock(&tasklist_lock);
4360
4361 retval = -ESRCH;
4362 p = find_process_by_pid(pid);
4363 if (!p)
4364 goto out_unlock;
4365
e7834f8f
DQ
4366 retval = security_task_getscheduler(p);
4367 if (retval)
4368 goto out_unlock;
4369
2f7016d9 4370 cpus_and(*mask, p->cpus_allowed, cpu_online_map);
1da177e4
LT
4371
4372out_unlock:
4373 read_unlock(&tasklist_lock);
4374 unlock_cpu_hotplug();
4375 if (retval)
4376 return retval;
4377
4378 return 0;
4379}
4380
4381/**
4382 * sys_sched_getaffinity - get the cpu affinity of a process
4383 * @pid: pid of the process
4384 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
4385 * @user_mask_ptr: user-space pointer to hold the current cpu mask
4386 */
4387asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
4388 unsigned long __user *user_mask_ptr)
4389{
4390 int ret;
4391 cpumask_t mask;
4392
4393 if (len < sizeof(cpumask_t))
4394 return -EINVAL;
4395
4396 ret = sched_getaffinity(pid, &mask);
4397 if (ret < 0)
4398 return ret;
4399
4400 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
4401 return -EFAULT;
4402
4403 return sizeof(cpumask_t);
4404}
4405
4406/**
4407 * sys_sched_yield - yield the current processor to other threads.
4408 *
4409 * this function yields the current CPU by moving the calling thread
4410 * to the expired array. If there are no other threads running on this
4411 * CPU then this function will return.
4412 */
4413asmlinkage long sys_sched_yield(void)
4414{
70b97a7f
IM
4415 struct rq *rq = this_rq_lock();
4416 struct prio_array *array = current->array, *target = rq->expired;
1da177e4
LT
4417
4418 schedstat_inc(rq, yld_cnt);
4419 /*
4420 * We implement yielding by moving the task into the expired
4421 * queue.
4422 *
4423 * (special rule: RT tasks will just roundrobin in the active
4424 * array.)
4425 */
4426 if (rt_task(current))
4427 target = rq->active;
4428
5927ad78 4429 if (array->nr_active == 1) {
1da177e4
LT
4430 schedstat_inc(rq, yld_act_empty);
4431 if (!rq->expired->nr_active)
4432 schedstat_inc(rq, yld_both_empty);
4433 } else if (!rq->expired->nr_active)
4434 schedstat_inc(rq, yld_exp_empty);
4435
4436 if (array != target) {
4437 dequeue_task(current, array);
4438 enqueue_task(current, target);
4439 } else
4440 /*
4441 * requeue_task is cheaper so perform that if possible.
4442 */
4443 requeue_task(current, array);
4444
4445 /*
4446 * Since we are going to call schedule() anyway, there's
4447 * no need to preempt or enable interrupts:
4448 */
4449 __release(rq->lock);
8a25d5de 4450 spin_release(&rq->lock.dep_map, 1, _THIS_IP_);
1da177e4
LT
4451 _raw_spin_unlock(&rq->lock);
4452 preempt_enable_no_resched();
4453
4454 schedule();
4455
4456 return 0;
4457}
4458
2d7d2535 4459static inline int __resched_legal(int expected_preempt_count)
e7b38404 4460{
2d7d2535 4461 if (unlikely(preempt_count() != expected_preempt_count))
e7b38404
AM
4462 return 0;
4463 if (unlikely(system_state != SYSTEM_RUNNING))
4464 return 0;
4465 return 1;
4466}
4467
4468static void __cond_resched(void)
1da177e4 4469{
8e0a43d8
IM
4470#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
4471 __might_sleep(__FILE__, __LINE__);
4472#endif
5bbcfd90
IM
4473 /*
4474 * The BKS might be reacquired before we have dropped
4475 * PREEMPT_ACTIVE, which could trigger a second
4476 * cond_resched() call.
4477 */
1da177e4
LT
4478 do {
4479 add_preempt_count(PREEMPT_ACTIVE);
4480 schedule();
4481 sub_preempt_count(PREEMPT_ACTIVE);
4482 } while (need_resched());
4483}
4484
4485int __sched cond_resched(void)
4486{
2d7d2535 4487 if (need_resched() && __resched_legal(0)) {
1da177e4
LT
4488 __cond_resched();
4489 return 1;
4490 }
4491 return 0;
4492}
1da177e4
LT
4493EXPORT_SYMBOL(cond_resched);
4494
4495/*
4496 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
4497 * call schedule, and on return reacquire the lock.
4498 *
4499 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
4500 * operations here to prevent schedule() from being called twice (once via
4501 * spin_unlock(), once by hand).
4502 */
95cdf3b7 4503int cond_resched_lock(spinlock_t *lock)
1da177e4 4504{
6df3cecb
JK
4505 int ret = 0;
4506
1da177e4
LT
4507 if (need_lockbreak(lock)) {
4508 spin_unlock(lock);
4509 cpu_relax();
6df3cecb 4510 ret = 1;
1da177e4
LT
4511 spin_lock(lock);
4512 }
2d7d2535 4513 if (need_resched() && __resched_legal(1)) {
8a25d5de 4514 spin_release(&lock->dep_map, 1, _THIS_IP_);
1da177e4
LT
4515 _raw_spin_unlock(lock);
4516 preempt_enable_no_resched();
4517 __cond_resched();
6df3cecb 4518 ret = 1;
1da177e4 4519 spin_lock(lock);
1da177e4 4520 }
6df3cecb 4521 return ret;
1da177e4 4522}
1da177e4
LT
4523EXPORT_SYMBOL(cond_resched_lock);
4524
4525int __sched cond_resched_softirq(void)
4526{
4527 BUG_ON(!in_softirq());
4528
2d7d2535 4529 if (need_resched() && __resched_legal(0)) {
de30a2b3
IM
4530 raw_local_irq_disable();
4531 _local_bh_enable();
4532 raw_local_irq_enable();
1da177e4
LT
4533 __cond_resched();
4534 local_bh_disable();
4535 return 1;
4536 }
4537 return 0;
4538}
1da177e4
LT
4539EXPORT_SYMBOL(cond_resched_softirq);
4540
1da177e4
LT
4541/**
4542 * yield - yield the current processor to other threads.
4543 *
4544 * this is a shortcut for kernel-space yielding - it marks the
4545 * thread runnable and calls sys_sched_yield().
4546 */
4547void __sched yield(void)
4548{
4549 set_current_state(TASK_RUNNING);
4550 sys_sched_yield();
4551}
1da177e4
LT
4552EXPORT_SYMBOL(yield);
4553
4554/*
4555 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
4556 * that process accounting knows that this is a task in IO wait state.
4557 *
4558 * But don't do that if it is a deliberate, throttling IO wait (this task
4559 * has set its backing_dev_info: the queue against which it should throttle)
4560 */
4561void __sched io_schedule(void)
4562{
70b97a7f 4563 struct rq *rq = &__raw_get_cpu_var(runqueues);
1da177e4 4564
0ff92245 4565 delayacct_blkio_start();
1da177e4
LT
4566 atomic_inc(&rq->nr_iowait);
4567 schedule();
4568 atomic_dec(&rq->nr_iowait);
0ff92245 4569 delayacct_blkio_end();
1da177e4 4570}
1da177e4
LT
4571EXPORT_SYMBOL(io_schedule);
4572
4573long __sched io_schedule_timeout(long timeout)
4574{
70b97a7f 4575 struct rq *rq = &__raw_get_cpu_var(runqueues);
1da177e4
LT
4576 long ret;
4577
0ff92245 4578 delayacct_blkio_start();
1da177e4
LT
4579 atomic_inc(&rq->nr_iowait);
4580 ret = schedule_timeout(timeout);
4581 atomic_dec(&rq->nr_iowait);
0ff92245 4582 delayacct_blkio_end();
1da177e4
LT
4583 return ret;
4584}
4585
4586/**
4587 * sys_sched_get_priority_max - return maximum RT priority.
4588 * @policy: scheduling class.
4589 *
4590 * this syscall returns the maximum rt_priority that can be used
4591 * by a given scheduling class.
4592 */
4593asmlinkage long sys_sched_get_priority_max(int policy)
4594{
4595 int ret = -EINVAL;
4596
4597 switch (policy) {
4598 case SCHED_FIFO:
4599 case SCHED_RR:
4600 ret = MAX_USER_RT_PRIO-1;
4601 break;
4602 case SCHED_NORMAL:
b0a9499c 4603 case SCHED_BATCH:
1da177e4
LT
4604 ret = 0;
4605 break;
4606 }
4607 return ret;
4608}
4609
4610/**
4611 * sys_sched_get_priority_min - return minimum RT priority.
4612 * @policy: scheduling class.
4613 *
4614 * this syscall returns the minimum rt_priority that can be used
4615 * by a given scheduling class.
4616 */
4617asmlinkage long sys_sched_get_priority_min(int policy)
4618{
4619 int ret = -EINVAL;
4620
4621 switch (policy) {
4622 case SCHED_FIFO:
4623 case SCHED_RR:
4624 ret = 1;
4625 break;
4626 case SCHED_NORMAL:
b0a9499c 4627 case SCHED_BATCH:
1da177e4
LT
4628 ret = 0;
4629 }
4630 return ret;
4631}
4632
4633/**
4634 * sys_sched_rr_get_interval - return the default timeslice of a process.
4635 * @pid: pid of the process.
4636 * @interval: userspace pointer to the timeslice value.
4637 *
4638 * this syscall writes the default timeslice value of a given process
4639 * into the user-space timespec buffer. A value of '0' means infinity.
4640 */
4641asmlinkage
4642long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
4643{
36c8b586 4644 struct task_struct *p;
1da177e4
LT
4645 int retval = -EINVAL;
4646 struct timespec t;
1da177e4
LT
4647
4648 if (pid < 0)
4649 goto out_nounlock;
4650
4651 retval = -ESRCH;
4652 read_lock(&tasklist_lock);
4653 p = find_process_by_pid(pid);
4654 if (!p)
4655 goto out_unlock;
4656
4657 retval = security_task_getscheduler(p);
4658 if (retval)
4659 goto out_unlock;
4660
b78709cf 4661 jiffies_to_timespec(p->policy == SCHED_FIFO ?
1da177e4
LT
4662 0 : task_timeslice(p), &t);
4663 read_unlock(&tasklist_lock);
4664 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
4665out_nounlock:
4666 return retval;
4667out_unlock:
4668 read_unlock(&tasklist_lock);
4669 return retval;
4670}
4671
4672static inline struct task_struct *eldest_child(struct task_struct *p)
4673{
48f24c4d
IM
4674 if (list_empty(&p->children))
4675 return NULL;
1da177e4
LT
4676 return list_entry(p->children.next,struct task_struct,sibling);
4677}
4678
4679static inline struct task_struct *older_sibling(struct task_struct *p)
4680{
48f24c4d
IM
4681 if (p->sibling.prev==&p->parent->children)
4682 return NULL;
1da177e4
LT
4683 return list_entry(p->sibling.prev,struct task_struct,sibling);
4684}
4685
4686static inline struct task_struct *younger_sibling(struct task_struct *p)
4687{
48f24c4d
IM
4688 if (p->sibling.next==&p->parent->children)
4689 return NULL;
1da177e4
LT
4690 return list_entry(p->sibling.next,struct task_struct,sibling);
4691}
4692
2ed6e34f 4693static const char stat_nam[] = "RSDTtZX";
36c8b586
IM
4694
4695static void show_task(struct task_struct *p)
1da177e4 4696{
36c8b586 4697 struct task_struct *relative;
1da177e4 4698 unsigned long free = 0;
36c8b586 4699 unsigned state;
1da177e4 4700
1da177e4 4701 state = p->state ? __ffs(p->state) + 1 : 0;
2ed6e34f
AM
4702 printk("%-13.13s %c", p->comm,
4703 state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?');
1da177e4
LT
4704#if (BITS_PER_LONG == 32)
4705 if (state == TASK_RUNNING)
4706 printk(" running ");
4707 else
4708 printk(" %08lX ", thread_saved_pc(p));
4709#else
4710 if (state == TASK_RUNNING)
4711 printk(" running task ");
4712 else
4713 printk(" %016lx ", thread_saved_pc(p));
4714#endif
4715#ifdef CONFIG_DEBUG_STACK_USAGE
4716 {
10ebffde 4717 unsigned long *n = end_of_stack(p);
1da177e4
LT
4718 while (!*n)
4719 n++;
10ebffde 4720 free = (unsigned long)n - (unsigned long)end_of_stack(p);
1da177e4
LT
4721 }
4722#endif
4723 printk("%5lu %5d %6d ", free, p->pid, p->parent->pid);
4724 if ((relative = eldest_child(p)))
4725 printk("%5d ", relative->pid);
4726 else
4727 printk(" ");
4728 if ((relative = younger_sibling(p)))
4729 printk("%7d", relative->pid);
4730 else
4731 printk(" ");
4732 if ((relative = older_sibling(p)))
4733 printk(" %5d", relative->pid);
4734 else
4735 printk(" ");
4736 if (!p->mm)
4737 printk(" (L-TLB)\n");
4738 else
4739 printk(" (NOTLB)\n");
4740
4741 if (state != TASK_RUNNING)
4742 show_stack(p, NULL);
4743}
4744
4745void show_state(void)
4746{
36c8b586 4747 struct task_struct *g, *p;
1da177e4
LT
4748
4749#if (BITS_PER_LONG == 32)
4750 printk("\n"
4751 " sibling\n");
4752 printk(" task PC pid father child younger older\n");
4753#else
4754 printk("\n"
4755 " sibling\n");
4756 printk(" task PC pid father child younger older\n");
4757#endif
4758 read_lock(&tasklist_lock);
4759 do_each_thread(g, p) {
4760 /*
4761 * reset the NMI-timeout, listing all files on a slow
4762 * console might take alot of time:
4763 */
4764 touch_nmi_watchdog();
4765 show_task(p);
4766 } while_each_thread(g, p);
4767
4768 read_unlock(&tasklist_lock);
9a11b49a 4769 debug_show_all_locks();
1da177e4
LT
4770}
4771
f340c0d1
IM
4772/**
4773 * init_idle - set up an idle thread for a given CPU
4774 * @idle: task in question
4775 * @cpu: cpu the idle task belongs to
4776 *
4777 * NOTE: this function does not set the idle thread's NEED_RESCHED
4778 * flag, to make booting more robust.
4779 */
36c8b586 4780void __devinit init_idle(struct task_struct *idle, int cpu)
1da177e4 4781{
70b97a7f 4782 struct rq *rq = cpu_rq(cpu);
1da177e4
LT
4783 unsigned long flags;
4784
81c29a85 4785 idle->timestamp = sched_clock();
1da177e4
LT
4786 idle->sleep_avg = 0;
4787 idle->array = NULL;
b29739f9 4788 idle->prio = idle->normal_prio = MAX_PRIO;
1da177e4
LT
4789 idle->state = TASK_RUNNING;
4790 idle->cpus_allowed = cpumask_of_cpu(cpu);
4791 set_task_cpu(idle, cpu);
4792
4793 spin_lock_irqsave(&rq->lock, flags);
4794 rq->curr = rq->idle = idle;
4866cde0
NP
4795#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
4796 idle->oncpu = 1;
4797#endif
1da177e4
LT
4798 spin_unlock_irqrestore(&rq->lock, flags);
4799
4800 /* Set the preempt count _outside_ the spinlocks! */
4801#if defined(CONFIG_PREEMPT) && !defined(CONFIG_PREEMPT_BKL)
a1261f54 4802 task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0);
1da177e4 4803#else
a1261f54 4804 task_thread_info(idle)->preempt_count = 0;
1da177e4
LT
4805#endif
4806}
4807
4808/*
4809 * In a system that switches off the HZ timer nohz_cpu_mask
4810 * indicates which cpus entered this state. This is used
4811 * in the rcu update to wait only for active cpus. For system
4812 * which do not switch off the HZ timer nohz_cpu_mask should
4813 * always be CPU_MASK_NONE.
4814 */
4815cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
4816
4817#ifdef CONFIG_SMP
4818/*
4819 * This is how migration works:
4820 *
70b97a7f 4821 * 1) we queue a struct migration_req structure in the source CPU's
1da177e4
LT
4822 * runqueue and wake up that CPU's migration thread.
4823 * 2) we down() the locked semaphore => thread blocks.
4824 * 3) migration thread wakes up (implicitly it forces the migrated
4825 * thread off the CPU)
4826 * 4) it gets the migration request and checks whether the migrated
4827 * task is still in the wrong runqueue.
4828 * 5) if it's in the wrong runqueue then the migration thread removes
4829 * it and puts it into the right queue.
4830 * 6) migration thread up()s the semaphore.
4831 * 7) we wake up and the migration is done.
4832 */
4833
4834/*
4835 * Change a given task's CPU affinity. Migrate the thread to a
4836 * proper CPU and schedule it away if the CPU it's executing on
4837 * is removed from the allowed bitmask.
4838 *
4839 * NOTE: the caller must have a valid reference to the task, the
4840 * task must not exit() & deallocate itself prematurely. The
4841 * call is not atomic; no spinlocks may be held.
4842 */
36c8b586 4843int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask)
1da177e4 4844{
70b97a7f 4845 struct migration_req req;
1da177e4 4846 unsigned long flags;
70b97a7f 4847 struct rq *rq;
48f24c4d 4848 int ret = 0;
1da177e4
LT
4849
4850 rq = task_rq_lock(p, &flags);
4851 if (!cpus_intersects(new_mask, cpu_online_map)) {
4852 ret = -EINVAL;
4853 goto out;
4854 }
4855
4856 p->cpus_allowed = new_mask;
4857 /* Can the task run on the task's current CPU? If so, we're done */
4858 if (cpu_isset(task_cpu(p), new_mask))
4859 goto out;
4860
4861 if (migrate_task(p, any_online_cpu(new_mask), &req)) {
4862 /* Need help from migration thread: drop lock and wait. */
4863 task_rq_unlock(rq, &flags);
4864 wake_up_process(rq->migration_thread);
4865 wait_for_completion(&req.done);
4866 tlb_migrate_finish(p->mm);
4867 return 0;
4868 }
4869out:
4870 task_rq_unlock(rq, &flags);
48f24c4d 4871
1da177e4
LT
4872 return ret;
4873}
1da177e4
LT
4874EXPORT_SYMBOL_GPL(set_cpus_allowed);
4875
4876/*
4877 * Move (not current) task off this cpu, onto dest cpu. We're doing
4878 * this because either it can't run here any more (set_cpus_allowed()
4879 * away from this CPU, or CPU going down), or because we're
4880 * attempting to rebalance this task on exec (sched_exec).
4881 *
4882 * So we race with normal scheduler movements, but that's OK, as long
4883 * as the task is no longer on this CPU.
efc30814
KK
4884 *
4885 * Returns non-zero if task was successfully migrated.
1da177e4 4886 */
efc30814 4887static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
1da177e4 4888{
70b97a7f 4889 struct rq *rq_dest, *rq_src;
efc30814 4890 int ret = 0;
1da177e4
LT
4891
4892 if (unlikely(cpu_is_offline(dest_cpu)))
efc30814 4893 return ret;
1da177e4
LT
4894
4895 rq_src = cpu_rq(src_cpu);
4896 rq_dest = cpu_rq(dest_cpu);
4897
4898 double_rq_lock(rq_src, rq_dest);
4899 /* Already moved. */
4900 if (task_cpu(p) != src_cpu)
4901 goto out;
4902 /* Affinity changed (again). */
4903 if (!cpu_isset(dest_cpu, p->cpus_allowed))
4904 goto out;
4905
4906 set_task_cpu(p, dest_cpu);
4907 if (p->array) {
4908 /*
4909 * Sync timestamp with rq_dest's before activating.
4910 * The same thing could be achieved by doing this step
4911 * afterwards, and pretending it was a local activate.
4912 * This way is cleaner and logically correct.
4913 */
4914 p->timestamp = p->timestamp - rq_src->timestamp_last_tick
4915 + rq_dest->timestamp_last_tick;
4916 deactivate_task(p, rq_src);
0a565f79 4917 __activate_task(p, rq_dest);
1da177e4
LT
4918 if (TASK_PREEMPTS_CURR(p, rq_dest))
4919 resched_task(rq_dest->curr);
4920 }
efc30814 4921 ret = 1;
1da177e4
LT
4922out:
4923 double_rq_unlock(rq_src, rq_dest);
efc30814 4924 return ret;
1da177e4
LT
4925}
4926
4927/*
4928 * migration_thread - this is a highprio system thread that performs
4929 * thread migration by bumping thread off CPU then 'pushing' onto
4930 * another runqueue.
4931 */
95cdf3b7 4932static int migration_thread(void *data)
1da177e4 4933{
1da177e4 4934 int cpu = (long)data;
70b97a7f 4935 struct rq *rq;
1da177e4
LT
4936
4937 rq = cpu_rq(cpu);
4938 BUG_ON(rq->migration_thread != current);
4939
4940 set_current_state(TASK_INTERRUPTIBLE);
4941 while (!kthread_should_stop()) {
70b97a7f 4942 struct migration_req *req;
1da177e4 4943 struct list_head *head;
1da177e4 4944
3e1d1d28 4945 try_to_freeze();
1da177e4
LT
4946
4947 spin_lock_irq(&rq->lock);
4948
4949 if (cpu_is_offline(cpu)) {
4950 spin_unlock_irq(&rq->lock);
4951 goto wait_to_die;
4952 }
4953
4954 if (rq->active_balance) {
4955 active_load_balance(rq, cpu);
4956 rq->active_balance = 0;
4957 }
4958
4959 head = &rq->migration_queue;
4960
4961 if (list_empty(head)) {
4962 spin_unlock_irq(&rq->lock);
4963 schedule();
4964 set_current_state(TASK_INTERRUPTIBLE);
4965 continue;
4966 }
70b97a7f 4967 req = list_entry(head->next, struct migration_req, list);
1da177e4
LT
4968 list_del_init(head->next);
4969
674311d5
NP
4970 spin_unlock(&rq->lock);
4971 __migrate_task(req->task, cpu, req->dest_cpu);
4972 local_irq_enable();
1da177e4
LT
4973
4974 complete(&req->done);
4975 }
4976 __set_current_state(TASK_RUNNING);
4977 return 0;
4978
4979wait_to_die:
4980 /* Wait for kthread_stop */
4981 set_current_state(TASK_INTERRUPTIBLE);
4982 while (!kthread_should_stop()) {
4983 schedule();
4984 set_current_state(TASK_INTERRUPTIBLE);
4985 }
4986 __set_current_state(TASK_RUNNING);
4987 return 0;
4988}
4989
4990#ifdef CONFIG_HOTPLUG_CPU
4991/* Figure out where task on dead CPU should go, use force if neccessary. */
48f24c4d 4992static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p)
1da177e4 4993{
efc30814 4994 unsigned long flags;
1da177e4 4995 cpumask_t mask;
70b97a7f
IM
4996 struct rq *rq;
4997 int dest_cpu;
1da177e4 4998
efc30814 4999restart:
1da177e4
LT
5000 /* On same node? */
5001 mask = node_to_cpumask(cpu_to_node(dead_cpu));
48f24c4d 5002 cpus_and(mask, mask, p->cpus_allowed);
1da177e4
LT
5003 dest_cpu = any_online_cpu(mask);
5004
5005 /* On any allowed CPU? */
5006 if (dest_cpu == NR_CPUS)
48f24c4d 5007 dest_cpu = any_online_cpu(p->cpus_allowed);
1da177e4
LT
5008
5009 /* No more Mr. Nice Guy. */
5010 if (dest_cpu == NR_CPUS) {
48f24c4d
IM
5011 rq = task_rq_lock(p, &flags);
5012 cpus_setall(p->cpus_allowed);
5013 dest_cpu = any_online_cpu(p->cpus_allowed);
efc30814 5014 task_rq_unlock(rq, &flags);
1da177e4
LT
5015
5016 /*
5017 * Don't tell them about moving exiting tasks or
5018 * kernel threads (both mm NULL), since they never
5019 * leave kernel.
5020 */
48f24c4d 5021 if (p->mm && printk_ratelimit())
1da177e4
LT
5022 printk(KERN_INFO "process %d (%s) no "
5023 "longer affine to cpu%d\n",
48f24c4d 5024 p->pid, p->comm, dead_cpu);
1da177e4 5025 }
48f24c4d 5026 if (!__migrate_task(p, dead_cpu, dest_cpu))
efc30814 5027 goto restart;
1da177e4
LT
5028}
5029
5030/*
5031 * While a dead CPU has no uninterruptible tasks queued at this point,
5032 * it might still have a nonzero ->nr_uninterruptible counter, because
5033 * for performance reasons the counter is not stricly tracking tasks to
5034 * their home CPUs. So we just add the counter to another CPU's counter,
5035 * to keep the global sum constant after CPU-down:
5036 */
70b97a7f 5037static void migrate_nr_uninterruptible(struct rq *rq_src)
1da177e4 5038{
70b97a7f 5039 struct rq *rq_dest = cpu_rq(any_online_cpu(CPU_MASK_ALL));
1da177e4
LT
5040 unsigned long flags;
5041
5042 local_irq_save(flags);
5043 double_rq_lock(rq_src, rq_dest);
5044 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
5045 rq_src->nr_uninterruptible = 0;
5046 double_rq_unlock(rq_src, rq_dest);
5047 local_irq_restore(flags);
5048}
5049
5050/* Run through task list and migrate tasks from the dead cpu. */
5051static void migrate_live_tasks(int src_cpu)
5052{
48f24c4d 5053 struct task_struct *p, *t;
1da177e4
LT
5054
5055 write_lock_irq(&tasklist_lock);
5056
48f24c4d
IM
5057 do_each_thread(t, p) {
5058 if (p == current)
1da177e4
LT
5059 continue;
5060
48f24c4d
IM
5061 if (task_cpu(p) == src_cpu)
5062 move_task_off_dead_cpu(src_cpu, p);
5063 } while_each_thread(t, p);
1da177e4
LT
5064
5065 write_unlock_irq(&tasklist_lock);
5066}
5067
5068/* Schedules idle task to be the next runnable task on current CPU.
5069 * It does so by boosting its priority to highest possible and adding it to
48f24c4d 5070 * the _front_ of the runqueue. Used by CPU offline code.
1da177e4
LT
5071 */
5072void sched_idle_next(void)
5073{
48f24c4d 5074 int this_cpu = smp_processor_id();
70b97a7f 5075 struct rq *rq = cpu_rq(this_cpu);
1da177e4
LT
5076 struct task_struct *p = rq->idle;
5077 unsigned long flags;
5078
5079 /* cpu has to be offline */
48f24c4d 5080 BUG_ON(cpu_online(this_cpu));
1da177e4 5081
48f24c4d
IM
5082 /*
5083 * Strictly not necessary since rest of the CPUs are stopped by now
5084 * and interrupts disabled on the current cpu.
1da177e4
LT
5085 */
5086 spin_lock_irqsave(&rq->lock, flags);
5087
5088 __setscheduler(p, SCHED_FIFO, MAX_RT_PRIO-1);
48f24c4d
IM
5089
5090 /* Add idle task to the _front_ of its priority queue: */
1da177e4
LT
5091 __activate_idle_task(p, rq);
5092
5093 spin_unlock_irqrestore(&rq->lock, flags);
5094}
5095
48f24c4d
IM
5096/*
5097 * Ensures that the idle task is using init_mm right before its cpu goes
1da177e4
LT
5098 * offline.
5099 */
5100void idle_task_exit(void)
5101{
5102 struct mm_struct *mm = current->active_mm;
5103
5104 BUG_ON(cpu_online(smp_processor_id()));
5105
5106 if (mm != &init_mm)
5107 switch_mm(mm, &init_mm, current);
5108 mmdrop(mm);
5109}
5110
36c8b586 5111static void migrate_dead(unsigned int dead_cpu, struct task_struct *p)
1da177e4 5112{
70b97a7f 5113 struct rq *rq = cpu_rq(dead_cpu);
1da177e4
LT
5114
5115 /* Must be exiting, otherwise would be on tasklist. */
48f24c4d 5116 BUG_ON(p->exit_state != EXIT_ZOMBIE && p->exit_state != EXIT_DEAD);
1da177e4
LT
5117
5118 /* Cannot have done final schedule yet: would have vanished. */
48f24c4d 5119 BUG_ON(p->flags & PF_DEAD);
1da177e4 5120
48f24c4d 5121 get_task_struct(p);
1da177e4
LT
5122
5123 /*
5124 * Drop lock around migration; if someone else moves it,
5125 * that's OK. No task can be added to this CPU, so iteration is
5126 * fine.
5127 */
5128 spin_unlock_irq(&rq->lock);
48f24c4d 5129 move_task_off_dead_cpu(dead_cpu, p);
1da177e4
LT
5130 spin_lock_irq(&rq->lock);
5131
48f24c4d 5132 put_task_struct(p);
1da177e4
LT
5133}
5134
5135/* release_task() removes task from tasklist, so we won't find dead tasks. */
5136static void migrate_dead_tasks(unsigned int dead_cpu)
5137{
70b97a7f 5138 struct rq *rq = cpu_rq(dead_cpu);
48f24c4d 5139 unsigned int arr, i;
1da177e4
LT
5140
5141 for (arr = 0; arr < 2; arr++) {
5142 for (i = 0; i < MAX_PRIO; i++) {
5143 struct list_head *list = &rq->arrays[arr].queue[i];
48f24c4d 5144
1da177e4 5145 while (!list_empty(list))
36c8b586
IM
5146 migrate_dead(dead_cpu, list_entry(list->next,
5147 struct task_struct, run_list));
1da177e4
LT
5148 }
5149 }
5150}
5151#endif /* CONFIG_HOTPLUG_CPU */
5152
5153/*
5154 * migration_call - callback that gets triggered when a CPU is added.
5155 * Here we can start up the necessary migration thread for the new CPU.
5156 */
48f24c4d
IM
5157static int __cpuinit
5158migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu)
1da177e4 5159{
1da177e4 5160 struct task_struct *p;
48f24c4d 5161 int cpu = (long)hcpu;
1da177e4 5162 unsigned long flags;
70b97a7f 5163 struct rq *rq;
1da177e4
LT
5164
5165 switch (action) {
5166 case CPU_UP_PREPARE:
5167 p = kthread_create(migration_thread, hcpu, "migration/%d",cpu);
5168 if (IS_ERR(p))
5169 return NOTIFY_BAD;
5170 p->flags |= PF_NOFREEZE;
5171 kthread_bind(p, cpu);
5172 /* Must be high prio: stop_machine expects to yield to it. */
5173 rq = task_rq_lock(p, &flags);
5174 __setscheduler(p, SCHED_FIFO, MAX_RT_PRIO-1);
5175 task_rq_unlock(rq, &flags);
5176 cpu_rq(cpu)->migration_thread = p;
5177 break;
48f24c4d 5178
1da177e4
LT
5179 case CPU_ONLINE:
5180 /* Strictly unneccessary, as first user will wake it. */
5181 wake_up_process(cpu_rq(cpu)->migration_thread);
5182 break;
48f24c4d 5183
1da177e4
LT
5184#ifdef CONFIG_HOTPLUG_CPU
5185 case CPU_UP_CANCELED:
fc75cdfa
HC
5186 if (!cpu_rq(cpu)->migration_thread)
5187 break;
1da177e4 5188 /* Unbind it from offline cpu so it can run. Fall thru. */
a4c4af7c
HC
5189 kthread_bind(cpu_rq(cpu)->migration_thread,
5190 any_online_cpu(cpu_online_map));
1da177e4
LT
5191 kthread_stop(cpu_rq(cpu)->migration_thread);
5192 cpu_rq(cpu)->migration_thread = NULL;
5193 break;
48f24c4d 5194
1da177e4
LT
5195 case CPU_DEAD:
5196 migrate_live_tasks(cpu);
5197 rq = cpu_rq(cpu);
5198 kthread_stop(rq->migration_thread);
5199 rq->migration_thread = NULL;
5200 /* Idle task back to normal (off runqueue, low prio) */
5201 rq = task_rq_lock(rq->idle, &flags);
5202 deactivate_task(rq->idle, rq);
5203 rq->idle->static_prio = MAX_PRIO;
5204 __setscheduler(rq->idle, SCHED_NORMAL, 0);
5205 migrate_dead_tasks(cpu);
5206 task_rq_unlock(rq, &flags);
5207 migrate_nr_uninterruptible(rq);
5208 BUG_ON(rq->nr_running != 0);
5209
5210 /* No need to migrate the tasks: it was best-effort if
5211 * they didn't do lock_cpu_hotplug(). Just wake up
5212 * the requestors. */
5213 spin_lock_irq(&rq->lock);
5214 while (!list_empty(&rq->migration_queue)) {
70b97a7f
IM
5215 struct migration_req *req;
5216
1da177e4 5217 req = list_entry(rq->migration_queue.next,
70b97a7f 5218 struct migration_req, list);
1da177e4
LT
5219 list_del_init(&req->list);
5220 complete(&req->done);
5221 }
5222 spin_unlock_irq(&rq->lock);
5223 break;
5224#endif
5225 }
5226 return NOTIFY_OK;
5227}
5228
5229/* Register at highest priority so that task migration (migrate_all_tasks)
5230 * happens before everything else.
5231 */
26c2143b 5232static struct notifier_block __cpuinitdata migration_notifier = {
1da177e4
LT
5233 .notifier_call = migration_call,
5234 .priority = 10
5235};
5236
5237int __init migration_init(void)
5238{
5239 void *cpu = (void *)(long)smp_processor_id();
48f24c4d
IM
5240
5241 /* Start one for the boot CPU: */
1da177e4
LT
5242 migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
5243 migration_call(&migration_notifier, CPU_ONLINE, cpu);
5244 register_cpu_notifier(&migration_notifier);
48f24c4d 5245
1da177e4
LT
5246 return 0;
5247}
5248#endif
5249
5250#ifdef CONFIG_SMP
1a20ff27 5251#undef SCHED_DOMAIN_DEBUG
1da177e4
LT
5252#ifdef SCHED_DOMAIN_DEBUG
5253static void sched_domain_debug(struct sched_domain *sd, int cpu)
5254{
5255 int level = 0;
5256
41c7ce9a
NP
5257 if (!sd) {
5258 printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu);
5259 return;
5260 }
5261
1da177e4
LT
5262 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
5263
5264 do {
5265 int i;
5266 char str[NR_CPUS];
5267 struct sched_group *group = sd->groups;
5268 cpumask_t groupmask;
5269
5270 cpumask_scnprintf(str, NR_CPUS, sd->span);
5271 cpus_clear(groupmask);
5272
5273 printk(KERN_DEBUG);
5274 for (i = 0; i < level + 1; i++)
5275 printk(" ");
5276 printk("domain %d: ", level);
5277
5278 if (!(sd->flags & SD_LOAD_BALANCE)) {
5279 printk("does not load-balance\n");
5280 if (sd->parent)
5281 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain has parent");
5282 break;
5283 }
5284
5285 printk("span %s\n", str);
5286
5287 if (!cpu_isset(cpu, sd->span))
5288 printk(KERN_ERR "ERROR: domain->span does not contain CPU%d\n", cpu);
5289 if (!cpu_isset(cpu, group->cpumask))
5290 printk(KERN_ERR "ERROR: domain->groups does not contain CPU%d\n", cpu);
5291
5292 printk(KERN_DEBUG);
5293 for (i = 0; i < level + 2; i++)
5294 printk(" ");
5295 printk("groups:");
5296 do {
5297 if (!group) {
5298 printk("\n");
5299 printk(KERN_ERR "ERROR: group is NULL\n");
5300 break;
5301 }
5302
5303 if (!group->cpu_power) {
5304 printk("\n");
5305 printk(KERN_ERR "ERROR: domain->cpu_power not set\n");
5306 }
5307
5308 if (!cpus_weight(group->cpumask)) {
5309 printk("\n");
5310 printk(KERN_ERR "ERROR: empty group\n");
5311 }
5312
5313 if (cpus_intersects(groupmask, group->cpumask)) {
5314 printk("\n");
5315 printk(KERN_ERR "ERROR: repeated CPUs\n");
5316 }
5317
5318 cpus_or(groupmask, groupmask, group->cpumask);
5319
5320 cpumask_scnprintf(str, NR_CPUS, group->cpumask);
5321 printk(" %s", str);
5322
5323 group = group->next;
5324 } while (group != sd->groups);
5325 printk("\n");
5326
5327 if (!cpus_equal(sd->span, groupmask))
5328 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
5329
5330 level++;
5331 sd = sd->parent;
5332
5333 if (sd) {
5334 if (!cpus_subset(groupmask, sd->span))
5335 printk(KERN_ERR "ERROR: parent span is not a superset of domain->span\n");
5336 }
5337
5338 } while (sd);
5339}
5340#else
48f24c4d 5341# define sched_domain_debug(sd, cpu) do { } while (0)
1da177e4
LT
5342#endif
5343
1a20ff27 5344static int sd_degenerate(struct sched_domain *sd)
245af2c7
SS
5345{
5346 if (cpus_weight(sd->span) == 1)
5347 return 1;
5348
5349 /* Following flags need at least 2 groups */
5350 if (sd->flags & (SD_LOAD_BALANCE |
5351 SD_BALANCE_NEWIDLE |
5352 SD_BALANCE_FORK |
5353 SD_BALANCE_EXEC)) {
5354 if (sd->groups != sd->groups->next)
5355 return 0;
5356 }
5357
5358 /* Following flags don't use groups */
5359 if (sd->flags & (SD_WAKE_IDLE |
5360 SD_WAKE_AFFINE |
5361 SD_WAKE_BALANCE))
5362 return 0;
5363
5364 return 1;
5365}
5366
48f24c4d
IM
5367static int
5368sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent)
245af2c7
SS
5369{
5370 unsigned long cflags = sd->flags, pflags = parent->flags;
5371
5372 if (sd_degenerate(parent))
5373 return 1;
5374
5375 if (!cpus_equal(sd->span, parent->span))
5376 return 0;
5377
5378 /* Does parent contain flags not in child? */
5379 /* WAKE_BALANCE is a subset of WAKE_AFFINE */
5380 if (cflags & SD_WAKE_AFFINE)
5381 pflags &= ~SD_WAKE_BALANCE;
5382 /* Flags needing groups don't count if only 1 group in parent */
5383 if (parent->groups == parent->groups->next) {
5384 pflags &= ~(SD_LOAD_BALANCE |
5385 SD_BALANCE_NEWIDLE |
5386 SD_BALANCE_FORK |
5387 SD_BALANCE_EXEC);
5388 }
5389 if (~cflags & pflags)
5390 return 0;
5391
5392 return 1;
5393}
5394
1da177e4
LT
5395/*
5396 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
5397 * hold the hotplug lock.
5398 */
9c1cfda2 5399static void cpu_attach_domain(struct sched_domain *sd, int cpu)
1da177e4 5400{
70b97a7f 5401 struct rq *rq = cpu_rq(cpu);
245af2c7
SS
5402 struct sched_domain *tmp;
5403
5404 /* Remove the sched domains which do not contribute to scheduling. */
5405 for (tmp = sd; tmp; tmp = tmp->parent) {
5406 struct sched_domain *parent = tmp->parent;
5407 if (!parent)
5408 break;
5409 if (sd_parent_degenerate(tmp, parent))
5410 tmp->parent = parent->parent;
5411 }
5412
5413 if (sd && sd_degenerate(sd))
5414 sd = sd->parent;
1da177e4
LT
5415
5416 sched_domain_debug(sd, cpu);
5417
674311d5 5418 rcu_assign_pointer(rq->sd, sd);
1da177e4
LT
5419}
5420
5421/* cpus with isolated domains */
9c1cfda2 5422static cpumask_t __devinitdata cpu_isolated_map = CPU_MASK_NONE;
1da177e4
LT
5423
5424/* Setup the mask of cpus configured for isolated domains */
5425static int __init isolated_cpu_setup(char *str)
5426{
5427 int ints[NR_CPUS], i;
5428
5429 str = get_options(str, ARRAY_SIZE(ints), ints);
5430 cpus_clear(cpu_isolated_map);
5431 for (i = 1; i <= ints[0]; i++)
5432 if (ints[i] < NR_CPUS)
5433 cpu_set(ints[i], cpu_isolated_map);
5434 return 1;
5435}
5436
5437__setup ("isolcpus=", isolated_cpu_setup);
5438
5439/*
5440 * init_sched_build_groups takes an array of groups, the cpumask we wish
5441 * to span, and a pointer to a function which identifies what group a CPU
5442 * belongs to. The return value of group_fn must be a valid index into the
5443 * groups[] array, and must be >= 0 and < NR_CPUS (due to the fact that we
5444 * keep track of groups covered with a cpumask_t).
5445 *
5446 * init_sched_build_groups will build a circular linked list of the groups
5447 * covered by the given span, and will set each group's ->cpumask correctly,
5448 * and ->cpu_power to 0.
5449 */
9c1cfda2
JH
5450static void init_sched_build_groups(struct sched_group groups[], cpumask_t span,
5451 int (*group_fn)(int cpu))
1da177e4
LT
5452{
5453 struct sched_group *first = NULL, *last = NULL;
5454 cpumask_t covered = CPU_MASK_NONE;
5455 int i;
5456
5457 for_each_cpu_mask(i, span) {
5458 int group = group_fn(i);
5459 struct sched_group *sg = &groups[group];
5460 int j;
5461
5462 if (cpu_isset(i, covered))
5463 continue;
5464
5465 sg->cpumask = CPU_MASK_NONE;
5466 sg->cpu_power = 0;
5467
5468 for_each_cpu_mask(j, span) {
5469 if (group_fn(j) != group)
5470 continue;
5471
5472 cpu_set(j, covered);
5473 cpu_set(j, sg->cpumask);
5474 }
5475 if (!first)
5476 first = sg;
5477 if (last)
5478 last->next = sg;
5479 last = sg;
5480 }
5481 last->next = first;
5482}
5483
9c1cfda2 5484#define SD_NODES_PER_DOMAIN 16
1da177e4 5485
198e2f18 5486/*
5487 * Self-tuning task migration cost measurement between source and target CPUs.
5488 *
5489 * This is done by measuring the cost of manipulating buffers of varying
5490 * sizes. For a given buffer-size here are the steps that are taken:
5491 *
5492 * 1) the source CPU reads+dirties a shared buffer
5493 * 2) the target CPU reads+dirties the same shared buffer
5494 *
5495 * We measure how long they take, in the following 4 scenarios:
5496 *
5497 * - source: CPU1, target: CPU2 | cost1
5498 * - source: CPU2, target: CPU1 | cost2
5499 * - source: CPU1, target: CPU1 | cost3
5500 * - source: CPU2, target: CPU2 | cost4
5501 *
5502 * We then calculate the cost3+cost4-cost1-cost2 difference - this is
5503 * the cost of migration.
5504 *
5505 * We then start off from a small buffer-size and iterate up to larger
5506 * buffer sizes, in 5% steps - measuring each buffer-size separately, and
5507 * doing a maximum search for the cost. (The maximum cost for a migration
5508 * normally occurs when the working set size is around the effective cache
5509 * size.)
5510 */
5511#define SEARCH_SCOPE 2
5512#define MIN_CACHE_SIZE (64*1024U)
5513#define DEFAULT_CACHE_SIZE (5*1024*1024U)
70b4d63e 5514#define ITERATIONS 1
198e2f18 5515#define SIZE_THRESH 130
5516#define COST_THRESH 130
5517
5518/*
5519 * The migration cost is a function of 'domain distance'. Domain
5520 * distance is the number of steps a CPU has to iterate down its
5521 * domain tree to share a domain with the other CPU. The farther
5522 * two CPUs are from each other, the larger the distance gets.
5523 *
5524 * Note that we use the distance only to cache measurement results,
5525 * the distance value is not used numerically otherwise. When two
5526 * CPUs have the same distance it is assumed that the migration
5527 * cost is the same. (this is a simplification but quite practical)
5528 */
5529#define MAX_DOMAIN_DISTANCE 32
5530
5531static unsigned long long migration_cost[MAX_DOMAIN_DISTANCE] =
4bbf39c2
IM
5532 { [ 0 ... MAX_DOMAIN_DISTANCE-1 ] =
5533/*
5534 * Architectures may override the migration cost and thus avoid
5535 * boot-time calibration. Unit is nanoseconds. Mostly useful for
5536 * virtualized hardware:
5537 */
5538#ifdef CONFIG_DEFAULT_MIGRATION_COST
5539 CONFIG_DEFAULT_MIGRATION_COST
5540#else
5541 -1LL
5542#endif
5543};
198e2f18 5544
5545/*
5546 * Allow override of migration cost - in units of microseconds.
5547 * E.g. migration_cost=1000,2000,3000 will set up a level-1 cost
5548 * of 1 msec, level-2 cost of 2 msecs and level3 cost of 3 msecs:
5549 */
5550static int __init migration_cost_setup(char *str)
5551{
5552 int ints[MAX_DOMAIN_DISTANCE+1], i;
5553
5554 str = get_options(str, ARRAY_SIZE(ints), ints);
5555
5556 printk("#ints: %d\n", ints[0]);
5557 for (i = 1; i <= ints[0]; i++) {
5558 migration_cost[i-1] = (unsigned long long)ints[i]*1000;
5559 printk("migration_cost[%d]: %Ld\n", i-1, migration_cost[i-1]);
5560 }
5561 return 1;
5562}
5563
5564__setup ("migration_cost=", migration_cost_setup);
5565
5566/*
5567 * Global multiplier (divisor) for migration-cutoff values,
5568 * in percentiles. E.g. use a value of 150 to get 1.5 times
5569 * longer cache-hot cutoff times.
5570 *
5571 * (We scale it from 100 to 128 to long long handling easier.)
5572 */
5573
5574#define MIGRATION_FACTOR_SCALE 128
5575
5576static unsigned int migration_factor = MIGRATION_FACTOR_SCALE;
5577
5578static int __init setup_migration_factor(char *str)
5579{
5580 get_option(&str, &migration_factor);
5581 migration_factor = migration_factor * MIGRATION_FACTOR_SCALE / 100;
5582 return 1;
5583}
5584
5585__setup("migration_factor=", setup_migration_factor);
5586
5587/*
5588 * Estimated distance of two CPUs, measured via the number of domains
5589 * we have to pass for the two CPUs to be in the same span:
5590 */
5591static unsigned long domain_distance(int cpu1, int cpu2)
5592{
5593 unsigned long distance = 0;
5594 struct sched_domain *sd;
5595
5596 for_each_domain(cpu1, sd) {
5597 WARN_ON(!cpu_isset(cpu1, sd->span));
5598 if (cpu_isset(cpu2, sd->span))
5599 return distance;
5600 distance++;
5601 }
5602 if (distance >= MAX_DOMAIN_DISTANCE) {
5603 WARN_ON(1);
5604 distance = MAX_DOMAIN_DISTANCE-1;
5605 }
5606
5607 return distance;
5608}
5609
5610static unsigned int migration_debug;
5611
5612static int __init setup_migration_debug(char *str)
5613{
5614 get_option(&str, &migration_debug);
5615 return 1;
5616}
5617
5618__setup("migration_debug=", setup_migration_debug);
5619
5620/*
5621 * Maximum cache-size that the scheduler should try to measure.
5622 * Architectures with larger caches should tune this up during
5623 * bootup. Gets used in the domain-setup code (i.e. during SMP
5624 * bootup).
5625 */
5626unsigned int max_cache_size;
5627
5628static int __init setup_max_cache_size(char *str)
5629{
5630 get_option(&str, &max_cache_size);
5631 return 1;
5632}
5633
5634__setup("max_cache_size=", setup_max_cache_size);
5635
5636/*
5637 * Dirty a big buffer in a hard-to-predict (for the L2 cache) way. This
5638 * is the operation that is timed, so we try to generate unpredictable
5639 * cachemisses that still end up filling the L2 cache:
5640 */
5641static void touch_cache(void *__cache, unsigned long __size)
5642{
5643 unsigned long size = __size/sizeof(long), chunk1 = size/3,
5644 chunk2 = 2*size/3;
5645 unsigned long *cache = __cache;
5646 int i;
5647
5648 for (i = 0; i < size/6; i += 8) {
5649 switch (i % 6) {
5650 case 0: cache[i]++;
5651 case 1: cache[size-1-i]++;
5652 case 2: cache[chunk1-i]++;
5653 case 3: cache[chunk1+i]++;
5654 case 4: cache[chunk2-i]++;
5655 case 5: cache[chunk2+i]++;
5656 }
5657 }
5658}
5659
5660/*
5661 * Measure the cache-cost of one task migration. Returns in units of nsec.
5662 */
48f24c4d
IM
5663static unsigned long long
5664measure_one(void *cache, unsigned long size, int source, int target)
198e2f18 5665{
5666 cpumask_t mask, saved_mask;
5667 unsigned long long t0, t1, t2, t3, cost;
5668
5669 saved_mask = current->cpus_allowed;
5670
5671 /*
5672 * Flush source caches to RAM and invalidate them:
5673 */
5674 sched_cacheflush();
5675
5676 /*
5677 * Migrate to the source CPU:
5678 */
5679 mask = cpumask_of_cpu(source);
5680 set_cpus_allowed(current, mask);
5681 WARN_ON(smp_processor_id() != source);
5682
5683 /*
5684 * Dirty the working set:
5685 */
5686 t0 = sched_clock();
5687 touch_cache(cache, size);
5688 t1 = sched_clock();
5689
5690 /*
5691 * Migrate to the target CPU, dirty the L2 cache and access
5692 * the shared buffer. (which represents the working set
5693 * of a migrated task.)
5694 */
5695 mask = cpumask_of_cpu(target);
5696 set_cpus_allowed(current, mask);
5697 WARN_ON(smp_processor_id() != target);
5698
5699 t2 = sched_clock();
5700 touch_cache(cache, size);
5701 t3 = sched_clock();
5702
5703 cost = t1-t0 + t3-t2;
5704
5705 if (migration_debug >= 2)
5706 printk("[%d->%d]: %8Ld %8Ld %8Ld => %10Ld.\n",
5707 source, target, t1-t0, t1-t0, t3-t2, cost);
5708 /*
5709 * Flush target caches to RAM and invalidate them:
5710 */
5711 sched_cacheflush();
5712
5713 set_cpus_allowed(current, saved_mask);
5714
5715 return cost;
5716}
5717
5718/*
5719 * Measure a series of task migrations and return the average
5720 * result. Since this code runs early during bootup the system
5721 * is 'undisturbed' and the average latency makes sense.
5722 *
5723 * The algorithm in essence auto-detects the relevant cache-size,
5724 * so it will properly detect different cachesizes for different
5725 * cache-hierarchies, depending on how the CPUs are connected.
5726 *
5727 * Architectures can prime the upper limit of the search range via
5728 * max_cache_size, otherwise the search range defaults to 20MB...64K.
5729 */
5730static unsigned long long
5731measure_cost(int cpu1, int cpu2, void *cache, unsigned int size)
5732{
5733 unsigned long long cost1, cost2;
5734 int i;
5735
5736 /*
5737 * Measure the migration cost of 'size' bytes, over an
5738 * average of 10 runs:
5739 *
5740 * (We perturb the cache size by a small (0..4k)
5741 * value to compensate size/alignment related artifacts.
5742 * We also subtract the cost of the operation done on
5743 * the same CPU.)
5744 */
5745 cost1 = 0;
5746
5747 /*
5748 * dry run, to make sure we start off cache-cold on cpu1,
5749 * and to get any vmalloc pagefaults in advance:
5750 */
5751 measure_one(cache, size, cpu1, cpu2);
5752 for (i = 0; i < ITERATIONS; i++)
5753 cost1 += measure_one(cache, size - i*1024, cpu1, cpu2);
5754
5755 measure_one(cache, size, cpu2, cpu1);
5756 for (i = 0; i < ITERATIONS; i++)
5757 cost1 += measure_one(cache, size - i*1024, cpu2, cpu1);
5758
5759 /*
5760 * (We measure the non-migrating [cached] cost on both
5761 * cpu1 and cpu2, to handle CPUs with different speeds)
5762 */
5763 cost2 = 0;
5764
5765 measure_one(cache, size, cpu1, cpu1);
5766 for (i = 0; i < ITERATIONS; i++)
5767 cost2 += measure_one(cache, size - i*1024, cpu1, cpu1);
5768
5769 measure_one(cache, size, cpu2, cpu2);
5770 for (i = 0; i < ITERATIONS; i++)
5771 cost2 += measure_one(cache, size - i*1024, cpu2, cpu2);
5772
5773 /*
5774 * Get the per-iteration migration cost:
5775 */
5776 do_div(cost1, 2*ITERATIONS);
5777 do_div(cost2, 2*ITERATIONS);
5778
5779 return cost1 - cost2;
5780}
5781
5782static unsigned long long measure_migration_cost(int cpu1, int cpu2)
5783{
5784 unsigned long long max_cost = 0, fluct = 0, avg_fluct = 0;
5785 unsigned int max_size, size, size_found = 0;
5786 long long cost = 0, prev_cost;
5787 void *cache;
5788
5789 /*
5790 * Search from max_cache_size*5 down to 64K - the real relevant
5791 * cachesize has to lie somewhere inbetween.
5792 */
5793 if (max_cache_size) {
5794 max_size = max(max_cache_size * SEARCH_SCOPE, MIN_CACHE_SIZE);
5795 size = max(max_cache_size / SEARCH_SCOPE, MIN_CACHE_SIZE);
5796 } else {
5797 /*
5798 * Since we have no estimation about the relevant
5799 * search range
5800 */
5801 max_size = DEFAULT_CACHE_SIZE * SEARCH_SCOPE;
5802 size = MIN_CACHE_SIZE;
5803 }
5804
5805 if (!cpu_online(cpu1) || !cpu_online(cpu2)) {
5806 printk("cpu %d and %d not both online!\n", cpu1, cpu2);
5807 return 0;
5808 }
5809
5810 /*
5811 * Allocate the working set:
5812 */
5813 cache = vmalloc(max_size);
5814 if (!cache) {
5815 printk("could not vmalloc %d bytes for cache!\n", 2*max_size);
2ed6e34f 5816 return 1000000; /* return 1 msec on very small boxen */
198e2f18 5817 }
5818
5819 while (size <= max_size) {
5820 prev_cost = cost;
5821 cost = measure_cost(cpu1, cpu2, cache, size);
5822
5823 /*
5824 * Update the max:
5825 */
5826 if (cost > 0) {
5827 if (max_cost < cost) {
5828 max_cost = cost;
5829 size_found = size;
5830 }
5831 }
5832 /*
5833 * Calculate average fluctuation, we use this to prevent
5834 * noise from triggering an early break out of the loop:
5835 */
5836 fluct = abs(cost - prev_cost);
5837 avg_fluct = (avg_fluct + fluct)/2;
5838
5839 if (migration_debug)
5840 printk("-> [%d][%d][%7d] %3ld.%ld [%3ld.%ld] (%ld): (%8Ld %8Ld)\n",
5841 cpu1, cpu2, size,
5842 (long)cost / 1000000,
5843 ((long)cost / 100000) % 10,
5844 (long)max_cost / 1000000,
5845 ((long)max_cost / 100000) % 10,
5846 domain_distance(cpu1, cpu2),
5847 cost, avg_fluct);
5848
5849 /*
5850 * If we iterated at least 20% past the previous maximum,
5851 * and the cost has dropped by more than 20% already,
5852 * (taking fluctuations into account) then we assume to
5853 * have found the maximum and break out of the loop early:
5854 */
5855 if (size_found && (size*100 > size_found*SIZE_THRESH))
5856 if (cost+avg_fluct <= 0 ||
5857 max_cost*100 > (cost+avg_fluct)*COST_THRESH) {
5858
5859 if (migration_debug)
5860 printk("-> found max.\n");
5861 break;
5862 }
5863 /*
70b4d63e 5864 * Increase the cachesize in 10% steps:
198e2f18 5865 */
70b4d63e 5866 size = size * 10 / 9;
198e2f18 5867 }
5868
5869 if (migration_debug)
5870 printk("[%d][%d] working set size found: %d, cost: %Ld\n",
5871 cpu1, cpu2, size_found, max_cost);
5872
5873 vfree(cache);
5874
5875 /*
5876 * A task is considered 'cache cold' if at least 2 times
5877 * the worst-case cost of migration has passed.
5878 *
5879 * (this limit is only listened to if the load-balancing
5880 * situation is 'nice' - if there is a large imbalance we
5881 * ignore it for the sake of CPU utilization and
5882 * processing fairness.)
5883 */
5884 return 2 * max_cost * migration_factor / MIGRATION_FACTOR_SCALE;
5885}
5886
5887static void calibrate_migration_costs(const cpumask_t *cpu_map)
5888{
5889 int cpu1 = -1, cpu2 = -1, cpu, orig_cpu = raw_smp_processor_id();
5890 unsigned long j0, j1, distance, max_distance = 0;
5891 struct sched_domain *sd;
5892
5893 j0 = jiffies;
5894
5895 /*
5896 * First pass - calculate the cacheflush times:
5897 */
5898 for_each_cpu_mask(cpu1, *cpu_map) {
5899 for_each_cpu_mask(cpu2, *cpu_map) {
5900 if (cpu1 == cpu2)
5901 continue;
5902 distance = domain_distance(cpu1, cpu2);
5903 max_distance = max(max_distance, distance);
5904 /*
5905 * No result cached yet?
5906 */
5907 if (migration_cost[distance] == -1LL)
5908 migration_cost[distance] =
5909 measure_migration_cost(cpu1, cpu2);
5910 }
5911 }
5912 /*
5913 * Second pass - update the sched domain hierarchy with
5914 * the new cache-hot-time estimations:
5915 */
5916 for_each_cpu_mask(cpu, *cpu_map) {
5917 distance = 0;
5918 for_each_domain(cpu, sd) {
5919 sd->cache_hot_time = migration_cost[distance];
5920 distance++;
5921 }
5922 }
5923 /*
5924 * Print the matrix:
5925 */
5926 if (migration_debug)
5927 printk("migration: max_cache_size: %d, cpu: %d MHz:\n",
5928 max_cache_size,
5929#ifdef CONFIG_X86
5930 cpu_khz/1000
5931#else
5932 -1
5933#endif
5934 );
bd576c95
CE
5935 if (system_state == SYSTEM_BOOTING) {
5936 printk("migration_cost=");
5937 for (distance = 0; distance <= max_distance; distance++) {
5938 if (distance)
5939 printk(",");
5940 printk("%ld", (long)migration_cost[distance] / 1000);
5941 }
5942 printk("\n");
198e2f18 5943 }
198e2f18 5944 j1 = jiffies;
5945 if (migration_debug)
5946 printk("migration: %ld seconds\n", (j1-j0)/HZ);
5947
5948 /*
5949 * Move back to the original CPU. NUMA-Q gets confused
5950 * if we migrate to another quad during bootup.
5951 */
5952 if (raw_smp_processor_id() != orig_cpu) {
5953 cpumask_t mask = cpumask_of_cpu(orig_cpu),
5954 saved_mask = current->cpus_allowed;
5955
5956 set_cpus_allowed(current, mask);
5957 set_cpus_allowed(current, saved_mask);
5958 }
5959}
5960
9c1cfda2 5961#ifdef CONFIG_NUMA
198e2f18 5962
9c1cfda2
JH
5963/**
5964 * find_next_best_node - find the next node to include in a sched_domain
5965 * @node: node whose sched_domain we're building
5966 * @used_nodes: nodes already in the sched_domain
5967 *
5968 * Find the next node to include in a given scheduling domain. Simply
5969 * finds the closest node not already in the @used_nodes map.
5970 *
5971 * Should use nodemask_t.
5972 */
5973static int find_next_best_node(int node, unsigned long *used_nodes)
5974{
5975 int i, n, val, min_val, best_node = 0;
5976
5977 min_val = INT_MAX;
5978
5979 for (i = 0; i < MAX_NUMNODES; i++) {
5980 /* Start at @node */
5981 n = (node + i) % MAX_NUMNODES;
5982
5983 if (!nr_cpus_node(n))
5984 continue;
5985
5986 /* Skip already used nodes */
5987 if (test_bit(n, used_nodes))
5988 continue;
5989
5990 /* Simple min distance search */
5991 val = node_distance(node, n);
5992
5993 if (val < min_val) {
5994 min_val = val;
5995 best_node = n;
5996 }
5997 }
5998
5999 set_bit(best_node, used_nodes);
6000 return best_node;
6001}
6002
6003/**
6004 * sched_domain_node_span - get a cpumask for a node's sched_domain
6005 * @node: node whose cpumask we're constructing
6006 * @size: number of nodes to include in this span
6007 *
6008 * Given a node, construct a good cpumask for its sched_domain to span. It
6009 * should be one that prevents unnecessary balancing, but also spreads tasks
6010 * out optimally.
6011 */
6012static cpumask_t sched_domain_node_span(int node)
6013{
9c1cfda2 6014 DECLARE_BITMAP(used_nodes, MAX_NUMNODES);
48f24c4d
IM
6015 cpumask_t span, nodemask;
6016 int i;
9c1cfda2
JH
6017
6018 cpus_clear(span);
6019 bitmap_zero(used_nodes, MAX_NUMNODES);
6020
6021 nodemask = node_to_cpumask(node);
6022 cpus_or(span, span, nodemask);
6023 set_bit(node, used_nodes);
6024
6025 for (i = 1; i < SD_NODES_PER_DOMAIN; i++) {
6026 int next_node = find_next_best_node(node, used_nodes);
48f24c4d 6027
9c1cfda2
JH
6028 nodemask = node_to_cpumask(next_node);
6029 cpus_or(span, span, nodemask);
6030 }
6031
6032 return span;
6033}
6034#endif
6035
5c45bf27 6036int sched_smt_power_savings = 0, sched_mc_power_savings = 0;
48f24c4d 6037
9c1cfda2 6038/*
48f24c4d 6039 * SMT sched-domains:
9c1cfda2 6040 */
1da177e4
LT
6041#ifdef CONFIG_SCHED_SMT
6042static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
6043static struct sched_group sched_group_cpus[NR_CPUS];
48f24c4d 6044
1a20ff27 6045static int cpu_to_cpu_group(int cpu)
1da177e4
LT
6046{
6047 return cpu;
6048}
6049#endif
6050
48f24c4d
IM
6051/*
6052 * multi-core sched-domains:
6053 */
1e9f28fa
SS
6054#ifdef CONFIG_SCHED_MC
6055static DEFINE_PER_CPU(struct sched_domain, core_domains);
36938169 6056static struct sched_group *sched_group_core_bycpu[NR_CPUS];
1e9f28fa
SS
6057#endif
6058
6059#if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT)
6060static int cpu_to_core_group(int cpu)
6061{
6062 return first_cpu(cpu_sibling_map[cpu]);
6063}
6064#elif defined(CONFIG_SCHED_MC)
6065static int cpu_to_core_group(int cpu)
6066{
6067 return cpu;
6068}
6069#endif
6070
1da177e4 6071static DEFINE_PER_CPU(struct sched_domain, phys_domains);
36938169 6072static struct sched_group *sched_group_phys_bycpu[NR_CPUS];
48f24c4d 6073
1a20ff27 6074static int cpu_to_phys_group(int cpu)
1da177e4 6075{
48f24c4d 6076#ifdef CONFIG_SCHED_MC
1e9f28fa
SS
6077 cpumask_t mask = cpu_coregroup_map(cpu);
6078 return first_cpu(mask);
6079#elif defined(CONFIG_SCHED_SMT)
1da177e4
LT
6080 return first_cpu(cpu_sibling_map[cpu]);
6081#else
6082 return cpu;
6083#endif
6084}
6085
6086#ifdef CONFIG_NUMA
1da177e4 6087/*
9c1cfda2
JH
6088 * The init_sched_build_groups can't handle what we want to do with node
6089 * groups, so roll our own. Now each node has its own list of groups which
6090 * gets dynamically allocated.
1da177e4 6091 */
9c1cfda2 6092static DEFINE_PER_CPU(struct sched_domain, node_domains);
d1b55138 6093static struct sched_group **sched_group_nodes_bycpu[NR_CPUS];
1da177e4 6094
9c1cfda2 6095static DEFINE_PER_CPU(struct sched_domain, allnodes_domains);
d1b55138 6096static struct sched_group *sched_group_allnodes_bycpu[NR_CPUS];
9c1cfda2
JH
6097
6098static int cpu_to_allnodes_group(int cpu)
6099{
6100 return cpu_to_node(cpu);
1da177e4 6101}
08069033
SS
6102static void init_numa_sched_groups_power(struct sched_group *group_head)
6103{
6104 struct sched_group *sg = group_head;
6105 int j;
6106
6107 if (!sg)
6108 return;
6109next_sg:
6110 for_each_cpu_mask(j, sg->cpumask) {
6111 struct sched_domain *sd;
6112
6113 sd = &per_cpu(phys_domains, j);
6114 if (j != first_cpu(sd->groups->cpumask)) {
6115 /*
6116 * Only add "power" once for each
6117 * physical package.
6118 */
6119 continue;
6120 }
6121
6122 sg->cpu_power += sd->groups->cpu_power;
6123 }
6124 sg = sg->next;
6125 if (sg != group_head)
6126 goto next_sg;
6127}
1da177e4
LT
6128#endif
6129
51888ca2
SV
6130/* Free memory allocated for various sched_group structures */
6131static void free_sched_groups(const cpumask_t *cpu_map)
6132{
36938169 6133 int cpu;
51888ca2
SV
6134#ifdef CONFIG_NUMA
6135 int i;
51888ca2
SV
6136
6137 for_each_cpu_mask(cpu, *cpu_map) {
6138 struct sched_group *sched_group_allnodes
6139 = sched_group_allnodes_bycpu[cpu];
6140 struct sched_group **sched_group_nodes
6141 = sched_group_nodes_bycpu[cpu];
6142
6143 if (sched_group_allnodes) {
6144 kfree(sched_group_allnodes);
6145 sched_group_allnodes_bycpu[cpu] = NULL;
6146 }
6147
6148 if (!sched_group_nodes)
6149 continue;
6150
6151 for (i = 0; i < MAX_NUMNODES; i++) {
6152 cpumask_t nodemask = node_to_cpumask(i);
6153 struct sched_group *oldsg, *sg = sched_group_nodes[i];
6154
6155 cpus_and(nodemask, nodemask, *cpu_map);
6156 if (cpus_empty(nodemask))
6157 continue;
6158
6159 if (sg == NULL)
6160 continue;
6161 sg = sg->next;
6162next_sg:
6163 oldsg = sg;
6164 sg = sg->next;
6165 kfree(oldsg);
6166 if (oldsg != sched_group_nodes[i])
6167 goto next_sg;
6168 }
6169 kfree(sched_group_nodes);
6170 sched_group_nodes_bycpu[cpu] = NULL;
6171 }
6172#endif
36938169
SV
6173 for_each_cpu_mask(cpu, *cpu_map) {
6174 if (sched_group_phys_bycpu[cpu]) {
6175 kfree(sched_group_phys_bycpu[cpu]);
6176 sched_group_phys_bycpu[cpu] = NULL;
6177 }
6178#ifdef CONFIG_SCHED_MC
6179 if (sched_group_core_bycpu[cpu]) {
6180 kfree(sched_group_core_bycpu[cpu]);
6181 sched_group_core_bycpu[cpu] = NULL;
6182 }
6183#endif
6184 }
51888ca2
SV
6185}
6186
1da177e4 6187/*
1a20ff27
DG
6188 * Build sched domains for a given set of cpus and attach the sched domains
6189 * to the individual cpus
1da177e4 6190 */
51888ca2 6191static int build_sched_domains(const cpumask_t *cpu_map)
1da177e4
LT
6192{
6193 int i;
36938169
SV
6194 struct sched_group *sched_group_phys = NULL;
6195#ifdef CONFIG_SCHED_MC
6196 struct sched_group *sched_group_core = NULL;
6197#endif
d1b55138
JH
6198#ifdef CONFIG_NUMA
6199 struct sched_group **sched_group_nodes = NULL;
6200 struct sched_group *sched_group_allnodes = NULL;
6201
6202 /*
6203 * Allocate the per-node list of sched groups
6204 */
51888ca2 6205 sched_group_nodes = kzalloc(sizeof(struct sched_group*)*MAX_NUMNODES,
d3a5aa98 6206 GFP_KERNEL);
d1b55138
JH
6207 if (!sched_group_nodes) {
6208 printk(KERN_WARNING "Can not alloc sched group node list\n");
51888ca2 6209 return -ENOMEM;
d1b55138
JH
6210 }
6211 sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes;
6212#endif
1da177e4
LT
6213
6214 /*
1a20ff27 6215 * Set up domains for cpus specified by the cpu_map.
1da177e4 6216 */
1a20ff27 6217 for_each_cpu_mask(i, *cpu_map) {
1da177e4
LT
6218 int group;
6219 struct sched_domain *sd = NULL, *p;
6220 cpumask_t nodemask = node_to_cpumask(cpu_to_node(i));
6221
1a20ff27 6222 cpus_and(nodemask, nodemask, *cpu_map);
1da177e4
LT
6223
6224#ifdef CONFIG_NUMA
d1b55138 6225 if (cpus_weight(*cpu_map)
9c1cfda2 6226 > SD_NODES_PER_DOMAIN*cpus_weight(nodemask)) {
d1b55138
JH
6227 if (!sched_group_allnodes) {
6228 sched_group_allnodes
6229 = kmalloc(sizeof(struct sched_group)
6230 * MAX_NUMNODES,
6231 GFP_KERNEL);
6232 if (!sched_group_allnodes) {
6233 printk(KERN_WARNING
6234 "Can not alloc allnodes sched group\n");
51888ca2 6235 goto error;
d1b55138
JH
6236 }
6237 sched_group_allnodes_bycpu[i]
6238 = sched_group_allnodes;
6239 }
9c1cfda2
JH
6240 sd = &per_cpu(allnodes_domains, i);
6241 *sd = SD_ALLNODES_INIT;
6242 sd->span = *cpu_map;
6243 group = cpu_to_allnodes_group(i);
6244 sd->groups = &sched_group_allnodes[group];
6245 p = sd;
6246 } else
6247 p = NULL;
6248
1da177e4 6249 sd = &per_cpu(node_domains, i);
1da177e4 6250 *sd = SD_NODE_INIT;
9c1cfda2
JH
6251 sd->span = sched_domain_node_span(cpu_to_node(i));
6252 sd->parent = p;
6253 cpus_and(sd->span, sd->span, *cpu_map);
1da177e4
LT
6254#endif
6255
36938169
SV
6256 if (!sched_group_phys) {
6257 sched_group_phys
6258 = kmalloc(sizeof(struct sched_group) * NR_CPUS,
6259 GFP_KERNEL);
6260 if (!sched_group_phys) {
6261 printk (KERN_WARNING "Can not alloc phys sched"
6262 "group\n");
6263 goto error;
6264 }
6265 sched_group_phys_bycpu[i] = sched_group_phys;
6266 }
6267
1da177e4
LT
6268 p = sd;
6269 sd = &per_cpu(phys_domains, i);
6270 group = cpu_to_phys_group(i);
6271 *sd = SD_CPU_INIT;
6272 sd->span = nodemask;
6273 sd->parent = p;
6274 sd->groups = &sched_group_phys[group];
6275
1e9f28fa 6276#ifdef CONFIG_SCHED_MC
36938169
SV
6277 if (!sched_group_core) {
6278 sched_group_core
6279 = kmalloc(sizeof(struct sched_group) * NR_CPUS,
6280 GFP_KERNEL);
6281 if (!sched_group_core) {
6282 printk (KERN_WARNING "Can not alloc core sched"
6283 "group\n");
6284 goto error;
6285 }
6286 sched_group_core_bycpu[i] = sched_group_core;
6287 }
6288
1e9f28fa
SS
6289 p = sd;
6290 sd = &per_cpu(core_domains, i);
6291 group = cpu_to_core_group(i);
6292 *sd = SD_MC_INIT;
6293 sd->span = cpu_coregroup_map(i);
6294 cpus_and(sd->span, sd->span, *cpu_map);
6295 sd->parent = p;
6296 sd->groups = &sched_group_core[group];
6297#endif
6298
1da177e4
LT
6299#ifdef CONFIG_SCHED_SMT
6300 p = sd;
6301 sd = &per_cpu(cpu_domains, i);
6302 group = cpu_to_cpu_group(i);
6303 *sd = SD_SIBLING_INIT;
6304 sd->span = cpu_sibling_map[i];
1a20ff27 6305 cpus_and(sd->span, sd->span, *cpu_map);
1da177e4
LT
6306 sd->parent = p;
6307 sd->groups = &sched_group_cpus[group];
6308#endif
6309 }
6310
6311#ifdef CONFIG_SCHED_SMT
6312 /* Set up CPU (sibling) groups */
9c1cfda2 6313 for_each_cpu_mask(i, *cpu_map) {
1da177e4 6314 cpumask_t this_sibling_map = cpu_sibling_map[i];
1a20ff27 6315 cpus_and(this_sibling_map, this_sibling_map, *cpu_map);
1da177e4
LT
6316 if (i != first_cpu(this_sibling_map))
6317 continue;
6318
6319 init_sched_build_groups(sched_group_cpus, this_sibling_map,
6320 &cpu_to_cpu_group);
6321 }
6322#endif
6323
1e9f28fa
SS
6324#ifdef CONFIG_SCHED_MC
6325 /* Set up multi-core groups */
6326 for_each_cpu_mask(i, *cpu_map) {
6327 cpumask_t this_core_map = cpu_coregroup_map(i);
6328 cpus_and(this_core_map, this_core_map, *cpu_map);
6329 if (i != first_cpu(this_core_map))
6330 continue;
6331 init_sched_build_groups(sched_group_core, this_core_map,
6332 &cpu_to_core_group);
6333 }
6334#endif
6335
6336
1da177e4
LT
6337 /* Set up physical groups */
6338 for (i = 0; i < MAX_NUMNODES; i++) {
6339 cpumask_t nodemask = node_to_cpumask(i);
6340
1a20ff27 6341 cpus_and(nodemask, nodemask, *cpu_map);
1da177e4
LT
6342 if (cpus_empty(nodemask))
6343 continue;
6344
6345 init_sched_build_groups(sched_group_phys, nodemask,
6346 &cpu_to_phys_group);
6347 }
6348
6349#ifdef CONFIG_NUMA
6350 /* Set up node groups */
d1b55138
JH
6351 if (sched_group_allnodes)
6352 init_sched_build_groups(sched_group_allnodes, *cpu_map,
6353 &cpu_to_allnodes_group);
9c1cfda2
JH
6354
6355 for (i = 0; i < MAX_NUMNODES; i++) {
6356 /* Set up node groups */
6357 struct sched_group *sg, *prev;
6358 cpumask_t nodemask = node_to_cpumask(i);
6359 cpumask_t domainspan;
6360 cpumask_t covered = CPU_MASK_NONE;
6361 int j;
6362
6363 cpus_and(nodemask, nodemask, *cpu_map);
d1b55138
JH
6364 if (cpus_empty(nodemask)) {
6365 sched_group_nodes[i] = NULL;
9c1cfda2 6366 continue;
d1b55138 6367 }
9c1cfda2
JH
6368
6369 domainspan = sched_domain_node_span(i);
6370 cpus_and(domainspan, domainspan, *cpu_map);
6371
15f0b676 6372 sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i);
51888ca2
SV
6373 if (!sg) {
6374 printk(KERN_WARNING "Can not alloc domain group for "
6375 "node %d\n", i);
6376 goto error;
6377 }
9c1cfda2
JH
6378 sched_group_nodes[i] = sg;
6379 for_each_cpu_mask(j, nodemask) {
6380 struct sched_domain *sd;
6381 sd = &per_cpu(node_domains, j);
6382 sd->groups = sg;
9c1cfda2
JH
6383 }
6384 sg->cpu_power = 0;
6385 sg->cpumask = nodemask;
51888ca2 6386 sg->next = sg;
9c1cfda2
JH
6387 cpus_or(covered, covered, nodemask);
6388 prev = sg;
6389
6390 for (j = 0; j < MAX_NUMNODES; j++) {
6391 cpumask_t tmp, notcovered;
6392 int n = (i + j) % MAX_NUMNODES;
6393
6394 cpus_complement(notcovered, covered);
6395 cpus_and(tmp, notcovered, *cpu_map);
6396 cpus_and(tmp, tmp, domainspan);
6397 if (cpus_empty(tmp))
6398 break;
6399
6400 nodemask = node_to_cpumask(n);
6401 cpus_and(tmp, tmp, nodemask);
6402 if (cpus_empty(tmp))
6403 continue;
6404
15f0b676
SV
6405 sg = kmalloc_node(sizeof(struct sched_group),
6406 GFP_KERNEL, i);
9c1cfda2
JH
6407 if (!sg) {
6408 printk(KERN_WARNING
6409 "Can not alloc domain group for node %d\n", j);
51888ca2 6410 goto error;
9c1cfda2
JH
6411 }
6412 sg->cpu_power = 0;
6413 sg->cpumask = tmp;
51888ca2 6414 sg->next = prev->next;
9c1cfda2
JH
6415 cpus_or(covered, covered, tmp);
6416 prev->next = sg;
6417 prev = sg;
6418 }
9c1cfda2 6419 }
1da177e4
LT
6420#endif
6421
6422 /* Calculate CPU power for physical packages and nodes */
5c45bf27 6423#ifdef CONFIG_SCHED_SMT
1a20ff27 6424 for_each_cpu_mask(i, *cpu_map) {
1da177e4 6425 struct sched_domain *sd;
1da177e4 6426 sd = &per_cpu(cpu_domains, i);
5c45bf27
SS
6427 sd->groups->cpu_power = SCHED_LOAD_SCALE;
6428 }
1da177e4 6429#endif
1e9f28fa 6430#ifdef CONFIG_SCHED_MC
5c45bf27
SS
6431 for_each_cpu_mask(i, *cpu_map) {
6432 int power;
6433 struct sched_domain *sd;
1e9f28fa 6434 sd = &per_cpu(core_domains, i);
5c45bf27
SS
6435 if (sched_smt_power_savings)
6436 power = SCHED_LOAD_SCALE * cpus_weight(sd->groups->cpumask);
6437 else
6438 power = SCHED_LOAD_SCALE + (cpus_weight(sd->groups->cpumask)-1)
1e9f28fa
SS
6439 * SCHED_LOAD_SCALE / 10;
6440 sd->groups->cpu_power = power;
5c45bf27
SS
6441 }
6442#endif
1e9f28fa 6443
5c45bf27
SS
6444 for_each_cpu_mask(i, *cpu_map) {
6445 struct sched_domain *sd;
6446#ifdef CONFIG_SCHED_MC
1e9f28fa 6447 sd = &per_cpu(phys_domains, i);
5c45bf27
SS
6448 if (i != first_cpu(sd->groups->cpumask))
6449 continue;
1da177e4 6450
5c45bf27
SS
6451 sd->groups->cpu_power = 0;
6452 if (sched_mc_power_savings || sched_smt_power_savings) {
6453 int j;
6454
6455 for_each_cpu_mask(j, sd->groups->cpumask) {
6456 struct sched_domain *sd1;
6457 sd1 = &per_cpu(core_domains, j);
6458 /*
6459 * for each core we will add once
6460 * to the group in physical domain
6461 */
6462 if (j != first_cpu(sd1->groups->cpumask))
6463 continue;
6464
6465 if (sched_smt_power_savings)
6466 sd->groups->cpu_power += sd1->groups->cpu_power;
6467 else
6468 sd->groups->cpu_power += SCHED_LOAD_SCALE;
6469 }
6470 } else
6471 /*
6472 * This has to be < 2 * SCHED_LOAD_SCALE
6473 * Lets keep it SCHED_LOAD_SCALE, so that
6474 * while calculating NUMA group's cpu_power
6475 * we can simply do
6476 * numa_group->cpu_power += phys_group->cpu_power;
6477 *
6478 * See "only add power once for each physical pkg"
6479 * comment below
6480 */
6481 sd->groups->cpu_power = SCHED_LOAD_SCALE;
1e9f28fa 6482#else
5c45bf27 6483 int power;
1da177e4 6484 sd = &per_cpu(phys_domains, i);
5c45bf27
SS
6485 if (sched_smt_power_savings)
6486 power = SCHED_LOAD_SCALE * cpus_weight(sd->groups->cpumask);
6487 else
6488 power = SCHED_LOAD_SCALE;
1da177e4 6489 sd->groups->cpu_power = power;
1e9f28fa 6490#endif
1da177e4
LT
6491 }
6492
9c1cfda2 6493#ifdef CONFIG_NUMA
08069033
SS
6494 for (i = 0; i < MAX_NUMNODES; i++)
6495 init_numa_sched_groups_power(sched_group_nodes[i]);
9c1cfda2 6496
f712c0c7
SS
6497 if (sched_group_allnodes) {
6498 int group = cpu_to_allnodes_group(first_cpu(*cpu_map));
6499 struct sched_group *sg = &sched_group_allnodes[group];
6500
6501 init_numa_sched_groups_power(sg);
6502 }
9c1cfda2
JH
6503#endif
6504
1da177e4 6505 /* Attach the domains */
1a20ff27 6506 for_each_cpu_mask(i, *cpu_map) {
1da177e4
LT
6507 struct sched_domain *sd;
6508#ifdef CONFIG_SCHED_SMT
6509 sd = &per_cpu(cpu_domains, i);
1e9f28fa
SS
6510#elif defined(CONFIG_SCHED_MC)
6511 sd = &per_cpu(core_domains, i);
1da177e4
LT
6512#else
6513 sd = &per_cpu(phys_domains, i);
6514#endif
6515 cpu_attach_domain(sd, i);
6516 }
198e2f18 6517 /*
6518 * Tune cache-hot values:
6519 */
6520 calibrate_migration_costs(cpu_map);
51888ca2
SV
6521
6522 return 0;
6523
51888ca2
SV
6524error:
6525 free_sched_groups(cpu_map);
6526 return -ENOMEM;
1da177e4 6527}
1a20ff27
DG
6528/*
6529 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
6530 */
51888ca2 6531static int arch_init_sched_domains(const cpumask_t *cpu_map)
1a20ff27
DG
6532{
6533 cpumask_t cpu_default_map;
51888ca2 6534 int err;
1da177e4 6535
1a20ff27
DG
6536 /*
6537 * Setup mask for cpus without special case scheduling requirements.
6538 * For now this just excludes isolated cpus, but could be used to
6539 * exclude other special cases in the future.
6540 */
6541 cpus_andnot(cpu_default_map, *cpu_map, cpu_isolated_map);
6542
51888ca2
SV
6543 err = build_sched_domains(&cpu_default_map);
6544
6545 return err;
1a20ff27
DG
6546}
6547
6548static void arch_destroy_sched_domains(const cpumask_t *cpu_map)
1da177e4 6549{
51888ca2 6550 free_sched_groups(cpu_map);
9c1cfda2 6551}
1da177e4 6552
1a20ff27
DG
6553/*
6554 * Detach sched domains from a group of cpus specified in cpu_map
6555 * These cpus will now be attached to the NULL domain
6556 */
858119e1 6557static void detach_destroy_domains(const cpumask_t *cpu_map)
1a20ff27
DG
6558{
6559 int i;
6560
6561 for_each_cpu_mask(i, *cpu_map)
6562 cpu_attach_domain(NULL, i);
6563 synchronize_sched();
6564 arch_destroy_sched_domains(cpu_map);
6565}
6566
6567/*
6568 * Partition sched domains as specified by the cpumasks below.
6569 * This attaches all cpus from the cpumasks to the NULL domain,
6570 * waits for a RCU quiescent period, recalculates sched
6571 * domain information and then attaches them back to the
6572 * correct sched domains
6573 * Call with hotplug lock held
6574 */
51888ca2 6575int partition_sched_domains(cpumask_t *partition1, cpumask_t *partition2)
1a20ff27
DG
6576{
6577 cpumask_t change_map;
51888ca2 6578 int err = 0;
1a20ff27
DG
6579
6580 cpus_and(*partition1, *partition1, cpu_online_map);
6581 cpus_and(*partition2, *partition2, cpu_online_map);
6582 cpus_or(change_map, *partition1, *partition2);
6583
6584 /* Detach sched domains from all of the affected cpus */
6585 detach_destroy_domains(&change_map);
6586 if (!cpus_empty(*partition1))
51888ca2
SV
6587 err = build_sched_domains(partition1);
6588 if (!err && !cpus_empty(*partition2))
6589 err = build_sched_domains(partition2);
6590
6591 return err;
1a20ff27
DG
6592}
6593
5c45bf27
SS
6594#if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT)
6595int arch_reinit_sched_domains(void)
6596{
6597 int err;
6598
6599 lock_cpu_hotplug();
6600 detach_destroy_domains(&cpu_online_map);
6601 err = arch_init_sched_domains(&cpu_online_map);
6602 unlock_cpu_hotplug();
6603
6604 return err;
6605}
6606
6607static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt)
6608{
6609 int ret;
6610
6611 if (buf[0] != '0' && buf[0] != '1')
6612 return -EINVAL;
6613
6614 if (smt)
6615 sched_smt_power_savings = (buf[0] == '1');
6616 else
6617 sched_mc_power_savings = (buf[0] == '1');
6618
6619 ret = arch_reinit_sched_domains();
6620
6621 return ret ? ret : count;
6622}
6623
6624int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls)
6625{
6626 int err = 0;
48f24c4d 6627
5c45bf27
SS
6628#ifdef CONFIG_SCHED_SMT
6629 if (smt_capable())
6630 err = sysfs_create_file(&cls->kset.kobj,
6631 &attr_sched_smt_power_savings.attr);
6632#endif
6633#ifdef CONFIG_SCHED_MC
6634 if (!err && mc_capable())
6635 err = sysfs_create_file(&cls->kset.kobj,
6636 &attr_sched_mc_power_savings.attr);
6637#endif
6638 return err;
6639}
6640#endif
6641
6642#ifdef CONFIG_SCHED_MC
6643static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page)
6644{
6645 return sprintf(page, "%u\n", sched_mc_power_savings);
6646}
48f24c4d
IM
6647static ssize_t sched_mc_power_savings_store(struct sys_device *dev,
6648 const char *buf, size_t count)
5c45bf27
SS
6649{
6650 return sched_power_savings_store(buf, count, 0);
6651}
6652SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show,
6653 sched_mc_power_savings_store);
6654#endif
6655
6656#ifdef CONFIG_SCHED_SMT
6657static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page)
6658{
6659 return sprintf(page, "%u\n", sched_smt_power_savings);
6660}
48f24c4d
IM
6661static ssize_t sched_smt_power_savings_store(struct sys_device *dev,
6662 const char *buf, size_t count)
5c45bf27
SS
6663{
6664 return sched_power_savings_store(buf, count, 1);
6665}
6666SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show,
6667 sched_smt_power_savings_store);
6668#endif
6669
6670
1da177e4
LT
6671#ifdef CONFIG_HOTPLUG_CPU
6672/*
6673 * Force a reinitialization of the sched domains hierarchy. The domains
6674 * and groups cannot be updated in place without racing with the balancing
41c7ce9a 6675 * code, so we temporarily attach all running cpus to the NULL domain
1da177e4
LT
6676 * which will prevent rebalancing while the sched domains are recalculated.
6677 */
6678static int update_sched_domains(struct notifier_block *nfb,
6679 unsigned long action, void *hcpu)
6680{
1da177e4
LT
6681 switch (action) {
6682 case CPU_UP_PREPARE:
6683 case CPU_DOWN_PREPARE:
1a20ff27 6684 detach_destroy_domains(&cpu_online_map);
1da177e4
LT
6685 return NOTIFY_OK;
6686
6687 case CPU_UP_CANCELED:
6688 case CPU_DOWN_FAILED:
6689 case CPU_ONLINE:
6690 case CPU_DEAD:
6691 /*
6692 * Fall through and re-initialise the domains.
6693 */
6694 break;
6695 default:
6696 return NOTIFY_DONE;
6697 }
6698
6699 /* The hotplug lock is already held by cpu_up/cpu_down */
1a20ff27 6700 arch_init_sched_domains(&cpu_online_map);
1da177e4
LT
6701
6702 return NOTIFY_OK;
6703}
6704#endif
6705
6706void __init sched_init_smp(void)
6707{
6708 lock_cpu_hotplug();
1a20ff27 6709 arch_init_sched_domains(&cpu_online_map);
1da177e4
LT
6710 unlock_cpu_hotplug();
6711 /* XXX: Theoretical race here - CPU may be hotplugged now */
6712 hotcpu_notifier(update_sched_domains, 0);
6713}
6714#else
6715void __init sched_init_smp(void)
6716{
6717}
6718#endif /* CONFIG_SMP */
6719
6720int in_sched_functions(unsigned long addr)
6721{
6722 /* Linker adds these: start and end of __sched functions */
6723 extern char __sched_text_start[], __sched_text_end[];
48f24c4d 6724
1da177e4
LT
6725 return in_lock_functions(addr) ||
6726 (addr >= (unsigned long)__sched_text_start
6727 && addr < (unsigned long)__sched_text_end);
6728}
6729
6730void __init sched_init(void)
6731{
1da177e4
LT
6732 int i, j, k;
6733
0a945022 6734 for_each_possible_cpu(i) {
70b97a7f
IM
6735 struct prio_array *array;
6736 struct rq *rq;
1da177e4
LT
6737
6738 rq = cpu_rq(i);
6739 spin_lock_init(&rq->lock);
fcb99371 6740 lockdep_set_class(&rq->lock, &rq->rq_lock_key);
7897986b 6741 rq->nr_running = 0;
1da177e4
LT
6742 rq->active = rq->arrays;
6743 rq->expired = rq->arrays + 1;
6744 rq->best_expired_prio = MAX_PRIO;
6745
6746#ifdef CONFIG_SMP
41c7ce9a 6747 rq->sd = NULL;
7897986b
NP
6748 for (j = 1; j < 3; j++)
6749 rq->cpu_load[j] = 0;
1da177e4
LT
6750 rq->active_balance = 0;
6751 rq->push_cpu = 0;
6752 rq->migration_thread = NULL;
6753 INIT_LIST_HEAD(&rq->migration_queue);
6754#endif
6755 atomic_set(&rq->nr_iowait, 0);
6756
6757 for (j = 0; j < 2; j++) {
6758 array = rq->arrays + j;
6759 for (k = 0; k < MAX_PRIO; k++) {
6760 INIT_LIST_HEAD(array->queue + k);
6761 __clear_bit(k, array->bitmap);
6762 }
6763 // delimiter for bitsearch
6764 __set_bit(MAX_PRIO, array->bitmap);
6765 }
6766 }
6767
2dd73a4f 6768 set_load_weight(&init_task);
1da177e4
LT
6769 /*
6770 * The boot idle thread does lazy MMU switching as well:
6771 */
6772 atomic_inc(&init_mm.mm_count);
6773 enter_lazy_tlb(&init_mm, current);
6774
6775 /*
6776 * Make us the idle thread. Technically, schedule() should not be
6777 * called from this thread, however somewhere below it might be,
6778 * but because we are the idle thread, we just pick up running again
6779 * when this runqueue becomes "idle".
6780 */
6781 init_idle(current, smp_processor_id());
6782}
6783
6784#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
6785void __might_sleep(char *file, int line)
6786{
48f24c4d 6787#ifdef in_atomic
1da177e4
LT
6788 static unsigned long prev_jiffy; /* ratelimiting */
6789
6790 if ((in_atomic() || irqs_disabled()) &&
6791 system_state == SYSTEM_RUNNING && !oops_in_progress) {
6792 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
6793 return;
6794 prev_jiffy = jiffies;
91368d73 6795 printk(KERN_ERR "BUG: sleeping function called from invalid"
1da177e4
LT
6796 " context at %s:%d\n", file, line);
6797 printk("in_atomic():%d, irqs_disabled():%d\n",
6798 in_atomic(), irqs_disabled());
6799 dump_stack();
6800 }
6801#endif
6802}
6803EXPORT_SYMBOL(__might_sleep);
6804#endif
6805
6806#ifdef CONFIG_MAGIC_SYSRQ
6807void normalize_rt_tasks(void)
6808{
70b97a7f 6809 struct prio_array *array;
1da177e4 6810 struct task_struct *p;
1da177e4 6811 unsigned long flags;
70b97a7f 6812 struct rq *rq;
1da177e4
LT
6813
6814 read_lock_irq(&tasklist_lock);
c96d145e 6815 for_each_process(p) {
1da177e4
LT
6816 if (!rt_task(p))
6817 continue;
6818
b29739f9
IM
6819 spin_lock_irqsave(&p->pi_lock, flags);
6820 rq = __task_rq_lock(p);
1da177e4
LT
6821
6822 array = p->array;
6823 if (array)
6824 deactivate_task(p, task_rq(p));
6825 __setscheduler(p, SCHED_NORMAL, 0);
6826 if (array) {
6827 __activate_task(p, task_rq(p));
6828 resched_task(rq->curr);
6829 }
6830
b29739f9
IM
6831 __task_rq_unlock(rq);
6832 spin_unlock_irqrestore(&p->pi_lock, flags);
1da177e4
LT
6833 }
6834 read_unlock_irq(&tasklist_lock);
6835}
6836
6837#endif /* CONFIG_MAGIC_SYSRQ */
1df5c10a
LT
6838
6839#ifdef CONFIG_IA64
6840/*
6841 * These functions are only useful for the IA64 MCA handling.
6842 *
6843 * They can only be called when the whole system has been
6844 * stopped - every CPU needs to be quiescent, and no scheduling
6845 * activity can take place. Using them for anything else would
6846 * be a serious bug, and as a result, they aren't even visible
6847 * under any other configuration.
6848 */
6849
6850/**
6851 * curr_task - return the current task for a given cpu.
6852 * @cpu: the processor in question.
6853 *
6854 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
6855 */
36c8b586 6856struct task_struct *curr_task(int cpu)
1df5c10a
LT
6857{
6858 return cpu_curr(cpu);
6859}
6860
6861/**
6862 * set_curr_task - set the current task for a given cpu.
6863 * @cpu: the processor in question.
6864 * @p: the task pointer to set.
6865 *
6866 * Description: This function must only be used when non-maskable interrupts
6867 * are serviced on a separate stack. It allows the architecture to switch the
6868 * notion of the current task on a cpu in a non-blocking manner. This function
6869 * must be called with all CPU's synchronized, and interrupts disabled, the
6870 * and caller must save the original value of the current task (see
6871 * curr_task() above) and restore that value before reenabling interrupts and
6872 * re-starting the system.
6873 *
6874 * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED!
6875 */
36c8b586 6876void set_curr_task(int cpu, struct task_struct *p)
1df5c10a
LT
6877{
6878 cpu_curr(cpu) = p;
6879}
6880
6881#endif