From 1b54344aeb1cdac82cd9d85c4e1e37ed23821853 Mon Sep 17 00:00:00 2001 From: Brad Beckmann Date: Sun, 6 Feb 2011 22:14:18 -0800 Subject: MOESI_hammer: Added full-bit directory support --- src/mem/protocol/MOESI_hammer-msg.sm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/mem/protocol/MOESI_hammer-msg.sm') diff --git a/src/mem/protocol/MOESI_hammer-msg.sm b/src/mem/protocol/MOESI_hammer-msg.sm index c90c8a53c..063cc91ee 100644 --- a/src/mem/protocol/MOESI_hammer-msg.sm +++ b/src/mem/protocol/MOESI_hammer-msg.sm @@ -83,6 +83,7 @@ structure(RequestMsg, desc="...", interface="NetworkMessage") { bool DirectedProbe, default="false", desc="probe filter directed probe"; Time InitialRequestTime, default="0", desc="time the initial requests was sent from the L1Cache"; Time ForwardRequestTime, default="0", desc="time the dir forwarded the request"; + int SilentAcks, default="0", desc="silent acks from the full-bit directory"; } // ResponseMsg (and also unblock requests) @@ -94,10 +95,11 @@ structure(ResponseMsg, desc="...", interface="NetworkMessage") { NetDest Destination, desc="Node to whom the data is sent"; DataBlock DataBlk, desc="data for the cache line"; bool Dirty, desc="Is the data dirty (different than memory)?"; - int Acks, desc="How many messages this counts as"; + int Acks, default="0", desc="How many messages this counts as"; MessageSizeType MessageSize, desc="size category of the message"; Time InitialRequestTime, default="0", desc="time the initial requests was sent from the L1Cache"; Time ForwardRequestTime, default="0", desc="time the dir forwarded the request"; + int SilentAcks, default="0", desc="silent acks from the full-bit directory"; } enumeration(DMARequestType, desc="...", default="DMARequestType_NULL") { -- cgit v1.2.3