diff options
author | Ron Dreslinski <rdreslin@umich.edu> | 2006-10-11 01:01:40 -0400 |
---|---|---|
committer | Ron Dreslinski <rdreslin@umich.edu> | 2006-10-11 01:01:40 -0400 |
commit | c2012601e94126cd55fa593088b4a25f20cfc2a2 (patch) | |
tree | 060152ab2a442c93031ac60ab67708ff2afc0f1d | |
parent | 07dad71f6f09afd9ac6d3dca89f635ef509e4e0e (diff) | |
download | gem5-c2012601e94126cd55fa593088b4a25f20cfc2a2.tar.xz |
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
-rw-r--r-- | src/mem/cache/base_cache.cc | 1 |
1 files changed, 1 insertions, 0 deletions
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(); |