summaryrefslogtreecommitdiff
path: root/src/mem/cache
diff options
context:
space:
mode:
authorRon Dreslinski <rdreslin@umich.edu>2006-11-13 19:00:50 -0500
committerRon Dreslinski <rdreslin@umich.edu>2006-11-13 19:00:50 -0500
commit356a4f9f591c0b90eaf1b4dedb8d54c19153642b (patch)
tree96ca332ead1fd38976de29973a5d1ac54145d540 /src/mem/cache
parenta962fc4f561126bea65f3dd52a7194c5527d255a (diff)
downloadgem5-356a4f9f591c0b90eaf1b4dedb8d54c19153642b.tar.xz
Since cpus now send out snoop ranges, remove it from the cache.
--HG-- extra : convert_revision : 82882eb131aa66eba9f281b64db21d5cbfefb1b9
Diffstat (limited to 'src/mem/cache')
-rw-r--r--src/mem/cache/base_cache.hh7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/mem/cache/base_cache.hh b/src/mem/cache/base_cache.hh
index 584c2d5df..ef4955432 100644
--- a/src/mem/cache/base_cache.hh
+++ b/src/mem/cache/base_cache.hh
@@ -144,8 +144,6 @@ class BaseCache : public MemObject
protected:
CachePort *memSidePort;
- bool snoopRangesSent;
-
public:
virtual Port *getPort(const std::string &if_name, int idx = -1);
@@ -171,10 +169,6 @@ class BaseCache : public MemObject
if (status == Port::RangeChange){
if (!isCpuSide) {
cpuSidePort->sendStatusChange(Port::RangeChange);
- if (!snoopRangesSent) {
- snoopRangesSent = true;
- memSidePort->sendStatusChange(Port::RangeChange);
- }
}
else {
memSidePort->sendStatusChange(Port::RangeChange);
@@ -358,7 +352,6 @@ class BaseCache : public MemObject
//Start ports at null if more than one is created we should panic
cpuSidePort = NULL;
memSidePort = NULL;
- snoopRangesSent = false;
}
~BaseCache()