diff options
author | Peter Zijlstra <a.p.zijlstra@chello.nl> | 2011-11-15 11:14:39 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2011-11-17 06:20:22 -0500 |
commit | 391e43da797a96aeb65410281891f6d0b0e9611c (patch) | |
tree | 0ce6784525a5a8f75b377170cf1a7d60abccea29 /kernel/sched/stop_task.c | |
parent | 029632fbb7b7c9d85063cc9eb470de6c54873df3 (diff) |
sched: Move all scheduler bits into kernel/sched/
There's too many sched*.[ch] files in kernel/, give them their own
directory.
(No code changed, other than Makefile glue added.)
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/sched/stop_task.c')
-rw-r--r-- | kernel/sched/stop_task.c | 108 |
1 files changed, 108 insertions, 0 deletions
diff --git a/kernel/sched/stop_task.c b/kernel/sched/stop_task.c new file mode 100644 index 000000000000..7b386e86fd23 --- /dev/null +++ b/kernel/sched/stop_task.c | |||
@@ -0,0 +1,108 @@ | |||
1 | #include "sched.h" | ||
2 | |||
3 | /* | ||
4 | * stop-task scheduling class. | ||
5 | * | ||
6 | * The stop task is the highest priority task in the system, it preempts | ||
7 | * everything and will be preempted by nothing. | ||
8 | * | ||
9 | * See kernel/stop_machine.c | ||
10 | */ | ||
11 | |||
12 | #ifdef CONFIG_SMP | ||
13 | static int | ||
14 | select_task_rq_stop(struct task_struct *p, int sd_flag, int flags) | ||
15 | { | ||
16 | return task_cpu(p); /* stop tasks as never migrate */ | ||
17 | } | ||
18 | #endif /* CONFIG_SMP */ | ||
19 | |||
20 | static void | ||
21 | check_preempt_curr_stop(struct rq *rq, struct task_struct *p, int flags) | ||
22 | { | ||
23 | /* we're never preempted */ | ||
24 | } | ||
25 | |||
26 | static struct task_struct *pick_next_task_stop(struct rq *rq) | ||
27 | { | ||
28 | struct task_struct *stop = rq->stop; | ||
29 | |||
30 | if (stop && stop->on_rq) | ||
31 | return stop; | ||
32 | |||
33 | return NULL; | ||
34 | } | ||
35 | |||
36 | static void | ||
37 | enqueue_task_stop(struct rq *rq, struct task_struct *p, int flags) | ||
38 | { | ||
39 | inc_nr_running(rq); | ||
40 | } | ||
41 | |||
42 | static void | ||
43 | dequeue_task_stop(struct rq *rq, struct task_struct *p, int flags) | ||
44 | { | ||
45 | dec_nr_running(rq); | ||
46 | } | ||
47 | |||
48 | static void yield_task_stop(struct rq *rq) | ||
49 | { | ||
50 | BUG(); /* the stop task should never yield, its pointless. */ | ||
51 | } | ||
52 | |||
53 | static void put_prev_task_stop(struct rq *rq, struct task_struct *prev) | ||
54 | { | ||
55 | } | ||
56 | |||
57 | static void task_tick_stop(struct rq *rq, struct task_struct *curr, int queued) | ||
58 | { | ||
59 | } | ||
60 | |||
61 | static void set_curr_task_stop(struct rq *rq) | ||
62 | { | ||
63 | } | ||
64 | |||
65 | static void switched_to_stop(struct rq *rq, struct task_struct *p) | ||
66 | { | ||
67 | BUG(); /* its impossible to change to this class */ | ||
68 | } | ||
69 | |||
70 | static void | ||
71 | prio_changed_stop(struct rq *rq, struct task_struct *p, int oldprio) | ||
72 | { | ||
73 | BUG(); /* how!?, what priority? */ | ||
74 | } | ||
75 | |||
76 | static unsigned int | ||
77 | get_rr_interval_stop(struct rq *rq, struct task_struct *task) | ||
78 | { | ||
79 | return 0; | ||
80 | } | ||
81 | |||
82 | /* | ||
83 | * Simple, special scheduling class for the per-CPU stop tasks: | ||
84 | */ | ||
85 | const struct sched_class stop_sched_class = { | ||
86 | .next = &rt_sched_class, | ||
87 | |||
88 | .enqueue_task = enqueue_task_stop, | ||
89 | .dequeue_task = dequeue_task_stop, | ||
90 | .yield_task = yield_task_stop, | ||
91 | |||
92 | .check_preempt_curr = check_preempt_curr_stop, | ||
93 | |||
94 | .pick_next_task = pick_next_task_stop, | ||
95 | .put_prev_task = put_prev_task_stop, | ||
96 | |||
97 | #ifdef CONFIG_SMP | ||
98 | .select_task_rq = select_task_rq_stop, | ||
99 | #endif | ||
100 | |||
101 | .set_curr_task = set_curr_task_stop, | ||
102 | .task_tick = task_tick_stop, | ||
103 | |||
104 | .get_rr_interval = get_rr_interval_stop, | ||
105 | |||
106 | .prio_changed = prio_changed_stop, | ||
107 | .switched_to = switched_to_stop, | ||
108 | }; | ||