diff options
author | Christopher Kenna <cjk@cs.unc.edu> | 2012-12-03 14:42:15 -0500 |
---|---|---|
committer | Christopher Kenna <cjk@cs.unc.edu> | 2012-12-03 14:42:15 -0500 |
commit | 1281cd8055be5dd42778d0294cfccfcb477650ff (patch) | |
tree | 3f0f4c57dd236503d8a4e88743df879e9c5457e4 | |
parent | 67beae707582e23c61d987c57ecb8545d8dabfe1 (diff) |
Print blocked and prio state in dumps.
-rw-r--r-- | litmus/dgl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/litmus/dgl.c b/litmus/dgl.c index 364588265909..f9cede7ef546 100644 --- a/litmus/dgl.c +++ b/litmus/dgl.c | |||
@@ -80,9 +80,9 @@ static void print_queue(struct dgl *dgl, struct list_head *list) | |||
80 | list_for_each_entry(pos, list, list) { | 80 | list_for_each_entry(pos, list, list) { |
81 | greq = pos->greq; | 81 | greq = pos->greq; |
82 | sched_trace_log_message("(%s-%d:r%d-p%x-b%x)->", greq->task->comm, | 82 | sched_trace_log_message("(%s-%d:r%d-p%x-b%x)->", greq->task->comm, |
83 | greq->task->pid, pos->replicas, | 83 | greq->task->pid, pos->replicas, |
84 | arr_to_bool(dgl, greq->need_prio), | 84 | greq->need_prio[0], |
85 | arr_to_bool(dgl, greq->blocked)); | 85 | greq->blocked[0]); |
86 | } | 86 | } |
87 | sched_trace_log_message("\n"); | 87 | sched_trace_log_message("\n"); |
88 | } | 88 | } |