Anthony Gutierrez has submitted this change and it was merged. ( https://gem5-review.googlesource.com/10221 )

Change subject: mem-ruby: Consistent dprintf formats for issue outcomes
......................................................................

mem-ruby: Consistent dprintf formats for issue outcomes

Change-Id: I053fc42f0d5f678f8e3434b53a0f09e00fc3e345
Reviewed-on: https://gem5-review.googlesource.com/10221
Reviewed-by: Jason Lowe-Power <[email protected]>
Maintainer: Jason Lowe-Power <[email protected]>
---
M src/mem/ruby/system/RubyPort.cc
1 file changed, 4 insertions(+), 3 deletions(-)

Approvals:
  Jason Lowe-Power: Looks good to me, approved; Looks good to me, approved



diff --git a/src/mem/ruby/system/RubyPort.cc b/src/mem/ruby/system/RubyPort.cc
index 5977ce9..02d2379 100644
--- a/src/mem/ruby/system/RubyPort.cc
+++ b/src/mem/ruby/system/RubyPort.cc
@@ -299,15 +299,16 @@
         // route the response
         pkt->pushSenderState(new SenderState(this));

-        DPRINTF(RubyPort, "Request %s 0x%x issued\n", pkt->cmdString(),
+ DPRINTF(RubyPort, "Request %s address %#x issued\n", pkt->cmdString(),
                 pkt->getAddr());
         return true;
     }

     if (pkt->cmd != MemCmd::MemFenceReq) {
         DPRINTF(RubyPort,
-                "Request for address %#x did not issued because %s\n",
-                pkt->getAddr(), RequestStatus_to_string(requestStatus));
+                "Request %s for address %#x did not issue because %s\n",
+                pkt->cmdString(), pkt->getAddr(),
+                RequestStatus_to_string(requestStatus));
     }

     addToRetryList();

--
To view, visit https://gem5-review.googlesource.com/10221
To unsubscribe, or for help writing mail filters, visit https://gem5-review.googlesource.com/settings

Gerrit-Project: public/gem5
Gerrit-Branch: master
Gerrit-Change-Id: I053fc42f0d5f678f8e3434b53a0f09e00fc3e345
Gerrit-Change-Number: 10221
Gerrit-PatchSet: 5
Gerrit-Owner: Anthony Gutierrez <[email protected]>
Gerrit-Reviewer: Anthony Gutierrez <[email protected]>
Gerrit-Reviewer: Bradford Beckmann <[email protected]>
Gerrit-Reviewer: Jason Lowe-Power <[email protected]>
Gerrit-MessageType: merged
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to