176,178c176,177
< * Invalidate the cache block that contains the given addr.
< * @param asid The address space ID.
< * @param addr The address to invalidate.
---
> * Invalidate a cache block.
> * @param blk The block to invalidate.
180c179
< void invalidateBlk(Addr addr);
---
> void invalidateBlk(BlkType *blk);
194,203d192
< * Find the block in the cache and update the replacement data. Returns
< * the access latency and the in cache flags as a side effect
< * @param pkt The req whose block to find
< * @param lat The latency of the access.
< * @param inCache The FALRUBlk::inCache flags.
< * @return Pointer to the cache block.
< */
< FALRUBlk* findBlock(PacketPtr &pkt, int &lat, int *inCache = 0);
<
< /**