kvm.sh 9.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#!/bin/bash
#
# Run a series of 14 tests under KVM.  These are not particularly
# well-selected or well-tuned, but are the current set.  Run from the
# top level of the source tree.
#
# Edit the definitions below to set the locations of the various directories,
# as well as the test duration.
#
# Usage: sh kvm.sh [ options ]
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
23 24
# along with this program; if not, you can access it online at
# http://www.gnu.org/licenses/gpl-2.0.html.
25 26 27 28 29 30
#
# Copyright (C) IBM Corporation, 2011
#
# Authors: Paul E. McKenney <paulmck@linux.vnet.ibm.com>

scriptname=$0
31
args="$*"
32

33 34 35 36
T=/tmp/kvm.sh.$$
trap 'rm -rf $T' 0
mkdir $T

37
dur=30
38
dryrun=""
39
KVM="`pwd`/tools/testing/selftests/rcutorture"; export KVM
40
PATH=${KVM}/bin:$PATH; export PATH
41 42
builddir="${KVM}/b1"
RCU_INITRD="$KVM/initrd"; export RCU_INITRD
43
RCU_KMAKE_ARG=""; export RCU_KMAKE_ARG
44
resdir=""
45
configs=""
46
cpus=0
47
ds=`date +%Y.%m.%d-%H:%M:%S`
48
kversion=""
49

50 51
. functions.sh

52 53
usage () {
	echo "Usage: $scriptname optional arguments:"
54
	echo "       --bootargs kernel-boot-arguments"
55
	echo "       --builddir absolute-pathname"
56
	echo "       --buildonly"
57
	echo "       --configs \"config-file list\""
58
	echo "       --cpus N"
59
	echo "       --datestamp string"
60
	echo "       --dryrun sched|script"
61
	echo "       --duration minutes"
62
	echo "       --interactive"
63
	echo "       --kmake-arg kernel-make-arguments"
64
	echo "       --kversion vN.NN"
65
	echo "       --mac nn:nn:nn:nn:nn:nn"
66
	echo "       --no-initrd"
67
	echo "       --qemu-args qemu-system-..."
68
	echo "       --qemu-cmd qemu-system-..."
69 70 71 72 73 74 75 76
	echo "       --results absolute-pathname"
	echo "       --relbuilddir relative-pathname"
	exit 1
}

while test $# -gt 0
do
	case "$1" in
77 78 79 80 81
	--bootargs)
		checkarg --bootargs "(list of kernel boot arguments)" "$#" "$2" '.*' '^--'
		RCU_BOOTARGS="$2"
		shift
		;;
82
	--builddir)
83
		checkarg --builddir "(absolute pathname)" "$#" "$2" '^/' '^error'
84 85 86 87
		builddir=$2
		gotbuilddir=1
		shift
		;;
88 89 90
	--buildonly)
		RCU_BUILDONLY=1; export RCU_BUILDONLY
		;;
91 92 93 94 95
	--configs)
		checkarg --configs "(list of config files)" "$#" "$2" '^[^/]*$' '^--'
		configs="$2"
		shift
		;;
96 97 98 99 100
	--cpus)
		checkarg --cpus "(number)" "$#" "$2" '^[0-9]*$' '^--'
		cpus=$2
		shift
		;;
101 102 103 104 105
	--datestamp)
		checkarg --datestamp "(relative pathname)" "$#" "$2" '^[^/]*$' '^--'
		ds=$2
		shift
		;;
106 107 108 109 110
	--dryrun)
		checkarg --dryrun "sched|script" $# "$2" 'sched\|script' '^--'
		dryrun=$2
		shift
		;;
111
	--duration)
112
		checkarg --duration "(minutes)" $# "$2" '^[0-9]*$' '^error'
113 114 115
		dur=$2
		shift
		;;
116 117 118
	--interactive)
		RCU_QEMU_INTERACTIVE=1; export RCU_QEMU_INTERACTIVE
		;;
119 120 121 122 123
	--kmake-arg)
		checkarg --kmake-arg "(kernel make arguments)" $# "$2" '.*' '^error$'
		RCU_KMAKE_ARG="$2"; export RCU_KMAKE_ARG
		shift
		;;
124
	--kversion)
125
		checkarg --kversion "(kernel version)" $# "$2" '^v[0-9.]*$' '^error'
126 127 128
		kversion=$2
		shift
		;;
129 130 131 132 133
	--mac)
		checkarg --mac "(MAC address)" $# "$2" '^\([0-9a-fA-F]\{2\}:\)\{5\}[0-9a-fA-F]\{2\}$' error
		RCU_QEMU_MAC=$2; export RCU_QEMU_MAC
		shift
		;;
134 135 136
	--no-initrd)
		RCU_INITRD=""; export RCU_INITRD
		;;
137 138 139 140 141
	--qemu-args)
		checkarg --qemu-args "-qemu args" $# "$2" '^-' '^error'
		RCU_QEMU_ARG="$2"
		shift
		;;
