mem, stats: fix typos in CommMonitor and Stats
authorPierre-Yves Péneau <pierre-yves.peneau@lirmm.fr>
Wed, 15 Feb 2017 20:59:06 +0000 (14:59 -0600)
committerPierre-Yves Péneau <pierre-yves.peneau@lirmm.fr>
Wed, 15 Feb 2017 20:59:06 +0000 (14:59 -0600)
Signed-off-by: Pierre-Yves Péneau <pierre-yves.peneau@lirmm.fr>
Reviewed-by: Tony Gutierrez <anthony.gutierrez@amd.com>
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Signed-off-by: Jason Lowe-Power <jason@lowepower.com>
Reviewed at http://reviews.gem5.org/r/3802/

src/base/statistics.hh
src/mem/comm_monitor.cc
src/mem/comm_monitor.hh

index f8e651b979298a8f9dddf22683f1bfdde17148ab..cdb5a0b73f9e847c659e2f95921d7c56021e5634 100644 (file)
@@ -1359,7 +1359,7 @@ struct DistParams : public StorageParams
 };
 
 /**
- * Templatized storage and interface for a distrbution stat.
+ * Templatized storage and interface for a distribution stat.
  */
 class DistStor
 {
@@ -1894,7 +1894,7 @@ class DistBase : public DataWrap<Derived, DistInfoProxy>
     }
 
     /**
-     *  Add the argument distribution to the this distibution.
+     *  Add the argument distribution to the this distribution.
      */
     void add(DistBase &d) { data()->add(d.data()); }
 
index 303b1bfa6c270bc2c36a17e719ac344fa5421d98..d5800e5ddb7df09d8551443d1255b030a562353b 100644 (file)
@@ -490,7 +490,7 @@ CommMonitor::regStats()
     stats.writeTransHist
         .init(params()->transaction_bins)
         .name(name() + ".writeTransHist")
-        .desc("Histogram of read transactions per sample period")
+        .desc("Histogram of write transactions per sample period")
         .flags(stats.disableTransactionHists ? nozero : pdf);
 
     stats.readAddrDist
index 28c8ec7a19399a7e24ce448f125275b2780078a3..d46f75fe073374369de8409dfc30ece76e5c3b56 100644 (file)
@@ -271,7 +271,7 @@ class CommMonitor : public MemObject
     struct MonitorStats
     {
 
-        /** Disable flag for burst length historgrams **/
+        /** Disable flag for burst length histograms **/
         bool disableBurstLengthHists;
 
         /** Histogram of read burst lengths */