mem-ruby: Consistent dprintf formats for issue outcomes

Change-Id: I053fc42f0d5f678f8e3434b53a0f09e00fc3e345
Reviewed-on: https://gem5-review.googlesource.com/10221
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Maintainer: Jason Lowe-Power <jason@lowepower.com>
This commit is contained in:
Brad Beckmann
2018-05-03 14:01:02 -04:00
committed by Anthony Gutierrez
parent e1e908fceb
commit dead799736

View File

@@ -299,15 +299,16 @@ RubyPort::MemSlavePort::recvTimingReq(PacketPtr pkt)
// 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();