From: Nilay Vaish Date: Mon, 11 Feb 2013 03:43:18 +0000 (-0600) Subject: ruby: MI protocol: add a missing transition X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=71c27e63703131d073cb6058c46dd9880de51061;p=gem5.git ruby: MI protocol: add a missing transition The transition for state MII and event Store was found missing during testing. The transition is being added. The controller will not stall the Store request in state MII --- diff --git a/src/mem/protocol/MI_example-cache.sm b/src/mem/protocol/MI_example-cache.sm index e62317efa..f0bd7b99e 100644 --- a/src/mem/protocol/MI_example-cache.sm +++ b/src/mem/protocol/MI_example-cache.sm @@ -413,7 +413,7 @@ machine(L1Cache, "MI Example L1 Cache") // TRANSITIONS - transition({IS, IM, MI, II}, {Load, Ifetch, Store, Replacement}) { + transition({IS, IM, MI, II, MII}, {Load, Ifetch, Store, Replacement}) { z_stall; }