summaryrefslogtreecommitdiff
path: root/src/mem/cache/cache_impl.hh
diff options
context:
space:
mode:
authorRon Dreslinski <rdreslin@umich.edu>2006-06-30 11:34:27 -0400
committerRon Dreslinski <rdreslin@umich.edu>2006-06-30 11:34:27 -0400
commitdea1a19b2de2fe031f714904c5247cf27b363237 (patch)
tree52940bed2d35aa2c94656abaff0d615308fa1eb3 /src/mem/cache/cache_impl.hh
parent971bb55369a53630349aeb5887cb20599d4396ee (diff)
downloadgem5-dea1a19b2de2fe031f714904c5247cf27b363237.tar.xz
Fix the packet data allocation methods. Small fixes from changesets after my initial work.
This now compiles. src/mem/cache/base_cache.cc: Fix getPort function that changed src/mem/cache/base_cache.hh: Fix get port function, provide default implementations of virtual functions in the base class src/mem/cache/cache.hh: Fix virtual function declerations src/mem/cache/cache_builder.cc: Fix params src/mem/cache/cache_impl.hh: src/mem/cache/miss/blocking_buffer.cc: src/mem/cache/miss/miss_queue.cc: src/mem/cache/miss/mshr.cc: src/mem/cache/prefetch/base_prefetcher.cc: src/mem/cache/tags/iic.cc: src/mem/cache/tags/lru.cc: Properly allocate data in packet --HG-- extra : convert_revision : dedf8b0f76ab90b06b60f8fe079c0ae361f91a48
Diffstat (limited to 'src/mem/cache/cache_impl.hh')
-rw-r--r--src/mem/cache/cache_impl.hh3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mem/cache/cache_impl.hh b/src/mem/cache/cache_impl.hh
index dbf2e49f1..f1e9c3698 100644
--- a/src/mem/cache/cache_impl.hh
+++ b/src/mem/cache/cache_impl.hh
@@ -588,8 +588,7 @@ Cache<TagStore,Buffering,Coherence>::probe(Packet * &pkt, bool update)
Packet * busPkt = new Packet(pkt->req,temp_cmd, -1, blkSize);
- uint8_t* temp_data = new uint8_t[blkSize];
- busPkt->dataDynamicArray<uint8_t>(temp_data);
+ busPkt->allocate();
busPkt->time = curTick;