From 1c2d5f5e64387527efe495a59f6946e7b539a543 Mon Sep 17 00:00:00 2001 From: Steve Reinhardt Date: Sun, 22 Jul 2007 08:09:24 -0700 Subject: Replace DeferredSnoop flag with LowerMSHRPending flag. Turns out DeferredSnoop isn't quite the right bit of info we needed... see new comment in cache_impl.hh. --HG-- extra : convert_revision : a38de8c1677a37acafb743b7074ef88b21d3b7be --- src/mem/packet.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/mem/packet.hh') diff --git a/src/mem/packet.hh b/src/mem/packet.hh index 8063c7ae7..779ea49a2 100644 --- a/src/mem/packet.hh +++ b/src/mem/packet.hh @@ -257,7 +257,7 @@ class Packet : public FastAlloc Shared, // Special control flags ExpressSnoop, - DeferredSnoop, + LowerMSHRPending, // not yet in service NUM_PACKET_FLAGS }; @@ -323,8 +323,8 @@ class Packet : public FastAlloc // Special control flags void setExpressSnoop() { flags[ExpressSnoop] = true; } bool isExpressSnoop() { return flags[ExpressSnoop]; } - void setDeferredSnoop() { flags[DeferredSnoop] = true; } - bool isDeferredSnoop() { return flags[DeferredSnoop]; } + void setLowerMSHRPending() { flags[LowerMSHRPending] = true; } + bool lowerMSHRPending() { return flags[LowerMSHRPending]; } // Network error conditions... encapsulate them as methods since // their encoding keeps changing (from result field to command -- cgit v1.2.3