summaryrefslogtreecommitdiff
path: root/src/mem/bridge.hh
diff options
context:
space:
mode:
authorSteve Reinhardt <stever@gmail.com>2008-03-24 01:08:02 -0400
committerSteve Reinhardt <stever@gmail.com>2008-03-24 01:08:02 -0400
commit93ab43288a75061746701c9d22a355793f330a9c (patch)
treea5ea6a953da81990b90562739b952ee9d4b0c026 /src/mem/bridge.hh
parent627592c2f2a9d2774df50b2b5039efcb71432bc7 (diff)
downloadgem5-93ab43288a75061746701c9d22a355793f330a9c.tar.xz
Don't FastAlloc MSHRs since we don't allocate them on the fly.
--HG-- extra : convert_revision : 02775cfb460afe6df0df0938c62cccd93a71e775
Diffstat (limited to 'src/mem/bridge.hh')
-rw-r--r--src/mem/bridge.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mem/bridge.hh b/src/mem/bridge.hh
index 1331a45f9..a9dd67a2b 100644
--- a/src/mem/bridge.hh
+++ b/src/mem/bridge.hh
@@ -42,6 +42,7 @@
#include <inttypes.h>
#include <queue>
+#include "base/fast_alloc.hh"
#include "mem/mem_object.hh"
#include "mem/packet.hh"
#include "mem/port.hh"
@@ -73,7 +74,7 @@ class Bridge : public MemObject
/** Pass ranges from one side of the bridge to the other? */
std::vector<Range<Addr> > filterRanges;
- class PacketBuffer : public Packet::SenderState {
+ class PacketBuffer : public Packet::SenderState, public FastAlloc {
public:
Tick ready;