ruby: protocols: remove unused action z_stall
authorNilay Vaish <nilay@cs.wisc.edu>
Mon, 24 Feb 2014 01:16:15 +0000 (19:16 -0600)
committerNilay Vaish <nilay@cs.wisc.edu>
Mon, 24 Feb 2014 01:16:15 +0000 (19:16 -0600)
src/mem/protocol/MESI_Two_Level-dma.sm
src/mem/protocol/MOESI_CMP_directory-L2cache.sm
src/mem/protocol/MOESI_CMP_directory-dir.sm
src/mem/protocol/MOESI_CMP_directory-dma.sm

index f0301118c81e208aa9d05a53aab8187d107e5625..37c5f982e262cb45aff03b29ebd5e3fe5d9ecec1 100644 (file)
@@ -148,10 +148,6 @@ machine(DMA, "DMA Controller")
     dmaResponseQueue_in.dequeue();
   }
 
-  action(z_stall, "z", desc="dma is busy..stall") {
-    // do nothing
-  }
-
   transition(READY, ReadRequest, BUSY_RD) {
     s_sendReadRequest;
     p_popRequestQueue;
index 232f359ad474dcc373a68e89cf84351fded47f72..628dfa7a080c6a0f0877703ee5fc6b28dd7b090a 100644 (file)
@@ -1492,9 +1492,6 @@ machine(L2Cache, "Token protocol")
     localDirectory.deallocate(address);
   }
 
-  action(z_stall, "z", desc="Stall") {
-  }
-
   action(zz_recycleL1RequestQueue, "zz", desc="Send the head of the mandatory queue to the back of the queue.") {
     peek(L1requestNetwork_in, RequestMsg) {
       APPEND_TRANSITION_COMMENT(in_msg.Requestor);
index 753acc58d501ce048ea25fbdab5404b3e84f070e..a8acaba0203ba7b572b36b45a4f44fccc9f703f1 100644 (file)
@@ -555,11 +555,6 @@ machine(Directory, "Directory protocol")
     }
   }
 
-
-  //  action(z_stall, "z", desc="Cannot be handled right now.") {
-    // Special name recognized as do nothing case
-  //  }
-
   action(zz_recycleRequest, "\z", desc="Recycle the request queue") {
     requestQueue_in.recycle();
   }
index f79f0a535da42945c764f6357d723362a445fa92..f4d910795d53b2d8b936a005ac6a21e5d08972ce 100644 (file)
@@ -245,11 +245,6 @@ machine(DMA, "DMA Controller")
     unset_tbe();
   }
 
-  action(z_stall, "z", desc="dma is busy..stall") {
-    // do nothing
-  }
-
-
 
   transition(READY, ReadRequest, BUSY_RD) {
     s_sendReadRequest;