Skip to content

Commit 6efb063

Browse files
committed
refperf: Label experiment-number column "Runs"
The experiment-number column is currently labeled "Threads", which is misleading at best. This commit therefore relabels it as "Runs", and adjusts the scripts accordingly. Cc: Joel Fernandes (Google) <[email protected]> Signed-off-by: Paul E. McKenney <[email protected]>
1 parent 2db0bda commit 6efb063

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

kernel/rcu/refperf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ static int main_func(void *arg)
415415

416416
buf[0] = 0;
417417
strcat(buf, "\n");
418-
strcat(buf, "Threads\tTime(ns)\n");
418+
strcat(buf, "Runs\tTime(ns)\n");
419419

420420
for (exp = 0; exp < nruns; exp++) {
421421
if (errexit)

tools/testing/selftests/rcutorture/bin/kvm-recheck-refperf.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ configfile=`echo $i | sed -e 's/^.*\///'`
2424

2525
sed -e 's/^\[[^]]*]//' < $i/console.log | tr -d '\015' |
2626
awk -v configfile="$configfile" '
27-
/^[ ]*Threads Time\(ns\) *$/ {
27+
/^[ ]*Runs Time\(ns\) *$/ {
2828
if (dataphase + 0 == 0) {
2929
dataphase = 1;
3030
# print configfile, $0;

0 commit comments

Comments
 (0)