mem, stats: fix typos in CommMonitor and Stats

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/
This commit is contained in:
Pierre-Yves Péneau 2017-02-15 14:59:06 -06:00
parent a06a46f5d1
commit a854373d59
3 changed files with 4 additions and 4 deletions

View 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 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()); } void add(DistBase &d) { data()->add(d.data()); }

View file

@ -490,7 +490,7 @@ CommMonitor::regStats()
stats.writeTransHist stats.writeTransHist
.init(params()->transaction_bins) .init(params()->transaction_bins)
.name(name() + ".writeTransHist") .name(name() + ".writeTransHist")
.desc("Histogram of read transactions per sample period") .desc("Histogram of write transactions per sample period")
.flags(stats.disableTransactionHists ? nozero : pdf); .flags(stats.disableTransactionHists ? nozero : pdf);
stats.readAddrDist stats.readAddrDist

View file

@ -271,7 +271,7 @@ class CommMonitor : public MemObject
struct MonitorStats struct MonitorStats
{ {
/** Disable flag for burst length historgrams **/ /** Disable flag for burst length histograms **/
bool disableBurstLengthHists; bool disableBurstLengthHists;
/** Histogram of read burst lengths */ /** Histogram of read burst lengths */