]> bbs.cooldavid.org Git - net-next-2.6.git/blame - kernel/sched.c
[PATCH] sched: cleanup context switch locking
[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>
30#include <linux/completion.h>
31#include <linux/kernel_stat.h>
32#include <linux/security.h>
33#include <linux/notifier.h>
34#include <linux/profile.h>
35#include <linux/suspend.h>
36#include <linux/blkdev.h>
37#include <linux/delay.h>
38#include <linux/smp.h>
39#include <linux/threads.h>
40#include <linux/timer.h>
41#include <linux/rcupdate.h>
42#include <linux/cpu.h>
43#include <linux/cpuset.h>
44#include <linux/percpu.h>
45#include <linux/kthread.h>
46#include <linux/seq_file.h>
47#include <linux/syscalls.h>
48#include <linux/times.h>
49#include <linux/acct.h>
50#include <asm/tlb.h>
51
52#include <asm/unistd.h>
53
54/*
55 * Convert user-nice values [ -20 ... 0 ... 19 ]
56 * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ],
57 * and back.
58 */
59#define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20)
60#define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20)
61#define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio)
62
63/*
64 * 'User priority' is the nice value converted to something we
65 * can work with better when scaling various scheduler parameters,
66 * it's a [ 0 ... 39 ] range.
67 */
68#define USER_PRIO(p) ((p)-MAX_RT_PRIO)
69#define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio)
70#define MAX_USER_PRIO (USER_PRIO(MAX_PRIO))
71
72/*
73 * Some helpers for converting nanosecond timing to jiffy resolution
74 */
75#define NS_TO_JIFFIES(TIME) ((TIME) / (1000000000 / HZ))
76#define JIFFIES_TO_NS(TIME) ((TIME) * (1000000000 / HZ))
77
78/*
79 * These are the 'tuning knobs' of the scheduler:
80 *
81 * Minimum timeslice is 5 msecs (or 1 jiffy, whichever is larger),
82 * default timeslice is 100 msecs, maximum timeslice is 800 msecs.
83 * Timeslices get refilled after they expire.
84 */
85#define MIN_TIMESLICE max(5 * HZ / 1000, 1)
86#define DEF_TIMESLICE (100 * HZ / 1000)
87#define ON_RUNQUEUE_WEIGHT 30
88#define CHILD_PENALTY 95
89#define PARENT_PENALTY 100
90#define EXIT_WEIGHT 3
91#define PRIO_BONUS_RATIO 25
92#define MAX_BONUS (MAX_USER_PRIO * PRIO_BONUS_RATIO / 100)
93#define INTERACTIVE_DELTA 2
94#define MAX_SLEEP_AVG (DEF_TIMESLICE * MAX_BONUS)
95#define STARVATION_LIMIT (MAX_SLEEP_AVG)
96#define NS_MAX_SLEEP_AVG (JIFFIES_TO_NS(MAX_SLEEP_AVG))
97
98/*
99 * If a task is 'interactive' then we reinsert it in the active
100 * array after it has expired its current timeslice. (it will not
101 * continue to run immediately, it will still roundrobin with
102 * other interactive tasks.)
103 *
104 * This part scales the interactivity limit depending on niceness.
105 *
106 * We scale it linearly, offset by the INTERACTIVE_DELTA delta.
107 * Here are a few examples of different nice levels:
108 *
109 * TASK_INTERACTIVE(-20): [1,1,1,1,1,1,1,1,1,0,0]
110 * TASK_INTERACTIVE(-10): [1,1,1,1,1,1,1,0,0,0,0]
111 * TASK_INTERACTIVE( 0): [1,1,1,1,0,0,0,0,0,0,0]
112 * TASK_INTERACTIVE( 10): [1,1,0,0,0,0,0,0,0,0,0]
113 * TASK_INTERACTIVE( 19): [0,0,0,0,0,0,0,0,0,0,0]
114 *
115 * (the X axis represents the possible -5 ... 0 ... +5 dynamic
116 * priority range a task can explore, a value of '1' means the
117 * task is rated interactive.)
118 *
119 * Ie. nice +19 tasks can never get 'interactive' enough to be
120 * reinserted into the active array. And only heavily CPU-hog nice -20
121 * tasks will be expired. Default nice 0 tasks are somewhere between,
122 * it takes some effort for them to get interactive, but it's not
123 * too hard.
124 */
125
126#define CURRENT_BONUS(p) \
127 (NS_TO_JIFFIES((p)->sleep_avg) * MAX_BONUS / \
128 MAX_SLEEP_AVG)
129
130#define GRANULARITY (10 * HZ / 1000 ? : 1)
131
132#ifdef CONFIG_SMP
133#define TIMESLICE_GRANULARITY(p) (GRANULARITY * \
134 (1 << (((MAX_BONUS - CURRENT_BONUS(p)) ? : 1) - 1)) * \
135 num_online_cpus())
136#else
137#define TIMESLICE_GRANULARITY(p) (GRANULARITY * \
138 (1 << (((MAX_BONUS - CURRENT_BONUS(p)) ? : 1) - 1)))
139#endif
140
141#define SCALE(v1,v1_max,v2_max) \
142 (v1) * (v2_max) / (v1_max)
143
144#define DELTA(p) \
145 (SCALE(TASK_NICE(p), 40, MAX_BONUS) + INTERACTIVE_DELTA)
146
147#define TASK_INTERACTIVE(p) \
148 ((p)->prio <= (p)->static_prio - DELTA(p))
149
150#define INTERACTIVE_SLEEP(p) \
151 (JIFFIES_TO_NS(MAX_SLEEP_AVG * \
152 (MAX_BONUS / 2 + DELTA((p)) + 1) / MAX_BONUS - 1))
153
154#define TASK_PREEMPTS_CURR(p, rq) \
155 ((p)->prio < (rq)->curr->prio)
156
157/*
158 * task_timeslice() scales user-nice values [ -20 ... 0 ... 19 ]
159 * to time slice values: [800ms ... 100ms ... 5ms]
160 *
161 * The higher a thread's priority, the bigger timeslices
162 * it gets during one round of execution. But even the lowest
163 * priority thread gets MIN_TIMESLICE worth of execution time.
164 */
165
166#define SCALE_PRIO(x, prio) \
167 max(x * (MAX_PRIO - prio) / (MAX_USER_PRIO/2), MIN_TIMESLICE)
168
48c08d3f 169static unsigned int task_timeslice(task_t *p)
1da177e4
LT
170{
171 if (p->static_prio < NICE_TO_PRIO(0))
172 return SCALE_PRIO(DEF_TIMESLICE*4, p->static_prio);
173 else
174 return SCALE_PRIO(DEF_TIMESLICE, p->static_prio);
175}
176#define task_hot(p, now, sd) ((long long) ((now) - (p)->last_ran) \
177 < (long long) (sd)->cache_hot_time)
178
179/*
180 * These are the runqueue data structures:
181 */
182
183#define BITMAP_SIZE ((((MAX_PRIO+1+7)/8)+sizeof(long)-1)/sizeof(long))
184
185typedef struct runqueue runqueue_t;
186
187struct prio_array {
188 unsigned int nr_active;
189 unsigned long bitmap[BITMAP_SIZE];
190 struct list_head queue[MAX_PRIO];
191};
192
193/*
194 * This is the main, per-CPU runqueue data structure.
195 *
196 * Locking rule: those places that want to lock multiple runqueues
197 * (such as the load balancing or the thread migration code), lock
198 * acquire operations must be ordered by ascending &runqueue.
199 */
200struct runqueue {
201 spinlock_t lock;
202
203 /*
204 * nr_running and cpu_load should be in the same cacheline because
205 * remote CPUs use both these fields when doing load calculation.
206 */
207 unsigned long nr_running;
208#ifdef CONFIG_SMP
7897986b 209 unsigned long cpu_load[3];
1da177e4
LT
210#endif
211 unsigned long long nr_switches;
212
213 /*
214 * This is part of a global counter where only the total sum
215 * over all CPUs matters. A task can increase this counter on
216 * one CPU and if it got migrated afterwards it may decrease
217 * it on another CPU. Always updated under the runqueue lock:
218 */
219 unsigned long nr_uninterruptible;
220
221 unsigned long expired_timestamp;
222 unsigned long long timestamp_last_tick;
223 task_t *curr, *idle;
224 struct mm_struct *prev_mm;
225 prio_array_t *active, *expired, arrays[2];
226 int best_expired_prio;
227 atomic_t nr_iowait;
228
229#ifdef CONFIG_SMP
230 struct sched_domain *sd;
231
232 /* For active balancing */
233 int active_balance;
234 int push_cpu;
235
236 task_t *migration_thread;
237 struct list_head migration_queue;
238#endif
239
240#ifdef CONFIG_SCHEDSTATS
241 /* latency stats */
242 struct sched_info rq_sched_info;
243
244 /* sys_sched_yield() stats */
245 unsigned long yld_exp_empty;
246 unsigned long yld_act_empty;
247 unsigned long yld_both_empty;
248 unsigned long yld_cnt;
249
250 /* schedule() stats */
251 unsigned long sched_switch;
252 unsigned long sched_cnt;
253 unsigned long sched_goidle;
254
255 /* try_to_wake_up() stats */
256 unsigned long ttwu_cnt;
257 unsigned long ttwu_local;
258#endif
259};
260
261static DEFINE_PER_CPU(struct runqueue, runqueues);
262
263#define for_each_domain(cpu, domain) \
264 for (domain = cpu_rq(cpu)->sd; domain; domain = domain->parent)
265
266#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
267#define this_rq() (&__get_cpu_var(runqueues))
268#define task_rq(p) cpu_rq(task_cpu(p))
269#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
270
1da177e4 271#ifndef prepare_arch_switch
4866cde0
NP
272# define prepare_arch_switch(next) do { } while (0)
273#endif
274#ifndef finish_arch_switch
275# define finish_arch_switch(prev) do { } while (0)
276#endif
277
278#ifndef __ARCH_WANT_UNLOCKED_CTXSW
279static inline int task_running(runqueue_t *rq, task_t *p)
280{
281 return rq->curr == p;
282}
283
284static inline void prepare_lock_switch(runqueue_t *rq, task_t *next)
285{
286}
287
288static inline void finish_lock_switch(runqueue_t *rq, task_t *prev)
289{
290 spin_unlock_irq(&rq->lock);
291}
292
293#else /* __ARCH_WANT_UNLOCKED_CTXSW */
294static inline int task_running(runqueue_t *rq, task_t *p)
295{
296#ifdef CONFIG_SMP
297 return p->oncpu;
298#else
299 return rq->curr == p;
300#endif
301}
302
303static inline void prepare_lock_switch(runqueue_t *rq, task_t *next)
304{
305#ifdef CONFIG_SMP
306 /*
307 * We can optimise this out completely for !SMP, because the
308 * SMP rebalancing from interrupt is the only thing that cares
309 * here.
310 */
311 next->oncpu = 1;
312#endif
313#ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW
314 spin_unlock_irq(&rq->lock);
315#else
316 spin_unlock(&rq->lock);
317#endif
318}
319
320static inline void finish_lock_switch(runqueue_t *rq, task_t *prev)
321{
322#ifdef CONFIG_SMP
323 /*
324 * After ->oncpu is cleared, the task can be moved to a different CPU.
325 * We must ensure this doesn't happen until the switch is completely
326 * finished.
327 */
328 smp_wmb();
329 prev->oncpu = 0;
330#endif
331#ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW
332 local_irq_enable();
1da177e4 333#endif
4866cde0
NP
334}
335#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
1da177e4
LT
336
337/*
338 * task_rq_lock - lock the runqueue a given task resides on and disable
339 * interrupts. Note the ordering: we can safely lookup the task_rq without
340 * explicitly disabling preemption.
341 */
342static inline runqueue_t *task_rq_lock(task_t *p, unsigned long *flags)
343 __acquires(rq->lock)
344{
345 struct runqueue *rq;
346
347repeat_lock_task:
348 local_irq_save(*flags);
349 rq = task_rq(p);
350 spin_lock(&rq->lock);
351 if (unlikely(rq != task_rq(p))) {
352 spin_unlock_irqrestore(&rq->lock, *flags);
353 goto repeat_lock_task;
354 }
355 return rq;
356}
357
358static inline void task_rq_unlock(runqueue_t *rq, unsigned long *flags)
359 __releases(rq->lock)
360{
361 spin_unlock_irqrestore(&rq->lock, *flags);
362}
363
364#ifdef CONFIG_SCHEDSTATS
365/*
366 * bump this up when changing the output format or the meaning of an existing
367 * format, so that tools can adapt (or abort)
368 */
68767a0a 369#define SCHEDSTAT_VERSION 12
1da177e4
LT
370
371static int show_schedstat(struct seq_file *seq, void *v)
372{
373 int cpu;
374
375 seq_printf(seq, "version %d\n", SCHEDSTAT_VERSION);
376 seq_printf(seq, "timestamp %lu\n", jiffies);
377 for_each_online_cpu(cpu) {
378 runqueue_t *rq = cpu_rq(cpu);
379#ifdef CONFIG_SMP
380 struct sched_domain *sd;
381 int dcnt = 0;
382#endif
383
384 /* runqueue-specific stats */
385 seq_printf(seq,
386 "cpu%d %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu",
387 cpu, rq->yld_both_empty,
388 rq->yld_act_empty, rq->yld_exp_empty, rq->yld_cnt,
389 rq->sched_switch, rq->sched_cnt, rq->sched_goidle,
390 rq->ttwu_cnt, rq->ttwu_local,
391 rq->rq_sched_info.cpu_time,
392 rq->rq_sched_info.run_delay, rq->rq_sched_info.pcnt);
393
394 seq_printf(seq, "\n");
395
396#ifdef CONFIG_SMP
397 /* domain-specific stats */
398 for_each_domain(cpu, sd) {
399 enum idle_type itype;
400 char mask_str[NR_CPUS];
401
402 cpumask_scnprintf(mask_str, NR_CPUS, sd->span);
403 seq_printf(seq, "domain%d %s", dcnt++, mask_str);
404 for (itype = SCHED_IDLE; itype < MAX_IDLE_TYPES;
405 itype++) {
406 seq_printf(seq, " %lu %lu %lu %lu %lu %lu %lu %lu",
407 sd->lb_cnt[itype],
408 sd->lb_balanced[itype],
409 sd->lb_failed[itype],
410 sd->lb_imbalance[itype],
411 sd->lb_gained[itype],
412 sd->lb_hot_gained[itype],
413 sd->lb_nobusyq[itype],
414 sd->lb_nobusyg[itype]);
415 }
68767a0a 416 seq_printf(seq, " %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu\n",
1da177e4 417 sd->alb_cnt, sd->alb_failed, sd->alb_pushed,
68767a0a
NP
418 sd->sbe_cnt, sd->sbe_balanced, sd->sbe_pushed,
419 sd->sbf_cnt, sd->sbf_balanced, sd->sbf_pushed,
1da177e4
LT
420 sd->ttwu_wake_remote, sd->ttwu_move_affine, sd->ttwu_move_balance);
421 }
422#endif
423 }
424 return 0;
425}
426
427static int schedstat_open(struct inode *inode, struct file *file)
428{
429 unsigned int size = PAGE_SIZE * (1 + num_online_cpus() / 32);
430 char *buf = kmalloc(size, GFP_KERNEL);
431 struct seq_file *m;
432 int res;
433
434 if (!buf)
435 return -ENOMEM;
436 res = single_open(file, show_schedstat, NULL);
437 if (!res) {
438 m = file->private_data;
439 m->buf = buf;
440 m->size = size;
441 } else
442 kfree(buf);
443 return res;
444}
445
446struct file_operations proc_schedstat_operations = {
447 .open = schedstat_open,
448 .read = seq_read,
449 .llseek = seq_lseek,
450 .release = single_release,
451};
452
453# define schedstat_inc(rq, field) do { (rq)->field++; } while (0)
454# define schedstat_add(rq, field, amt) do { (rq)->field += (amt); } while (0)
455#else /* !CONFIG_SCHEDSTATS */
456# define schedstat_inc(rq, field) do { } while (0)
457# define schedstat_add(rq, field, amt) do { } while (0)
458#endif
459
460/*
461 * rq_lock - lock a given runqueue and disable interrupts.
462 */
463static inline runqueue_t *this_rq_lock(void)
464 __acquires(rq->lock)
465{
466 runqueue_t *rq;
467
468 local_irq_disable();
469 rq = this_rq();
470 spin_lock(&rq->lock);
471
472 return rq;
473}
474
1da177e4
LT
475#ifdef CONFIG_SCHEDSTATS
476/*
477 * Called when a process is dequeued from the active array and given
478 * the cpu. We should note that with the exception of interactive
479 * tasks, the expired queue will become the active queue after the active
480 * queue is empty, without explicitly dequeuing and requeuing tasks in the
481 * expired queue. (Interactive tasks may be requeued directly to the
482 * active queue, thus delaying tasks in the expired queue from running;
483 * see scheduler_tick()).
484 *
485 * This function is only called from sched_info_arrive(), rather than
486 * dequeue_task(). Even though a task may be queued and dequeued multiple
487 * times as it is shuffled about, we're really interested in knowing how
488 * long it was from the *first* time it was queued to the time that it
489 * finally hit a cpu.
490 */
491static inline void sched_info_dequeued(task_t *t)
492{
493 t->sched_info.last_queued = 0;
494}
495
496/*
497 * Called when a task finally hits the cpu. We can now calculate how
498 * long it was waiting to run. We also note when it began so that we
499 * can keep stats on how long its timeslice is.
500 */
501static inline void sched_info_arrive(task_t *t)
502{
503 unsigned long now = jiffies, diff = 0;
504 struct runqueue *rq = task_rq(t);
505
506 if (t->sched_info.last_queued)
507 diff = now - t->sched_info.last_queued;
508 sched_info_dequeued(t);
509 t->sched_info.run_delay += diff;
510 t->sched_info.last_arrival = now;
511 t->sched_info.pcnt++;
512
513 if (!rq)
514 return;
515
516 rq->rq_sched_info.run_delay += diff;
517 rq->rq_sched_info.pcnt++;
518}
519
520/*
521 * Called when a process is queued into either the active or expired
522 * array. The time is noted and later used to determine how long we
523 * had to wait for us to reach the cpu. Since the expired queue will
524 * become the active queue after active queue is empty, without dequeuing
525 * and requeuing any tasks, we are interested in queuing to either. It
526 * is unusual but not impossible for tasks to be dequeued and immediately
527 * requeued in the same or another array: this can happen in sched_yield(),
528 * set_user_nice(), and even load_balance() as it moves tasks from runqueue
529 * to runqueue.
530 *
531 * This function is only called from enqueue_task(), but also only updates
532 * the timestamp if it is already not set. It's assumed that
533 * sched_info_dequeued() will clear that stamp when appropriate.
534 */
535static inline void sched_info_queued(task_t *t)
536{
537 if (!t->sched_info.last_queued)
538 t->sched_info.last_queued = jiffies;
539}
540
541/*
542 * Called when a process ceases being the active-running process, either
543 * voluntarily or involuntarily. Now we can calculate how long we ran.
544 */
545static inline void sched_info_depart(task_t *t)
546{
547 struct runqueue *rq = task_rq(t);
548 unsigned long diff = jiffies - t->sched_info.last_arrival;
549
550 t->sched_info.cpu_time += diff;
551
552 if (rq)
553 rq->rq_sched_info.cpu_time += diff;
554}
555
556/*
557 * Called when tasks are switched involuntarily due, typically, to expiring
558 * their time slice. (This may also be called when switching to or from
559 * the idle task.) We are only called when prev != next.
560 */
561static inline void sched_info_switch(task_t *prev, task_t *next)
562{
563 struct runqueue *rq = task_rq(prev);
564
565 /*
566 * prev now departs the cpu. It's not interesting to record
567 * stats about how efficient we were at scheduling the idle
568 * process, however.
569 */
570 if (prev != rq->idle)
571 sched_info_depart(prev);
572
573 if (next != rq->idle)
574 sched_info_arrive(next);
575}
576#else
577#define sched_info_queued(t) do { } while (0)
578#define sched_info_switch(t, next) do { } while (0)
579#endif /* CONFIG_SCHEDSTATS */
580
581/*
582 * Adding/removing a task to/from a priority array:
583 */
584static void dequeue_task(struct task_struct *p, prio_array_t *array)
585{
586 array->nr_active--;
587 list_del(&p->run_list);
588 if (list_empty(array->queue + p->prio))
589 __clear_bit(p->prio, array->bitmap);
590}
591
592static void enqueue_task(struct task_struct *p, prio_array_t *array)
593{
594 sched_info_queued(p);
595 list_add_tail(&p->run_list, array->queue + p->prio);
596 __set_bit(p->prio, array->bitmap);
597 array->nr_active++;
598 p->array = array;
599}
600
601/*
602 * Put task to the end of the run list without the overhead of dequeue
603 * followed by enqueue.
604 */
605static void requeue_task(struct task_struct *p, prio_array_t *array)
606{
607 list_move_tail(&p->run_list, array->queue + p->prio);
608}
609
610static inline void enqueue_task_head(struct task_struct *p, prio_array_t *array)
611{
612 list_add(&p->run_list, array->queue + p->prio);
613 __set_bit(p->prio, array->bitmap);
614 array->nr_active++;
615 p->array = array;
616}
617
618/*
619 * effective_prio - return the priority that is based on the static
620 * priority but is modified by bonuses/penalties.
621 *
622 * We scale the actual sleep average [0 .... MAX_SLEEP_AVG]
623 * into the -5 ... 0 ... +5 bonus/penalty range.
624 *
625 * We use 25% of the full 0...39 priority range so that:
626 *
627 * 1) nice +19 interactive tasks do not preempt nice 0 CPU hogs.
628 * 2) nice -20 CPU hogs do not get preempted by nice 0 tasks.
629 *
630 * Both properties are important to certain workloads.
631 */
632static int effective_prio(task_t *p)
633{
634 int bonus, prio;
635
636 if (rt_task(p))
637 return p->prio;
638
639 bonus = CURRENT_BONUS(p) - MAX_BONUS / 2;
640
641 prio = p->static_prio - bonus;
642 if (prio < MAX_RT_PRIO)
643 prio = MAX_RT_PRIO;
644 if (prio > MAX_PRIO-1)
645 prio = MAX_PRIO-1;
646 return prio;
647}
648
649/*
650 * __activate_task - move a task to the runqueue.
651 */
652static inline void __activate_task(task_t *p, runqueue_t *rq)
653{
654 enqueue_task(p, rq->active);
655 rq->nr_running++;
656}
657
658/*
659 * __activate_idle_task - move idle task to the _front_ of runqueue.
660 */
661static inline void __activate_idle_task(task_t *p, runqueue_t *rq)
662{
663 enqueue_task_head(p, rq->active);
664 rq->nr_running++;
665}
666
667static void recalc_task_prio(task_t *p, unsigned long long now)
668{
669 /* Caller must always ensure 'now >= p->timestamp' */
670 unsigned long long __sleep_time = now - p->timestamp;
671 unsigned long sleep_time;
672
673 if (__sleep_time > NS_MAX_SLEEP_AVG)
674 sleep_time = NS_MAX_SLEEP_AVG;
675 else
676 sleep_time = (unsigned long)__sleep_time;
677
678 if (likely(sleep_time > 0)) {
679 /*
680 * User tasks that sleep a long time are categorised as
681 * idle and will get just interactive status to stay active &
682 * prevent them suddenly becoming cpu hogs and starving
683 * other processes.
684 */
685 if (p->mm && p->activated != -1 &&
686 sleep_time > INTERACTIVE_SLEEP(p)) {
687 p->sleep_avg = JIFFIES_TO_NS(MAX_SLEEP_AVG -
688 DEF_TIMESLICE);
689 } else {
690 /*
691 * The lower the sleep avg a task has the more
692 * rapidly it will rise with sleep time.
693 */
694 sleep_time *= (MAX_BONUS - CURRENT_BONUS(p)) ? : 1;
695
696 /*
697 * Tasks waking from uninterruptible sleep are
698 * limited in their sleep_avg rise as they
699 * are likely to be waiting on I/O
700 */
701 if (p->activated == -1 && p->mm) {
702 if (p->sleep_avg >= INTERACTIVE_SLEEP(p))
703 sleep_time = 0;
704 else if (p->sleep_avg + sleep_time >=
705 INTERACTIVE_SLEEP(p)) {
706 p->sleep_avg = INTERACTIVE_SLEEP(p);
707 sleep_time = 0;
708 }
709 }
710
711 /*
712 * This code gives a bonus to interactive tasks.
713 *
714 * The boost works by updating the 'average sleep time'
715 * value here, based on ->timestamp. The more time a
716 * task spends sleeping, the higher the average gets -
717 * and the higher the priority boost gets as well.
718 */
719 p->sleep_avg += sleep_time;
720
721 if (p->sleep_avg > NS_MAX_SLEEP_AVG)
722 p->sleep_avg = NS_MAX_SLEEP_AVG;
723 }
724 }
725
726 p->prio = effective_prio(p);
727}
728
729/*
730 * activate_task - move a task to the runqueue and do priority recalculation
731 *
732 * Update all the scheduling statistics stuff. (sleep average
733 * calculation, priority modifiers, etc.)
734 */
735static void activate_task(task_t *p, runqueue_t *rq, int local)
736{
737 unsigned long long now;
738
739 now = sched_clock();
740#ifdef CONFIG_SMP
741 if (!local) {
742 /* Compensate for drifting sched_clock */
743 runqueue_t *this_rq = this_rq();
744 now = (now - this_rq->timestamp_last_tick)
745 + rq->timestamp_last_tick;
746 }
747#endif
748
749 recalc_task_prio(p, now);
750
751 /*
752 * This checks to make sure it's not an uninterruptible task
753 * that is now waking up.
754 */
755 if (!p->activated) {
756 /*
757 * Tasks which were woken up by interrupts (ie. hw events)
758 * are most likely of interactive nature. So we give them
759 * the credit of extending their sleep time to the period
760 * of time they spend on the runqueue, waiting for execution
761 * on a CPU, first time around:
762 */
763 if (in_interrupt())
764 p->activated = 2;
765 else {
766 /*
767 * Normal first-time wakeups get a credit too for
768 * on-runqueue time, but it will be weighted down:
769 */
770 p->activated = 1;
771 }
772 }
773 p->timestamp = now;
774
775 __activate_task(p, rq);
776}
777
778/*
779 * deactivate_task - remove a task from the runqueue.
780 */
781static void deactivate_task(struct task_struct *p, runqueue_t *rq)
782{
783 rq->nr_running--;
784 dequeue_task(p, p->array);
785 p->array = NULL;
786}
787
788/*
789 * resched_task - mark a task 'to be rescheduled now'.
790 *
791 * On UP this means the setting of the need_resched flag, on SMP it
792 * might also involve a cross-CPU call to trigger the scheduler on
793 * the target CPU.
794 */
795#ifdef CONFIG_SMP
796static void resched_task(task_t *p)
797{
798 int need_resched, nrpolling;
799
800 assert_spin_locked(&task_rq(p)->lock);
801
802 /* minimise the chance of sending an interrupt to poll_idle() */
803 nrpolling = test_tsk_thread_flag(p,TIF_POLLING_NRFLAG);
804 need_resched = test_and_set_tsk_thread_flag(p,TIF_NEED_RESCHED);
805 nrpolling |= test_tsk_thread_flag(p,TIF_POLLING_NRFLAG);
806
807 if (!need_resched && !nrpolling && (task_cpu(p) != smp_processor_id()))
808 smp_send_reschedule(task_cpu(p));
809}
810#else
811static inline void resched_task(task_t *p)
812{
813 set_tsk_need_resched(p);
814}
815#endif
816
817/**
818 * task_curr - is this task currently executing on a CPU?
819 * @p: the task in question.
820 */
821inline int task_curr(const task_t *p)
822{
823 return cpu_curr(task_cpu(p)) == p;
824}
825
826#ifdef CONFIG_SMP
827enum request_type {
828 REQ_MOVE_TASK,
829 REQ_SET_DOMAIN,
830};
831
832typedef struct {
833 struct list_head list;
834 enum request_type type;
835
836 /* For REQ_MOVE_TASK */
837 task_t *task;
838 int dest_cpu;
839
840 /* For REQ_SET_DOMAIN */
841 struct sched_domain *sd;
842
843 struct completion done;
844} migration_req_t;
845
846/*
847 * The task's runqueue lock must be held.
848 * Returns true if you have to wait for migration thread.
849 */
850static int migrate_task(task_t *p, int dest_cpu, migration_req_t *req)
851{
852 runqueue_t *rq = task_rq(p);
853
854 /*
855 * If the task is not on a runqueue (and not running), then
856 * it is sufficient to simply update the task's cpu field.
857 */
858 if (!p->array && !task_running(rq, p)) {
859 set_task_cpu(p, dest_cpu);
860 return 0;
861 }
862
863 init_completion(&req->done);
864 req->type = REQ_MOVE_TASK;
865 req->task = p;
866 req->dest_cpu = dest_cpu;
867 list_add(&req->list, &rq->migration_queue);
868 return 1;
869}
870
871/*
872 * wait_task_inactive - wait for a thread to unschedule.
873 *
874 * The caller must ensure that the task *will* unschedule sometime soon,
875 * else this function might spin for a *long* time. This function can't
876 * be called with interrupts off, or it may introduce deadlock with
877 * smp_call_function() if an IPI is sent by the same process we are
878 * waiting to become inactive.
879 */
880void wait_task_inactive(task_t * p)
881{
882 unsigned long flags;
883 runqueue_t *rq;
884 int preempted;
885
886repeat:
887 rq = task_rq_lock(p, &flags);
888 /* Must be off runqueue entirely, not preempted. */
889 if (unlikely(p->array || task_running(rq, p))) {
890 /* If it's preempted, we yield. It could be a while. */
891 preempted = !task_running(rq, p);
892 task_rq_unlock(rq, &flags);
893 cpu_relax();
894 if (preempted)
895 yield();
896 goto repeat;
897 }
898 task_rq_unlock(rq, &flags);
899}
900
901/***
902 * kick_process - kick a running thread to enter/exit the kernel
903 * @p: the to-be-kicked thread
904 *
905 * Cause a process which is running on another CPU to enter
906 * kernel-mode, without any delay. (to get signals handled.)
907 *
908 * NOTE: this function doesnt have to take the runqueue lock,
909 * because all it wants to ensure is that the remote task enters
910 * the kernel. If the IPI races and the task has been migrated
911 * to another CPU then no harm is done and the purpose has been
912 * achieved as well.
913 */
914void kick_process(task_t *p)
915{
916 int cpu;
917
918 preempt_disable();
919 cpu = task_cpu(p);
920 if ((cpu != smp_processor_id()) && task_curr(p))
921 smp_send_reschedule(cpu);
922 preempt_enable();
923}
924
925/*
926 * Return a low guess at the load of a migration-source cpu.
927 *
928 * We want to under-estimate the load of migration sources, to
929 * balance conservatively.
930 */
7897986b 931static inline unsigned long source_load(int cpu, int type)
1da177e4
LT
932{
933 runqueue_t *rq = cpu_rq(cpu);
934 unsigned long load_now = rq->nr_running * SCHED_LOAD_SCALE;
7897986b
NP
935 if (type == 0)
936 return load_now;
1da177e4 937
7897986b 938 return min(rq->cpu_load[type-1], load_now);
1da177e4
LT
939}
940
941/*
942 * Return a high guess at the load of a migration-target cpu
943 */
7897986b 944static inline unsigned long target_load(int cpu, int type)
1da177e4
LT
945{
946 runqueue_t *rq = cpu_rq(cpu);
947 unsigned long load_now = rq->nr_running * SCHED_LOAD_SCALE;
7897986b
NP
948 if (type == 0)
949 return load_now;
1da177e4 950
7897986b 951 return max(rq->cpu_load[type-1], load_now);
1da177e4
LT
952}
953
147cbb4b
NP
954/*
955 * find_idlest_group finds and returns the least busy CPU group within the
956 * domain.
957 */
958static struct sched_group *
959find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu)
960{
961 struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups;
962 unsigned long min_load = ULONG_MAX, this_load = 0;
963 int load_idx = sd->forkexec_idx;
964 int imbalance = 100 + (sd->imbalance_pct-100)/2;
965
966 do {
967 unsigned long load, avg_load;
968 int local_group;
969 int i;
970
971 local_group = cpu_isset(this_cpu, group->cpumask);
972 /* XXX: put a cpus allowed check */
973
974 /* Tally up the load of all CPUs in the group */
975 avg_load = 0;
976
977 for_each_cpu_mask(i, group->cpumask) {
978 /* Bias balancing toward cpus of our domain */
979 if (local_group)
980 load = source_load(i, load_idx);
981 else
982 load = target_load(i, load_idx);
983
984 avg_load += load;
985 }
986
987 /* Adjust by relative CPU power of the group */
988 avg_load = (avg_load * SCHED_LOAD_SCALE) / group->cpu_power;
989
990 if (local_group) {
991 this_load = avg_load;
992 this = group;
993 } else if (avg_load < min_load) {
994 min_load = avg_load;
995 idlest = group;
996 }
997 group = group->next;
998 } while (group != sd->groups);
999
1000 if (!idlest || 100*this_load < imbalance*min_load)
1001 return NULL;
1002 return idlest;
1003}
1004
1005/*
1006 * find_idlest_queue - find the idlest runqueue among the cpus in group.
1007 */
1008static int find_idlest_cpu(struct sched_group *group, int this_cpu)
1009{
1010 unsigned long load, min_load = ULONG_MAX;
1011 int idlest = -1;
1012 int i;
1013
1014 for_each_cpu_mask(i, group->cpumask) {
1015 load = source_load(i, 0);
1016
1017 if (load < min_load || (load == min_load && i == this_cpu)) {
1018 min_load = load;
1019 idlest = i;
1020 }
1021 }
1022
1023 return idlest;
1024}
1025
1026
1da177e4
LT
1027#endif
1028
1029/*
1030 * wake_idle() will wake a task on an idle cpu if task->cpu is
1031 * not idle and an idle cpu is available. The span of cpus to
1032 * search starts with cpus closest then further out as needed,
1033 * so we always favor a closer, idle cpu.
1034 *
1035 * Returns the CPU we should wake onto.
1036 */
1037#if defined(ARCH_HAS_SCHED_WAKE_IDLE)
1038static int wake_idle(int cpu, task_t *p)
1039{
1040 cpumask_t tmp;
1041 struct sched_domain *sd;
1042 int i;
1043
1044 if (idle_cpu(cpu))
1045 return cpu;
1046
1047 for_each_domain(cpu, sd) {
1048 if (sd->flags & SD_WAKE_IDLE) {
e0f364f4 1049 cpus_and(tmp, sd->span, p->cpus_allowed);
1da177e4
LT
1050 for_each_cpu_mask(i, tmp) {
1051 if (idle_cpu(i))
1052 return i;
1053 }
1054 }
e0f364f4
NP
1055 else
1056 break;
1da177e4
LT
1057 }
1058 return cpu;
1059}
1060#else
1061static inline int wake_idle(int cpu, task_t *p)
1062{
1063 return cpu;
1064}
1065#endif
1066
1067/***
1068 * try_to_wake_up - wake up a thread
1069 * @p: the to-be-woken-up thread
1070 * @state: the mask of task states that can be woken
1071 * @sync: do a synchronous wakeup?
1072 *
1073 * Put it on the run-queue if it's not already there. The "current"
1074 * thread is always on the run-queue (except when the actual
1075 * re-schedule is in progress), and as such you're allowed to do
1076 * the simpler "current->state = TASK_RUNNING" to mark yourself
1077 * runnable without the overhead of this.
1078 *
1079 * returns failure only if the task is already active.
1080 */
1081static int try_to_wake_up(task_t * p, unsigned int state, int sync)
1082{
1083 int cpu, this_cpu, success = 0;
1084 unsigned long flags;
1085 long old_state;
1086 runqueue_t *rq;
1087#ifdef CONFIG_SMP
1088 unsigned long load, this_load;
7897986b 1089 struct sched_domain *sd, *this_sd = NULL;
1da177e4
LT
1090 int new_cpu;
1091#endif
1092
1093 rq = task_rq_lock(p, &flags);
1094 old_state = p->state;
1095 if (!(old_state & state))
1096 goto out;
1097
1098 if (p->array)
1099 goto out_running;
1100
1101 cpu = task_cpu(p);
1102 this_cpu = smp_processor_id();
1103
1104#ifdef CONFIG_SMP
1105 if (unlikely(task_running(rq, p)))
1106 goto out_activate;
1107
7897986b
NP
1108 new_cpu = cpu;
1109
1da177e4
LT
1110 schedstat_inc(rq, ttwu_cnt);
1111 if (cpu == this_cpu) {
1112 schedstat_inc(rq, ttwu_local);
7897986b
NP
1113 goto out_set_cpu;
1114 }
1115
1116 for_each_domain(this_cpu, sd) {
1117 if (cpu_isset(cpu, sd->span)) {
1118 schedstat_inc(sd, ttwu_wake_remote);
1119 this_sd = sd;
1120 break;
1da177e4
LT
1121 }
1122 }
1da177e4 1123
7897986b 1124 if (unlikely(!cpu_isset(this_cpu, p->cpus_allowed)))
1da177e4
LT
1125 goto out_set_cpu;
1126
1da177e4 1127 /*
7897986b 1128 * Check for affine wakeup and passive balancing possibilities.
1da177e4 1129 */
7897986b
NP
1130 if (this_sd) {
1131 int idx = this_sd->wake_idx;
1132 unsigned int imbalance;
1da177e4 1133
a3f21bce
NP
1134 imbalance = 100 + (this_sd->imbalance_pct - 100) / 2;
1135
7897986b
NP
1136 load = source_load(cpu, idx);
1137 this_load = target_load(this_cpu, idx);
1da177e4 1138
7897986b
NP
1139 new_cpu = this_cpu; /* Wake to this CPU if we can */
1140
a3f21bce
NP
1141 if (this_sd->flags & SD_WAKE_AFFINE) {
1142 unsigned long tl = this_load;
1da177e4 1143 /*
a3f21bce
NP
1144 * If sync wakeup then subtract the (maximum possible)
1145 * effect of the currently running task from the load
1146 * of the current CPU:
1da177e4 1147 */
a3f21bce
NP
1148 if (sync)
1149 tl -= SCHED_LOAD_SCALE;
1150
1151 if ((tl <= load &&
1152 tl + target_load(cpu, idx) <= SCHED_LOAD_SCALE) ||
1153 100*(tl + SCHED_LOAD_SCALE) <= imbalance*load) {
1154 /*
1155 * This domain has SD_WAKE_AFFINE and
1156 * p is cache cold in this domain, and
1157 * there is no bad imbalance.
1158 */
1159 schedstat_inc(this_sd, ttwu_move_affine);
1160 goto out_set_cpu;
1161 }
1162 }
1163
1164 /*
1165 * Start passive balancing when half the imbalance_pct
1166 * limit is reached.
1167 */
1168 if (this_sd->flags & SD_WAKE_BALANCE) {
1169 if (imbalance*this_load <= 100*load) {
1170 schedstat_inc(this_sd, ttwu_move_balance);
1171 goto out_set_cpu;
1172 }
1da177e4
LT
1173 }
1174 }
1175
1176 new_cpu = cpu; /* Could not wake to this_cpu. Wake to cpu instead */
1177out_set_cpu:
1178 new_cpu = wake_idle(new_cpu, p);
1179 if (new_cpu != cpu) {
1180 set_task_cpu(p, new_cpu);
1181 task_rq_unlock(rq, &flags);
1182 /* might preempt at this point */
1183 rq = task_rq_lock(p, &flags);
1184 old_state = p->state;
1185 if (!(old_state & state))
1186 goto out;
1187 if (p->array)
1188 goto out_running;
1189
1190 this_cpu = smp_processor_id();
1191 cpu = task_cpu(p);
1192 }
1193
1194out_activate:
1195#endif /* CONFIG_SMP */
1196 if (old_state == TASK_UNINTERRUPTIBLE) {
1197 rq->nr_uninterruptible--;
1198 /*
1199 * Tasks on involuntary sleep don't earn
1200 * sleep_avg beyond just interactive state.
1201 */
1202 p->activated = -1;
1203 }
1204
1205 /*
1206 * Sync wakeups (i.e. those types of wakeups where the waker
1207 * has indicated that it will leave the CPU in short order)
1208 * don't trigger a preemption, if the woken up task will run on
1209 * this cpu. (in this case the 'I will reschedule' promise of
1210 * the waker guarantees that the freshly woken up task is going
1211 * to be considered on this CPU.)
1212 */
1213 activate_task(p, rq, cpu == this_cpu);
1214 if (!sync || cpu != this_cpu) {
1215 if (TASK_PREEMPTS_CURR(p, rq))
1216 resched_task(rq->curr);
1217 }
1218 success = 1;
1219
1220out_running:
1221 p->state = TASK_RUNNING;
1222out:
1223 task_rq_unlock(rq, &flags);
1224
1225 return success;
1226}
1227
1228int fastcall wake_up_process(task_t * p)
1229{
1230 return try_to_wake_up(p, TASK_STOPPED | TASK_TRACED |
1231 TASK_INTERRUPTIBLE | TASK_UNINTERRUPTIBLE, 0);
1232}
1233
1234EXPORT_SYMBOL(wake_up_process);
1235
1236int fastcall wake_up_state(task_t *p, unsigned int state)
1237{
1238 return try_to_wake_up(p, state, 0);
1239}
1240
1da177e4
LT
1241/*
1242 * Perform scheduler related setup for a newly forked process p.
1243 * p is forked by current.
1244 */
1245void fastcall sched_fork(task_t *p)
1246{
1247 /*
1248 * We mark the process as running here, but have not actually
1249 * inserted it onto the runqueue yet. This guarantees that
1250 * nobody will actually run it, and a signal or other external
1251 * event cannot wake it up and insert it on the runqueue either.
1252 */
1253 p->state = TASK_RUNNING;
1254 INIT_LIST_HEAD(&p->run_list);
1255 p->array = NULL;
1da177e4
LT
1256#ifdef CONFIG_SCHEDSTATS
1257 memset(&p->sched_info, 0, sizeof(p->sched_info));
1258#endif
4866cde0
NP
1259#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
1260 p->oncpu = 0;
1261#endif
1da177e4 1262#ifdef CONFIG_PREEMPT
4866cde0 1263 /* Want to start with kernel preemption disabled. */
1da177e4
LT
1264 p->thread_info->preempt_count = 1;
1265#endif
1266 /*
1267 * Share the timeslice between parent and child, thus the
1268 * total amount of pending timeslices in the system doesn't change,
1269 * resulting in more scheduling fairness.
1270 */
1271 local_irq_disable();
1272 p->time_slice = (current->time_slice + 1) >> 1;
1273 /*
1274 * The remainder of the first timeslice might be recovered by
1275 * the parent if the child exits early enough.
1276 */
1277 p->first_time_slice = 1;
1278 current->time_slice >>= 1;
1279 p->timestamp = sched_clock();
1280 if (unlikely(!current->time_slice)) {
1281 /*
1282 * This case is rare, it happens when the parent has only
1283 * a single jiffy left from its timeslice. Taking the
1284 * runqueue lock is not a problem.
1285 */
1286 current->time_slice = 1;
1287 preempt_disable();
1288 scheduler_tick();
1289 local_irq_enable();
1290 preempt_enable();
1291 } else
1292 local_irq_enable();
1293}
1294
1295/*
1296 * wake_up_new_task - wake up a newly created task for the first time.
1297 *
1298 * This function will do some initial scheduler statistics housekeeping
1299 * that must be done for every newly created context, then puts the task
1300 * on the runqueue and wakes it.
1301 */
1302void fastcall wake_up_new_task(task_t * p, unsigned long clone_flags)
1303{
1304 unsigned long flags;
1305 int this_cpu, cpu;
1306 runqueue_t *rq, *this_rq;
147cbb4b
NP
1307#ifdef CONFIG_SMP
1308 struct sched_domain *tmp, *sd = NULL;
1309#endif
1da177e4
LT
1310
1311 rq = task_rq_lock(p, &flags);
147cbb4b 1312 BUG_ON(p->state != TASK_RUNNING);
1da177e4 1313 this_cpu = smp_processor_id();
147cbb4b 1314 cpu = task_cpu(p);
1da177e4 1315
147cbb4b
NP
1316#ifdef CONFIG_SMP
1317 for_each_domain(cpu, tmp)
1318 if (tmp->flags & SD_BALANCE_FORK)
1319 sd = tmp;
1320
1321 if (sd) {
68767a0a 1322 int new_cpu;
147cbb4b
NP
1323 struct sched_group *group;
1324
68767a0a 1325 schedstat_inc(sd, sbf_cnt);
147cbb4b
NP
1326 cpu = task_cpu(p);
1327 group = find_idlest_group(sd, p, cpu);
68767a0a
NP
1328 if (!group) {
1329 schedstat_inc(sd, sbf_balanced);
1330 goto no_forkbalance;
1331 }
1332
1333 new_cpu = find_idlest_cpu(group, cpu);
1334 if (new_cpu == -1 || new_cpu == cpu) {
1335 schedstat_inc(sd, sbf_balanced);
1336 goto no_forkbalance;
1337 }
1338
1339 if (cpu_isset(new_cpu, p->cpus_allowed)) {
1340 schedstat_inc(sd, sbf_pushed);
1341 set_task_cpu(p, new_cpu);
1342 task_rq_unlock(rq, &flags);
1343 rq = task_rq_lock(p, &flags);
1344 cpu = task_cpu(p);
147cbb4b
NP
1345 }
1346 }
1da177e4 1347
68767a0a
NP
1348no_forkbalance:
1349#endif
1da177e4
LT
1350 /*
1351 * We decrease the sleep average of forking parents
1352 * and children as well, to keep max-interactive tasks
1353 * from forking tasks that are max-interactive. The parent
1354 * (current) is done further down, under its lock.
1355 */
1356 p->sleep_avg = JIFFIES_TO_NS(CURRENT_BONUS(p) *
1357 CHILD_PENALTY / 100 * MAX_SLEEP_AVG / MAX_BONUS);
1358
1359 p->prio = effective_prio(p);
1360
1361 if (likely(cpu == this_cpu)) {
1362 if (!(clone_flags & CLONE_VM)) {
1363 /*
1364 * The VM isn't cloned, so we're in a good position to
1365 * do child-runs-first in anticipation of an exec. This
1366 * usually avoids a lot of COW overhead.
1367 */
1368 if (unlikely(!current->array))
1369 __activate_task(p, rq);
1370 else {
1371 p->prio = current->prio;
1372 list_add_tail(&p->run_list, &current->run_list);
1373 p->array = current->array;
1374 p->array->nr_active++;
1375 rq->nr_running++;
1376 }
1377 set_need_resched();
1378 } else
1379 /* Run child last */
1380 __activate_task(p, rq);
1381 /*
1382 * We skip the following code due to cpu == this_cpu
1383 *
1384 * task_rq_unlock(rq, &flags);
1385 * this_rq = task_rq_lock(current, &flags);
1386 */
1387 this_rq = rq;
1388 } else {
1389 this_rq = cpu_rq(this_cpu);
1390
1391 /*
1392 * Not the local CPU - must adjust timestamp. This should
1393 * get optimised away in the !CONFIG_SMP case.
1394 */
1395 p->timestamp = (p->timestamp - this_rq->timestamp_last_tick)
1396 + rq->timestamp_last_tick;
1397 __activate_task(p, rq);
1398 if (TASK_PREEMPTS_CURR(p, rq))
1399 resched_task(rq->curr);
1400
1401 /*
1402 * Parent and child are on different CPUs, now get the
1403 * parent runqueue to update the parent's ->sleep_avg:
1404 */
1405 task_rq_unlock(rq, &flags);
1406 this_rq = task_rq_lock(current, &flags);
1407 }
1408 current->sleep_avg = JIFFIES_TO_NS(CURRENT_BONUS(current) *
1409 PARENT_PENALTY / 100 * MAX_SLEEP_AVG / MAX_BONUS);
1410 task_rq_unlock(this_rq, &flags);
1411}
1412
1413/*
1414 * Potentially available exiting-child timeslices are
1415 * retrieved here - this way the parent does not get
1416 * penalized for creating too many threads.
1417 *
1418 * (this cannot be used to 'generate' timeslices
1419 * artificially, because any timeslice recovered here
1420 * was given away by the parent in the first place.)
1421 */
1422void fastcall sched_exit(task_t * p)
1423{
1424 unsigned long flags;
1425 runqueue_t *rq;
1426
1427 /*
1428 * If the child was a (relative-) CPU hog then decrease
1429 * the sleep_avg of the parent as well.
1430 */
1431 rq = task_rq_lock(p->parent, &flags);
1432 if (p->first_time_slice) {
1433 p->parent->time_slice += p->time_slice;
1434 if (unlikely(p->parent->time_slice > task_timeslice(p)))
1435 p->parent->time_slice = task_timeslice(p);
1436 }
1437 if (p->sleep_avg < p->parent->sleep_avg)
1438 p->parent->sleep_avg = p->parent->sleep_avg /
1439 (EXIT_WEIGHT + 1) * EXIT_WEIGHT + p->sleep_avg /
1440 (EXIT_WEIGHT + 1);
1441 task_rq_unlock(rq, &flags);
1442}
1443
4866cde0
NP
1444/**
1445 * prepare_task_switch - prepare to switch tasks
1446 * @rq: the runqueue preparing to switch
1447 * @next: the task we are going to switch to.
1448 *
1449 * This is called with the rq lock held and interrupts off. It must
1450 * be paired with a subsequent finish_task_switch after the context
1451 * switch.
1452 *
1453 * prepare_task_switch sets up locking and calls architecture specific
1454 * hooks.
1455 */
1456static inline void prepare_task_switch(runqueue_t *rq, task_t *next)
1457{
1458 prepare_lock_switch(rq, next);
1459 prepare_arch_switch(next);
1460}
1461
1da177e4
LT
1462/**
1463 * finish_task_switch - clean up after a task-switch
1464 * @prev: the thread we just switched away from.
1465 *
4866cde0
NP
1466 * finish_task_switch must be called after the context switch, paired
1467 * with a prepare_task_switch call before the context switch.
1468 * finish_task_switch will reconcile locking set up by prepare_task_switch,
1469 * and do any other architecture-specific cleanup actions.
1da177e4
LT
1470 *
1471 * Note that we may have delayed dropping an mm in context_switch(). If
1472 * so, we finish that here outside of the runqueue lock. (Doing it
1473 * with the lock held can cause deadlocks; see schedule() for
1474 * details.)
1475 */
4866cde0 1476static inline void finish_task_switch(runqueue_t *rq, task_t *prev)
1da177e4
LT
1477 __releases(rq->lock)
1478{
1da177e4
LT
1479 struct mm_struct *mm = rq->prev_mm;
1480 unsigned long prev_task_flags;
1481
1482 rq->prev_mm = NULL;
1483
1484 /*
1485 * A task struct has one reference for the use as "current".
1486 * If a task dies, then it sets EXIT_ZOMBIE in tsk->exit_state and
1487 * calls schedule one last time. The schedule call will never return,
1488 * and the scheduled task must drop that reference.
1489 * The test for EXIT_ZOMBIE must occur while the runqueue locks are
1490 * still held, otherwise prev could be scheduled on another cpu, die
1491 * there before we look at prev->state, and then the reference would
1492 * be dropped twice.
1493 * Manfred Spraul <manfred@colorfullife.com>
1494 */
1495 prev_task_flags = prev->flags;
4866cde0
NP
1496 finish_arch_switch(prev);
1497 finish_lock_switch(rq, prev);
1da177e4
LT
1498 if (mm)
1499 mmdrop(mm);
1500 if (unlikely(prev_task_flags & PF_DEAD))
1501 put_task_struct(prev);
1502}
1503
1504/**
1505 * schedule_tail - first thing a freshly forked thread must call.
1506 * @prev: the thread we just switched away from.
1507 */
1508asmlinkage void schedule_tail(task_t *prev)
1509 __releases(rq->lock)
1510{
4866cde0
NP
1511 runqueue_t *rq = this_rq();
1512 finish_task_switch(rq, prev);
1513#ifdef __ARCH_WANT_UNLOCKED_CTXSW
1514 /* In this case, finish_task_switch does not reenable preemption */
1515 preempt_enable();
1516#endif
1da177e4
LT
1517 if (current->set_child_tid)
1518 put_user(current->pid, current->set_child_tid);
1519}
1520
1521/*
1522 * context_switch - switch to the new MM and the new
1523 * thread's register state.
1524 */
1525static inline
1526task_t * context_switch(runqueue_t *rq, task_t *prev, task_t *next)
1527{
1528 struct mm_struct *mm = next->mm;
1529 struct mm_struct *oldmm = prev->active_mm;
1530
1531 if (unlikely(!mm)) {
1532 next->active_mm = oldmm;
1533 atomic_inc(&oldmm->mm_count);
1534 enter_lazy_tlb(oldmm, next);
1535 } else
1536 switch_mm(oldmm, mm, next);
1537
1538 if (unlikely(!prev->mm)) {
1539 prev->active_mm = NULL;
1540 WARN_ON(rq->prev_mm);
1541 rq->prev_mm = oldmm;
1542 }
1543
1544 /* Here we just switch the register state and the stack. */
1545 switch_to(prev, next, prev);
1546
1547 return prev;
1548}
1549
1550/*
1551 * nr_running, nr_uninterruptible and nr_context_switches:
1552 *
1553 * externally visible scheduler statistics: current number of runnable
1554 * threads, current number of uninterruptible-sleeping threads, total
1555 * number of context switches performed since bootup.
1556 */
1557unsigned long nr_running(void)
1558{
1559 unsigned long i, sum = 0;
1560
1561 for_each_online_cpu(i)
1562 sum += cpu_rq(i)->nr_running;
1563
1564 return sum;
1565}
1566
1567unsigned long nr_uninterruptible(void)
1568{
1569 unsigned long i, sum = 0;
1570
1571 for_each_cpu(i)
1572 sum += cpu_rq(i)->nr_uninterruptible;
1573
1574 /*
1575 * Since we read the counters lockless, it might be slightly
1576 * inaccurate. Do not allow it to go below zero though:
1577 */
1578 if (unlikely((long)sum < 0))
1579 sum = 0;
1580
1581 return sum;
1582}
1583
1584unsigned long long nr_context_switches(void)
1585{
1586 unsigned long long i, sum = 0;
1587
1588 for_each_cpu(i)
1589 sum += cpu_rq(i)->nr_switches;
1590
1591 return sum;
1592}
1593
1594unsigned long nr_iowait(void)
1595{
1596 unsigned long i, sum = 0;
1597
1598 for_each_cpu(i)
1599 sum += atomic_read(&cpu_rq(i)->nr_iowait);
1600
1601 return sum;
1602}
1603
1604#ifdef CONFIG_SMP
1605
1606/*
1607 * double_rq_lock - safely lock two runqueues
1608 *
1609 * Note this does not disable interrupts like task_rq_lock,
1610 * you need to do so manually before calling.
1611 */
1612static void double_rq_lock(runqueue_t *rq1, runqueue_t *rq2)
1613 __acquires(rq1->lock)
1614 __acquires(rq2->lock)
1615{
1616 if (rq1 == rq2) {
1617 spin_lock(&rq1->lock);
1618 __acquire(rq2->lock); /* Fake it out ;) */
1619 } else {
1620 if (rq1 < rq2) {
1621 spin_lock(&rq1->lock);
1622 spin_lock(&rq2->lock);
1623 } else {
1624 spin_lock(&rq2->lock);
1625 spin_lock(&rq1->lock);
1626 }
1627 }
1628}
1629
1630/*
1631 * double_rq_unlock - safely unlock two runqueues
1632 *
1633 * Note this does not restore interrupts like task_rq_unlock,
1634 * you need to do so manually after calling.
1635 */
1636static void double_rq_unlock(runqueue_t *rq1, runqueue_t *rq2)
1637 __releases(rq1->lock)
1638 __releases(rq2->lock)
1639{
1640 spin_unlock(&rq1->lock);
1641 if (rq1 != rq2)
1642 spin_unlock(&rq2->lock);
1643 else
1644 __release(rq2->lock);
1645}
1646
1647/*
1648 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
1649 */
1650static void double_lock_balance(runqueue_t *this_rq, runqueue_t *busiest)
1651 __releases(this_rq->lock)
1652 __acquires(busiest->lock)
1653 __acquires(this_rq->lock)
1654{
1655 if (unlikely(!spin_trylock(&busiest->lock))) {
1656 if (busiest < this_rq) {
1657 spin_unlock(&this_rq->lock);
1658 spin_lock(&busiest->lock);
1659 spin_lock(&this_rq->lock);
1660 } else
1661 spin_lock(&busiest->lock);
1662 }
1663}
1664
1da177e4
LT
1665/*
1666 * If dest_cpu is allowed for this process, migrate the task to it.
1667 * This is accomplished by forcing the cpu_allowed mask to only
1668 * allow dest_cpu, which will force the cpu onto dest_cpu. Then
1669 * the cpu_allowed mask is restored.
1670 */
1671static void sched_migrate_task(task_t *p, int dest_cpu)
1672{
1673 migration_req_t req;
1674 runqueue_t *rq;
1675 unsigned long flags;
1676
1677 rq = task_rq_lock(p, &flags);
1678 if (!cpu_isset(dest_cpu, p->cpus_allowed)
1679 || unlikely(cpu_is_offline(dest_cpu)))
1680 goto out;
1681
1682 /* force the process onto the specified CPU */
1683 if (migrate_task(p, dest_cpu, &req)) {
1684 /* Need to wait for migration thread (might exit: take ref). */
1685 struct task_struct *mt = rq->migration_thread;
1686 get_task_struct(mt);
1687 task_rq_unlock(rq, &flags);
1688 wake_up_process(mt);
1689 put_task_struct(mt);
1690 wait_for_completion(&req.done);
1691 return;
1692 }
1693out:
1694 task_rq_unlock(rq, &flags);
1695}
1696
1697/*
1698 * sched_exec(): find the highest-level, exec-balance-capable
1699 * domain and try to migrate the task to the least loaded CPU.
1700 *
1701 * execve() is a valuable balancing opportunity, because at this point
1702 * the task has the smallest effective memory and cache footprint.
1703 */
1704void sched_exec(void)
1705{
1706 struct sched_domain *tmp, *sd = NULL;
1707 int new_cpu, this_cpu = get_cpu();
1708
1da177e4
LT
1709 for_each_domain(this_cpu, tmp)
1710 if (tmp->flags & SD_BALANCE_EXEC)
1711 sd = tmp;
1712
1713 if (sd) {
147cbb4b 1714 struct sched_group *group;
68767a0a 1715 schedstat_inc(sd, sbe_cnt);
147cbb4b 1716 group = find_idlest_group(sd, current, this_cpu);
68767a0a
NP
1717 if (!group) {
1718 schedstat_inc(sd, sbe_balanced);
147cbb4b 1719 goto out;
68767a0a 1720 }
147cbb4b 1721 new_cpu = find_idlest_cpu(group, this_cpu);
68767a0a
NP
1722 if (new_cpu == -1 || new_cpu == this_cpu) {
1723 schedstat_inc(sd, sbe_balanced);
147cbb4b 1724 goto out;
1da177e4 1725 }
68767a0a
NP
1726
1727 schedstat_inc(sd, sbe_pushed);
1728 put_cpu();
1729 sched_migrate_task(current, new_cpu);
1730 return;
1da177e4
LT
1731 }
1732out:
1733 put_cpu();
1734}
1735
1736/*
1737 * pull_task - move a task from a remote runqueue to the local runqueue.
1738 * Both runqueues must be locked.
1739 */
1740static inline
1741void pull_task(runqueue_t *src_rq, prio_array_t *src_array, task_t *p,
1742 runqueue_t *this_rq, prio_array_t *this_array, int this_cpu)
1743{
1744 dequeue_task(p, src_array);
1745 src_rq->nr_running--;
1746 set_task_cpu(p, this_cpu);
1747 this_rq->nr_running++;
1748 enqueue_task(p, this_array);
1749 p->timestamp = (p->timestamp - src_rq->timestamp_last_tick)
1750 + this_rq->timestamp_last_tick;
1751 /*
1752 * Note that idle threads have a prio of MAX_PRIO, for this test
1753 * to be always true for them.
1754 */
1755 if (TASK_PREEMPTS_CURR(p, this_rq))
1756 resched_task(this_rq->curr);
1757}
1758
1759/*
1760 * can_migrate_task - may task p from runqueue rq be migrated to this_cpu?
1761 */
1762static inline
1763int can_migrate_task(task_t *p, runqueue_t *rq, int this_cpu,
81026794 1764 struct sched_domain *sd, enum idle_type idle, int *all_pinned)
1da177e4
LT
1765{
1766 /*
1767 * We do not migrate tasks that are:
1768 * 1) running (obviously), or
1769 * 2) cannot be migrated to this CPU due to cpus_allowed, or
1770 * 3) are cache-hot on their current CPU.
1771 */
1da177e4
LT
1772 if (!cpu_isset(this_cpu, p->cpus_allowed))
1773 return 0;
81026794
NP
1774 *all_pinned = 0;
1775
1776 if (task_running(rq, p))
1777 return 0;
1da177e4
LT
1778
1779 /*
1780 * Aggressive migration if:
cafb20c1 1781 * 1) task is cache cold, or
1da177e4
LT
1782 * 2) too many balance attempts have failed.
1783 */
1784
cafb20c1 1785 if (sd->nr_balance_failed > sd->cache_nice_tries)
1da177e4
LT
1786 return 1;
1787
1788 if (task_hot(p, rq->timestamp_last_tick, sd))
81026794 1789 return 0;
1da177e4
LT
1790 return 1;
1791}
1792
1793/*
1794 * move_tasks tries to move up to max_nr_move tasks from busiest to this_rq,
1795 * as part of a balancing operation within "domain". Returns the number of
1796 * tasks moved.
1797 *
1798 * Called with both runqueues locked.
1799 */
1800static int move_tasks(runqueue_t *this_rq, int this_cpu, runqueue_t *busiest,
1801 unsigned long max_nr_move, struct sched_domain *sd,
81026794 1802 enum idle_type idle, int *all_pinned)
1da177e4
LT
1803{
1804 prio_array_t *array, *dst_array;
1805 struct list_head *head, *curr;
81026794 1806 int idx, pulled = 0, pinned = 0;
1da177e4
LT
1807 task_t *tmp;
1808
81026794 1809 if (max_nr_move == 0)
1da177e4
LT
1810 goto out;
1811
81026794
NP
1812 pinned = 1;
1813
1da177e4
LT
1814 /*
1815 * We first consider expired tasks. Those will likely not be
1816 * executed in the near future, and they are most likely to
1817 * be cache-cold, thus switching CPUs has the least effect
1818 * on them.
1819 */
1820 if (busiest->expired->nr_active) {
1821 array = busiest->expired;
1822 dst_array = this_rq->expired;
1823 } else {
1824 array = busiest->active;
1825 dst_array = this_rq->active;
1826 }
1827
1828new_array:
1829 /* Start searching at priority 0: */
1830 idx = 0;
1831skip_bitmap:
1832 if (!idx)
1833 idx = sched_find_first_bit(array->bitmap);
1834 else
1835 idx = find_next_bit(array->bitmap, MAX_PRIO, idx);
1836 if (idx >= MAX_PRIO) {
1837 if (array == busiest->expired && busiest->active->nr_active) {
1838 array = busiest->active;
1839 dst_array = this_rq->active;
1840 goto new_array;
1841 }
1842 goto out;
1843 }
1844
1845 head = array->queue + idx;
1846 curr = head->prev;
1847skip_queue:
1848 tmp = list_entry(curr, task_t, run_list);
1849
1850 curr = curr->prev;
1851
81026794 1852 if (!can_migrate_task(tmp, busiest, this_cpu, sd, idle, &pinned)) {
1da177e4
LT
1853 if (curr != head)
1854 goto skip_queue;
1855 idx++;
1856 goto skip_bitmap;
1857 }
1858
1859#ifdef CONFIG_SCHEDSTATS
1860 if (task_hot(tmp, busiest->timestamp_last_tick, sd))
1861 schedstat_inc(sd, lb_hot_gained[idle]);
1862#endif
1863
1864 pull_task(busiest, array, tmp, this_rq, dst_array, this_cpu);
1865 pulled++;
1866
1867 /* We only want to steal up to the prescribed number of tasks. */
1868 if (pulled < max_nr_move) {
1869 if (curr != head)
1870 goto skip_queue;
1871 idx++;
1872 goto skip_bitmap;
1873 }
1874out:
1875 /*
1876 * Right now, this is the only place pull_task() is called,
1877 * so we can safely collect pull_task() stats here rather than
1878 * inside pull_task().
1879 */
1880 schedstat_add(sd, lb_gained[idle], pulled);
81026794
NP
1881
1882 if (all_pinned)
1883 *all_pinned = pinned;
1da177e4
LT
1884 return pulled;
1885}
1886
1887/*
1888 * find_busiest_group finds and returns the busiest CPU group within the
1889 * domain. It calculates and returns the number of tasks which should be
1890 * moved to restore balance via the imbalance parameter.
1891 */
1892static struct sched_group *
1893find_busiest_group(struct sched_domain *sd, int this_cpu,
1894 unsigned long *imbalance, enum idle_type idle)
1895{
1896 struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups;
1897 unsigned long max_load, avg_load, total_load, this_load, total_pwr;
7897986b 1898 int load_idx;
1da177e4
LT
1899
1900 max_load = this_load = total_load = total_pwr = 0;
7897986b
NP
1901 if (idle == NOT_IDLE)
1902 load_idx = sd->busy_idx;
1903 else if (idle == NEWLY_IDLE)
1904 load_idx = sd->newidle_idx;
1905 else
1906 load_idx = sd->idle_idx;
1da177e4
LT
1907
1908 do {
1909 unsigned long load;
1910 int local_group;
1911 int i;
1912
1913 local_group = cpu_isset(this_cpu, group->cpumask);
1914
1915 /* Tally up the load of all CPUs in the group */
1916 avg_load = 0;
1917
1918 for_each_cpu_mask(i, group->cpumask) {
1919 /* Bias balancing toward cpus of our domain */
1920 if (local_group)
7897986b 1921 load = target_load(i, load_idx);
1da177e4 1922 else
7897986b 1923 load = source_load(i, load_idx);
1da177e4
LT
1924
1925 avg_load += load;
1926 }
1927
1928 total_load += avg_load;
1929 total_pwr += group->cpu_power;
1930
1931 /* Adjust by relative CPU power of the group */
1932 avg_load = (avg_load * SCHED_LOAD_SCALE) / group->cpu_power;
1933
1934 if (local_group) {
1935 this_load = avg_load;
1936 this = group;
1da177e4
LT
1937 } else if (avg_load > max_load) {
1938 max_load = avg_load;
1939 busiest = group;
1940 }
1da177e4
LT
1941 group = group->next;
1942 } while (group != sd->groups);
1943
1944 if (!busiest || this_load >= max_load)
1945 goto out_balanced;
1946
1947 avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr;
1948
1949 if (this_load >= avg_load ||
1950 100*max_load <= sd->imbalance_pct*this_load)
1951 goto out_balanced;
1952
1953 /*
1954 * We're trying to get all the cpus to the average_load, so we don't
1955 * want to push ourselves above the average load, nor do we wish to
1956 * reduce the max loaded cpu below the average load, as either of these
1957 * actions would just result in more rebalancing later, and ping-pong
1958 * tasks around. Thus we look for the minimum possible imbalance.
1959 * Negative imbalances (*we* are more loaded than anyone else) will
1960 * be counted as no imbalance for these purposes -- we can't fix that
1961 * by pulling tasks to us. Be careful of negative numbers as they'll
1962 * appear as very large values with unsigned longs.
1963 */
1964 /* How much load to actually move to equalise the imbalance */
1965 *imbalance = min((max_load - avg_load) * busiest->cpu_power,
1966 (avg_load - this_load) * this->cpu_power)
1967 / SCHED_LOAD_SCALE;
1968
1969 if (*imbalance < SCHED_LOAD_SCALE) {
1970 unsigned long pwr_now = 0, pwr_move = 0;
1971 unsigned long tmp;
1972
1973 if (max_load - this_load >= SCHED_LOAD_SCALE*2) {
1974 *imbalance = 1;
1975 return busiest;
1976 }
1977
1978 /*
1979 * OK, we don't have enough imbalance to justify moving tasks,
1980 * however we may be able to increase total CPU power used by
1981 * moving them.
1982 */
1983
1984 pwr_now += busiest->cpu_power*min(SCHED_LOAD_SCALE, max_load);
1985 pwr_now += this->cpu_power*min(SCHED_LOAD_SCALE, this_load);
1986 pwr_now /= SCHED_LOAD_SCALE;
1987
1988 /* Amount of load we'd subtract */
1989 tmp = SCHED_LOAD_SCALE*SCHED_LOAD_SCALE/busiest->cpu_power;
1990 if (max_load > tmp)
1991 pwr_move += busiest->cpu_power*min(SCHED_LOAD_SCALE,
1992 max_load - tmp);
1993
1994 /* Amount of load we'd add */
1995 if (max_load*busiest->cpu_power <
1996 SCHED_LOAD_SCALE*SCHED_LOAD_SCALE)
1997 tmp = max_load*busiest->cpu_power/this->cpu_power;
1998 else
1999 tmp = SCHED_LOAD_SCALE*SCHED_LOAD_SCALE/this->cpu_power;
2000 pwr_move += this->cpu_power*min(SCHED_LOAD_SCALE, this_load + tmp);
2001 pwr_move /= SCHED_LOAD_SCALE;
2002
2003 /* Move if we gain throughput */
2004 if (pwr_move <= pwr_now)
2005 goto out_balanced;
2006
2007 *imbalance = 1;
2008 return busiest;
2009 }
2010
2011 /* Get rid of the scaling factor, rounding down as we divide */
2012 *imbalance = *imbalance / SCHED_LOAD_SCALE;
1da177e4
LT
2013 return busiest;
2014
2015out_balanced:
1da177e4
LT
2016
2017 *imbalance = 0;
2018 return NULL;
2019}
2020
2021/*
2022 * find_busiest_queue - find the busiest runqueue among the cpus in group.
2023 */
2024static runqueue_t *find_busiest_queue(struct sched_group *group)
2025{
2026 unsigned long load, max_load = 0;
2027 runqueue_t *busiest = NULL;
2028 int i;
2029
2030 for_each_cpu_mask(i, group->cpumask) {
7897986b 2031 load = source_load(i, 0);
1da177e4
LT
2032
2033 if (load > max_load) {
2034 max_load = load;
2035 busiest = cpu_rq(i);
2036 }
2037 }
2038
2039 return busiest;
2040}
2041
2042/*
2043 * Check this_cpu to ensure it is balanced within domain. Attempt to move
2044 * tasks if there is an imbalance.
2045 *
2046 * Called with this_rq unlocked.
2047 */
2048static int load_balance(int this_cpu, runqueue_t *this_rq,
2049 struct sched_domain *sd, enum idle_type idle)
2050{
2051 struct sched_group *group;
2052 runqueue_t *busiest;
2053 unsigned long imbalance;
81026794
NP
2054 int nr_moved, all_pinned;
2055 int active_balance = 0;
1da177e4
LT
2056
2057 spin_lock(&this_rq->lock);
2058 schedstat_inc(sd, lb_cnt[idle]);
2059
2060 group = find_busiest_group(sd, this_cpu, &imbalance, idle);
2061 if (!group) {
2062 schedstat_inc(sd, lb_nobusyg[idle]);
2063 goto out_balanced;
2064 }
2065
2066 busiest = find_busiest_queue(group);
2067 if (!busiest) {
2068 schedstat_inc(sd, lb_nobusyq[idle]);
2069 goto out_balanced;
2070 }
2071
db935dbd 2072 BUG_ON(busiest == this_rq);
1da177e4
LT
2073
2074 schedstat_add(sd, lb_imbalance[idle], imbalance);
2075
2076 nr_moved = 0;
2077 if (busiest->nr_running > 1) {
2078 /*
2079 * Attempt to move tasks. If find_busiest_group has found
2080 * an imbalance but busiest->nr_running <= 1, the group is
2081 * still unbalanced. nr_moved simply stays zero, so it is
2082 * correctly treated as an imbalance.
2083 */
2084 double_lock_balance(this_rq, busiest);
2085 nr_moved = move_tasks(this_rq, this_cpu, busiest,
81026794
NP
2086 imbalance, sd, idle,
2087 &all_pinned);
1da177e4 2088 spin_unlock(&busiest->lock);
81026794
NP
2089
2090 /* All tasks on this runqueue were pinned by CPU affinity */
2091 if (unlikely(all_pinned))
2092 goto out_balanced;
1da177e4 2093 }
81026794 2094
1da177e4
LT
2095 spin_unlock(&this_rq->lock);
2096
2097 if (!nr_moved) {
2098 schedstat_inc(sd, lb_failed[idle]);
2099 sd->nr_balance_failed++;
2100
2101 if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) {
1da177e4
LT
2102
2103 spin_lock(&busiest->lock);
2104 if (!busiest->active_balance) {
2105 busiest->active_balance = 1;
2106 busiest->push_cpu = this_cpu;
81026794 2107 active_balance = 1;
1da177e4
LT
2108 }
2109 spin_unlock(&busiest->lock);
81026794 2110 if (active_balance)
1da177e4
LT
2111 wake_up_process(busiest->migration_thread);
2112
2113 /*
2114 * We've kicked active balancing, reset the failure
2115 * counter.
2116 */
39507451 2117 sd->nr_balance_failed = sd->cache_nice_tries+1;
1da177e4 2118 }
81026794 2119 } else
1da177e4
LT
2120 sd->nr_balance_failed = 0;
2121
81026794 2122 if (likely(!active_balance)) {
1da177e4
LT
2123 /* We were unbalanced, so reset the balancing interval */
2124 sd->balance_interval = sd->min_interval;
81026794
NP
2125 } else {
2126 /*
2127 * If we've begun active balancing, start to back off. This
2128 * case may not be covered by the all_pinned logic if there
2129 * is only 1 task on the busy runqueue (because we don't call
2130 * move_tasks).
2131 */
2132 if (sd->balance_interval < sd->max_interval)
2133 sd->balance_interval *= 2;
1da177e4
LT
2134 }
2135
2136 return nr_moved;
2137
2138out_balanced:
2139 spin_unlock(&this_rq->lock);
2140
2141 schedstat_inc(sd, lb_balanced[idle]);
2142
16cfb1c0 2143 sd->nr_balance_failed = 0;
1da177e4
LT
2144 /* tune up the balancing interval */
2145 if (sd->balance_interval < sd->max_interval)
2146 sd->balance_interval *= 2;
2147
2148 return 0;
2149}
2150
2151/*
2152 * Check this_cpu to ensure it is balanced within domain. Attempt to move
2153 * tasks if there is an imbalance.
2154 *
2155 * Called from schedule when this_rq is about to become idle (NEWLY_IDLE).
2156 * this_rq is locked.
2157 */
2158static int load_balance_newidle(int this_cpu, runqueue_t *this_rq,
2159 struct sched_domain *sd)
2160{
2161 struct sched_group *group;
2162 runqueue_t *busiest = NULL;
2163 unsigned long imbalance;
2164 int nr_moved = 0;
2165
2166 schedstat_inc(sd, lb_cnt[NEWLY_IDLE]);
2167 group = find_busiest_group(sd, this_cpu, &imbalance, NEWLY_IDLE);
2168 if (!group) {
1da177e4 2169 schedstat_inc(sd, lb_nobusyg[NEWLY_IDLE]);
16cfb1c0 2170 goto out_balanced;
1da177e4
LT
2171 }
2172
2173 busiest = find_busiest_queue(group);
db935dbd 2174 if (!busiest) {
1da177e4 2175 schedstat_inc(sd, lb_nobusyq[NEWLY_IDLE]);
16cfb1c0 2176 goto out_balanced;
1da177e4
LT
2177 }
2178
db935dbd
NP
2179 BUG_ON(busiest == this_rq);
2180
1da177e4
LT
2181 /* Attempt to move tasks */
2182 double_lock_balance(this_rq, busiest);
2183
2184 schedstat_add(sd, lb_imbalance[NEWLY_IDLE], imbalance);
2185 nr_moved = move_tasks(this_rq, this_cpu, busiest,
81026794 2186 imbalance, sd, NEWLY_IDLE, NULL);
1da177e4
LT
2187 if (!nr_moved)
2188 schedstat_inc(sd, lb_failed[NEWLY_IDLE]);
16cfb1c0
NP
2189 else
2190 sd->nr_balance_failed = 0;
1da177e4
LT
2191
2192 spin_unlock(&busiest->lock);
1da177e4 2193 return nr_moved;
16cfb1c0
NP
2194
2195out_balanced:
2196 schedstat_inc(sd, lb_balanced[NEWLY_IDLE]);
2197 sd->nr_balance_failed = 0;
2198 return 0;
1da177e4
LT
2199}
2200
2201/*
2202 * idle_balance is called by schedule() if this_cpu is about to become
2203 * idle. Attempts to pull tasks from other CPUs.
2204 */
2205static inline void idle_balance(int this_cpu, runqueue_t *this_rq)
2206{
2207 struct sched_domain *sd;
2208
2209 for_each_domain(this_cpu, sd) {
2210 if (sd->flags & SD_BALANCE_NEWIDLE) {
2211 if (load_balance_newidle(this_cpu, this_rq, sd)) {
2212 /* We've pulled tasks over so stop searching */
2213 break;
2214 }
2215 }
2216 }
2217}
2218
2219/*
2220 * active_load_balance is run by migration threads. It pushes running tasks
2221 * off the busiest CPU onto idle CPUs. It requires at least 1 task to be
2222 * running on each physical CPU where possible, and avoids physical /
2223 * logical imbalances.
2224 *
2225 * Called with busiest_rq locked.
2226 */
2227static void active_load_balance(runqueue_t *busiest_rq, int busiest_cpu)
2228{
2229 struct sched_domain *sd;
1da177e4 2230 runqueue_t *target_rq;
39507451
NP
2231 int target_cpu = busiest_rq->push_cpu;
2232
2233 if (busiest_rq->nr_running <= 1)
2234 /* no task to move */
2235 return;
2236
2237 target_rq = cpu_rq(target_cpu);
1da177e4
LT
2238
2239 /*
39507451
NP
2240 * This condition is "impossible", if it occurs
2241 * we need to fix it. Originally reported by
2242 * Bjorn Helgaas on a 128-cpu setup.
1da177e4 2243 */
39507451 2244 BUG_ON(busiest_rq == target_rq);
1da177e4 2245
39507451
NP
2246 /* move a task from busiest_rq to target_rq */
2247 double_lock_balance(busiest_rq, target_rq);
2248
2249 /* Search for an sd spanning us and the target CPU. */
2250 for_each_domain(target_cpu, sd)
2251 if ((sd->flags & SD_LOAD_BALANCE) &&
2252 cpu_isset(busiest_cpu, sd->span))
2253 break;
2254
2255 if (unlikely(sd == NULL))
2256 goto out;
2257
2258 schedstat_inc(sd, alb_cnt);
2259
2260 if (move_tasks(target_rq, target_cpu, busiest_rq, 1, sd, SCHED_IDLE, NULL))
2261 schedstat_inc(sd, alb_pushed);
2262 else
2263 schedstat_inc(sd, alb_failed);
2264out:
2265 spin_unlock(&target_rq->lock);
1da177e4
LT
2266}
2267
2268/*
2269 * rebalance_tick will get called every timer tick, on every CPU.
2270 *
2271 * It checks each scheduling domain to see if it is due to be balanced,
2272 * and initiates a balancing operation if so.
2273 *
2274 * Balancing parameters are set up in arch_init_sched_domains.
2275 */
2276
2277/* Don't have all balancing operations going off at once */
2278#define CPU_OFFSET(cpu) (HZ * cpu / NR_CPUS)
2279
2280static void rebalance_tick(int this_cpu, runqueue_t *this_rq,
2281 enum idle_type idle)
2282{
2283 unsigned long old_load, this_load;
2284 unsigned long j = jiffies + CPU_OFFSET(this_cpu);
2285 struct sched_domain *sd;
7897986b 2286 int i;
1da177e4 2287
1da177e4 2288 this_load = this_rq->nr_running * SCHED_LOAD_SCALE;
7897986b
NP
2289 /* Update our load */
2290 for (i = 0; i < 3; i++) {
2291 unsigned long new_load = this_load;
2292 int scale = 1 << i;
2293 old_load = this_rq->cpu_load[i];
2294 /*
2295 * Round up the averaging division if load is increasing. This
2296 * prevents us from getting stuck on 9 if the load is 10, for
2297 * example.
2298 */
2299 if (new_load > old_load)
2300 new_load += scale-1;
2301 this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) / scale;
2302 }
1da177e4
LT
2303
2304 for_each_domain(this_cpu, sd) {
2305 unsigned long interval;
2306
2307 if (!(sd->flags & SD_LOAD_BALANCE))
2308 continue;
2309
2310 interval = sd->balance_interval;
2311 if (idle != SCHED_IDLE)
2312 interval *= sd->busy_factor;
2313
2314 /* scale ms to jiffies */
2315 interval = msecs_to_jiffies(interval);
2316 if (unlikely(!interval))
2317 interval = 1;
2318
2319 if (j - sd->last_balance >= interval) {
2320 if (load_balance(this_cpu, this_rq, sd, idle)) {
2321 /* We've pulled tasks over so no longer idle */
2322 idle = NOT_IDLE;
2323 }
2324 sd->last_balance += interval;
2325 }
2326 }
2327}
2328#else
2329/*
2330 * on UP we do not need to balance between CPUs:
2331 */
2332static inline void rebalance_tick(int cpu, runqueue_t *rq, enum idle_type idle)
2333{
2334}
2335static inline void idle_balance(int cpu, runqueue_t *rq)
2336{
2337}
2338#endif
2339
2340static inline int wake_priority_sleeper(runqueue_t *rq)
2341{
2342 int ret = 0;
2343#ifdef CONFIG_SCHED_SMT
2344 spin_lock(&rq->lock);
2345 /*
2346 * If an SMT sibling task has been put to sleep for priority
2347 * reasons reschedule the idle task to see if it can now run.
2348 */
2349 if (rq->nr_running) {
2350 resched_task(rq->idle);
2351 ret = 1;
2352 }
2353 spin_unlock(&rq->lock);
2354#endif
2355 return ret;
2356}
2357
2358DEFINE_PER_CPU(struct kernel_stat, kstat);
2359
2360EXPORT_PER_CPU_SYMBOL(kstat);
2361
2362/*
2363 * This is called on clock ticks and on context switches.
2364 * Bank in p->sched_time the ns elapsed since the last tick or switch.
2365 */
2366static inline void update_cpu_clock(task_t *p, runqueue_t *rq,
2367 unsigned long long now)
2368{
2369 unsigned long long last = max(p->timestamp, rq->timestamp_last_tick);
2370 p->sched_time += now - last;
2371}
2372
2373/*
2374 * Return current->sched_time plus any more ns on the sched_clock
2375 * that have not yet been banked.
2376 */
2377unsigned long long current_sched_time(const task_t *tsk)
2378{
2379 unsigned long long ns;
2380 unsigned long flags;
2381 local_irq_save(flags);
2382 ns = max(tsk->timestamp, task_rq(tsk)->timestamp_last_tick);
2383 ns = tsk->sched_time + (sched_clock() - ns);
2384 local_irq_restore(flags);
2385 return ns;
2386}
2387
2388/*
2389 * We place interactive tasks back into the active array, if possible.
2390 *
2391 * To guarantee that this does not starve expired tasks we ignore the
2392 * interactivity of a task if the first expired task had to wait more
2393 * than a 'reasonable' amount of time. This deadline timeout is
2394 * load-dependent, as the frequency of array switched decreases with
2395 * increasing number of running tasks. We also ignore the interactivity
2396 * if a better static_prio task has expired:
2397 */
2398#define EXPIRED_STARVING(rq) \
2399 ((STARVATION_LIMIT && ((rq)->expired_timestamp && \
2400 (jiffies - (rq)->expired_timestamp >= \
2401 STARVATION_LIMIT * ((rq)->nr_running) + 1))) || \
2402 ((rq)->curr->static_prio > (rq)->best_expired_prio))
2403
2404/*
2405 * Account user cpu time to a process.
2406 * @p: the process that the cpu time gets accounted to
2407 * @hardirq_offset: the offset to subtract from hardirq_count()
2408 * @cputime: the cpu time spent in user space since the last update
2409 */
2410void account_user_time(struct task_struct *p, cputime_t cputime)
2411{
2412 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
2413 cputime64_t tmp;
2414
2415 p->utime = cputime_add(p->utime, cputime);
2416
2417 /* Add user time to cpustat. */
2418 tmp = cputime_to_cputime64(cputime);
2419 if (TASK_NICE(p) > 0)
2420 cpustat->nice = cputime64_add(cpustat->nice, tmp);
2421 else
2422 cpustat->user = cputime64_add(cpustat->user, tmp);
2423}
2424
2425/*
2426 * Account system cpu time to a process.
2427 * @p: the process that the cpu time gets accounted to
2428 * @hardirq_offset: the offset to subtract from hardirq_count()
2429 * @cputime: the cpu time spent in kernel space since the last update
2430 */
2431void account_system_time(struct task_struct *p, int hardirq_offset,
2432 cputime_t cputime)
2433{
2434 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
2435 runqueue_t *rq = this_rq();
2436 cputime64_t tmp;
2437
2438 p->stime = cputime_add(p->stime, cputime);
2439
2440 /* Add system time to cpustat. */
2441 tmp = cputime_to_cputime64(cputime);
2442 if (hardirq_count() - hardirq_offset)
2443 cpustat->irq = cputime64_add(cpustat->irq, tmp);
2444 else if (softirq_count())
2445 cpustat->softirq = cputime64_add(cpustat->softirq, tmp);
2446 else if (p != rq->idle)
2447 cpustat->system = cputime64_add(cpustat->system, tmp);
2448 else if (atomic_read(&rq->nr_iowait) > 0)
2449 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
2450 else
2451 cpustat->idle = cputime64_add(cpustat->idle, tmp);
2452 /* Account for system time used */
2453 acct_update_integrals(p);
2454 /* Update rss highwater mark */
2455 update_mem_hiwater(p);
2456}
2457
2458/*
2459 * Account for involuntary wait time.
2460 * @p: the process from which the cpu time has been stolen
2461 * @steal: the cpu time spent in involuntary wait
2462 */
2463void account_steal_time(struct task_struct *p, cputime_t steal)
2464{
2465 struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat;
2466 cputime64_t tmp = cputime_to_cputime64(steal);
2467 runqueue_t *rq = this_rq();
2468
2469 if (p == rq->idle) {
2470 p->stime = cputime_add(p->stime, steal);
2471 if (atomic_read(&rq->nr_iowait) > 0)
2472 cpustat->iowait = cputime64_add(cpustat->iowait, tmp);
2473 else
2474 cpustat->idle = cputime64_add(cpustat->idle, tmp);
2475 } else
2476 cpustat->steal = cputime64_add(cpustat->steal, tmp);
2477}
2478
2479/*
2480 * This function gets called by the timer code, with HZ frequency.
2481 * We call it with interrupts disabled.
2482 *
2483 * It also gets called by the fork code, when changing the parent's
2484 * timeslices.
2485 */
2486void scheduler_tick(void)
2487{
2488 int cpu = smp_processor_id();
2489 runqueue_t *rq = this_rq();
2490 task_t *p = current;
2491 unsigned long long now = sched_clock();
2492
2493 update_cpu_clock(p, rq, now);
2494
2495 rq->timestamp_last_tick = now;
2496
2497 if (p == rq->idle) {
2498 if (wake_priority_sleeper(rq))
2499 goto out;
2500 rebalance_tick(cpu, rq, SCHED_IDLE);
2501 return;
2502 }
2503
2504 /* Task might have expired already, but not scheduled off yet */
2505 if (p->array != rq->active) {
2506 set_tsk_need_resched(p);
2507 goto out;
2508 }
2509 spin_lock(&rq->lock);
2510 /*
2511 * The task was running during this tick - update the
2512 * time slice counter. Note: we do not update a thread's
2513 * priority until it either goes to sleep or uses up its
2514 * timeslice. This makes it possible for interactive tasks
2515 * to use up their timeslices at their highest priority levels.
2516 */
2517 if (rt_task(p)) {
2518 /*
2519 * RR tasks need a special form of timeslice management.
2520 * FIFO tasks have no timeslices.
2521 */
2522 if ((p->policy == SCHED_RR) && !--p->time_slice) {
2523 p->time_slice = task_timeslice(p);
2524 p->first_time_slice = 0;
2525 set_tsk_need_resched(p);
2526
2527 /* put it at the end of the queue: */
2528 requeue_task(p, rq->active);
2529 }
2530 goto out_unlock;
2531 }
2532 if (!--p->time_slice) {
2533 dequeue_task(p, rq->active);
2534 set_tsk_need_resched(p);
2535 p->prio = effective_prio(p);
2536 p->time_slice = task_timeslice(p);
2537 p->first_time_slice = 0;
2538
2539 if (!rq->expired_timestamp)
2540 rq->expired_timestamp = jiffies;
2541 if (!TASK_INTERACTIVE(p) || EXPIRED_STARVING(rq)) {
2542 enqueue_task(p, rq->expired);
2543 if (p->static_prio < rq->best_expired_prio)
2544 rq->best_expired_prio = p->static_prio;
2545 } else
2546 enqueue_task(p, rq->active);
2547 } else {
2548 /*
2549 * Prevent a too long timeslice allowing a task to monopolize
2550 * the CPU. We do this by splitting up the timeslice into
2551 * smaller pieces.
2552 *
2553 * Note: this does not mean the task's timeslices expire or
2554 * get lost in any way, they just might be preempted by
2555 * another task of equal priority. (one with higher
2556 * priority would have preempted this task already.) We
2557 * requeue this task to the end of the list on this priority
2558 * level, which is in essence a round-robin of tasks with
2559 * equal priority.
2560 *
2561 * This only applies to tasks in the interactive
2562 * delta range with at least TIMESLICE_GRANULARITY to requeue.
2563 */
2564 if (TASK_INTERACTIVE(p) && !((task_timeslice(p) -
2565 p->time_slice) % TIMESLICE_GRANULARITY(p)) &&
2566 (p->time_slice >= TIMESLICE_GRANULARITY(p)) &&
2567 (p->array == rq->active)) {
2568
2569 requeue_task(p, rq->active);
2570 set_tsk_need_resched(p);
2571 }
2572 }
2573out_unlock:
2574 spin_unlock(&rq->lock);
2575out:
2576 rebalance_tick(cpu, rq, NOT_IDLE);
2577}
2578
2579#ifdef CONFIG_SCHED_SMT
2580static inline void wake_sleeping_dependent(int this_cpu, runqueue_t *this_rq)
2581{
2582 struct sched_domain *sd = this_rq->sd;
2583 cpumask_t sibling_map;
2584 int i;
2585
2586 if (!(sd->flags & SD_SHARE_CPUPOWER))
2587 return;
2588
2589 /*
2590 * Unlock the current runqueue because we have to lock in
2591 * CPU order to avoid deadlocks. Caller knows that we might
2592 * unlock. We keep IRQs disabled.
2593 */
2594 spin_unlock(&this_rq->lock);
2595
2596 sibling_map = sd->span;
2597
2598 for_each_cpu_mask(i, sibling_map)
2599 spin_lock(&cpu_rq(i)->lock);
2600 /*
2601 * We clear this CPU from the mask. This both simplifies the
2602 * inner loop and keps this_rq locked when we exit:
2603 */
2604 cpu_clear(this_cpu, sibling_map);
2605
2606 for_each_cpu_mask(i, sibling_map) {
2607 runqueue_t *smt_rq = cpu_rq(i);
2608
2609 /*
2610 * If an SMT sibling task is sleeping due to priority
2611 * reasons wake it up now.
2612 */
2613 if (smt_rq->curr == smt_rq->idle && smt_rq->nr_running)
2614 resched_task(smt_rq->idle);
2615 }
2616
2617 for_each_cpu_mask(i, sibling_map)
2618 spin_unlock(&cpu_rq(i)->lock);
2619 /*
2620 * We exit with this_cpu's rq still held and IRQs
2621 * still disabled:
2622 */
2623}
2624
2625static inline int dependent_sleeper(int this_cpu, runqueue_t *this_rq)
2626{
2627 struct sched_domain *sd = this_rq->sd;
2628 cpumask_t sibling_map;
2629 prio_array_t *array;
2630 int ret = 0, i;
2631 task_t *p;
2632
2633 if (!(sd->flags & SD_SHARE_CPUPOWER))
2634 return 0;
2635
2636 /*
2637 * The same locking rules and details apply as for
2638 * wake_sleeping_dependent():
2639 */
2640 spin_unlock(&this_rq->lock);
2641 sibling_map = sd->span;
2642 for_each_cpu_mask(i, sibling_map)
2643 spin_lock(&cpu_rq(i)->lock);
2644 cpu_clear(this_cpu, sibling_map);
2645
2646 /*
2647 * Establish next task to be run - it might have gone away because
2648 * we released the runqueue lock above:
2649 */
2650 if (!this_rq->nr_running)
2651 goto out_unlock;
2652 array = this_rq->active;
2653 if (!array->nr_active)
2654 array = this_rq->expired;
2655 BUG_ON(!array->nr_active);
2656
2657 p = list_entry(array->queue[sched_find_first_bit(array->bitmap)].next,
2658 task_t, run_list);
2659
2660 for_each_cpu_mask(i, sibling_map) {
2661 runqueue_t *smt_rq = cpu_rq(i);
2662 task_t *smt_curr = smt_rq->curr;
2663
2664 /*
2665 * If a user task with lower static priority than the
2666 * running task on the SMT sibling is trying to schedule,
2667 * delay it till there is proportionately less timeslice
2668 * left of the sibling task to prevent a lower priority
2669 * task from using an unfair proportion of the
2670 * physical cpu's resources. -ck
2671 */
2672 if (((smt_curr->time_slice * (100 - sd->per_cpu_gain) / 100) >
2673 task_timeslice(p) || rt_task(smt_curr)) &&
2674 p->mm && smt_curr->mm && !rt_task(p))
2675 ret = 1;
2676
2677 /*
2678 * Reschedule a lower priority task on the SMT sibling,
2679 * or wake it up if it has been put to sleep for priority
2680 * reasons.
2681 */
2682 if ((((p->time_slice * (100 - sd->per_cpu_gain) / 100) >
2683 task_timeslice(smt_curr) || rt_task(p)) &&
2684 smt_curr->mm && p->mm && !rt_task(smt_curr)) ||
2685 (smt_curr == smt_rq->idle && smt_rq->nr_running))
2686 resched_task(smt_curr);
2687 }
2688out_unlock:
2689 for_each_cpu_mask(i, sibling_map)
2690 spin_unlock(&cpu_rq(i)->lock);
2691 return ret;
2692}
2693#else
2694static inline void wake_sleeping_dependent(int this_cpu, runqueue_t *this_rq)
2695{
2696}
2697
2698static inline int dependent_sleeper(int this_cpu, runqueue_t *this_rq)
2699{
2700 return 0;
2701}
2702#endif
2703
2704#if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT)
2705
2706void fastcall add_preempt_count(int val)
2707{
2708 /*
2709 * Underflow?
2710 */
be5b4fbd 2711 BUG_ON((preempt_count() < 0));
1da177e4
LT
2712 preempt_count() += val;
2713 /*
2714 * Spinlock count overflowing soon?
2715 */
2716 BUG_ON((preempt_count() & PREEMPT_MASK) >= PREEMPT_MASK-10);
2717}
2718EXPORT_SYMBOL(add_preempt_count);
2719
2720void fastcall sub_preempt_count(int val)
2721{
2722 /*
2723 * Underflow?
2724 */
2725 BUG_ON(val > preempt_count());
2726 /*
2727 * Is the spinlock portion underflowing?
2728 */
2729 BUG_ON((val < PREEMPT_MASK) && !(preempt_count() & PREEMPT_MASK));
2730 preempt_count() -= val;
2731}
2732EXPORT_SYMBOL(sub_preempt_count);
2733
2734#endif
2735
2736/*
2737 * schedule() is the main scheduler function.
2738 */
2739asmlinkage void __sched schedule(void)
2740{
2741 long *switch_count;
2742 task_t *prev, *next;
2743 runqueue_t *rq;
2744 prio_array_t *array;
2745 struct list_head *queue;
2746 unsigned long long now;
2747 unsigned long run_time;
2748 int cpu, idx;
2749
2750 /*
2751 * Test if we are atomic. Since do_exit() needs to call into
2752 * schedule() atomically, we ignore that path for now.
2753 * Otherwise, whine if we are scheduling when we should not be.
2754 */
2755 if (likely(!current->exit_state)) {
2756 if (unlikely(in_atomic())) {
2757 printk(KERN_ERR "scheduling while atomic: "
2758 "%s/0x%08x/%d\n",
2759 current->comm, preempt_count(), current->pid);
2760 dump_stack();
2761 }
2762 }
2763 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
2764
2765need_resched:
2766 preempt_disable();
2767 prev = current;
2768 release_kernel_lock(prev);
2769need_resched_nonpreemptible:
2770 rq = this_rq();
2771
2772 /*
2773 * The idle thread is not allowed to schedule!
2774 * Remove this check after it has been exercised a bit.
2775 */
2776 if (unlikely(prev == rq->idle) && prev->state != TASK_RUNNING) {
2777 printk(KERN_ERR "bad: scheduling from the idle thread!\n");
2778 dump_stack();
2779 }
2780
2781 schedstat_inc(rq, sched_cnt);
2782 now = sched_clock();
238628ed 2783 if (likely((long long)(now - prev->timestamp) < NS_MAX_SLEEP_AVG)) {
1da177e4 2784 run_time = now - prev->timestamp;
238628ed 2785 if (unlikely((long long)(now - prev->timestamp) < 0))
1da177e4
LT
2786 run_time = 0;
2787 } else
2788 run_time = NS_MAX_SLEEP_AVG;
2789
2790 /*
2791 * Tasks charged proportionately less run_time at high sleep_avg to
2792 * delay them losing their interactive status
2793 */
2794 run_time /= (CURRENT_BONUS(prev) ? : 1);
2795
2796 spin_lock_irq(&rq->lock);
2797
2798 if (unlikely(prev->flags & PF_DEAD))
2799 prev->state = EXIT_DEAD;
2800
2801 switch_count = &prev->nivcsw;
2802 if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) {
2803 switch_count = &prev->nvcsw;
2804 if (unlikely((prev->state & TASK_INTERRUPTIBLE) &&
2805 unlikely(signal_pending(prev))))
2806 prev->state = TASK_RUNNING;
2807 else {
2808 if (prev->state == TASK_UNINTERRUPTIBLE)
2809 rq->nr_uninterruptible++;
2810 deactivate_task(prev, rq);
2811 }
2812 }
2813
2814 cpu = smp_processor_id();
2815 if (unlikely(!rq->nr_running)) {
2816go_idle:
2817 idle_balance(cpu, rq);
2818 if (!rq->nr_running) {
2819 next = rq->idle;
2820 rq->expired_timestamp = 0;
2821 wake_sleeping_dependent(cpu, rq);
2822 /*
2823 * wake_sleeping_dependent() might have released
2824 * the runqueue, so break out if we got new
2825 * tasks meanwhile:
2826 */
2827 if (!rq->nr_running)
2828 goto switch_tasks;
2829 }
2830 } else {
2831 if (dependent_sleeper(cpu, rq)) {
2832 next = rq->idle;
2833 goto switch_tasks;
2834 }
2835 /*
2836 * dependent_sleeper() releases and reacquires the runqueue
2837 * lock, hence go into the idle loop if the rq went
2838 * empty meanwhile:
2839 */
2840 if (unlikely(!rq->nr_running))
2841 goto go_idle;
2842 }
2843
2844 array = rq->active;
2845 if (unlikely(!array->nr_active)) {
2846 /*
2847 * Switch the active and expired arrays.
2848 */
2849 schedstat_inc(rq, sched_switch);
2850 rq->active = rq->expired;
2851 rq->expired = array;
2852 array = rq->active;
2853 rq->expired_timestamp = 0;
2854 rq->best_expired_prio = MAX_PRIO;
2855 }
2856
2857 idx = sched_find_first_bit(array->bitmap);
2858 queue = array->queue + idx;
2859 next = list_entry(queue->next, task_t, run_list);
2860
2861 if (!rt_task(next) && next->activated > 0) {
2862 unsigned long long delta = now - next->timestamp;
238628ed 2863 if (unlikely((long long)(now - next->timestamp) < 0))
1da177e4
LT
2864 delta = 0;
2865
2866 if (next->activated == 1)
2867 delta = delta * (ON_RUNQUEUE_WEIGHT * 128 / 100) / 128;
2868
2869 array = next->array;
2870 dequeue_task(next, array);
2871 recalc_task_prio(next, next->timestamp + delta);
2872 enqueue_task(next, array);
2873 }
2874 next->activated = 0;
2875switch_tasks:
2876 if (next == rq->idle)
2877 schedstat_inc(rq, sched_goidle);
2878 prefetch(next);
2879 clear_tsk_need_resched(prev);
2880 rcu_qsctr_inc(task_cpu(prev));
2881
2882 update_cpu_clock(prev, rq, now);
2883
2884 prev->sleep_avg -= run_time;
2885 if ((long)prev->sleep_avg <= 0)
2886 prev->sleep_avg = 0;
2887 prev->timestamp = prev->last_ran = now;
2888
2889 sched_info_switch(prev, next);
2890 if (likely(prev != next)) {
2891 next->timestamp = now;
2892 rq->nr_switches++;
2893 rq->curr = next;
2894 ++*switch_count;
2895
4866cde0 2896 prepare_task_switch(rq, next);
1da177e4
LT
2897 prev = context_switch(rq, prev, next);
2898 barrier();
4866cde0
NP
2899 /*
2900 * this_rq must be evaluated again because prev may have moved
2901 * CPUs since it called schedule(), thus the 'rq' on its stack
2902 * frame will be invalid.
2903 */
2904 finish_task_switch(this_rq(), prev);
1da177e4
LT
2905 } else
2906 spin_unlock_irq(&rq->lock);
2907
2908 prev = current;
2909 if (unlikely(reacquire_kernel_lock(prev) < 0))
2910 goto need_resched_nonpreemptible;
2911 preempt_enable_no_resched();
2912 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
2913 goto need_resched;
2914}
2915
2916EXPORT_SYMBOL(schedule);
2917
2918#ifdef CONFIG_PREEMPT
2919/*
2920 * this is is the entry point to schedule() from in-kernel preemption
2921 * off of preempt_enable. Kernel preemptions off return from interrupt
2922 * occur there and call schedule directly.
2923 */
2924asmlinkage void __sched preempt_schedule(void)
2925{
2926 struct thread_info *ti = current_thread_info();
2927#ifdef CONFIG_PREEMPT_BKL
2928 struct task_struct *task = current;
2929 int saved_lock_depth;
2930#endif
2931 /*
2932 * If there is a non-zero preempt_count or interrupts are disabled,
2933 * we do not want to preempt the current task. Just return..
2934 */
2935 if (unlikely(ti->preempt_count || irqs_disabled()))
2936 return;
2937
2938need_resched:
2939 add_preempt_count(PREEMPT_ACTIVE);
2940 /*
2941 * We keep the big kernel semaphore locked, but we
2942 * clear ->lock_depth so that schedule() doesnt
2943 * auto-release the semaphore:
2944 */
2945#ifdef CONFIG_PREEMPT_BKL
2946 saved_lock_depth = task->lock_depth;
2947 task->lock_depth = -1;
2948#endif
2949 schedule();
2950#ifdef CONFIG_PREEMPT_BKL
2951 task->lock_depth = saved_lock_depth;
2952#endif
2953 sub_preempt_count(PREEMPT_ACTIVE);
2954
2955 /* we could miss a preemption opportunity between schedule and now */
2956 barrier();
2957 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
2958 goto need_resched;
2959}
2960
2961EXPORT_SYMBOL(preempt_schedule);
2962
2963/*
2964 * this is is the entry point to schedule() from kernel preemption
2965 * off of irq context.
2966 * Note, that this is called and return with irqs disabled. This will
2967 * protect us against recursive calling from irq.
2968 */
2969asmlinkage void __sched preempt_schedule_irq(void)
2970{
2971 struct thread_info *ti = current_thread_info();
2972#ifdef CONFIG_PREEMPT_BKL
2973 struct task_struct *task = current;
2974 int saved_lock_depth;
2975#endif
2976 /* Catch callers which need to be fixed*/
2977 BUG_ON(ti->preempt_count || !irqs_disabled());
2978
2979need_resched:
2980 add_preempt_count(PREEMPT_ACTIVE);
2981 /*
2982 * We keep the big kernel semaphore locked, but we
2983 * clear ->lock_depth so that schedule() doesnt
2984 * auto-release the semaphore:
2985 */
2986#ifdef CONFIG_PREEMPT_BKL
2987 saved_lock_depth = task->lock_depth;
2988 task->lock_depth = -1;
2989#endif
2990 local_irq_enable();
2991 schedule();
2992 local_irq_disable();
2993#ifdef CONFIG_PREEMPT_BKL
2994 task->lock_depth = saved_lock_depth;
2995#endif
2996 sub_preempt_count(PREEMPT_ACTIVE);
2997
2998 /* we could miss a preemption opportunity between schedule and now */
2999 barrier();
3000 if (unlikely(test_thread_flag(TIF_NEED_RESCHED)))
3001 goto need_resched;
3002}
3003
3004#endif /* CONFIG_PREEMPT */
3005
3006int default_wake_function(wait_queue_t *curr, unsigned mode, int sync, void *key)
3007{
c43dc2fd 3008 task_t *p = curr->private;
1da177e4
LT
3009 return try_to_wake_up(p, mode, sync);
3010}
3011
3012EXPORT_SYMBOL(default_wake_function);
3013
3014/*
3015 * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just
3016 * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve
3017 * number) then we wake all the non-exclusive tasks and one exclusive task.
3018 *
3019 * There are circumstances in which we can try to wake a task which has already
3020 * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns
3021 * zero in this (rare) case, and we handle it by continuing to scan the queue.
3022 */
3023static void __wake_up_common(wait_queue_head_t *q, unsigned int mode,
3024 int nr_exclusive, int sync, void *key)
3025{
3026 struct list_head *tmp, *next;
3027
3028 list_for_each_safe(tmp, next, &q->task_list) {
3029 wait_queue_t *curr;
3030 unsigned flags;
3031 curr = list_entry(tmp, wait_queue_t, task_list);
3032 flags = curr->flags;
3033 if (curr->func(curr, mode, sync, key) &&
3034 (flags & WQ_FLAG_EXCLUSIVE) &&
3035 !--nr_exclusive)
3036 break;
3037 }
3038}
3039
3040/**
3041 * __wake_up - wake up threads blocked on a waitqueue.
3042 * @q: the waitqueue
3043 * @mode: which threads
3044 * @nr_exclusive: how many wake-one or wake-many threads to wake up
67be2dd1 3045 * @key: is directly passed to the wakeup function
1da177e4
LT
3046 */
3047void fastcall __wake_up(wait_queue_head_t *q, unsigned int mode,
3048 int nr_exclusive, void *key)
3049{
3050 unsigned long flags;
3051
3052 spin_lock_irqsave(&q->lock, flags);
3053 __wake_up_common(q, mode, nr_exclusive, 0, key);
3054 spin_unlock_irqrestore(&q->lock, flags);
3055}
3056
3057EXPORT_SYMBOL(__wake_up);
3058
3059/*
3060 * Same as __wake_up but called with the spinlock in wait_queue_head_t held.
3061 */
3062void fastcall __wake_up_locked(wait_queue_head_t *q, unsigned int mode)
3063{
3064 __wake_up_common(q, mode, 1, 0, NULL);
3065}
3066
3067/**
67be2dd1 3068 * __wake_up_sync - wake up threads blocked on a waitqueue.
1da177e4
LT
3069 * @q: the waitqueue
3070 * @mode: which threads
3071 * @nr_exclusive: how many wake-one or wake-many threads to wake up
3072 *
3073 * The sync wakeup differs that the waker knows that it will schedule
3074 * away soon, so while the target thread will be woken up, it will not
3075 * be migrated to another CPU - ie. the two threads are 'synchronized'
3076 * with each other. This can prevent needless bouncing between CPUs.
3077 *
3078 * On UP it can prevent extra preemption.
3079 */
3080void fastcall __wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive)
3081{
3082 unsigned long flags;
3083 int sync = 1;
3084
3085 if (unlikely(!q))
3086 return;
3087
3088 if (unlikely(!nr_exclusive))
3089 sync = 0;
3090
3091 spin_lock_irqsave(&q->lock, flags);
3092 __wake_up_common(q, mode, nr_exclusive, sync, NULL);
3093 spin_unlock_irqrestore(&q->lock, flags);
3094}
3095EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */
3096
3097void fastcall complete(struct completion *x)
3098{
3099 unsigned long flags;
3100
3101 spin_lock_irqsave(&x->wait.lock, flags);
3102 x->done++;
3103 __wake_up_common(&x->wait, TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE,
3104 1, 0, NULL);
3105 spin_unlock_irqrestore(&x->wait.lock, flags);
3106}
3107EXPORT_SYMBOL(complete);
3108
3109void fastcall complete_all(struct completion *x)
3110{
3111 unsigned long flags;
3112
3113 spin_lock_irqsave(&x->wait.lock, flags);
3114 x->done += UINT_MAX/2;
3115 __wake_up_common(&x->wait, TASK_UNINTERRUPTIBLE | TASK_INTERRUPTIBLE,
3116 0, 0, NULL);
3117 spin_unlock_irqrestore(&x->wait.lock, flags);
3118}
3119EXPORT_SYMBOL(complete_all);
3120
3121void fastcall __sched wait_for_completion(struct completion *x)
3122{
3123 might_sleep();
3124 spin_lock_irq(&x->wait.lock);
3125 if (!x->done) {
3126 DECLARE_WAITQUEUE(wait, current);
3127
3128 wait.flags |= WQ_FLAG_EXCLUSIVE;
3129 __add_wait_queue_tail(&x->wait, &wait);
3130 do {
3131 __set_current_state(TASK_UNINTERRUPTIBLE);
3132 spin_unlock_irq(&x->wait.lock);
3133 schedule();
3134 spin_lock_irq(&x->wait.lock);
3135 } while (!x->done);
3136 __remove_wait_queue(&x->wait, &wait);
3137 }
3138 x->done--;
3139 spin_unlock_irq(&x->wait.lock);
3140}
3141EXPORT_SYMBOL(wait_for_completion);
3142
3143unsigned long fastcall __sched
3144wait_for_completion_timeout(struct completion *x, unsigned long timeout)
3145{
3146 might_sleep();
3147
3148 spin_lock_irq(&x->wait.lock);
3149 if (!x->done) {
3150 DECLARE_WAITQUEUE(wait, current);
3151
3152 wait.flags |= WQ_FLAG_EXCLUSIVE;
3153 __add_wait_queue_tail(&x->wait, &wait);
3154 do {
3155 __set_current_state(TASK_UNINTERRUPTIBLE);
3156 spin_unlock_irq(&x->wait.lock);
3157 timeout = schedule_timeout(timeout);
3158 spin_lock_irq(&x->wait.lock);
3159 if (!timeout) {
3160 __remove_wait_queue(&x->wait, &wait);
3161 goto out;
3162 }
3163 } while (!x->done);
3164 __remove_wait_queue(&x->wait, &wait);
3165 }
3166 x->done--;
3167out:
3168 spin_unlock_irq(&x->wait.lock);
3169 return timeout;
3170}
3171EXPORT_SYMBOL(wait_for_completion_timeout);
3172
3173int fastcall __sched wait_for_completion_interruptible(struct completion *x)
3174{
3175 int ret = 0;
3176
3177 might_sleep();
3178
3179 spin_lock_irq(&x->wait.lock);
3180 if (!x->done) {
3181 DECLARE_WAITQUEUE(wait, current);
3182
3183 wait.flags |= WQ_FLAG_EXCLUSIVE;
3184 __add_wait_queue_tail(&x->wait, &wait);
3185 do {
3186 if (signal_pending(current)) {
3187 ret = -ERESTARTSYS;
3188 __remove_wait_queue(&x->wait, &wait);
3189 goto out;
3190 }
3191 __set_current_state(TASK_INTERRUPTIBLE);
3192 spin_unlock_irq(&x->wait.lock);
3193 schedule();
3194 spin_lock_irq(&x->wait.lock);
3195 } while (!x->done);
3196 __remove_wait_queue(&x->wait, &wait);
3197 }
3198 x->done--;
3199out:
3200 spin_unlock_irq(&x->wait.lock);
3201
3202 return ret;
3203}
3204EXPORT_SYMBOL(wait_for_completion_interruptible);
3205
3206unsigned long fastcall __sched
3207wait_for_completion_interruptible_timeout(struct completion *x,
3208 unsigned long timeout)
3209{
3210 might_sleep();
3211
3212 spin_lock_irq(&x->wait.lock);
3213 if (!x->done) {
3214 DECLARE_WAITQUEUE(wait, current);
3215
3216 wait.flags |= WQ_FLAG_EXCLUSIVE;
3217 __add_wait_queue_tail(&x->wait, &wait);
3218 do {
3219 if (signal_pending(current)) {
3220 timeout = -ERESTARTSYS;
3221 __remove_wait_queue(&x->wait, &wait);
3222 goto out;
3223 }
3224 __set_current_state(TASK_INTERRUPTIBLE);
3225 spin_unlock_irq(&x->wait.lock);
3226 timeout = schedule_timeout(timeout);
3227 spin_lock_irq(&x->wait.lock);
3228 if (!timeout) {
3229 __remove_wait_queue(&x->wait, &wait);
3230 goto out;
3231 }
3232 } while (!x->done);
3233 __remove_wait_queue(&x->wait, &wait);
3234 }
3235 x->done--;
3236out:
3237 spin_unlock_irq(&x->wait.lock);
3238 return timeout;
3239}
3240EXPORT_SYMBOL(wait_for_completion_interruptible_timeout);
3241
3242
3243#define SLEEP_ON_VAR \
3244 unsigned long flags; \
3245 wait_queue_t wait; \
3246 init_waitqueue_entry(&wait, current);
3247
3248#define SLEEP_ON_HEAD \
3249 spin_lock_irqsave(&q->lock,flags); \
3250 __add_wait_queue(q, &wait); \
3251 spin_unlock(&q->lock);
3252
3253#define SLEEP_ON_TAIL \
3254 spin_lock_irq(&q->lock); \
3255 __remove_wait_queue(q, &wait); \
3256 spin_unlock_irqrestore(&q->lock, flags);
3257
3258void fastcall __sched interruptible_sleep_on(wait_queue_head_t *q)
3259{
3260 SLEEP_ON_VAR
3261
3262 current->state = TASK_INTERRUPTIBLE;
3263
3264 SLEEP_ON_HEAD
3265 schedule();
3266 SLEEP_ON_TAIL
3267}
3268
3269EXPORT_SYMBOL(interruptible_sleep_on);
3270
3271long fastcall __sched interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout)
3272{
3273 SLEEP_ON_VAR
3274
3275 current->state = TASK_INTERRUPTIBLE;
3276
3277 SLEEP_ON_HEAD
3278 timeout = schedule_timeout(timeout);
3279 SLEEP_ON_TAIL
3280
3281 return timeout;
3282}
3283
3284EXPORT_SYMBOL(interruptible_sleep_on_timeout);
3285
3286void fastcall __sched sleep_on(wait_queue_head_t *q)
3287{
3288 SLEEP_ON_VAR
3289
3290 current->state = TASK_UNINTERRUPTIBLE;
3291
3292 SLEEP_ON_HEAD
3293 schedule();
3294 SLEEP_ON_TAIL
3295}
3296
3297EXPORT_SYMBOL(sleep_on);
3298
3299long fastcall __sched sleep_on_timeout(wait_queue_head_t *q, long timeout)
3300{
3301 SLEEP_ON_VAR
3302
3303 current->state = TASK_UNINTERRUPTIBLE;
3304
3305 SLEEP_ON_HEAD
3306 timeout = schedule_timeout(timeout);
3307 SLEEP_ON_TAIL
3308
3309 return timeout;
3310}
3311
3312EXPORT_SYMBOL(sleep_on_timeout);
3313
3314void set_user_nice(task_t *p, long nice)
3315{
3316 unsigned long flags;
3317 prio_array_t *array;
3318 runqueue_t *rq;
3319 int old_prio, new_prio, delta;
3320
3321 if (TASK_NICE(p) == nice || nice < -20 || nice > 19)
3322 return;
3323 /*
3324 * We have to be careful, if called from sys_setpriority(),
3325 * the task might be in the middle of scheduling on another CPU.
3326 */
3327 rq = task_rq_lock(p, &flags);
3328 /*
3329 * The RT priorities are set via sched_setscheduler(), but we still
3330 * allow the 'normal' nice value to be set - but as expected
3331 * it wont have any effect on scheduling until the task is
3332 * not SCHED_NORMAL:
3333 */
3334 if (rt_task(p)) {
3335 p->static_prio = NICE_TO_PRIO(nice);
3336 goto out_unlock;
3337 }
3338 array = p->array;
3339 if (array)
3340 dequeue_task(p, array);
3341
3342 old_prio = p->prio;
3343 new_prio = NICE_TO_PRIO(nice);
3344 delta = new_prio - old_prio;
3345 p->static_prio = NICE_TO_PRIO(nice);
3346 p->prio += delta;
3347
3348 if (array) {
3349 enqueue_task(p, array);
3350 /*
3351 * If the task increased its priority or is running and
3352 * lowered its priority, then reschedule its CPU:
3353 */
3354 if (delta < 0 || (delta > 0 && task_running(rq, p)))
3355 resched_task(rq->curr);
3356 }
3357out_unlock:
3358 task_rq_unlock(rq, &flags);
3359}
3360
3361EXPORT_SYMBOL(set_user_nice);
3362
e43379f1
MM
3363/*
3364 * can_nice - check if a task can reduce its nice value
3365 * @p: task
3366 * @nice: nice value
3367 */
3368int can_nice(const task_t *p, const int nice)
3369{
3370 /* convert nice value [19,-20] to rlimit style value [0,39] */
3371 int nice_rlim = 19 - nice;
3372 return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur ||
3373 capable(CAP_SYS_NICE));
3374}
3375
1da177e4
LT
3376#ifdef __ARCH_WANT_SYS_NICE
3377
3378/*
3379 * sys_nice - change the priority of the current process.
3380 * @increment: priority increment
3381 *
3382 * sys_setpriority is a more generic, but much slower function that
3383 * does similar things.
3384 */
3385asmlinkage long sys_nice(int increment)
3386{
3387 int retval;
3388 long nice;
3389
3390 /*
3391 * Setpriority might change our priority at the same moment.
3392 * We don't have to worry. Conceptually one call occurs first
3393 * and we have a single winner.
3394 */
e43379f1
MM
3395 if (increment < -40)
3396 increment = -40;
1da177e4
LT
3397 if (increment > 40)
3398 increment = 40;
3399
3400 nice = PRIO_TO_NICE(current->static_prio) + increment;
3401 if (nice < -20)
3402 nice = -20;
3403 if (nice > 19)
3404 nice = 19;
3405
e43379f1
MM
3406 if (increment < 0 && !can_nice(current, nice))
3407 return -EPERM;
3408
1da177e4
LT
3409 retval = security_task_setnice(current, nice);
3410 if (retval)
3411 return retval;
3412
3413 set_user_nice(current, nice);
3414 return 0;
3415}
3416
3417#endif
3418
3419/**
3420 * task_prio - return the priority value of a given task.
3421 * @p: the task in question.
3422 *
3423 * This is the priority value as seen by users in /proc.
3424 * RT tasks are offset by -200. Normal tasks are centered
3425 * around 0, value goes from -16 to +15.
3426 */
3427int task_prio(const task_t *p)
3428{
3429 return p->prio - MAX_RT_PRIO;
3430}
3431
3432/**
3433 * task_nice - return the nice value of a given task.
3434 * @p: the task in question.
3435 */
3436int task_nice(const task_t *p)
3437{
3438 return TASK_NICE(p);
3439}
3440
3441/*
3442 * The only users of task_nice are binfmt_elf and binfmt_elf32.
3443 * binfmt_elf is no longer modular, but binfmt_elf32 still is.
3444 * Therefore, task_nice is needed if there is a compat_mode.
3445 */
3446#ifdef CONFIG_COMPAT
3447EXPORT_SYMBOL_GPL(task_nice);
3448#endif
3449
3450/**
3451 * idle_cpu - is a given cpu idle currently?
3452 * @cpu: the processor in question.
3453 */
3454int idle_cpu(int cpu)
3455{
3456 return cpu_curr(cpu) == cpu_rq(cpu)->idle;
3457}
3458
3459EXPORT_SYMBOL_GPL(idle_cpu);
3460
3461/**
3462 * idle_task - return the idle task for a given cpu.
3463 * @cpu: the processor in question.
3464 */
3465task_t *idle_task(int cpu)
3466{
3467 return cpu_rq(cpu)->idle;
3468}
3469
3470/**
3471 * find_process_by_pid - find a process with a matching PID value.
3472 * @pid: the pid in question.
3473 */
3474static inline task_t *find_process_by_pid(pid_t pid)
3475{
3476 return pid ? find_task_by_pid(pid) : current;
3477}
3478
3479/* Actually do priority change: must hold rq lock. */
3480static void __setscheduler(struct task_struct *p, int policy, int prio)
3481{
3482 BUG_ON(p->array);
3483 p->policy = policy;
3484 p->rt_priority = prio;
3485 if (policy != SCHED_NORMAL)
3486 p->prio = MAX_USER_RT_PRIO-1 - p->rt_priority;
3487 else
3488 p->prio = p->static_prio;
3489}
3490
3491/**
3492 * sched_setscheduler - change the scheduling policy and/or RT priority of
3493 * a thread.
3494 * @p: the task in question.
3495 * @policy: new policy.
3496 * @param: structure containing the new RT priority.
3497 */
3498int sched_setscheduler(struct task_struct *p, int policy, struct sched_param *param)
3499{
3500 int retval;
3501 int oldprio, oldpolicy = -1;
3502 prio_array_t *array;
3503 unsigned long flags;
3504 runqueue_t *rq;
3505
3506recheck:
3507 /* double check policy once rq lock held */
3508 if (policy < 0)
3509 policy = oldpolicy = p->policy;
3510 else if (policy != SCHED_FIFO && policy != SCHED_RR &&
3511 policy != SCHED_NORMAL)
3512 return -EINVAL;
3513 /*
3514 * Valid priorities for SCHED_FIFO and SCHED_RR are
3515 * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL is 0.
3516 */
3517 if (param->sched_priority < 0 ||
3518 param->sched_priority > MAX_USER_RT_PRIO-1)
3519 return -EINVAL;
3520 if ((policy == SCHED_NORMAL) != (param->sched_priority == 0))
3521 return -EINVAL;
3522
3523 if ((policy == SCHED_FIFO || policy == SCHED_RR) &&
e43379f1 3524 param->sched_priority > p->signal->rlim[RLIMIT_RTPRIO].rlim_cur &&
1da177e4
LT
3525 !capable(CAP_SYS_NICE))
3526 return -EPERM;
3527 if ((current->euid != p->euid) && (current->euid != p->uid) &&
3528 !capable(CAP_SYS_NICE))
3529 return -EPERM;
3530
3531 retval = security_task_setscheduler(p, policy, param);
3532 if (retval)
3533 return retval;
3534 /*
3535 * To be able to change p->policy safely, the apropriate
3536 * runqueue lock must be held.
3537 */
3538 rq = task_rq_lock(p, &flags);
3539 /* recheck policy now with rq lock held */
3540 if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) {
3541 policy = oldpolicy = -1;
3542 task_rq_unlock(rq, &flags);
3543 goto recheck;
3544 }
3545 array = p->array;
3546 if (array)
3547 deactivate_task(p, rq);
3548 oldprio = p->prio;
3549 __setscheduler(p, policy, param->sched_priority);
3550 if (array) {
3551 __activate_task(p, rq);
3552 /*
3553 * Reschedule if we are currently running on this runqueue and
3554 * our priority decreased, or if we are not currently running on
3555 * this runqueue and our priority is higher than the current's
3556 */
3557 if (task_running(rq, p)) {
3558 if (p->prio > oldprio)
3559 resched_task(rq->curr);
3560 } else if (TASK_PREEMPTS_CURR(p, rq))
3561 resched_task(rq->curr);
3562 }
3563 task_rq_unlock(rq, &flags);
3564 return 0;
3565}
3566EXPORT_SYMBOL_GPL(sched_setscheduler);
3567
3568static int do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param)
3569{
3570 int retval;
3571 struct sched_param lparam;
3572 struct task_struct *p;
3573
3574 if (!param || pid < 0)
3575 return -EINVAL;
3576 if (copy_from_user(&lparam, param, sizeof(struct sched_param)))
3577 return -EFAULT;
3578 read_lock_irq(&tasklist_lock);
3579 p = find_process_by_pid(pid);
3580 if (!p) {
3581 read_unlock_irq(&tasklist_lock);
3582 return -ESRCH;
3583 }
3584 retval = sched_setscheduler(p, policy, &lparam);
3585 read_unlock_irq(&tasklist_lock);
3586 return retval;
3587}
3588
3589/**
3590 * sys_sched_setscheduler - set/change the scheduler policy and RT priority
3591 * @pid: the pid in question.
3592 * @policy: new policy.
3593 * @param: structure containing the new RT priority.
3594 */
3595asmlinkage long sys_sched_setscheduler(pid_t pid, int policy,
3596 struct sched_param __user *param)
3597{
3598 return do_sched_setscheduler(pid, policy, param);
3599}
3600
3601/**
3602 * sys_sched_setparam - set/change the RT priority of a thread
3603 * @pid: the pid in question.
3604 * @param: structure containing the new RT priority.
3605 */
3606asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param)
3607{
3608 return do_sched_setscheduler(pid, -1, param);
3609}
3610
3611/**
3612 * sys_sched_getscheduler - get the policy (scheduling class) of a thread
3613 * @pid: the pid in question.
3614 */
3615asmlinkage long sys_sched_getscheduler(pid_t pid)
3616{
3617 int retval = -EINVAL;
3618 task_t *p;
3619
3620 if (pid < 0)
3621 goto out_nounlock;
3622
3623 retval = -ESRCH;
3624 read_lock(&tasklist_lock);
3625 p = find_process_by_pid(pid);
3626 if (p) {
3627 retval = security_task_getscheduler(p);
3628 if (!retval)
3629 retval = p->policy;
3630 }
3631 read_unlock(&tasklist_lock);
3632
3633out_nounlock:
3634 return retval;
3635}
3636
3637/**
3638 * sys_sched_getscheduler - get the RT priority of a thread
3639 * @pid: the pid in question.
3640 * @param: structure containing the RT priority.
3641 */
3642asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param)
3643{
3644 struct sched_param lp;
3645 int retval = -EINVAL;
3646 task_t *p;
3647
3648 if (!param || pid < 0)
3649 goto out_nounlock;
3650
3651 read_lock(&tasklist_lock);
3652 p = find_process_by_pid(pid);
3653 retval = -ESRCH;
3654 if (!p)
3655 goto out_unlock;
3656
3657 retval = security_task_getscheduler(p);
3658 if (retval)
3659 goto out_unlock;
3660
3661 lp.sched_priority = p->rt_priority;
3662 read_unlock(&tasklist_lock);
3663
3664 /*
3665 * This one might sleep, we cannot do it with a spinlock held ...
3666 */
3667 retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0;
3668
3669out_nounlock:
3670 return retval;
3671
3672out_unlock:
3673 read_unlock(&tasklist_lock);
3674 return retval;
3675}
3676
3677long sched_setaffinity(pid_t pid, cpumask_t new_mask)
3678{
3679 task_t *p;
3680 int retval;
3681 cpumask_t cpus_allowed;
3682
3683 lock_cpu_hotplug();
3684 read_lock(&tasklist_lock);
3685
3686 p = find_process_by_pid(pid);
3687 if (!p) {
3688 read_unlock(&tasklist_lock);
3689 unlock_cpu_hotplug();
3690 return -ESRCH;
3691 }
3692
3693 /*
3694 * It is not safe to call set_cpus_allowed with the
3695 * tasklist_lock held. We will bump the task_struct's
3696 * usage count and then drop tasklist_lock.
3697 */
3698 get_task_struct(p);
3699 read_unlock(&tasklist_lock);
3700
3701 retval = -EPERM;
3702 if ((current->euid != p->euid) && (current->euid != p->uid) &&
3703 !capable(CAP_SYS_NICE))
3704 goto out_unlock;
3705
3706 cpus_allowed = cpuset_cpus_allowed(p);
3707 cpus_and(new_mask, new_mask, cpus_allowed);
3708 retval = set_cpus_allowed(p, new_mask);
3709
3710out_unlock:
3711 put_task_struct(p);
3712 unlock_cpu_hotplug();
3713 return retval;
3714}
3715
3716static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len,
3717 cpumask_t *new_mask)
3718{
3719 if (len < sizeof(cpumask_t)) {
3720 memset(new_mask, 0, sizeof(cpumask_t));
3721 } else if (len > sizeof(cpumask_t)) {
3722 len = sizeof(cpumask_t);
3723 }
3724 return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0;
3725}
3726
3727/**
3728 * sys_sched_setaffinity - set the cpu affinity of a process
3729 * @pid: pid of the process
3730 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
3731 * @user_mask_ptr: user-space pointer to the new cpu mask
3732 */
3733asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len,
3734 unsigned long __user *user_mask_ptr)
3735{
3736 cpumask_t new_mask;
3737 int retval;
3738
3739 retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask);
3740 if (retval)
3741 return retval;
3742
3743 return sched_setaffinity(pid, new_mask);
3744}
3745
3746/*
3747 * Represents all cpu's present in the system
3748 * In systems capable of hotplug, this map could dynamically grow
3749 * as new cpu's are detected in the system via any platform specific
3750 * method, such as ACPI for e.g.
3751 */
3752
3753cpumask_t cpu_present_map;
3754EXPORT_SYMBOL(cpu_present_map);
3755
3756#ifndef CONFIG_SMP
3757cpumask_t cpu_online_map = CPU_MASK_ALL;
3758cpumask_t cpu_possible_map = CPU_MASK_ALL;
3759#endif
3760
3761long sched_getaffinity(pid_t pid, cpumask_t *mask)
3762{
3763 int retval;
3764 task_t *p;
3765
3766 lock_cpu_hotplug();
3767 read_lock(&tasklist_lock);
3768
3769 retval = -ESRCH;
3770 p = find_process_by_pid(pid);
3771 if (!p)
3772 goto out_unlock;
3773
3774 retval = 0;
3775 cpus_and(*mask, p->cpus_allowed, cpu_possible_map);
3776
3777out_unlock:
3778 read_unlock(&tasklist_lock);
3779 unlock_cpu_hotplug();
3780 if (retval)
3781 return retval;
3782
3783 return 0;
3784}
3785
3786/**
3787 * sys_sched_getaffinity - get the cpu affinity of a process
3788 * @pid: pid of the process
3789 * @len: length in bytes of the bitmask pointed to by user_mask_ptr
3790 * @user_mask_ptr: user-space pointer to hold the current cpu mask
3791 */
3792asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len,
3793 unsigned long __user *user_mask_ptr)
3794{
3795 int ret;
3796 cpumask_t mask;
3797
3798 if (len < sizeof(cpumask_t))
3799 return -EINVAL;
3800
3801 ret = sched_getaffinity(pid, &mask);
3802 if (ret < 0)
3803 return ret;
3804
3805 if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t)))
3806 return -EFAULT;
3807
3808 return sizeof(cpumask_t);
3809}
3810
3811/**
3812 * sys_sched_yield - yield the current processor to other threads.
3813 *
3814 * this function yields the current CPU by moving the calling thread
3815 * to the expired array. If there are no other threads running on this
3816 * CPU then this function will return.
3817 */
3818asmlinkage long sys_sched_yield(void)
3819{
3820 runqueue_t *rq = this_rq_lock();
3821 prio_array_t *array = current->array;
3822 prio_array_t *target = rq->expired;
3823
3824 schedstat_inc(rq, yld_cnt);
3825 /*
3826 * We implement yielding by moving the task into the expired
3827 * queue.
3828 *
3829 * (special rule: RT tasks will just roundrobin in the active
3830 * array.)
3831 */
3832 if (rt_task(current))
3833 target = rq->active;
3834
3835 if (current->array->nr_active == 1) {
3836 schedstat_inc(rq, yld_act_empty);
3837 if (!rq->expired->nr_active)
3838 schedstat_inc(rq, yld_both_empty);
3839 } else if (!rq->expired->nr_active)
3840 schedstat_inc(rq, yld_exp_empty);
3841
3842 if (array != target) {
3843 dequeue_task(current, array);
3844 enqueue_task(current, target);
3845 } else
3846 /*
3847 * requeue_task is cheaper so perform that if possible.
3848 */
3849 requeue_task(current, array);
3850
3851 /*
3852 * Since we are going to call schedule() anyway, there's
3853 * no need to preempt or enable interrupts:
3854 */
3855 __release(rq->lock);
3856 _raw_spin_unlock(&rq->lock);
3857 preempt_enable_no_resched();
3858
3859 schedule();
3860
3861 return 0;
3862}
3863
3864static inline void __cond_resched(void)
3865{
3866 do {
3867 add_preempt_count(PREEMPT_ACTIVE);
3868 schedule();
3869 sub_preempt_count(PREEMPT_ACTIVE);
3870 } while (need_resched());
3871}
3872
3873int __sched cond_resched(void)
3874{
3875 if (need_resched()) {
3876 __cond_resched();
3877 return 1;
3878 }
3879 return 0;
3880}
3881
3882EXPORT_SYMBOL(cond_resched);
3883
3884/*
3885 * cond_resched_lock() - if a reschedule is pending, drop the given lock,
3886 * call schedule, and on return reacquire the lock.
3887 *
3888 * This works OK both with and without CONFIG_PREEMPT. We do strange low-level
3889 * operations here to prevent schedule() from being called twice (once via
3890 * spin_unlock(), once by hand).
3891 */
3892int cond_resched_lock(spinlock_t * lock)
3893{
6df3cecb
JK
3894 int ret = 0;
3895
1da177e4
LT
3896 if (need_lockbreak(lock)) {
3897 spin_unlock(lock);
3898 cpu_relax();
6df3cecb 3899 ret = 1;
1da177e4
LT
3900 spin_lock(lock);
3901 }
3902 if (need_resched()) {
3903 _raw_spin_unlock(lock);
3904 preempt_enable_no_resched();
3905 __cond_resched();
6df3cecb 3906 ret = 1;
1da177e4 3907 spin_lock(lock);
1da177e4 3908 }
6df3cecb 3909 return ret;
1da177e4
LT
3910}
3911
3912EXPORT_SYMBOL(cond_resched_lock);
3913
3914int __sched cond_resched_softirq(void)
3915{
3916 BUG_ON(!in_softirq());
3917
3918 if (need_resched()) {
3919 __local_bh_enable();
3920 __cond_resched();
3921 local_bh_disable();
3922 return 1;
3923 }
3924 return 0;
3925}
3926
3927EXPORT_SYMBOL(cond_resched_softirq);
3928
3929
3930/**
3931 * yield - yield the current processor to other threads.
3932 *
3933 * this is a shortcut for kernel-space yielding - it marks the
3934 * thread runnable and calls sys_sched_yield().
3935 */
3936void __sched yield(void)
3937{
3938 set_current_state(TASK_RUNNING);
3939 sys_sched_yield();
3940}
3941
3942EXPORT_SYMBOL(yield);
3943
3944/*
3945 * This task is about to go to sleep on IO. Increment rq->nr_iowait so
3946 * that process accounting knows that this is a task in IO wait state.
3947 *
3948 * But don't do that if it is a deliberate, throttling IO wait (this task
3949 * has set its backing_dev_info: the queue against which it should throttle)
3950 */
3951void __sched io_schedule(void)
3952{
39c715b7 3953 struct runqueue *rq = &per_cpu(runqueues, raw_smp_processor_id());
1da177e4
LT
3954
3955 atomic_inc(&rq->nr_iowait);
3956 schedule();
3957 atomic_dec(&rq->nr_iowait);
3958}
3959
3960EXPORT_SYMBOL(io_schedule);
3961
3962long __sched io_schedule_timeout(long timeout)
3963{
39c715b7 3964 struct runqueue *rq = &per_cpu(runqueues, raw_smp_processor_id());
1da177e4
LT
3965 long ret;
3966
3967 atomic_inc(&rq->nr_iowait);
3968 ret = schedule_timeout(timeout);
3969 atomic_dec(&rq->nr_iowait);
3970 return ret;
3971}
3972
3973/**
3974 * sys_sched_get_priority_max - return maximum RT priority.
3975 * @policy: scheduling class.
3976 *
3977 * this syscall returns the maximum rt_priority that can be used
3978 * by a given scheduling class.
3979 */
3980asmlinkage long sys_sched_get_priority_max(int policy)
3981{
3982 int ret = -EINVAL;
3983
3984 switch (policy) {
3985 case SCHED_FIFO:
3986 case SCHED_RR:
3987 ret = MAX_USER_RT_PRIO-1;
3988 break;
3989 case SCHED_NORMAL:
3990 ret = 0;
3991 break;
3992 }
3993 return ret;
3994}
3995
3996/**
3997 * sys_sched_get_priority_min - return minimum RT priority.
3998 * @policy: scheduling class.
3999 *
4000 * this syscall returns the minimum rt_priority that can be used
4001 * by a given scheduling class.
4002 */
4003asmlinkage long sys_sched_get_priority_min(int policy)
4004{
4005 int ret = -EINVAL;
4006
4007 switch (policy) {
4008 case SCHED_FIFO:
4009 case SCHED_RR:
4010 ret = 1;
4011 break;
4012 case SCHED_NORMAL:
4013 ret = 0;
4014 }
4015 return ret;
4016}
4017
4018/**
4019 * sys_sched_rr_get_interval - return the default timeslice of a process.
4020 * @pid: pid of the process.
4021 * @interval: userspace pointer to the timeslice value.
4022 *
4023 * this syscall writes the default timeslice value of a given process
4024 * into the user-space timespec buffer. A value of '0' means infinity.
4025 */
4026asmlinkage
4027long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval)
4028{
4029 int retval = -EINVAL;
4030 struct timespec t;
4031 task_t *p;
4032
4033 if (pid < 0)
4034 goto out_nounlock;
4035
4036 retval = -ESRCH;
4037 read_lock(&tasklist_lock);
4038 p = find_process_by_pid(pid);
4039 if (!p)
4040 goto out_unlock;
4041
4042 retval = security_task_getscheduler(p);
4043 if (retval)
4044 goto out_unlock;
4045
4046 jiffies_to_timespec(p->policy & SCHED_FIFO ?
4047 0 : task_timeslice(p), &t);
4048 read_unlock(&tasklist_lock);
4049 retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0;
4050out_nounlock:
4051 return retval;
4052out_unlock:
4053 read_unlock(&tasklist_lock);
4054 return retval;
4055}
4056
4057static inline struct task_struct *eldest_child(struct task_struct *p)
4058{
4059 if (list_empty(&p->children)) return NULL;
4060 return list_entry(p->children.next,struct task_struct,sibling);
4061}
4062
4063static inline struct task_struct *older_sibling(struct task_struct *p)
4064{
4065 if (p->sibling.prev==&p->parent->children) return NULL;
4066 return list_entry(p->sibling.prev,struct task_struct,sibling);
4067}
4068
4069static inline struct task_struct *younger_sibling(struct task_struct *p)
4070{
4071 if (p->sibling.next==&p->parent->children) return NULL;
4072 return list_entry(p->sibling.next,struct task_struct,sibling);
4073}
4074
4075static void show_task(task_t * p)
4076{
4077 task_t *relative;
4078 unsigned state;
4079 unsigned long free = 0;
4080 static const char *stat_nam[] = { "R", "S", "D", "T", "t", "Z", "X" };
4081
4082 printk("%-13.13s ", p->comm);
4083 state = p->state ? __ffs(p->state) + 1 : 0;
4084 if (state < ARRAY_SIZE(stat_nam))
4085 printk(stat_nam[state]);
4086 else
4087 printk("?");
4088#if (BITS_PER_LONG == 32)
4089 if (state == TASK_RUNNING)
4090 printk(" running ");
4091 else
4092 printk(" %08lX ", thread_saved_pc(p));
4093#else
4094 if (state == TASK_RUNNING)
4095 printk(" running task ");
4096 else
4097 printk(" %016lx ", thread_saved_pc(p));
4098#endif
4099#ifdef CONFIG_DEBUG_STACK_USAGE
4100 {
4101 unsigned long * n = (unsigned long *) (p->thread_info+1);
4102 while (!*n)
4103 n++;
4104 free = (unsigned long) n - (unsigned long)(p->thread_info+1);
4105 }
4106#endif
4107 printk("%5lu %5d %6d ", free, p->pid, p->parent->pid);
4108 if ((relative = eldest_child(p)))
4109 printk("%5d ", relative->pid);
4110 else
4111 printk(" ");
4112 if ((relative = younger_sibling(p)))
4113 printk("%7d", relative->pid);
4114 else
4115 printk(" ");
4116 if ((relative = older_sibling(p)))
4117 printk(" %5d", relative->pid);
4118 else
4119 printk(" ");
4120 if (!p->mm)
4121 printk(" (L-TLB)\n");
4122 else
4123 printk(" (NOTLB)\n");
4124
4125 if (state != TASK_RUNNING)
4126 show_stack(p, NULL);
4127}
4128
4129void show_state(void)
4130{
4131 task_t *g, *p;
4132
4133#if (BITS_PER_LONG == 32)
4134 printk("\n"
4135 " sibling\n");
4136 printk(" task PC pid father child younger older\n");
4137#else
4138 printk("\n"
4139 " sibling\n");
4140 printk(" task PC pid father child younger older\n");
4141#endif
4142 read_lock(&tasklist_lock);
4143 do_each_thread(g, p) {
4144 /*
4145 * reset the NMI-timeout, listing all files on a slow
4146 * console might take alot of time:
4147 */
4148 touch_nmi_watchdog();
4149 show_task(p);
4150 } while_each_thread(g, p);
4151
4152 read_unlock(&tasklist_lock);
4153}
4154
4155void __devinit init_idle(task_t *idle, int cpu)
4156{
4157 runqueue_t *rq = cpu_rq(cpu);
4158 unsigned long flags;
4159
4160 idle->sleep_avg = 0;
4161 idle->array = NULL;
4162 idle->prio = MAX_PRIO;
4163 idle->state = TASK_RUNNING;
4164 idle->cpus_allowed = cpumask_of_cpu(cpu);
4165 set_task_cpu(idle, cpu);
4166
4167 spin_lock_irqsave(&rq->lock, flags);
4168 rq->curr = rq->idle = idle;
4866cde0
NP
4169#if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW)
4170 idle->oncpu = 1;
4171#endif
1da177e4
LT
4172 set_tsk_need_resched(idle);
4173 spin_unlock_irqrestore(&rq->lock, flags);
4174
4175 /* Set the preempt count _outside_ the spinlocks! */
4176#if defined(CONFIG_PREEMPT) && !defined(CONFIG_PREEMPT_BKL)
4177 idle->thread_info->preempt_count = (idle->lock_depth >= 0);
4178#else
4179 idle->thread_info->preempt_count = 0;
4180#endif
4181}
4182
4183/*
4184 * In a system that switches off the HZ timer nohz_cpu_mask
4185 * indicates which cpus entered this state. This is used
4186 * in the rcu update to wait only for active cpus. For system
4187 * which do not switch off the HZ timer nohz_cpu_mask should
4188 * always be CPU_MASK_NONE.
4189 */
4190cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
4191
4192#ifdef CONFIG_SMP
4193/*
4194 * This is how migration works:
4195 *
4196 * 1) we queue a migration_req_t structure in the source CPU's
4197 * runqueue and wake up that CPU's migration thread.
4198 * 2) we down() the locked semaphore => thread blocks.
4199 * 3) migration thread wakes up (implicitly it forces the migrated
4200 * thread off the CPU)
4201 * 4) it gets the migration request and checks whether the migrated
4202 * task is still in the wrong runqueue.
4203 * 5) if it's in the wrong runqueue then the migration thread removes
4204 * it and puts it into the right queue.
4205 * 6) migration thread up()s the semaphore.
4206 * 7) we wake up and the migration is done.
4207 */
4208
4209/*
4210 * Change a given task's CPU affinity. Migrate the thread to a
4211 * proper CPU and schedule it away if the CPU it's executing on
4212 * is removed from the allowed bitmask.
4213 *
4214 * NOTE: the caller must have a valid reference to the task, the
4215 * task must not exit() & deallocate itself prematurely. The
4216 * call is not atomic; no spinlocks may be held.
4217 */
4218int set_cpus_allowed(task_t *p, cpumask_t new_mask)
4219{
4220 unsigned long flags;
4221 int ret = 0;
4222 migration_req_t req;
4223 runqueue_t *rq;
4224
4225 rq = task_rq_lock(p, &flags);
4226 if (!cpus_intersects(new_mask, cpu_online_map)) {
4227 ret = -EINVAL;
4228 goto out;
4229 }
4230
4231 p->cpus_allowed = new_mask;
4232 /* Can the task run on the task's current CPU? If so, we're done */
4233 if (cpu_isset(task_cpu(p), new_mask))
4234 goto out;
4235
4236 if (migrate_task(p, any_online_cpu(new_mask), &req)) {
4237 /* Need help from migration thread: drop lock and wait. */
4238 task_rq_unlock(rq, &flags);
4239 wake_up_process(rq->migration_thread);
4240 wait_for_completion(&req.done);
4241 tlb_migrate_finish(p->mm);
4242 return 0;
4243 }
4244out:
4245 task_rq_unlock(rq, &flags);
4246 return ret;
4247}
4248
4249EXPORT_SYMBOL_GPL(set_cpus_allowed);
4250
4251/*
4252 * Move (not current) task off this cpu, onto dest cpu. We're doing
4253 * this because either it can't run here any more (set_cpus_allowed()
4254 * away from this CPU, or CPU going down), or because we're
4255 * attempting to rebalance this task on exec (sched_exec).
4256 *
4257 * So we race with normal scheduler movements, but that's OK, as long
4258 * as the task is no longer on this CPU.
4259 */
4260static void __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
4261{
4262 runqueue_t *rq_dest, *rq_src;
4263
4264 if (unlikely(cpu_is_offline(dest_cpu)))
4265 return;
4266
4267 rq_src = cpu_rq(src_cpu);
4268 rq_dest = cpu_rq(dest_cpu);
4269
4270 double_rq_lock(rq_src, rq_dest);
4271 /* Already moved. */
4272 if (task_cpu(p) != src_cpu)
4273 goto out;
4274 /* Affinity changed (again). */
4275 if (!cpu_isset(dest_cpu, p->cpus_allowed))
4276 goto out;
4277
4278 set_task_cpu(p, dest_cpu);
4279 if (p->array) {
4280 /*
4281 * Sync timestamp with rq_dest's before activating.
4282 * The same thing could be achieved by doing this step
4283 * afterwards, and pretending it was a local activate.
4284 * This way is cleaner and logically correct.
4285 */
4286 p->timestamp = p->timestamp - rq_src->timestamp_last_tick
4287 + rq_dest->timestamp_last_tick;
4288 deactivate_task(p, rq_src);
4289 activate_task(p, rq_dest, 0);
4290 if (TASK_PREEMPTS_CURR(p, rq_dest))
4291 resched_task(rq_dest->curr);
4292 }
4293
4294out:
4295 double_rq_unlock(rq_src, rq_dest);
4296}
4297
4298/*
4299 * migration_thread - this is a highprio system thread that performs
4300 * thread migration by bumping thread off CPU then 'pushing' onto
4301 * another runqueue.
4302 */
4303static int migration_thread(void * data)
4304{
4305 runqueue_t *rq;
4306 int cpu = (long)data;
4307
4308 rq = cpu_rq(cpu);
4309 BUG_ON(rq->migration_thread != current);
4310
4311 set_current_state(TASK_INTERRUPTIBLE);
4312 while (!kthread_should_stop()) {
4313 struct list_head *head;
4314 migration_req_t *req;
4315
4316 if (current->flags & PF_FREEZE)
4317 refrigerator(PF_FREEZE);
4318
4319 spin_lock_irq(&rq->lock);
4320
4321 if (cpu_is_offline(cpu)) {
4322 spin_unlock_irq(&rq->lock);
4323 goto wait_to_die;
4324 }
4325
4326 if (rq->active_balance) {
4327 active_load_balance(rq, cpu);
4328 rq->active_balance = 0;
4329 }
4330
4331 head = &rq->migration_queue;
4332
4333 if (list_empty(head)) {
4334 spin_unlock_irq(&rq->lock);
4335 schedule();
4336 set_current_state(TASK_INTERRUPTIBLE);
4337 continue;
4338 }
4339 req = list_entry(head->next, migration_req_t, list);
4340 list_del_init(head->next);
4341
4342 if (req->type == REQ_MOVE_TASK) {
4343 spin_unlock(&rq->lock);
4344 __migrate_task(req->task, cpu, req->dest_cpu);
4345 local_irq_enable();
4346 } else if (req->type == REQ_SET_DOMAIN) {
4347 rq->sd = req->sd;
4348 spin_unlock_irq(&rq->lock);
4349 } else {
4350 spin_unlock_irq(&rq->lock);
4351 WARN_ON(1);
4352 }
4353
4354 complete(&req->done);
4355 }
4356 __set_current_state(TASK_RUNNING);
4357 return 0;
4358
4359wait_to_die:
4360 /* Wait for kthread_stop */
4361 set_current_state(TASK_INTERRUPTIBLE);
4362 while (!kthread_should_stop()) {
4363 schedule();
4364 set_current_state(TASK_INTERRUPTIBLE);
4365 }
4366 __set_current_state(TASK_RUNNING);
4367 return 0;
4368}
4369
4370#ifdef CONFIG_HOTPLUG_CPU
4371/* Figure out where task on dead CPU should go, use force if neccessary. */
4372static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *tsk)
4373{
4374 int dest_cpu;
4375 cpumask_t mask;
4376
4377 /* On same node? */
4378 mask = node_to_cpumask(cpu_to_node(dead_cpu));
4379 cpus_and(mask, mask, tsk->cpus_allowed);
4380 dest_cpu = any_online_cpu(mask);
4381
4382 /* On any allowed CPU? */
4383 if (dest_cpu == NR_CPUS)
4384 dest_cpu = any_online_cpu(tsk->cpus_allowed);
4385
4386 /* No more Mr. Nice Guy. */
4387 if (dest_cpu == NR_CPUS) {
b39c4fab 4388 cpus_setall(tsk->cpus_allowed);
1da177e4
LT
4389 dest_cpu = any_online_cpu(tsk->cpus_allowed);
4390
4391 /*
4392 * Don't tell them about moving exiting tasks or
4393 * kernel threads (both mm NULL), since they never
4394 * leave kernel.
4395 */
4396 if (tsk->mm && printk_ratelimit())
4397 printk(KERN_INFO "process %d (%s) no "
4398 "longer affine to cpu%d\n",
4399 tsk->pid, tsk->comm, dead_cpu);
4400 }
4401 __migrate_task(tsk, dead_cpu, dest_cpu);
4402}
4403
4404/*
4405 * While a dead CPU has no uninterruptible tasks queued at this point,
4406 * it might still have a nonzero ->nr_uninterruptible counter, because
4407 * for performance reasons the counter is not stricly tracking tasks to
4408 * their home CPUs. So we just add the counter to another CPU's counter,
4409 * to keep the global sum constant after CPU-down:
4410 */
4411static void migrate_nr_uninterruptible(runqueue_t *rq_src)
4412{
4413 runqueue_t *rq_dest = cpu_rq(any_online_cpu(CPU_MASK_ALL));
4414 unsigned long flags;
4415
4416 local_irq_save(flags);
4417 double_rq_lock(rq_src, rq_dest);
4418 rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible;
4419 rq_src->nr_uninterruptible = 0;
4420 double_rq_unlock(rq_src, rq_dest);
4421 local_irq_restore(flags);
4422}
4423
4424/* Run through task list and migrate tasks from the dead cpu. */
4425static void migrate_live_tasks(int src_cpu)
4426{
4427 struct task_struct *tsk, *t;
4428
4429 write_lock_irq(&tasklist_lock);
4430
4431 do_each_thread(t, tsk) {
4432 if (tsk == current)
4433 continue;
4434
4435 if (task_cpu(tsk) == src_cpu)
4436 move_task_off_dead_cpu(src_cpu, tsk);
4437 } while_each_thread(t, tsk);
4438
4439 write_unlock_irq(&tasklist_lock);
4440}
4441
4442/* Schedules idle task to be the next runnable task on current CPU.
4443 * It does so by boosting its priority to highest possible and adding it to
4444 * the _front_ of runqueue. Used by CPU offline code.
4445 */
4446void sched_idle_next(void)
4447{
4448 int cpu = smp_processor_id();
4449 runqueue_t *rq = this_rq();
4450 struct task_struct *p = rq->idle;
4451 unsigned long flags;
4452
4453 /* cpu has to be offline */
4454 BUG_ON(cpu_online(cpu));
4455
4456 /* Strictly not necessary since rest of the CPUs are stopped by now
4457 * and interrupts disabled on current cpu.
4458 */
4459 spin_lock_irqsave(&rq->lock, flags);
4460
4461 __setscheduler(p, SCHED_FIFO, MAX_RT_PRIO-1);
4462 /* Add idle task to _front_ of it's priority queue */
4463 __activate_idle_task(p, rq);
4464
4465 spin_unlock_irqrestore(&rq->lock, flags);
4466}
4467
4468/* Ensures that the idle task is using init_mm right before its cpu goes
4469 * offline.
4470 */
4471void idle_task_exit(void)
4472{
4473 struct mm_struct *mm = current->active_mm;
4474
4475 BUG_ON(cpu_online(smp_processor_id()));
4476
4477 if (mm != &init_mm)
4478 switch_mm(mm, &init_mm, current);
4479 mmdrop(mm);
4480}
4481
4482static void migrate_dead(unsigned int dead_cpu, task_t *tsk)
4483{
4484 struct runqueue *rq = cpu_rq(dead_cpu);
4485
4486 /* Must be exiting, otherwise would be on tasklist. */
4487 BUG_ON(tsk->exit_state != EXIT_ZOMBIE && tsk->exit_state != EXIT_DEAD);
4488
4489 /* Cannot have done final schedule yet: would have vanished. */
4490 BUG_ON(tsk->flags & PF_DEAD);
4491
4492 get_task_struct(tsk);
4493
4494 /*
4495 * Drop lock around migration; if someone else moves it,
4496 * that's OK. No task can be added to this CPU, so iteration is
4497 * fine.
4498 */
4499 spin_unlock_irq(&rq->lock);
4500 move_task_off_dead_cpu(dead_cpu, tsk);
4501 spin_lock_irq(&rq->lock);
4502
4503 put_task_struct(tsk);
4504}
4505
4506/* release_task() removes task from tasklist, so we won't find dead tasks. */
4507static void migrate_dead_tasks(unsigned int dead_cpu)
4508{
4509 unsigned arr, i;
4510 struct runqueue *rq = cpu_rq(dead_cpu);
4511
4512 for (arr = 0; arr < 2; arr++) {
4513 for (i = 0; i < MAX_PRIO; i++) {
4514 struct list_head *list = &rq->arrays[arr].queue[i];
4515 while (!list_empty(list))
4516 migrate_dead(dead_cpu,
4517 list_entry(list->next, task_t,
4518 run_list));
4519 }
4520 }
4521}
4522#endif /* CONFIG_HOTPLUG_CPU */
4523
4524/*
4525 * migration_call - callback that gets triggered when a CPU is added.
4526 * Here we can start up the necessary migration thread for the new CPU.
4527 */
4528static int migration_call(struct notifier_block *nfb, unsigned long action,
4529 void *hcpu)
4530{
4531 int cpu = (long)hcpu;
4532 struct task_struct *p;
4533 struct runqueue *rq;
4534 unsigned long flags;
4535
4536 switch (action) {
4537 case CPU_UP_PREPARE:
4538 p = kthread_create(migration_thread, hcpu, "migration/%d",cpu);
4539 if (IS_ERR(p))
4540 return NOTIFY_BAD;
4541 p->flags |= PF_NOFREEZE;
4542 kthread_bind(p, cpu);
4543 /* Must be high prio: stop_machine expects to yield to it. */
4544 rq = task_rq_lock(p, &flags);
4545 __setscheduler(p, SCHED_FIFO, MAX_RT_PRIO-1);
4546 task_rq_unlock(rq, &flags);
4547 cpu_rq(cpu)->migration_thread = p;
4548 break;
4549 case CPU_ONLINE:
4550 /* Strictly unneccessary, as first user will wake it. */
4551 wake_up_process(cpu_rq(cpu)->migration_thread);
4552 break;
4553#ifdef CONFIG_HOTPLUG_CPU
4554 case CPU_UP_CANCELED:
4555 /* Unbind it from offline cpu so it can run. Fall thru. */
4556 kthread_bind(cpu_rq(cpu)->migration_thread,smp_processor_id());
4557 kthread_stop(cpu_rq(cpu)->migration_thread);
4558 cpu_rq(cpu)->migration_thread = NULL;
4559 break;
4560 case CPU_DEAD:
4561 migrate_live_tasks(cpu);
4562 rq = cpu_rq(cpu);
4563 kthread_stop(rq->migration_thread);
4564 rq->migration_thread = NULL;
4565 /* Idle task back to normal (off runqueue, low prio) */
4566 rq = task_rq_lock(rq->idle, &flags);
4567 deactivate_task(rq->idle, rq);
4568 rq->idle->static_prio = MAX_PRIO;
4569 __setscheduler(rq->idle, SCHED_NORMAL, 0);
4570 migrate_dead_tasks(cpu);
4571 task_rq_unlock(rq, &flags);
4572 migrate_nr_uninterruptible(rq);
4573 BUG_ON(rq->nr_running != 0);
4574
4575 /* No need to migrate the tasks: it was best-effort if
4576 * they didn't do lock_cpu_hotplug(). Just wake up
4577 * the requestors. */
4578 spin_lock_irq(&rq->lock);
4579 while (!list_empty(&rq->migration_queue)) {
4580 migration_req_t *req;
4581 req = list_entry(rq->migration_queue.next,
4582 migration_req_t, list);
4583 BUG_ON(req->type != REQ_MOVE_TASK);
4584 list_del_init(&req->list);
4585 complete(&req->done);
4586 }
4587 spin_unlock_irq(&rq->lock);
4588 break;
4589#endif
4590 }
4591 return NOTIFY_OK;
4592}
4593
4594/* Register at highest priority so that task migration (migrate_all_tasks)
4595 * happens before everything else.
4596 */
4597static struct notifier_block __devinitdata migration_notifier = {
4598 .notifier_call = migration_call,
4599 .priority = 10
4600};
4601
4602int __init migration_init(void)
4603{
4604 void *cpu = (void *)(long)smp_processor_id();
4605 /* Start one for boot CPU. */
4606 migration_call(&migration_notifier, CPU_UP_PREPARE, cpu);
4607 migration_call(&migration_notifier, CPU_ONLINE, cpu);
4608 register_cpu_notifier(&migration_notifier);
4609 return 0;
4610}
4611#endif
4612
4613#ifdef CONFIG_SMP
4614#define SCHED_DOMAIN_DEBUG
4615#ifdef SCHED_DOMAIN_DEBUG
4616static void sched_domain_debug(struct sched_domain *sd, int cpu)
4617{
4618 int level = 0;
4619
4620 printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu);
4621
4622 do {
4623 int i;
4624 char str[NR_CPUS];
4625 struct sched_group *group = sd->groups;
4626 cpumask_t groupmask;
4627
4628 cpumask_scnprintf(str, NR_CPUS, sd->span);
4629 cpus_clear(groupmask);
4630
4631 printk(KERN_DEBUG);
4632 for (i = 0; i < level + 1; i++)
4633 printk(" ");
4634 printk("domain %d: ", level);
4635
4636 if (!(sd->flags & SD_LOAD_BALANCE)) {
4637 printk("does not load-balance\n");
4638 if (sd->parent)
4639 printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain has parent");
4640 break;
4641 }
4642
4643 printk("span %s\n", str);
4644
4645 if (!cpu_isset(cpu, sd->span))
4646 printk(KERN_ERR "ERROR: domain->span does not contain CPU%d\n", cpu);
4647 if (!cpu_isset(cpu, group->cpumask))
4648 printk(KERN_ERR "ERROR: domain->groups does not contain CPU%d\n", cpu);
4649
4650 printk(KERN_DEBUG);
4651 for (i = 0; i < level + 2; i++)
4652 printk(" ");
4653 printk("groups:");
4654 do {
4655 if (!group) {
4656 printk("\n");
4657 printk(KERN_ERR "ERROR: group is NULL\n");
4658 break;
4659 }
4660
4661 if (!group->cpu_power) {
4662 printk("\n");
4663 printk(KERN_ERR "ERROR: domain->cpu_power not set\n");
4664 }
4665
4666 if (!cpus_weight(group->cpumask)) {
4667 printk("\n");
4668 printk(KERN_ERR "ERROR: empty group\n");
4669 }
4670
4671 if (cpus_intersects(groupmask, group->cpumask)) {
4672 printk("\n");
4673 printk(KERN_ERR "ERROR: repeated CPUs\n");
4674 }
4675
4676 cpus_or(groupmask, groupmask, group->cpumask);
4677
4678 cpumask_scnprintf(str, NR_CPUS, group->cpumask);
4679 printk(" %s", str);
4680
4681 group = group->next;
4682 } while (group != sd->groups);
4683 printk("\n");
4684
4685 if (!cpus_equal(sd->span, groupmask))
4686 printk(KERN_ERR "ERROR: groups don't span domain->span\n");
4687
4688 level++;
4689 sd = sd->parent;
4690
4691 if (sd) {
4692 if (!cpus_subset(groupmask, sd->span))
4693 printk(KERN_ERR "ERROR: parent span is not a superset of domain->span\n");
4694 }
4695
4696 } while (sd);
4697}
4698#else
4699#define sched_domain_debug(sd, cpu) {}
4700#endif
4701
4702/*
4703 * Attach the domain 'sd' to 'cpu' as its base domain. Callers must
4704 * hold the hotplug lock.
4705 */
4706void __devinit cpu_attach_domain(struct sched_domain *sd, int cpu)
4707{
4708 migration_req_t req;
4709 unsigned long flags;
4710 runqueue_t *rq = cpu_rq(cpu);
4711 int local = 1;
4712
4713 sched_domain_debug(sd, cpu);
4714
4715 spin_lock_irqsave(&rq->lock, flags);
4716
4717 if (cpu == smp_processor_id() || !cpu_online(cpu)) {
4718 rq->sd = sd;
4719 } else {
4720 init_completion(&req.done);
4721 req.type = REQ_SET_DOMAIN;
4722 req.sd = sd;
4723 list_add(&req.list, &rq->migration_queue);
4724 local = 0;
4725 }
4726
4727 spin_unlock_irqrestore(&rq->lock, flags);
4728
4729 if (!local) {
4730 wake_up_process(rq->migration_thread);
4731 wait_for_completion(&req.done);
4732 }
4733}
4734
4735/* cpus with isolated domains */
4736cpumask_t __devinitdata cpu_isolated_map = CPU_MASK_NONE;
4737
4738/* Setup the mask of cpus configured for isolated domains */
4739static int __init isolated_cpu_setup(char *str)
4740{
4741 int ints[NR_CPUS], i;
4742
4743 str = get_options(str, ARRAY_SIZE(ints), ints);
4744 cpus_clear(cpu_isolated_map);
4745 for (i = 1; i <= ints[0]; i++)
4746 if (ints[i] < NR_CPUS)
4747 cpu_set(ints[i], cpu_isolated_map);
4748 return 1;
4749}
4750
4751__setup ("isolcpus=", isolated_cpu_setup);
4752
4753/*
4754 * init_sched_build_groups takes an array of groups, the cpumask we wish
4755 * to span, and a pointer to a function which identifies what group a CPU
4756 * belongs to. The return value of group_fn must be a valid index into the
4757 * groups[] array, and must be >= 0 and < NR_CPUS (due to the fact that we
4758 * keep track of groups covered with a cpumask_t).
4759 *
4760 * init_sched_build_groups will build a circular linked list of the groups
4761 * covered by the given span, and will set each group's ->cpumask correctly,
4762 * and ->cpu_power to 0.
4763 */
4764void __devinit init_sched_build_groups(struct sched_group groups[],
4765 cpumask_t span, int (*group_fn)(int cpu))
4766{
4767 struct sched_group *first = NULL, *last = NULL;
4768 cpumask_t covered = CPU_MASK_NONE;
4769 int i;
4770
4771 for_each_cpu_mask(i, span) {
4772 int group = group_fn(i);
4773 struct sched_group *sg = &groups[group];
4774 int j;
4775
4776 if (cpu_isset(i, covered))
4777 continue;
4778
4779 sg->cpumask = CPU_MASK_NONE;
4780 sg->cpu_power = 0;
4781
4782 for_each_cpu_mask(j, span) {
4783 if (group_fn(j) != group)
4784 continue;
4785
4786 cpu_set(j, covered);
4787 cpu_set(j, sg->cpumask);
4788 }
4789 if (!first)
4790 first = sg;
4791 if (last)
4792 last->next = sg;
4793 last = sg;
4794 }
4795 last->next = first;
4796}
4797
4798
4799#ifdef ARCH_HAS_SCHED_DOMAIN
4800extern void __devinit arch_init_sched_domains(void);
4801extern void __devinit arch_destroy_sched_domains(void);
4802#else
4803#ifdef CONFIG_SCHED_SMT
4804static DEFINE_PER_CPU(struct sched_domain, cpu_domains);
4805static struct sched_group sched_group_cpus[NR_CPUS];
4806static int __devinit cpu_to_cpu_group(int cpu)
4807{
4808 return cpu;
4809}
4810#endif
4811
4812static DEFINE_PER_CPU(struct sched_domain, phys_domains);
4813static struct sched_group sched_group_phys[NR_CPUS];
4814static int __devinit cpu_to_phys_group(int cpu)
4815{
4816#ifdef CONFIG_SCHED_SMT
4817 return first_cpu(cpu_sibling_map[cpu]);
4818#else
4819 return cpu;
4820#endif
4821}
4822
4823#ifdef CONFIG_NUMA
4824
4825static DEFINE_PER_CPU(struct sched_domain, node_domains);
4826static struct sched_group sched_group_nodes[MAX_NUMNODES];
4827static int __devinit cpu_to_node_group(int cpu)
4828{
4829 return cpu_to_node(cpu);
4830}
4831#endif
4832
4833#if defined(CONFIG_SCHED_SMT) && defined(CONFIG_NUMA)
4834/*
4835 * The domains setup code relies on siblings not spanning
4836 * multiple nodes. Make sure the architecture has a proper
4837 * siblings map:
4838 */
4839static void check_sibling_maps(void)
4840{
4841 int i, j;
4842
4843 for_each_online_cpu(i) {
4844 for_each_cpu_mask(j, cpu_sibling_map[i]) {
4845 if (cpu_to_node(i) != cpu_to_node(j)) {
4846 printk(KERN_INFO "warning: CPU %d siblings map "
4847 "to different node - isolating "
4848 "them.\n", i);
4849 cpu_sibling_map[i] = cpumask_of_cpu(i);
4850 break;
4851 }
4852 }
4853 }
4854}
4855#endif
4856
4857/*
4858 * Set up scheduler domains and groups. Callers must hold the hotplug lock.
4859 */
4860static void __devinit arch_init_sched_domains(void)
4861{
4862 int i;
4863 cpumask_t cpu_default_map;
4864
4865#if defined(CONFIG_SCHED_SMT) && defined(CONFIG_NUMA)
4866 check_sibling_maps();
4867#endif
4868 /*
4869 * Setup mask for cpus without special case scheduling requirements.
4870 * For now this just excludes isolated cpus, but could be used to
4871 * exclude other special cases in the future.
4872 */
4873 cpus_complement(cpu_default_map, cpu_isolated_map);
4874 cpus_and(cpu_default_map, cpu_default_map, cpu_online_map);
4875
4876 /*
4877 * Set up domains. Isolated domains just stay on the dummy domain.
4878 */
4879 for_each_cpu_mask(i, cpu_default_map) {
4880 int group;
4881 struct sched_domain *sd = NULL, *p;
4882 cpumask_t nodemask = node_to_cpumask(cpu_to_node(i));
4883
4884 cpus_and(nodemask, nodemask, cpu_default_map);
4885
4886#ifdef CONFIG_NUMA
4887 sd = &per_cpu(node_domains, i);
4888 group = cpu_to_node_group(i);
4889 *sd = SD_NODE_INIT;
4890 sd->span = cpu_default_map;
4891 sd->groups = &sched_group_nodes[group];
4892#endif
4893
4894 p = sd;
4895 sd = &per_cpu(phys_domains, i);
4896 group = cpu_to_phys_group(i);
4897 *sd = SD_CPU_INIT;
4898 sd->span = nodemask;
4899 sd->parent = p;
4900 sd->groups = &sched_group_phys[group];
4901
4902#ifdef CONFIG_SCHED_SMT
4903 p = sd;
4904 sd = &per_cpu(cpu_domains, i);
4905 group = cpu_to_cpu_group(i);
4906 *sd = SD_SIBLING_INIT;
4907 sd->span = cpu_sibling_map[i];
4908 cpus_and(sd->span, sd->span, cpu_default_map);
4909 sd->parent = p;
4910 sd->groups = &sched_group_cpus[group];
4911#endif
4912 }
4913
4914#ifdef CONFIG_SCHED_SMT
4915 /* Set up CPU (sibling) groups */
4916 for_each_online_cpu(i) {
4917 cpumask_t this_sibling_map = cpu_sibling_map[i];
4918 cpus_and(this_sibling_map, this_sibling_map, cpu_default_map);
4919 if (i != first_cpu(this_sibling_map))
4920 continue;
4921
4922 init_sched_build_groups(sched_group_cpus, this_sibling_map,
4923 &cpu_to_cpu_group);
4924 }
4925#endif
4926
4927 /* Set up physical groups */
4928 for (i = 0; i < MAX_NUMNODES; i++) {
4929 cpumask_t nodemask = node_to_cpumask(i);
4930
4931 cpus_and(nodemask, nodemask, cpu_default_map);
4932 if (cpus_empty(nodemask))
4933 continue;
4934
4935 init_sched_build_groups(sched_group_phys, nodemask,
4936 &cpu_to_phys_group);
4937 }
4938
4939#ifdef CONFIG_NUMA
4940 /* Set up node groups */
4941 init_sched_build_groups(sched_group_nodes, cpu_default_map,
4942 &cpu_to_node_group);
4943#endif
4944
4945 /* Calculate CPU power for physical packages and nodes */
4946 for_each_cpu_mask(i, cpu_default_map) {
4947 int power;
4948 struct sched_domain *sd;
4949#ifdef CONFIG_SCHED_SMT
4950 sd = &per_cpu(cpu_domains, i);
4951 power = SCHED_LOAD_SCALE;
4952 sd->groups->cpu_power = power;
4953#endif
4954
4955 sd = &per_cpu(phys_domains, i);
4956 power = SCHED_LOAD_SCALE + SCHED_LOAD_SCALE *
4957 (cpus_weight(sd->groups->cpumask)-1) / 10;
4958 sd->groups->cpu_power = power;
4959
4960#ifdef CONFIG_NUMA
4961 if (i == first_cpu(sd->groups->cpumask)) {
4962 /* Only add "power" once for each physical package. */
4963 sd = &per_cpu(node_domains, i);
4964 sd->groups->cpu_power += power;
4965 }
4966#endif
4967 }
4968
4969 /* Attach the domains */
4970 for_each_online_cpu(i) {
4971 struct sched_domain *sd;
4972#ifdef CONFIG_SCHED_SMT
4973 sd = &per_cpu(cpu_domains, i);
4974#else
4975 sd = &per_cpu(phys_domains, i);
4976#endif
4977 cpu_attach_domain(sd, i);
4978 }
4979}
4980
4981#ifdef CONFIG_HOTPLUG_CPU
4982static void __devinit arch_destroy_sched_domains(void)
4983{
4984 /* Do nothing: everything is statically allocated. */
4985}
4986#endif
4987
4988#endif /* ARCH_HAS_SCHED_DOMAIN */
4989
4990/*
4991 * Initial dummy domain for early boot and for hotplug cpu. Being static,
4992 * it is initialized to zero, so all balancing flags are cleared which is
4993 * what we want.
4994 */
4995static struct sched_domain sched_domain_dummy;
4996
4997#ifdef CONFIG_HOTPLUG_CPU
4998/*
4999 * Force a reinitialization of the sched domains hierarchy. The domains
5000 * and groups cannot be updated in place without racing with the balancing
5001 * code, so we temporarily attach all running cpus to a "dummy" domain
5002 * which will prevent rebalancing while the sched domains are recalculated.
5003 */
5004static int update_sched_domains(struct notifier_block *nfb,
5005 unsigned long action, void *hcpu)
5006{
5007 int i;
5008
5009 switch (action) {
5010 case CPU_UP_PREPARE:
5011 case CPU_DOWN_PREPARE:
5012 for_each_online_cpu(i)
5013 cpu_attach_domain(&sched_domain_dummy, i);
5014 arch_destroy_sched_domains();
5015 return NOTIFY_OK;
5016
5017 case CPU_UP_CANCELED:
5018 case CPU_DOWN_FAILED:
5019 case CPU_ONLINE:
5020 case CPU_DEAD:
5021 /*
5022 * Fall through and re-initialise the domains.
5023 */
5024 break;
5025 default:
5026 return NOTIFY_DONE;
5027 }
5028
5029 /* The hotplug lock is already held by cpu_up/cpu_down */
5030 arch_init_sched_domains();
5031
5032 return NOTIFY_OK;
5033}
5034#endif
5035
5036void __init sched_init_smp(void)
5037{
5038 lock_cpu_hotplug();
5039 arch_init_sched_domains();
5040 unlock_cpu_hotplug();
5041 /* XXX: Theoretical race here - CPU may be hotplugged now */
5042 hotcpu_notifier(update_sched_domains, 0);
5043}
5044#else
5045void __init sched_init_smp(void)
5046{
5047}
5048#endif /* CONFIG_SMP */
5049
5050int in_sched_functions(unsigned long addr)
5051{
5052 /* Linker adds these: start and end of __sched functions */
5053 extern char __sched_text_start[], __sched_text_end[];
5054 return in_lock_functions(addr) ||
5055 (addr >= (unsigned long)__sched_text_start
5056 && addr < (unsigned long)__sched_text_end);
5057}
5058
5059void __init sched_init(void)
5060{
5061 runqueue_t *rq;
5062 int i, j, k;
5063
5064 for (i = 0; i < NR_CPUS; i++) {
5065 prio_array_t *array;
5066
5067 rq = cpu_rq(i);
5068 spin_lock_init(&rq->lock);
7897986b 5069 rq->nr_running = 0;
1da177e4
LT
5070 rq->active = rq->arrays;
5071 rq->expired = rq->arrays + 1;
5072 rq->best_expired_prio = MAX_PRIO;
5073
5074#ifdef CONFIG_SMP
5075 rq->sd = &sched_domain_dummy;
7897986b
NP
5076 for (j = 1; j < 3; j++)
5077 rq->cpu_load[j] = 0;
1da177e4
LT
5078 rq->active_balance = 0;
5079 rq->push_cpu = 0;
5080 rq->migration_thread = NULL;
5081 INIT_LIST_HEAD(&rq->migration_queue);
5082#endif
5083 atomic_set(&rq->nr_iowait, 0);
5084
5085 for (j = 0; j < 2; j++) {
5086 array = rq->arrays + j;
5087 for (k = 0; k < MAX_PRIO; k++) {
5088 INIT_LIST_HEAD(array->queue + k);
5089 __clear_bit(k, array->bitmap);
5090 }
5091 // delimiter for bitsearch
5092 __set_bit(MAX_PRIO, array->bitmap);
5093 }
5094 }
5095
5096 /*
5097 * The boot idle thread does lazy MMU switching as well:
5098 */
5099 atomic_inc(&init_mm.mm_count);
5100 enter_lazy_tlb(&init_mm, current);
5101
5102 /*
5103 * Make us the idle thread. Technically, schedule() should not be
5104 * called from this thread, however somewhere below it might be,
5105 * but because we are the idle thread, we just pick up running again
5106 * when this runqueue becomes "idle".
5107 */
5108 init_idle(current, smp_processor_id());
5109}
5110
5111#ifdef CONFIG_DEBUG_SPINLOCK_SLEEP
5112void __might_sleep(char *file, int line)
5113{
5114#if defined(in_atomic)
5115 static unsigned long prev_jiffy; /* ratelimiting */
5116
5117 if ((in_atomic() || irqs_disabled()) &&
5118 system_state == SYSTEM_RUNNING && !oops_in_progress) {
5119 if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy)
5120 return;
5121 prev_jiffy = jiffies;
5122 printk(KERN_ERR "Debug: sleeping function called from invalid"
5123 " context at %s:%d\n", file, line);
5124 printk("in_atomic():%d, irqs_disabled():%d\n",
5125 in_atomic(), irqs_disabled());
5126 dump_stack();
5127 }
5128#endif
5129}
5130EXPORT_SYMBOL(__might_sleep);
5131#endif
5132
5133#ifdef CONFIG_MAGIC_SYSRQ
5134void normalize_rt_tasks(void)
5135{
5136 struct task_struct *p;
5137 prio_array_t *array;
5138 unsigned long flags;
5139 runqueue_t *rq;
5140
5141 read_lock_irq(&tasklist_lock);
5142 for_each_process (p) {
5143 if (!rt_task(p))
5144 continue;
5145
5146 rq = task_rq_lock(p, &flags);
5147
5148 array = p->array;
5149 if (array)
5150 deactivate_task(p, task_rq(p));
5151 __setscheduler(p, SCHED_NORMAL, 0);
5152 if (array) {
5153 __activate_task(p, task_rq(p));
5154 resched_task(rq->curr);
5155 }
5156
5157 task_rq_unlock(rq, &flags);
5158 }
5159 read_unlock_irq(&tasklist_lock);
5160}
5161
5162#endif /* CONFIG_MAGIC_SYSRQ */