From: Tiago Muck Date: Thu, 14 Feb 2019 23:12:11 +0000 (-0600) Subject: mem-ruby: Fix MOESI_CMP_dir debug msg X-Git-Tag: v19.0.0.0~849 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7b84e3ba58ae3aee3b0e0e0c9758e7ed7207491a;p=gem5.git mem-ruby: Fix MOESI_CMP_dir debug msg Change-Id: I3fd32bd2e81dbf9a8ea49a43727564b8a9d64767 Signed-off-by: Tiago Muck Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/18409 Tested-by: kokoro Reviewed-by: Jason Lowe-Power Maintainer: Jason Lowe-Power --- diff --git a/src/mem/protocol/MOESI_CMP_directory-L2cache.sm b/src/mem/protocol/MOESI_CMP_directory-L2cache.sm index 379e609d5..e006e86ac 100644 --- a/src/mem/protocol/MOESI_CMP_directory-L2cache.sm +++ b/src/mem/protocol/MOESI_CMP_directory-L2cache.sm @@ -626,7 +626,7 @@ machine(MachineType:L2Cache, "Token protocol") trigger(Event:Data_Exclusive, in_msg.addr, getCacheEntry(in_msg.addr), TBEs[in_msg.addr]); } else if (in_msg.Type == CoherenceResponseType:UNBLOCK) { - DPRINTF(ProtocolTrace, "Received Unblock from L1 addr: %x\n", in_msg.addr); + DPRINTF(RubySlicc, "Received Unblock from L1 addr: %x\n", in_msg.addr); trigger(Event:Unblock, in_msg.addr, getCacheEntry(in_msg.addr), TBEs[in_msg.addr]); } else if (in_msg.Type == CoherenceResponseType:UNBLOCK_EXCLUSIVE) {