Script: Fix the scripts that use the num_cpus cache parameter
authorAndreas Hansson <andreas.hansson@arm.com>
Tue, 14 Feb 2012 17:11:18 +0000 (12:11 -0500)
committerAndreas Hansson <andreas.hansson@arm.com>
Tue, 14 Feb 2012 17:11:18 +0000 (12:11 -0500)
This patch merely removes the use of the num_cpus cache parameter
which no longer exists after the introduction of the masterIds. The
affected scripts fail when trying to set the parameter. Note that this
patch does not update the regression stats.

configs/common/CacheConfig.py
tests/configs/realview-simple-atomic-dual.py

index 720eb9f565ed4c1b6dd6743355a4f0916a59e2f9..b9192fcbf96e7a0f5336aa2f3a9007d08054f5e2 100644 (file)
@@ -46,7 +46,6 @@ def config_cache(options, system):
         system.tol2bus = Bus()
         system.l2.cpu_side = system.tol2bus.master
         system.l2.mem_side = system.membus.slave
-        system.l2.num_cpus = options.num_cpus
 
     for i in xrange(options.num_cpus):
         if options.caches:
index 985f2016bc21e6dbce156555b8697c43b4eedfa6..20bf89bede3bbb0dba8e87044e0644bf2b1777f6 100644 (file)
@@ -83,7 +83,6 @@ system.toL2Bus = Bus()
 system.l2c = L2(size='4MB', assoc=8)
 system.l2c.cpu_side = system.toL2Bus.master
 system.l2c.mem_side = system.membus.slave
-system.l2c.num_cpus = 2
 
 #connect up the cpu and l1s
 for c in cpus: