diff options
-rw-r--r-- | src/mem/cache/cache.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/cache/cache.cc b/src/mem/cache/cache.cc index 84f81e4ab..3048973fb 100644 --- a/src/mem/cache/cache.cc +++ b/src/mem/cache/cache.cc @@ -1209,7 +1209,7 @@ Cache::functionalAccess(PacketPtr pkt, bool fromCpuSide) // continues towards the memory side if (fromCpuSide) { memSidePort->sendFunctional(pkt); - } else if (forwardSnoops && cpuSidePort->isSnooping()) { + } else if (cpuSidePort->isSnooping()) { // if it came from the memory side, it must be a snoop request // and we should only forward it if we are forwarding snoops cpuSidePort->sendFunctionalSnoop(pkt); |