diff options
Diffstat (limited to 'python/m5/config.py')
-rw-r--r-- | python/m5/config.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/python/m5/config.py b/python/m5/config.py index 42aee885b..74490f473 100644 --- a/python/m5/config.py +++ b/python/m5/config.py @@ -781,9 +781,8 @@ class Node(object): # before cpu0). Changing ordering can also influence timing # in the current memory system, as caches get added to a bus # in different orders which affects their priority in the - # case of simulataneous requests. We should uncomment the - # following line once we take care of that issue. - # self.children.sort(lambda x,y: cmp(x.name, y.name)) + # case of simulataneous requests. + self.children.sort(lambda x,y: cmp(x.name, y.name)) children = [ c.name for c in self.children if not c.paramcontext] print 'children =', ' '.join(children) |