File tree Expand file tree Collapse file tree 8 files changed +10
-10
lines changed
tools/testing/selftests/rcutorture Expand file tree Collapse file tree 8 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
# SPDX-License-Identifier: GPL-2.0+
3
3
#
4
- # Analyze a given results directory for refperf performance measurements.
4
+ # Analyze a given results directory for refscale performance measurements.
5
5
#
6
- # Usage: kvm-recheck-refperf .sh resdir
6
+ # Usage: kvm-recheck-refscale .sh resdir
7
7
#
8
8
# Copyright (C) IBM Corporation, 2016
9
9
#
51
51
print configfile " results:";
52
52
newNR = asort(readertimes);
53
53
if (newNR <= 0) {
54
- print "No refperf records found???"
54
+ print "No refscale records found???"
55
55
exit;
56
56
}
57
57
medianidx = int(newNR / 2);
67
67
print "Minimum reader duration: " readertimes[1];
68
68
print "Median reader duration: " medianvalue;
69
69
print "Maximum reader duration: " readertimes[newNR];
70
- print "Computed from refperf printk output.";
70
+ print "Computed from refscale printk output.";
71
71
}'
Original file line number Diff line number Diff line change 180
180
shift
181
181
;;
182
182
--torture)
183
- checkarg --torture " (suite name)" " $# " " $2 " ' ^\(lock\|rcu\|rcuperf\|refperf \)$' ' ^--'
183
+ checkarg --torture " (suite name)" " $# " " $2 " ' ^\(lock\|rcu\|rcuperf\|refscale \)$' ' ^--'
184
184
TORTURE_SUITE=$2
185
185
shift
186
- if test " $TORTURE_SUITE " = rcuperf || test " $TORTURE_SUITE " = refperf
186
+ if test " $TORTURE_SUITE " = rcuperf || test " $TORTURE_SUITE " = refscale
187
187
then
188
- # If you really want jitter for refperf or
188
+ # If you really want jitter for refscale or
189
189
# rcuperf, specify it after specifying the rcuperf
190
- # or the refperf . (But why jitter in these cases?)
190
+ # or the refscale . (But why jitter in these cases?)
191
191
jitter=0
192
192
fi
193
193
;;
Original file line number Diff line number Diff line change 33
33
fi
34
34
cat /dev/null > $file .diags
35
35
36
- # Check for proper termination, except for rcuperf and refperf .
37
- if test " $TORTURE_SUITE " ! = rcuperf && test " $TORTURE_SUITE " ! = refperf
36
+ # Check for proper termination, except for rcuperf and refscale .
37
+ if test " $TORTURE_SUITE " ! = rcuperf && test " $TORTURE_SUITE " ! = refscale
38
38
then
39
39
# check for abject failure
40
40
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments