From a444a6f8d666f7922460dc0fe75877680fd23546 Mon Sep 17 00:00:00 2001 From: Andreas Hansson Date: Mon, 19 Mar 2012 06:34:02 -0400 Subject: scripts: Fix to ensure that port connection count is always set This patch ensures that the port connection count is set to zero in those cases when the port is not connected. --- src/python/m5/SimObject.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/python/m5/SimObject.py b/src/python/m5/SimObject.py index 9c6a32f41..a447d96db 100644 --- a/src/python/m5/SimObject.py +++ b/src/python/m5/SimObject.py @@ -993,9 +993,8 @@ class SimObject(object): port_names.sort() for port_name in port_names: port = self._port_refs.get(port_name, None) - if port != None: - setattr(cc_params, 'port_' + port_name + '_connection_count', - len(port)) + setattr(cc_params, 'port_' + port_name + '_connection_count', + len(port) if port != None else 0) self._ccParams = cc_params return self._ccParams -- cgit v1.2.3