diff options
author | Brad Beckmann <Brad.Beckmann@amd.com> | 2009-08-11 12:22:41 -0700 |
---|---|---|
committer | Brad Beckmann <Brad.Beckmann@amd.com> | 2009-08-11 12:22:41 -0700 |
commit | b89add1e3f0807219320b8f00f918876921a68ab (patch) | |
tree | d7594f387b55768e07e261b96ac7cd9aad0a1c2b /src/mem/ruby/network/simple/Switch.cc | |
parent | 1c3efb48ad6658bb9c92682ab8bac12fd69b8a9f (diff) | |
parent | b952eb19c18bffcd4519bac19f79979fab477ff6 (diff) | |
download | gem5-b89add1e3f0807219320b8f00f918876921a68ab.tar.xz |
merged Tushar's bug fix with public repository changes
Diffstat (limited to 'src/mem/ruby/network/simple/Switch.cc')
-rw-r--r-- | src/mem/ruby/network/simple/Switch.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/ruby/network/simple/Switch.cc b/src/mem/ruby/network/simple/Switch.cc index e3420ddae..87021471f 100644 --- a/src/mem/ruby/network/simple/Switch.cc +++ b/src/mem/ruby/network/simple/Switch.cc @@ -169,7 +169,7 @@ void Switch::printStats(ostream& out) const int sum = message_counts[type].sum(); if (sum != 0) { out << " outgoing_messages_switch_" << m_switch_id << "_link_" << link << "_" << type - << ": " << sum << " " << sum * MessageSizeType_to_int(type) + << ": " << sum << " " << sum * (RubySystem::getNetwork()->MessageSizeType_to_int(type)) << " " << message_counts[type] << " base_latency: " << throttle_ptr->getLatency() << endl; } } |