Move a couple of DPRINTFs from Cache to CachePort.

--HG--
extra : convert_revision : 55a0d26660aeb8f63b41897d53e6b2d1f0a163be
This commit is contained in:
Steve Reinhardt
2007-07-14 13:16:58 -07:00
parent 3b4ff75939
commit abd194df5c
2 changed files with 3 additions and 2 deletions

View File

@@ -126,7 +126,7 @@ class BaseCache : public MemObject
void requestBus(RequestCause cause, Tick time)
{
DPRINTF(Cache, "Asserting bus request for cause %d\n", cause);
DPRINTF(CachePort, "Asserting bus request for cause %d\n", cause);
if (!waitingOnRetry) {
schedSendEvent(time);
}

View File

@@ -1238,7 +1238,8 @@ Cache<TagStore>::MemSidePort::sendPacket()
MSHR *mshr = dynamic_cast<MSHR*>(pkt->senderState);
bool success = sendTiming(pkt);
DPRINTF(Cache, "Address %x was %s in sending the timing request\n",
DPRINTF(CachePort,
"Address %x was %s in sending the timing request\n",
pkt->getAddr(), success ? "successful" : "unsuccessful");
waitingOnRetry = !success;