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