summaryrefslogtreecommitdiff
path: root/src/mem/ruby/system/RubyPort.cc
diff options
context:
space:
mode:
authorJoel Hestness <hestness@cs.utexas.edu>2011-02-06 22:14:18 -0800
committerJoel Hestness <hestness@cs.utexas.edu>2011-02-06 22:14:18 -0800
commit16c1edebd0a5b75dffc9cf2a561fa19756660558 (patch)
tree6acb565c4450f9aa98035d2826ec3e74eeaa5b45 /src/mem/ruby/system/RubyPort.cc
parent9782ca5defac34d8e6acfb8304ed2f35908f7a72 (diff)
downloadgem5-16c1edebd0a5b75dffc9cf2a561fa19756660558.tar.xz
Ruby: Update the Ruby request type names for LL/SC
Diffstat (limited to 'src/mem/ruby/system/RubyPort.cc')
-rw-r--r--src/mem/ruby/system/RubyPort.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem/ruby/system/RubyPort.cc b/src/mem/ruby/system/RubyPort.cc
index b3225cdca..7dbc22e19 100644
--- a/src/mem/ruby/system/RubyPort.cc
+++ b/src/mem/ruby/system/RubyPort.cc
@@ -195,11 +195,11 @@ RubyPort::M5Port::recvTiming(PacketPtr pkt)
if (pkt->isLLSC()) {
if (pkt->isWrite()) {
DPRINTF(MemoryAccess, "Issuing SC\n");
- type = RubyRequestType_Locked_Write;
+ type = RubyRequestType_Store_Conditional;
} else {
DPRINTF(MemoryAccess, "Issuing LL\n");
assert(pkt->isRead());
- type = RubyRequestType_Locked_Read;
+ type = RubyRequestType_Load_Linked;
}
} else {
if (pkt->isRead()) {