diff options
Diffstat (limited to 'src/mem/bridge.hh')
-rw-r--r-- | src/mem/bridge.hh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mem/bridge.hh b/src/mem/bridge.hh index 6aebe5204..ad3585997 100644 --- a/src/mem/bridge.hh +++ b/src/mem/bridge.hh @@ -136,6 +136,12 @@ class Bridge : public MemObject unsigned int respQueueLimit; /** + * Upstream caches need this packet until true is returned, so + * hold it for deletion until a subsequent call + */ + std::unique_ptr<Packet> pendingDelete; + + /** * Is this side blocked from accepting new response packets. * * @return true if the reserved space has reached the set limit |