diff options
Diffstat (limited to 'src/cpu/inorder/resources/cache_unit.cc')
-rw-r--r-- | src/cpu/inorder/resources/cache_unit.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/cpu/inorder/resources/cache_unit.cc b/src/cpu/inorder/resources/cache_unit.cc index 7c8ad6905..7a24348fc 100644 --- a/src/cpu/inorder/resources/cache_unit.cc +++ b/src/cpu/inorder/resources/cache_unit.cc @@ -105,8 +105,10 @@ CacheUnit::CachePort::recvTiming(Packet *pkt) pkt->getAddr()); else if (pkt->isResponse()) cachePortUnit->processCacheCompletion(pkt); - else - DPRINTF(Cache, "Received snoop pkt %x,Ignoring\n", pkt->getAddr()); + else { + //@note: depending on consistency model, update here + DPRINTF(InOrderCachePort, "Received snoop pkt %x,Ignoring\n", pkt->getAddr()); + } return true; } |