89a90
> CleanEvict,
510a512
> void clearBlockCached() { flags.clear(BLOCK_CACHED); }
939a942,962
> * Is this request notification of a clean or dirty eviction from the cache.
> **/
> bool
> evictingBlock() const
> {
> return (cmd == MemCmd::Writeback ||
> cmd == MemCmd::CleanEvict);
> }
>
> /**
> * Does the request need to check for cached copies of the same block
> * in the memory hierarchy above.
> **/
> bool
> mustCheckAbove() const
> {
> return (cmd == MemCmd::HardPFReq ||
> evictingBlock());
> }
>
> /**