2 # SPDX-License-Identifier: GPL-2.0+
4 # Analyze a given results directory for rcuperf performance measurements.
6 # Usage: kvm-recheck-rcuperf.sh resdir
8 # Copyright (C) IBM Corporation, 2016
10 # Authors: Paul E. McKenney <paulmck@linux.ibm.com>
13 if test -d "$i" -a -r "$i"
17 echo Unreadable results directory
: $i
20 PATH
=`pwd`/tools
/testing
/selftests
/rcutorture
/bin
:$PATH; export PATH
23 if kvm-recheck-rcuperf-ftrace.sh
$i
25 # ftrace data was successfully analyzed, call it good!
29 configfile
=`echo $i | sed -e 's/^.*\///'`
31 sed -e 's/^\[[^]]*]//' < $i/console.log |
33 /-perf: .* gps: .* batches:/ {
38 /-perf: .*writer-duration/ {
39 gptimes[++n] = $5 / 1000.;
44 newNR = asort(gptimes);
46 print "No rcuperf records found???"
49 pct50 = int(newNR * 50 / 100);
52 pct90 = int(newNR * 90 / 100);
55 pct99 = int(newNR * 99 / 100);
58 div = 10 ** int(log(gptimes[pct90]) / log(10) + .5) / 100;
59 print "Histogram bucket size: " div;
60 last = gptimes[1] - 10;
62 for (i = 1; i <= newNR; i++) {
63 current = div * int(gptimes[i] / div);
64 if (last == current) {
75 print "Average grace-period duration: " sum / newNR " microseconds";
76 print "Minimum grace-period duration: " gptimes[1];
77 print "50th percentile grace-period duration: " gptimes[pct50];
78 print "90th percentile grace-period duration: " gptimes[pct90];
79 print "99th percentile grace-period duration: " gptimes[pct99];
80 print "Maximum grace-period duration: " gptimes[newNR];
81 print "Grace periods: " ngps + 0 " Batches: " nbatches + 0 " Ratio: " ngps / nbatches;
82 print "Computed from rcuperf printk output.";