182c182
< bool access(PacketPtr pkt, BlkType *blk, int & lat);
---
> bool access(PacketPtr pkt, BlkType *&blk, int &lat);
204c204
< void satisfyMSHR(MSHR *mshr, PacketPtr pkt, BlkType *blk);
---
> bool satisfyMSHR(MSHR *mshr, PacketPtr pkt, BlkType *blk);
313,314c313
< MSHR *allocateBuffer(PacketPtr pkt, Tick time, bool isFill,
< bool requestBus);
---
> MSHR *allocateBuffer(PacketPtr pkt, Tick time, bool requestBus);
319a319,320
> PacketPtr getBusPacket(PacketPtr cpu_pkt, BlkType *blk,
> bool needsExclusive);
321c322
< PacketPtr getPacket();
---
> PacketPtr getTimingPacket();
332,338d332
< * Collect statistics and free resources of a satisfied request.
< * @param pkt The request that has been satisfied.
< * @param time The time when the request is satisfied.
< */
< void handleResponse(PacketPtr pkt, Tick time);
<
< /**