From: Ron Dreslinski Date: Wed, 11 Oct 2006 05:01:40 +0000 (-0400) Subject: Use bus response time paramteres X-Git-Tag: m5_2.0_beta2~104^2~8 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c2012601e94126cd55fa593088b4a25f20cfc2a2;p=gem5.git Use bus response time paramteres Fix bug with deadlocking src/mem/cache/base_cache.cc: Make sure to not wait anymore --HG-- extra : convert_revision : 5f7b44a1c475820b9862275a0d6113ec2991735d --- diff --git a/src/mem/cache/base_cache.cc b/src/mem/cache/base_cache.cc index 328e1c7cc..71ea58416 100644 --- a/src/mem/cache/base_cache.cc +++ b/src/mem/cache/base_cache.cc @@ -139,6 +139,7 @@ BaseCache::CachePort::recvRetry() //This can happen if I am the owner of a block and see an upgrade //while the block was in my WB Buffers. I just remove the //wb and de-assert the masterRequest + waitingOnRetry = false; return; } pkt = cache->getPacket();