256c256
< COPY_FLAGS = 0x0000000F,
---
> COPY_FLAGS = 0x0000001F,
274a275,278
> // The writeback/writeclean should be propagated further
> // downstream by the receiver
> WRITE_THROUGH = 0x00000010,
>
621a626,638
> /**
> * A writeback/writeclean cmd gets propagated further downstream
> * by the receiver when the flag is set.
> */
> void setWriteThrough()
> {
> assert(cmd.isWrite() &&
> (cmd.isEviction() || cmd == MemCmd::WriteClean));
> flags.set(WRITE_THROUGH);
> }
> void clearWriteThrough() { flags.clear(WRITE_THROUGH); }
> bool writeThrough() const { return flags.isSet(WRITE_THROUGH); }
>