diff options
author | Kevin Lim <ktlim@umich.edu> | 2005-01-21 18:31:30 -0500 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2005-01-21 18:31:30 -0500 |
commit | e6b99b07684ca465d83a6d9858fe97a1d5a8177f (patch) | |
tree | eb77f23c2c71fd6b8128a945ca1282f2676ea8f0 /dev/ns_gige.cc | |
parent | 6ac7954242abf87252b2927c213e9e95bb0772ce (diff) | |
parent | fa7fa5a90909b79a97aee187aa1de52d96c9dde1 (diff) | |
download | gem5-e6b99b07684ca465d83a6d9858fe97a1d5a8177f.tar.xz |
Merge zizzer.eecs.umich.edu:/bk/m5
into zamp.eecs.umich.edu:/z/ktlim2/m5-patched/m5-new
--HG--
extra : convert_revision : e802c800a478c297d3aa780a9ea3c6701453d91d
Diffstat (limited to 'dev/ns_gige.cc')
-rw-r--r-- | dev/ns_gige.cc | 33 |
1 files changed, 32 insertions, 1 deletions
diff --git a/dev/ns_gige.cc b/dev/ns_gige.cc index e799c10d2..db1474d1c 100644 --- a/dev/ns_gige.cc +++ b/dev/ns_gige.cc @@ -244,7 +244,6 @@ NSGigE::regStats() .precision(0) ; - txBandwidth .name(name() + ".txBandwidth") .desc("Transmit Bandwidth (bits/s)") @@ -259,6 +258,34 @@ NSGigE::regStats() .prereq(rxBytes) ; + totBandwidth + .name(name() + ".totBandwidth") + .desc("Total Bandwidth (bits/s)") + .precision(0) + .prereq(totBytes) + ; + + totPackets + .name(name() + ".totPackets") + .desc("Total Packets") + .precision(0) + .prereq(totBytes) + ; + + totBytes + .name(name() + ".totBytes") + .desc("Total Bytes") + .precision(0) + .prereq(totBytes) + ; + + totPacketRate + .name(name() + ".totPPS") + .desc("Total Tranmission Rate (packets/s)") + .precision(0) + .prereq(totBytes) + ; + txPacketRate .name(name() + ".txPPS") .desc("Packet Tranmission Rate (packets/s)") @@ -449,6 +476,10 @@ NSGigE::regStats() txBandwidth = txBytes * Stats::constant(8) / simSeconds; rxBandwidth = rxBytes * Stats::constant(8) / simSeconds; + totBandwidth = txBandwidth + rxBandwidth; + totBytes = txBytes + rxBytes; + totPackets = txPackets + rxPackets; + txPacketRate = txPackets / simSeconds; rxPacketRate = rxPackets / simSeconds; } |