summaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
authorWilly Wolff <willy.mh.wolff.ml@gmail.com>2019-04-03 15:09:11 +0100
committerWilly Wolff <willy.mh.wolff.ml@gmail.com>2019-05-31 14:32:29 +0000
commitea088f5150d03d4481555ecbbfa2afba3a87468a (patch)
treebb212400bf1e4ea51b92769ada226d38a2e51038 /configs
parentef29f8068e9b9b19d765cad963ba7c476ee61207 (diff)
downloadgem5-ea088f5150d03d4481555ecbbfa2afba3a87468a.tar.xz
config, arm: memoryMode test
Commit 9a13acaa367769c38859342de9bc35aac59a6710 doesn't comply with the same behaviour. The conditional test the memory mode on the same cluster, while it should test the other cluster. Change-Id: If3a7863f0905e66a548001d8e74689f5dd07179c Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/17748 Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Nikos Nikoleris <nikos.nikoleris@arm.com> Reviewed-by: Jason Lowe-Power <jason@lowepower.com> Reviewed-by: Giacomo Travaglini <giacomo.travaglini@arm.com> Maintainer: Jason Lowe-Power <jason@lowepower.com>
Diffstat (limited to 'configs')
-rw-r--r--configs/example/arm/fs_bigLITTLE.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/example/arm/fs_bigLITTLE.py b/configs/example/arm/fs_bigLITTLE.py
index 678b038ea..539d1e784 100644
--- a/configs/example/arm/fs_bigLITTLE.py
+++ b/configs/example/arm/fs_bigLITTLE.py
@@ -242,7 +242,7 @@ def build(options):
# Figure out the memory mode
if options.big_cpus > 0 and options.little_cpus > 0 and \
- system.littleCluster.memoryMode() != system.littleCluster.memoryMode():
+ system.bigCluster.memoryMode() != system.littleCluster.memoryMode():
m5.util.panic("Memory mode missmatch among CPU clusters")