diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2007-06-23 13:24:33 -0700 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2007-06-23 13:24:33 -0700 |
commit | 57ff2604e59647c6afe988767186f13c80c1aa16 (patch) | |
tree | d1d91122e51d7971bba139c0b68d24d18853cd8d /src/mem | |
parent | ed1db23b414a372a012d406d5a684775f00baa11 (diff) | |
download | gem5-57ff2604e59647c6afe988767186f13c80c1aa16.tar.xz |
Minor fix plus new assertion to catch similar bugs.
src/cpu/memtest/memtest.cc:
Need to set packet source field so that response from cache
doesn't run into assertion failure when copying source to dest.
src/mem/packet.hh:
Copy source field when copying packets.
Assert that source is valid before copying it to dest
when turning packets around.
--HG--
extra : convert_revision : 09e3cfda424aa89fe170e21e955b295746832bf8
Diffstat (limited to 'src/mem')
-rw-r--r-- | src/mem/packet.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem/packet.hh b/src/mem/packet.hh index 80da045ef..fc1c283ed 100644 --- a/src/mem/packet.hh +++ b/src/mem/packet.hh @@ -384,7 +384,7 @@ class Packet : public FastAlloc Packet(Packet *origPkt) : data(NULL), staticData(false), dynamicData(false), arrayData(false), addr(origPkt->addr), size(origPkt->size), - dest(origPkt->dest), + src(origPkt->src), dest(origPkt->dest), addrSizeValid(origPkt->addrSizeValid), srcValid(origPkt->srcValid), snoopFlags(origPkt->snoopFlags), time(curTick), @@ -440,7 +440,7 @@ class Packet : public FastAlloc */ void convertAtomicToTimingResponse() { - dest = src; + dest = getSrc(); srcValid = false; } |