142 143 144 145 146
	--qemu-cmd)
		checkarg --qemu-cmd "(qemu-system-...)" $# "$2" 'qemu-system-' '^--'
		RCU_QEMU_CMD="$2"; export RCU_QEMU_CMD
		shift
		;;
147 148 149 150 151 152 153 154
	--relbuilddir)
		checkarg --relbuilddir "(relative pathname)" "$#" "$2" '^[^/]*$' '^--'
		relbuilddir=$2
		gotrelbuilddir=1
		builddir=${KVM}/${relbuilddir}
		shift
		;;
	--results)
155
		checkarg --results "(absolute pathname)" "$#" "$2" '^/' '^error'
156 157 158 159
		resdir=$2
		shift
		;;
	*)
160
		echo Unknown argument $1
161 162 163 164 165 166 167
		usage
		;;
	esac
	shift
done

CONFIGFRAG=${KVM}/configs; export CONFIGFRAG
168 169 170 171 172 173
KVPATH=${CONFIGFRAG}/$kversion; export KVPATH

if test -z "$configs"
then
	configs="`cat $CONFIGFRAG/$kversion/CFLIST`"
fi
174 175 176 177

if test -z "$resdir"
then
	resdir=$KVM/res
178 179 180 181
fi

if test "$dryrun" = ""
then
182 183 184 185
	if ! test -e $resdir
	then
		mkdir -p "$resdir" || :
	fi
186 187
	mkdir $resdir/$ds

188
	# Be noisy only if running the script.
189 190
	echo Results directory: $resdir/$ds
	echo $scriptname $args
191

192 193 194 195 196 197 198 199 200
	touch $resdir/$ds/log
	echo $scriptname $args >> $resdir/$ds/log

	pwd > $resdir/$ds/testid.txt
	if test -d .git
	then
		git status >> $resdir/$ds/testid.txt
		git rev-parse HEAD >> $resdir/$ds/testid.txt
	fi
201 202
fi

203
# Create a file of test-name/#cpus pairs, sorted by decreasing #cpus.
204
touch $T/cfgcpu
205 206
for CF in $configs
do
207
	if test -f "$CONFIGFRAG/$kversion/$CF"
208
	then
209 210 211 212
		echo $CF `configNR_CPUS.sh $CONFIGFRAG/$kversion/$CF` >> $T/cfgcpu
	else
		echo "The --configs file $CF does not exist, terminating."
		exit 1
213
	fi
214
done
215 216
sort -k2nr $T/cfgcpu > $T/cfgcpu.sort

217
# Use a greedy bin-packing algorithm, sorting the list accordingly.
218 219 220 221 222 223
awk < $T/cfgcpu.sort > $T/cfgcpu.pack -v ncpus=$cpus '
BEGIN {
	njobs = 0;
}

{
224
	# Read file of tests and corresponding required numbers of CPUs.
225 226 227 228 229 230 231 232 233
	cf[njobs] = $1;
	cpus[njobs] = $2;
	njobs++;
}

END {
	alldone = 0;
	batch = 0;
	nc = -1;
234 235 236 237 238 239

	# Each pass through the following loop creates on test batch
	# that can be executed concurrently given ncpus.  Note that a
	# given test that requires more than the available CPUs will run in
	# their own batch.  Such tests just have to make do with what
	# is available.
240 241 242
	while (nc != ncpus) {
		batch++;
		nc = ncpus;
243 244 245

		# Each pass through the following loop considers one
		# test for inclusion in the current batch.
246 247
		for (i = 0; i < njobs; i++) {
			if (done[i])
248
				continue; # Already part of a batch.
249
			if (nc >= cpus[i] || nc == ncpus) {
250 251

				# This test fits into the current batch.
252 253 254
				done[i] = batch;
				nc -= cpus[i];
				if (nc <= 0)
255
					break; # Too-big test in its own batch.
256 257 258
			}
		}
	}
259 260

	# Dump out the tests in batch order.
261 262 263 264 265 266
	for (b = 1; b <= batch; b++)
		for (i = 0; i < njobs; i++)
			if (done[i] == b)
				print cf[i], cpus[i];
}'

267
# Generate a script to execute the tests in appropriate batches.
268
awk < $T/cfgcpu.pack \
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
	-v CONFIGDIR="$CONFIGFRAG/$kversion/" \
	-v KVM="$KVM" \
	-v ncpus=$cpus \
	-v rd=$resdir/$ds/ \
	-v dur=$dur \
	-v RCU_QEMU_ARG=$RCU_QEMU_ARG \
	-v RCU_BOOTARGS=$RCU_BOOTARGS \
'BEGIN {
	i = 0;
}

{
	cf[i] = $1;
	cpus[i] = $2;
	i++;
}

