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