diff options
Diffstat (limited to 'src/arch/power')
-rw-r--r-- | src/arch/power/tlb.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/power/tlb.cc b/src/arch/power/tlb.cc index 950483893..458ed29bf 100644 --- a/src/arch/power/tlb.cc +++ b/src/arch/power/tlb.cc @@ -150,7 +150,7 @@ TLB::checkCacheability(RequestPtr &req) if ((req->getVaddr() & VAddrUncacheable) == VAddrUncacheable) { // mark request as uncacheable - req->setFlags(Request::UNCACHEABLE); + req->setFlags(Request::UNCACHEABLE | Request::STRICT_ORDER); } return NoFault; } |