[AVR32] Fix wrong pt_regs in critical exception handler
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / kernel / sched_idletask.c
blobbf9c25c15b8badfc340dabcb9067ff2437b6d431
1 /*
2 * idle-task scheduling class.
4 * (NOTE: these are not related to SCHED_IDLE tasks which are
5 * handled in sched_fair.c)
6 */
8 /*
9 * Idle tasks are unconditionally rescheduled:
11 static void check_preempt_curr_idle(struct rq *rq, struct task_struct *p)
13 resched_task(rq->idle);
16 static struct task_struct *pick_next_task_idle(struct rq *rq)
18 schedstat_inc(rq, sched_goidle);
20 return rq->idle;
24 * It is not legal to sleep in the idle task - print a warning
25 * message if some code attempts to do it:
27 static void
28 dequeue_task_idle(struct rq *rq, struct task_struct *p, int sleep)
30 spin_unlock_irq(&rq->lock);
31 printk(KERN_ERR "bad: scheduling from the idle thread!\n");
32 dump_stack();
33 spin_lock_irq(&rq->lock);
36 static void put_prev_task_idle(struct rq *rq, struct task_struct *prev)
40 #ifdef CONFIG_SMP
41 static unsigned long
42 load_balance_idle(struct rq *this_rq, int this_cpu, struct rq *busiest,
43 unsigned long max_load_move,
44 struct sched_domain *sd, enum cpu_idle_type idle,
45 int *all_pinned, int *this_best_prio)
47 return 0;
50 static int
51 move_one_task_idle(struct rq *this_rq, int this_cpu, struct rq *busiest,
52 struct sched_domain *sd, enum cpu_idle_type idle)
54 return 0;
56 #endif
58 static void task_tick_idle(struct rq *rq, struct task_struct *curr)
62 static void set_curr_task_idle(struct rq *rq)
67 * Simple, special scheduling class for the per-CPU idle tasks:
69 const struct sched_class idle_sched_class = {
70 /* .next is NULL */
71 /* no enqueue/yield_task for idle tasks */
73 /* dequeue is not valid, we print a debug message there: */
74 .dequeue_task = dequeue_task_idle,
76 .check_preempt_curr = check_preempt_curr_idle,
78 .pick_next_task = pick_next_task_idle,
79 .put_prev_task = put_prev_task_idle,
81 #ifdef CONFIG_SMP
82 .load_balance = load_balance_idle,
83 .move_one_task = move_one_task_idle,
84 #endif
86 .set_curr_task = set_curr_task_idle,
87 .task_tick = task_tick_idle,
88 /* no .task_new for idle tasks */