treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / tools / testing / selftests / rcutorture / bin / kvm-recheck-rcuperf.sh
blobdb0375a57f281b91f9b53525d22e1303f489d79a
1 #!/bin/bash
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>
12 i="$1"
13 if test -d "$i" -a -r "$i"
14 then
16 else
17 echo Unreadable results directory: $i
18 exit 1
20 PATH=`pwd`/tools/testing/selftests/rcutorture/bin:$PATH; export PATH
21 . functions.sh
23 if kvm-recheck-rcuperf-ftrace.sh $i
24 then
25 # ftrace data was successfully analyzed, call it good!
26 exit 0
29 configfile=`echo $i | sed -e 's/^.*\///'`
31 sed -e 's/^\[[^]]*]//' < $i/console.log |
32 awk '
33 /-perf: .* gps: .* batches:/ {
34 ngps = $9;
35 nbatches = $11;
38 /-perf: .*writer-duration/ {
39 gptimes[++n] = $5 / 1000.;
40 sum += $5 / 1000.;
43 END {
44 newNR = asort(gptimes);
45 if (newNR <= 0) {
46 print "No rcuperf records found???"
47 exit;
49 pct50 = int(newNR * 50 / 100);
50 if (pct50 < 1)
51 pct50 = 1;
52 pct90 = int(newNR * 90 / 100);
53 if (pct90 < 1)
54 pct90 = 1;
55 pct99 = int(newNR * 99 / 100);
56 if (pct99 < 1)
57 pct99 = 1;
58 div = 10 ** int(log(gptimes[pct90]) / log(10) + .5) / 100;
59 print "Histogram bucket size: " div;
60 last = gptimes[1] - 10;
61 count = 0;
62 for (i = 1; i <= newNR; i++) {
63 current = div * int(gptimes[i] / div);
64 if (last == current) {
65 count++;
66 } else {
67 if (count > 0)
68 print last, count;
69 count = 1;
70 last = current;
73 if (count > 0)
74 print last, count;
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.";