diff --git a/src/mem/cache/prefetch/base.cc b/src/mem/cache/prefetch/base.cc index e3464a8239..a85b024109 100644 --- a/src/mem/cache/prefetch/base.cc +++ b/src/mem/cache/prefetch/base.cc @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2014, 2023-2024 Arm Limited + * Copyright (c) 2013-2014, 2022-2024 Arm Limited * All rights reserved. * * The license below extends only to copyright in the software and shall @@ -238,6 +238,7 @@ Base::probeNotify(const CacheAccessProbeArg &acc, bool miss) // operations or for writes that we are coaslescing. if (pkt->cmd.isSWPrefetch()) return; if (pkt->req->isCacheMaintenance()) return; + if (pkt->isCleanEviction()) return; if (pkt->isWrite() && cache.coalesce()) return; if (!pkt->req->hasPaddr()) { panic("Request must have a physical address");