aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/sched_rt.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/sched_rt.c')
-rw-r--r--kernel/sched_rt.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/kernel/sched_rt.c b/kernel/sched_rt.c
index cefcd5105146..e3d2ca8832af 100644
--- a/kernel/sched_rt.c
+++ b/kernel/sched_rt.c
@@ -26,6 +26,19 @@ static void update_curr_rt(struct rq *rq)
26 cpuacct_charge(curr, delta_exec); 26 cpuacct_charge(curr, delta_exec);
27} 27}
28 28
29static inline void inc_rt_tasks(struct task_struct *p, struct rq *rq)
30{
31 WARN_ON(!rt_task(p));
32 rq->rt.rt_nr_running++;
33}
34
35static inline void dec_rt_tasks(struct task_struct *p, struct rq *rq)
36{
37 WARN_ON(!rt_task(p));
38 WARN_ON(!rq->rt.rt_nr_running);
39 rq->rt.rt_nr_running--;
40}
41
29static void enqueue_task_rt(struct rq *rq, struct task_struct *p, int wakeup) 42static void enqueue_task_rt(struct rq *rq, struct task_struct *p, int wakeup)
30{ 43{
31 struct rt_prio_array *array = &rq->rt.active; 44 struct rt_prio_array *array = &rq->rt.active;
@@ -33,6 +46,8 @@ static void enqueue_task_rt(struct rq *rq, struct task_struct *p, int wakeup)
33 list_add_tail(&p->run_list, array->queue + p->prio); 46 list_add_tail(&p->run_list, array->queue + p->prio);
34 __set_bit(p->prio, array->bitmap); 47 __set_bit(p->prio, array->bitmap);
35 inc_cpu_load(rq, p->se.load.weight); 48 inc_cpu_load(rq, p->se.load.weight);
49
50 inc_rt_tasks(p, rq);
36} 51}
37 52
38/* 53/*
@@ -48,6 +63,8 @@ static void dequeue_task_rt(struct rq *rq, struct task_struct *p, int sleep)
48 if (list_empty(array->queue + p->prio)) 63 if (list_empty(array->queue + p->prio))
49 __clear_bit(p->prio, array->bitmap); 64 __clear_bit(p->prio, array->bitmap);
50 dec_cpu_load(rq, p->se.load.weight); 65 dec_cpu_load(rq, p->se.load.weight);
66
67 dec_rt_tasks(p, rq);
51} 68}
52 69
53/* 70/*