diff options
author | Steve Reinhardt <stever@gmail.com> | 2008-03-24 01:08:02 -0400 |
---|---|---|
committer | Steve Reinhardt <stever@gmail.com> | 2008-03-24 01:08:02 -0400 |
commit | 93ab43288a75061746701c9d22a355793f330a9c (patch) | |
tree | a5ea6a953da81990b90562739b952ee9d4b0c026 /src/mem/cache/cache_impl.hh | |
parent | 627592c2f2a9d2774df50b2b5039efcb71432bc7 (diff) | |
download | gem5-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/cache/cache_impl.hh')
-rw-r--r-- | src/mem/cache/cache_impl.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mem/cache/cache_impl.hh b/src/mem/cache/cache_impl.hh index 2f4567e0d..47d20f915 100644 --- a/src/mem/cache/cache_impl.hh +++ b/src/mem/cache/cache_impl.hh @@ -38,6 +38,7 @@ */ #include "sim/host.hh" +#include "base/fast_alloc.hh" #include "base/misc.hh" #include "base/range_ops.hh" @@ -346,7 +347,7 @@ Cache<TagStore>::access(PacketPtr pkt, BlkType *&blk, int &lat) } -class ForwardResponseRecord : public Packet::SenderState +class ForwardResponseRecord : public Packet::SenderState, public FastAlloc { Packet::SenderState *prevSenderState; int prevSrc; |