sched_stoptask.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*
  2. * stop-task scheduling class.
  3. *
  4. * The stop task is the highest priority task in the system, it preempts
  5. * everything and will be preempted by nothing.
  6. *
  7. * See kernel/stop_machine.c
  8. */
  9. #ifdef CONFIG_SMP
  10. static int
  11. select_task_rq_stop(struct task_struct *p, int sd_flag, int flags)
  12. {
  13. return task_cpu(p); /* stop tasks as never migrate */
  14. }
  15. #endif /* CONFIG_SMP */
  16. static void
  17. check_preempt_curr_stop(struct rq *rq, struct task_struct *p, int flags)
  18. {
  19. /* we're never preempted */
  20. }
  21. static struct task_struct *pick_next_task_stop(struct rq *rq)
  22. {
  23. struct task_struct *stop = rq->stop;
  24. if (stop && stop->on_rq)
  25. return stop;
  26. return NULL;
  27. }
  28. static void
  29. enqueue_task_stop(struct rq *rq, struct task_struct *p, int flags)
  30. {
  31. inc_nr_running(rq);
  32. }
  33. static void
  34. dequeue_task_stop(struct rq *rq, struct task_struct *p, int flags)
  35. {
  36. dec_nr_running(rq);
  37. }
  38. static void yield_task_stop(struct rq *rq)
  39. {
  40. BUG(); /* the stop task should never yield, its pointless. */
  41. }
  42. static void put_prev_task_stop(struct rq *rq, struct task_struct *prev)
  43. {
  44. }
  45. static void task_tick_stop(struct rq *rq, struct task_struct *curr, int queued)
  46. {
  47. }
  48. static void set_curr_task_stop(struct rq *rq)
  49. {
  50. }
  51. static void switched_to_stop(struct rq *rq, struct task_struct *p)
  52. {
  53. BUG(); /* its impossible to change to this class */
  54. }
  55. static void
  56. prio_changed_stop(struct rq *rq, struct task_struct *p, int oldprio)
  57. {
  58. BUG(); /* how!?, what priority? */
  59. }
  60. static unsigned int
  61. get_rr_interval_stop(struct rq *rq, struct task_struct *task)
  62. {
  63. return 0;
  64. }
  65. /*
  66. * Simple, special scheduling class for the per-CPU stop tasks:
  67. */
  68. static const struct sched_class stop_sched_class = {
  69. .next = &rt_sched_class,
  70. .enqueue_task = enqueue_task_stop,
  71. .dequeue_task = dequeue_task_stop,
  72. .yield_task = yield_task_stop,
  73. .check_preempt_curr = check_preempt_curr_stop,
  74. .pick_next_task = pick_next_task_stop,
  75. .put_prev_task = put_prev_task_stop,
  76. #ifdef CONFIG_SMP
  77. .select_task_rq = select_task_rq_stop,
  78. #endif
  79. .set_curr_task = set_curr_task_stop,
  80. .task_tick = task_tick_stop,
  81. .get_rr_interval = get_rr_interval_stop,
  82. .prio_changed = prio_changed_stop,
  83. .switched_to = switched_to_stop,
  84. };