62a63
> #include "mem/packet.hh"
185,188c186
< * @param addr Address of the block.
< * @param is_secure Whether the block is in secure space or not.
< * @param src_master_ID The source requestor ID.
< * @param task_ID The new task ID.
---
> * @param pkt Packet holding the address to update
191,193c189
< void insertBlock(const Addr addr, const bool is_secure,
< const int src_master_ID, const uint32_t task_ID,
< CacheBlk *blk) override
---
> void insertBlock(const PacketPtr pkt, CacheBlk *blk) override
196c192
< BaseTags::insertBlock(addr, is_secure, src_master_ID, task_ID, blk);
---
> BaseTags::insertBlock(pkt, blk);