286
# Dump out the scripting required to run one test batch.
287 288
function dump(first, pastlast)
{
289
	print "echo ----Start batch: `date`"
290 291 292
	jn=1
	for (j = first; j < pastlast; j++) {
		builddir=KVM "/b" jn
293
		cpusr[jn] = cpus[j];
294
		if (cfrep[cf[j]] == "") {
295
			cfr[jn] = cf[j];
296 297 298
			cfrep[cf[j]] = 1;
		} else {
			cfrep[cf[j]]++;
299
			cfr[jn] = cf[j] "." cfrep[cf[j]];
300
		}
301 302 303 304
		if (cpusr[jn] > ncpus && ncpus != 0)
			ovf = "(!)";
		else
			ovf = "";
305
		print "echo ", cfr[jn], cpusr[jn] ovf ": Starting build. `date`";
306 307 308 309
		print "rm -f " builddir ".*";
		print "touch " builddir ".wait";
		print "mkdir " builddir " > /dev/null 2>&1 || :";
		print "mkdir " rd cfr[jn] " || :";
310
		print "kvm-test-1-run.sh " CONFIGDIR cf[j], builddir, rd cfr[jn], dur " \"" RCU_QEMU_ARG "\" \"" RCU_BOOTARGS "\" > " builddir ".out 2>&1 &"
311
		print "echo ", cfr[jn], cpusr[jn] ovf ": Waiting for build to complete. `date`"
312 313 314 315
		print "while test -f " builddir ".wait"
		print "do"
		print "\tsleep 1"
		print "done"
316
		print "echo ", cfr[jn], cpusr[jn] ovf ": Build complete. `date`"
317 318 319 320 321
		jn++;
	}
	for (j = 1; j < jn; j++) {
		builddir=KVM "/b" j
		print "rm -f " builddir ".ready"
322
		print "echo ----", cfr[j], cpusr[j] ovf ": Starting kernel. `date`"
323 324
	}
	print "wait"
325
	print "echo ---- All kernel runs complete. `date`"
326 327
	for (j = 1; j < jn; j++) {
		builddir=KVM "/b" j
328
		print "echo ----", cfr[j], cpusr[j] ovf ": Build/run results:"
329 330 331 332 333 334 335 336
		print "cat " builddir ".out"
	}
}

END {
	njobs = i;
	nc = ncpus;
	first = 0;
337 338

	# Each pass through the following loop considers one test.
339 340
	for (i = 0; i < njobs; i++) {
		if (ncpus == 0) {
341
			# Sequential test specified, each test its own batch.
342 343 344
			dump(i, i + 1);
			first = i;
		} else if (nc < cpus[i] && i != 0) {
345
			# Out of CPUs, dump out a batch.
346 347 348 349
			dump(first, i);
			first = i;
			nc = ncpus;
		}
350
		# Account for the CPUs needed by the current test.
351 352
		nc -= cpus[i];
	}
353
	# Dump the last batch.
354 355 356 357
	if (ncpus != 0)
		dump(first, i);
}' > $T/script

358 359
if test "$dryrun" = script
then
360 361
	# Dump out the script, but define the environment variables that
	# it needs to run standalone.
362 363 364 365 366 367 368 369 370 371
	echo CONFIGFRAG="$CONFIGFRAG; export CONFIGFRAG"
	echo KVM="$KVM; export KVM"
	echo KVPATH="$KVPATH; export KVPATH"
	echo PATH="$PATH; export PATH"
	echo RCU_BUILDONLY="$RCU_BUILDONLY; export RCU_BUILDONLY"
	echo RCU_INITRD="$RCU_INITRD; export RCU_INITRD"
	echo RCU_KMAKE_ARG="$RCU_KMAKE_ARG; export RCU_KMAKE_ARG"
	echo RCU_QEMU_CMD="$RCU_QEMU_CMD; export RCU_QEMU_CMD"
	echo RCU_QEMU_INTERACTIVE="$RCU_QEMU_INTERACTIVE; export RCU_QEMU_INTERACTIVE"
	echo RCU_QEMU_MAC="$RCU_QEMU_MAC; export RCU_QEMU_MAC"
372 373
	echo "mkdir -p "$resdir" || :"
	echo "mkdir $resdir/$ds"
374 375 376 377
	cat $T/script
	exit 0
elif test "$dryrun" = sched
then
378
	# Extract the test run schedule from the script.
379 380 381 382
	egrep 'start batch|Starting build\.' $T/script |
		sed -e 's/:.*$//' -e 's/^echo //'
	exit 0
else
383
	# Not a dryru, so run the script.
384 385
	sh $T/script
fi
386

387
# Tracing: trace_event=rcu:rcu_grace_period,rcu:rcu_future_grace_period,rcu:rcu_grace_period_init,rcu:rcu_nocb_wake,rcu:rcu_preempt_task,rcu:rcu_unlock_preempted_task,rcu:rcu_quiescent_state_report,rcu:rcu_fqs,rcu:rcu_callback,rcu:rcu_kfree_callback,rcu:rcu_batch_start,rcu:rcu_invoke_callback,rcu:rcu_invoke_kfree_callback,rcu:rcu_batch_end,rcu:rcu_torture_read,rcu:rcu_barrier
388

389 390
echo
echo
391
echo " --- `date` Test summary:"
392
echo Results directory: $resdir/$ds
393
kvm-recheck.sh $resdir/$ds