282,296d281
< BlkType* findBlock(Addr addr)
< {
< return tags->findBlock(addr);
< }
<
< BlkType* findBlock(PacketPtr &pkt)
< {
< return tags->findBlock(pkt->getAddr());
< }
<
< void invalidateBlk(CacheBlk *blk)
< {
< tags->invalidateBlk(tags->regenerateBlkAddr(blk->tag, blk->set));
< }
<
402,409d386
< * Invalidates the block containing address if found.
< * @param addr The address to look for.
< * @param asid The address space ID of the address.
< * @todo Is this function necessary?
< */
< void invalidateBlk(Addr addr);
<
< /**