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