[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20230103103400.275566-1-br015@umbiko.net>
Date: Tue, 3 Jan 2023 11:33:58 +0100
From: Andreas Ziegler <br015@...iko.net>
To: Daniel Bristot de Oliveira <bristot@...nel.org>,
Steven Rostedt <rostedt@...dmis.org>
Cc: linux-trace-devel@...r.kernel.org, linux-kernel@...r.kernel.org,
Andreas Ziegler <br015@...iko.net>
Subject: [PATCH 0/2 v2] rtla osnoise hist average calculation
Version 2 of the proposed patch, with changes split in two separate commits,
as suggested by Daniel Bristot de Oliveira
rtla osnoise hist always outputs '0' as average duration value. Example:
# rtla osnoise hist -P F:1 -c 0-1 -r 900000 -d 1M -b 1 -E 5000 -T 1
# RTLA osnoise histogram
# Time unit is microseconds (us)
# Duration: 0 00:01:00
...
count: 5629 1364
min: 1 1
avg: 0 0
max: 2955 56
This is due to sum_sample in osnoise_hist_update_multiple() being calculated
as the sum (duration), not as sum (duration * count).
Truncating of the average value in final output suggests too optimistic
results; display floating point value instead.
Andreas Ziegler (2):
tools/tracing/rtla: osnoise_hist: use total duration for average
calculation
tools/tracing/rtla: osnoise_hist: display average with two-digit
precision
tools/tracing/rtla/src/osnoise_hist.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
--
2.34.1
Powered by blists - more mailing lists