aboutsummaryrefslogtreecommitdiffstats
path: root/litmus/ce_domain.c
diff options
context:
space:
mode:
Diffstat (limited to 'litmus/ce_domain.c')
-rw-r--r--litmus/ce_domain.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/litmus/ce_domain.c b/litmus/ce_domain.c
index 54a4a18e01b..c3ddc9dd63a 100644
--- a/litmus/ce_domain.c
+++ b/litmus/ce_domain.c
@@ -27,15 +27,15 @@ void ce_requeue(domain_t *dom, struct task_struct *ts)
27 const int asleep = RT_F_SLEEP == get_rt_flags(ts); 27 const int asleep = RT_F_SLEEP == get_rt_flags(ts);
28 28
29 TRACE_MC_TASK(ts, "entered ce_requeue. asleep: %d just_finished: %3u " 29 TRACE_MC_TASK(ts, "entered ce_requeue. asleep: %d just_finished: %3u "
30 "expected_job: %3u", 30 "expected_job: %3u\n",
31 asleep, just_finished, expected_job); 31 asleep, just_finished, expected_job);
32 32
33 /* When coming from job completion, the task will be asleep. */ 33 /* When coming from job completion, the task will be asleep. */
34 if (asleep && just_finished < expected_job) { 34 if (asleep && just_finished < expected_job) {
35 TRACE_MC_TASK(ts, "appears behind"); 35 TRACE_MC_TASK(ts, "appears behind\n");
36 } else if (asleep && expected_job < just_finished) { 36 } else if (asleep && expected_job < just_finished) {
37 TRACE_MC_TASK(ts, "job %u completed in expected job %u which " 37 TRACE_MC_TASK(ts, "job %u completed in expected job %u which "
38 "seems too early", just_finished, 38 "seems too early\n", just_finished,
39 expected_job); 39 expected_job);
40 } 40 }
41} 41}