1079c1079
< req->setFlags(Request::UNCACHEABLE | Request::STRICT_ORDER);
---
> req->setFlags(Request::UNCACHEABLE);
1080a1081,1086
> // Require requests to be ordered if the request goes to
> // strongly ordered or device memory (i.e., anything other
> // than normal memory requires strict order).
> if (te->mtype != TlbEntry::MemoryType::Normal)
> req->setFlags(Request::STRICT_ORDER);
>