aboutsummaryrefslogtreecommitdiffstats
path: root/litmus/sched_litmus.c
diff options
context:
space:
mode:
authorBjoern B. Brandenburg <bbb@cs.unc.edu>2010-05-28 10:30:29 -0400
committerAndrea Bastoni <bastoni@cs.unc.edu>2010-05-29 17:21:31 -0400
commita084c01569bcfe13fd880a0b1e3a9026629a89da (patch)
treec52640fb3f007637a1914ec6f0b6b92051be73c3 /litmus/sched_litmus.c
parente68debebdc2983600063cd6b04c6a51c4b7ddcc1 (diff)
Better explanation of jump-to-CFS optimization removal
GSN-EDF and friends rely on being called even if there is currently no runnable real-time task on the runqueue for (at least) two reasons: 1) To initiate migrations. LITMUS^RT pull tasks for migrations; this requires plugins to be called even if no task is currently present. 2) To maintain invariants when jobs block.
Diffstat (limited to 'litmus/sched_litmus.c')
-rw-r--r--litmus/sched_litmus.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/litmus/sched_litmus.c b/litmus/sched_litmus.c
index 9906e059879a..64ad5db07795 100644
--- a/litmus/sched_litmus.c
+++ b/litmus/sched_litmus.c
@@ -156,6 +156,8 @@ static void enqueue_task_litmus(struct rq *rq, struct task_struct *p,
156 sched_trace_task_resume(p); 156 sched_trace_task_resume(p);
157 tsk_rt(p)->present = 1; 157 tsk_rt(p)->present = 1;
158 litmus->task_wake_up(p); 158 litmus->task_wake_up(p);
159
160 rq->litmus.nr_running++;
159 } else 161 } else
160 TRACE_TASK(p, "ignoring an enqueue, not a wake up.\n"); 162 TRACE_TASK(p, "ignoring an enqueue, not a wake up.\n");
161} 163}
@@ -166,6 +168,8 @@ static void dequeue_task_litmus(struct rq *rq, struct task_struct *p, int sleep)
166 litmus->task_block(p); 168 litmus->task_block(p);
167 tsk_rt(p)->present = 0; 169 tsk_rt(p)->present = 0;
168 sched_trace_task_block(p); 170 sched_trace_task_block(p);
171
172 rq->litmus.nr_running--;
169 } else 173 } else
170 TRACE_TASK(p, "ignoring a dequeue, not going to sleep.\n"); 174 TRACE_TASK(p, "ignoring a dequeue, not going to sleep.\n");
171} 175}