ruby: added useful dma progress dprintf
authorBrad Beckmann <Brad.Beckmann@amd.com>
Sat, 19 Mar 2011 21:17:48 +0000 (14:17 -0700)
committerBrad Beckmann <Brad.Beckmann@amd.com>
Sat, 19 Mar 2011 21:17:48 +0000 (14:17 -0700)
src/mem/ruby/system/DMASequencer.cc

index b36f8780ba7f3917630b413d14862a0c03c624af..fbaf5f1d14b8352806e6a809f0f6695d2ae2e5f5 100644 (file)
@@ -150,7 +150,10 @@ DMASequencer::issueNext()
     assert(m_mandatory_q_ptr != NULL);
     m_mandatory_q_ptr->enqueue(msg);
     active_request.bytes_issued += msg->getLen();
-    DPRINTF(RubyDma, "Next DMA segment issued to the DMA cntrl\n");
+    DPRINTF(RubyDma, 
+            "DMA request bytes issued %d, bytes completed %d, total len %d\n",
+            active_request.bytes_issued, active_request.bytes_completed,
+            active_request.len);
 }
 
 void