projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
82e2a35
)
Fix WriteReq/StoreCondReq setting in O3.
author
Steve Reinhardt
<stever@eecs.umich.edu>
Mon, 23 Jul 2007 15:18:51 +0000
(08:18 -0700)
committer
Steve Reinhardt
<stever@eecs.umich.edu>
Mon, 23 Jul 2007 15:18:51 +0000
(08:18 -0700)
--HG--
extra : convert_revision :
b41571535f3d1f78df3cb6e48c16de5c7549d87f
src/cpu/o3/lsq_unit_impl.hh
patch
|
blob
|
history
diff --git
a/src/cpu/o3/lsq_unit_impl.hh
b/src/cpu/o3/lsq_unit_impl.hh
index 5ae1cc0e446159aaab8b2dde420cd8cd31aaf952..8b2e82d8ea09b50ff612755d0746c840d55e2cf0 100644
(file)
--- a/
src/cpu/o3/lsq_unit_impl.hh
+++ b/
src/cpu/o3/lsq_unit_impl.hh
@@
-649,7
+649,7
@@
LSQUnit<Impl>::writebackStores()
MemCmd command =
req->isSwap() ? MemCmd::SwapReq :
- (req->isLocked() ? MemCmd::
WriteReq : MemCmd::StoreCond
Req);
+ (req->isLocked() ? MemCmd::
StoreCondReq : MemCmd::Write
Req);
PacketPtr data_pkt = new Packet(req, command,
Packet::Broadcast);
data_pkt->dataStatic(inst->memData);