From ffbdaa7cce32bfb18f0c97b9c5f19d1aa54da503 Mon Sep 17 00:00:00 2001 From: Amin Farmahini Date: Tue, 28 Jan 2014 18:00:50 -0600 Subject: mem: Remove redundant findVictim() input argument The patch (1) removes the redundant writeback argument from findVictim() (2) fixes the description of access() function Committed by: Nilay Vaish --- src/mem/cache/tags/fa_lru.hh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/mem/cache/tags/fa_lru.hh') diff --git a/src/mem/cache/tags/fa_lru.hh b/src/mem/cache/tags/fa_lru.hh index 1465bd861..ef13b2c79 100644 --- a/src/mem/cache/tags/fa_lru.hh +++ b/src/mem/cache/tags/fa_lru.hh @@ -203,10 +203,9 @@ public: /** * Find a replacement block for the address provided. * @param pkt The request to a find a replacement candidate for. - * @param writebacks List for any writebacks to be performed. * @return The block to place the replacement in. */ - FALRUBlk* findVictim(Addr addr, PacketList & writebacks); + FALRUBlk* findVictim(Addr addr); void insertBlock(PacketPtr pkt, BlkType *blk); -- cgit v1.2.3