diff options
author | Ron Dreslinski <rdreslin@umich.edu> | 2006-10-05 23:28:03 -0400 |
---|---|---|
committer | Ron Dreslinski <rdreslin@umich.edu> | 2006-10-05 23:28:03 -0400 |
commit | 212c5aefb580375417d357d821255c67a8d90fdf (patch) | |
tree | b4295efc66b5ee924035d948b00bd5127f2a5ffa /src/mem/cache/base_cache.hh | |
parent | 45f881a4ced25105267799432c0f526400f0ba9e (diff) | |
download | gem5-212c5aefb580375417d357d821255c67a8d90fdf.tar.xz |
Fixes for functional accesses to use the snoop path.
And small other tweaks to snooping coherence.
src/mem/cache/base_cache.hh:
Make timing response at the time of send.
src/mem/cache/cache.hh:
src/mem/cache/cache_impl.hh:
Update probe interface to be bi-directional for functional accesses
src/mem/packet.hh:
Add the function to create an atomic response to a given request
--HG--
extra : convert_revision : 04075a117cf30a7df16e6d3ce485543cc77d4ca6
Diffstat (limited to 'src/mem/cache/base_cache.hh')
-rw-r--r-- | src/mem/cache/base_cache.hh | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mem/cache/base_cache.hh b/src/mem/cache/base_cache.hh index 49999dcb4..19cfe1335 100644 --- a/src/mem/cache/base_cache.hh +++ b/src/mem/cache/base_cache.hh @@ -515,8 +515,6 @@ class BaseCache : public MemObject */ void respond(Packet *pkt, Tick time) { - pkt->makeTimingResponse(); - pkt->result = Packet::Success; CacheEvent *reqCpu = new CacheEvent(cpuSidePort, pkt); reqCpu->schedule(time); } |