diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2007-02-12 18:40:08 -0500 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2007-02-12 18:40:08 -0500 |
commit | f72a9993931c7b986df771878e22cada0028955f (patch) | |
tree | 90d866e30806665010affd0ae134ebbad5c98d92 /src/cpu/ozone | |
parent | 49a9378718587bf120495aaf3087fcd2c6b87f9e (diff) | |
download | gem5-f72a9993931c7b986df771878e22cada0028955f.tar.xz |
some forgotten commits
--HG--
extra : convert_revision : 213440066c700ed5891a6d4568928b7f3f2fe750
Diffstat (limited to 'src/cpu/ozone')
-rw-r--r-- | src/cpu/ozone/lw_lsq_impl.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cpu/ozone/lw_lsq_impl.hh b/src/cpu/ozone/lw_lsq_impl.hh index ee1968626..f26b06453 100644 --- a/src/cpu/ozone/lw_lsq_impl.hh +++ b/src/cpu/ozone/lw_lsq_impl.hh @@ -605,12 +605,12 @@ OzoneLWLSQ<Impl>::writebackStores() // @todo: Remove this SC hack once the memory system handles it. if (req->isLocked()) { if (req->isUncacheable()) { - req->setScResult(2); + req->setExtraData(2); } else { if (cpu->lockFlag) { - req->setScResult(1); + req->setExtraData(1); } else { - req->setScResult(0); + req->setExtraData(0); // Hack: Instantly complete this store. completeDataAccess(data_pkt); --sq_it; |