On Thu, 1 Feb 2024, Marcelo Tosatti wrote: > > Usage of Mhz, in oslat, is incorrect: > > From https://www.nist.gov/pml/owm/writing-si-metric-system-units#:~:text=NOT%20250%20mms.-,Capitalization,the%20beginning%20of%20the%20sentence: > > "When the unit is derived from the name of a person, the symbol or the first letter of the symbol is an uppercase letter (W for the unit "watt" or Pa for the unit "pascal")." > > Signed-off-by: Marcelo Tosatti <mtosatti@xxxxxxxxxx> > Reported-by: Chuck Newman <chuck.newman@xxxxxxx> > > diff --git a/src/oslat/oslat.c b/src/oslat/oslat.c > index 4bdca64..e398f20 100644 > --- a/src/oslat/oslat.c > +++ b/src/oslat/oslat.c > @@ -501,7 +501,7 @@ static void write_summary(struct thread *t) > calculate(t); > > putfield("Core", t[i].core_i, "d", ""); > - putfield("Counter Freq", t[i].counter_mhz, "u", " (Mhz)"); > + putfield("Counter Freq", t[i].counter_mhz, "u", " (MHz)"); > > for (j = 0; j < g.bucket_size; j++) { > if (j < g.bucket_size-1 && g.output_omit_zero_buckets) { > > > Signed-off-by: John Kacur <jkacur@xxxxxxxxxx>