aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Herman <hermanjl@cs.unc.edu>2011-09-23 16:13:07 -0400
committerJonathan Herman <hermanjl@cs.unc.edu>2011-09-23 16:13:07 -0400
commitc30d3e248cb6ece50cc9b06769ed794d600f0c20 (patch)
tree09f7b76fcfa487c2077d7e6c23d2dd1c95e3098f
parent997c198fed648b63a40928c26e7289b0de406925 (diff)
Cleaned up log messages
-rw-r--r--litmus/sched_mc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/litmus/sched_mc.c b/litmus/sched_mc.c
index 76280e744714..596742aa5583 100644
--- a/litmus/sched_mc.c
+++ b/litmus/sched_mc.c
@@ -308,7 +308,7 @@ static void fix_global_levels(void)
308 raw_spin_lock(&e->redir_lock); 308 raw_spin_lock(&e->redir_lock);
309 list_for_each_safe(pos, safe, &e->redir) { 309 list_for_each_safe(pos, safe, &e->redir) {
310 t = list_entry(pos, struct task_struct, rt_param.list); 310 t = list_entry(pos, struct task_struct, rt_param.list);
311 TRACE_TASK(t, "Arriving yo"); 311 TRACE_TASK(t, "Dequeued redirected job");
312 BUG_ON(is_queued(t)); 312 BUG_ON(is_queued(t));
313 list_del_init(pos); 313 list_del_init(pos);
314 job_arrival(t); 314 job_arrival(t);
@@ -336,7 +336,6 @@ static void link_task_to_cpu(cpu_entry_t *entry, struct task_struct *task)
336 entry->linked = task; 336 entry->linked = task;
337 /* Higher criticality crit entries are now usable */ 337 /* Higher criticality crit entries are now usable */
338 for (; i < entry_level(entry) + 1; i++) { 338 for (; i < entry_level(entry) + 1; i++) {
339 TRACE_CRIT_ENTRY(&entry->crit_entries[i], "now usable");
340 entry->crit_entries[i].usable = 1; 339 entry->crit_entries[i].usable = 1;
341 } 340 }
342} 341}