mem-cache: Add setters to validate and secure block
[gem5.git] / src / mem / tport.cc
index fce4f6ca23ba91fe76d1052de11677c942efefbc..9f0f08814b92ed4961985743a2d56117cbfd5d06 100644 (file)
@@ -54,7 +54,7 @@ SimpleTimingPort::SimpleTimingPort(const std::string& _name,
 void
 SimpleTimingPort::recvFunctional(PacketPtr pkt)
 {
-    if (!respQueue.checkFunctional(pkt)) {
+    if (!respQueue.trySatisfyFunctional(pkt)) {
         // do an atomic access and throw away the returned latency
         recvAtomic(pkt);
     }