diff options
Diffstat (limited to 'src/dev/dma_device.cc')
-rw-r--r-- | src/dev/dma_device.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/dev/dma_device.cc b/src/dev/dma_device.cc index f6e476a8e..24d833b54 100644 --- a/src/dev/dma_device.cc +++ b/src/dev/dma_device.cc @@ -104,8 +104,9 @@ DmaPort::handleResp(PacketPtr pkt, Tick delay) bool DmaPort::recvTimingResp(PacketPtr pkt) { - // We shouldn't ever get a block in ownership state - assert(!(pkt->memInhibitAsserted() && !pkt->sharedAsserted())); + // We shouldn't ever get a cacheable block in ownership state + assert(pkt->req->isUncacheable() || + !(pkt->memInhibitAsserted() && !pkt->sharedAsserted())); handleResp(pkt); |