summaryrefslogtreecommitdiff
path: root/src/mem/protocol/MOESI_CMP_token-msg.sm
diff options
context:
space:
mode:
authorTushar Krishna <tushar@csail.mit.edu>2011-02-06 22:14:19 -0800
committerTushar Krishna <tushar@csail.mit.edu>2011-02-06 22:14:19 -0800
commit4fa690e8ff6716be458c053fed833b75af9ba41c (patch)
tree2e22cd61484e1b26d25fb5560f92b5a865c998ba /src/mem/protocol/MOESI_CMP_token-msg.sm
parent273e3d49244b3c4f9f62c67431f60f4a0ab5906c (diff)
downloadgem5-4fa690e8ff6716be458c053fed833b75af9ba41c.tar.xz
MOESI_CMP_token: removed unused message fields
Diffstat (limited to 'src/mem/protocol/MOESI_CMP_token-msg.sm')
-rw-r--r--src/mem/protocol/MOESI_CMP_token-msg.sm6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mem/protocol/MOESI_CMP_token-msg.sm b/src/mem/protocol/MOESI_CMP_token-msg.sm
index 5bc0b81ab..fd7266c99 100644
--- a/src/mem/protocol/MOESI_CMP_token-msg.sm
+++ b/src/mem/protocol/MOESI_CMP_token-msg.sm
@@ -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)?";