MOESI_CMP_token: removed unused message fields
authorTushar Krishna <tushar@csail.mit.edu>
Mon, 7 Feb 2011 06:14:19 +0000 (22:14 -0800)
committerTushar Krishna <tushar@csail.mit.edu>
Mon, 7 Feb 2011 06:14:19 +0000 (22:14 -0800)
src/mem/protocol/MOESI_CMP_token-msg.sm

index 5bc0b81ab476406a2e480479463c7a17f02e3a39..fd7266c99459525db4454c63f9c92a5e3a2bb5de 100644 (file)
@@ -76,9 +76,7 @@ structure(PersistentMsg, desc="...", interface="NetworkMessage") {
   Address Address,             desc="Physical address for this request";
   PersistentRequestType Type,  desc="Type of starvation request";
   MachineID Requestor,            desc="Node who initiated the request";
-  MachineType RequestorMachine,   desc="Type of machine who requested";
   NetDest Destination,             desc="Destination set";
-  MachineType DestMachine,         desc="type of destination component";
   MessageSizeType MessageSize, desc="size category of the message";
   AccessModeType AccessMode,    desc="user/supervisor access type";
   PrefetchBit Prefetch,         desc="Is this a prefetch request";
@@ -89,8 +87,6 @@ structure(RequestMsg, desc="...", interface="NetworkMessage") {
   Address Address,             desc="Physical address for this request";
   CoherenceRequestType Type,   desc="Type of request (GetS, GetX, PutX, etc)";
   MachineID Requestor,            desc="Node who initiated the request";
-  MachineType RequestorMachine,   desc="Type of machine who requested";
-  MachineType DestMachine,        desc="Type of destination machine";
   NetDest Destination,             desc="Multicast destination mask";
   bool isLocal,                    desc="Is this request from a local L1";
   int RetryNum,                    desc="retry sequence number";
@@ -104,9 +100,7 @@ structure(ResponseMsg, desc="...", interface="NetworkMessage") {
   Address Address,             desc="Physical address for this request";
   CoherenceResponseType Type,  desc="Type of response (Ack, Data, etc)";
   MachineID Sender,               desc="Node who sent the data";
-  MachineType SenderMachine,     desc="component that is sending";
   NetDest Destination,             desc="Node to whom the data is sent";
-  MachineType DestMachine,     desc="What component receives the data";
   int Tokens,                  desc="Number of tokens being transfered for this line";
   DataBlock DataBlk,           desc="data for the cache line";
   bool Dirty,                  desc="Is the data dirty (different than memory)?";