summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcelo Tosatti <mtosatti@redhat.com>2024-02-01 14:50:54 -0300
committerJohn Kacur <jkacur@redhat.com>2024-02-02 11:32:46 -0500
commit4aeacf722cee26a3f88ab7f631c9ab9ba6ecdb49 (patch)
tree4d3e39dc4cfd4d78bf715ea9d03409dc3a8e7a2b
parent251d082403b371098c8420c01d1b058b12a9cc78 (diff)
downloadrt-tests-4aeacf722cee26a3f88ab7f631c9ab9ba6ecdb49.tar.gz
rt-tests: oslat: convert to nanoseconds correctly
With buckets of size 1us, accounting for measurements in the [1ns, 999ns] range are done to the 2us bucket (while they should be accounted in the 1us bucket): 001 (us): 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 002 (us): 41916187 41937649 41938461 42029055 ... 003 (us): 969 985 958 972 964 986 970 961 973 ... Fix this by doing a plain cycles -> nanoseconds convertion: 001 (us): 43287555 43086678 43087427 43109974 ... 002 (us): 983 987 985 975 982 960 993 961 992 ... 003 (us): 9 6 7 13 9 22 3 21 3 3 8 8 10 11 3 55 Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com> Reported-by: Chuck Newman <chuck.newman@hpe.com> Signed-off-by: John Kacur <jkacur@redhat.com>
-rw-r--r--src/oslat/oslat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/oslat/oslat.c b/src/oslat/oslat.c
index e398f20..0863297 100644
--- a/src/oslat/oslat.c
+++ b/src/oslat/oslat.c
@@ -334,7 +334,7 @@ static void insert_bucket(struct thread *t, stamp_t value)
uint64_t extra;
double us;
- lat = (value * g.unit_per_us + t->counter_mhz - 1) / t->counter_mhz;
+ lat = (value * g.unit_per_us) / t->counter_mhz;
us = (double)lat / g.unit_per_us;
if (!g.preheat && g.trace_threshold && us >= g.trace_threshold) {
char *line = "%s: Trace threshold (%d us) triggered on cpu %d with %.*f us!\n";