1023a1024,1033
>
> // If the request does not need a writable there are two cases
> // where we need to ensure the response will not fetch the
> // block in dirty state:
> // * this cache is read only and it does not perform
> // writebacks,
> // * this cache is mostly exclusive and will not fill (since
> // it does not fill it will have to writeback the dirty data
> // immediately which generates uneccesary writebacks).
> bool force_clean_rsp = isReadOnly || clusivity == Enums::mostly_excl;
1025c1035
< (isReadOnly ? MemCmd::ReadCleanReq : MemCmd::ReadSharedReq);
---
> (force_clean_rsp ? MemCmd::ReadCleanReq : MemCmd::ReadSharedReq);