kvm.sh 10.1 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
TORTURE_SUITE=rcu
45
resdir=""
46
configs=""
47
cpus=0
48
ds=`date +%Y.%m.%d-%H:%M:%S`
49
kversion=""
50

51 52
. functions.sh

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

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

174
CONFIGFRAG=${KVM}/configs/${TORTURE_SUITE}; export CONFIGFRAG
175 176 177 178 179 180
KVPATH=${CONFIGFRAG}/$kversion; export KVPATH

if test -z "$configs"
then
	configs="`cat $CONFIGFRAG/$kversion/CFLIST`"
fi
181 182 183 184

if test -z "$resdir"
then
	resdir=$KVM/res
185 186 187 188
fi

if test "$dryrun" = ""
then
189 190 191 192
	if ! test -e $resdir
	then
		mkdir -p "$resdir" || :
	fi
193 194
	mkdir $resdir/$ds

195
	# Be noisy only if running the script.
196 197
	echo Results directory: $resdir/$ds
	echo $scriptname $args
198

199 200
	touch $resdir/$ds/log
	echo $scriptname $args >> $resdir/$ds/log
201
	echo ${TORTURE_SUITE} > $resdir/$ds/TORTURE_SUITE
202 203 204 205 206 207 208

	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
209 210
fi

211
# Create a file of test-name/#cpus pairs, sorted by decreasing #cpus.
212
touch $T/cfgcpu
213 214
for CF in $configs
do
215
	if test -f "$CONFIGFRAG/$kversion/$CF"
216
	then
217 218 219 220
		echo $CF `configNR_CPUS.sh $CONFIGFRAG/$kversion/$CF` >> $T/cfgcpu
	else
		echo "The --configs file $CF does not exist, terminating."
		exit 1
221
	fi
222
done
223 224
sort -k2nr $T/cfgcpu > $T/cfgcpu.sort

225
# Use a greedy bin-packing algorithm, sorting the list accordingly.
226 227 228 229 230 231
awk < $T/cfgcpu.sort > $T/cfgcpu.pack -v ncpus=$cpus '
BEGIN {
	njobs = 0;
}

{
232
	# Read file of tests and corresponding required numbers of CPUs.
233 234 235 236 237 238 239 240 241
	cf[njobs] = $1;
	cpus[njobs] = $2;
	njobs++;
}

END {
	alldone = 0;
	batch = 0;
	nc = -1;
242 243 244 245 246 247

	# 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.
248 249 250
	while (nc != ncpus) {
		batch++;
		nc = ncpus;
251 252 253

		# Each pass through the following loop considers one
		# test for inclusion in the current batch.
254 255
		for (i = 0; i < njobs; i++) {
			if (done[i])
256
				continue; # Already part of a batch.
257
			if (nc >= cpus[i] || nc == ncpus) {
258 259

				# This test fits into the current batch.
260 261 262
				done[i] = batch;
				nc -= cpus[i];
				if (nc <= 0)
263
					break; # Too-big test in its own batch.
264 265 266
			}
		}
	}
267 268

	# Dump out the tests in batch order.
269 270 271 272 273 274
	for (b = 1; b <= batch; b++)
		for (i = 0; i < njobs; i++)
			if (done[i] == b)
				print cf[i], cpus[i];
}'

275
# Generate a script to execute the tests in appropriate batches.
276 277 278
cat << ___EOF___ > $T/script
TORTURE_SUITE="$TORTURE_SUITE"; export TORTURE_SUITE
___EOF___
279
awk < $T/cfgcpu.pack \
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
	-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++;
}

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

END {
	njobs = i;
	nc = ncpus;
	first = 0;
348 349

	# Each pass through the following loop considers one test.
350 351
	for (i = 0; i < njobs; i++) {
		if (ncpus == 0) {
352
			# Sequential test specified, each test its own batch.
353 354 355
			dump(i, i + 1);
			first = i;
		} else if (nc < cpus[i] && i != 0) {
356
			# Out of CPUs, dump out a batch.
357 358 359 360
			dump(first, i);
			first = i;
			nc = ncpus;
		}
361
		# Account for the CPUs needed by the current test.
362 363
		nc -= cpus[i];
	}
364
	# Dump the last batch.
365 366
	if (ncpus != 0)
		dump(first, i);
367
}' >> $T/script
368

369 370
if test "$dryrun" = script
then
371 372
	# Dump out the script, but define the environment variables that
	# it needs to run standalone.
373 374 375 376 377 378 379 380 381 382
	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"
383 384
	echo "mkdir -p "$resdir" || :"
	echo "mkdir $resdir/$ds"
385 386 387 388
	cat $T/script
	exit 0
elif test "$dryrun" = sched
then
389
	# Extract the test run schedule from the script.
390 391 392 393
	egrep 'start batch|Starting build\.' $T/script |
		sed -e 's/:.*$//' -e 's/^echo //'
	exit 0
else
394
	# Not a dryru, so run the script.
395 396
	sh $T/script
fi
397

398
# 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
399

400 401
echo
echo
402
echo " --- `date` Test summary:"
403
echo Results directory: $resdir/$ds
404
kvm-recheck.sh $resdir/$ds