Anthony Gutierrez has uploaded this change for review. (
https://gem5-review.googlesource.com/10221
Change subject: ruby: consistent dprintf formats for issue outcomes
......................................................................
ruby: consistent dprintf formats for issue outcomes
Change-Id: I053fc42f0d5f678f8e3434b53a0f09e00fc3e345
---
M src/mem/ruby/system/RubyPort.cc
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/src/mem/ruby/system/RubyPort.cc
b/src/mem/ruby/system/RubyPort.cc
index 5977ce9..248bf1e 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 issued 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: 1
Gerrit-Owner: Anthony Gutierrez <[email protected]>
Gerrit-Reviewer: Bradford Beckmann <[email protected]>
Gerrit-MessageType: newchange
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev