kvm.sh 10.4 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
TORTURE_INITRD="$KVM/initrd"; export TORTURE_INITRD
42
RCU_KMAKE_ARG=""; export RCU_KMAKE_ARG
43
TORTURE_SUITE=rcu
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 "       --buildonly"
56
	echo "       --configs \"config-file list\""
57
	echo "       --cpus N"
58
	echo "       --datestamp string"
59
	echo "       --dryrun sched|script"
60
	echo "       --duration minutes"
61
	echo "       --interactive"
62
	echo "       --kmake-arg kernel-make-arguments"
63
	echo "       --kversion vN.NN"
64
	echo "       --mac nn:nn:nn:nn:nn:nn"
65
	echo "       --no-initrd"
66
	echo "       --qemu-args qemu-system-..."
67
	echo "       --qemu-cmd qemu-system-..."
68 69
	echo "       --results absolute-pathname"
	echo "       --torture rcu"
70 71 72 73 74 75
	exit 1
}

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

158
CONFIGFRAG=${KVM}/configs/${TORTURE_SUITE}; export CONFIGFRAG
159 160 161 162 163 164
KVPATH=${CONFIGFRAG}/$kversion; export KVPATH

if test -z "$configs"
then
	configs="`cat $CONFIGFRAG/$kversion/CFLIST`"
fi
165 166 167 168

if test -z "$resdir"
then
	resdir=$KVM/res
169 170 171 172
fi

if test "$dryrun" = ""
then
173 174 175 176
	if ! test -e $resdir
	then
		mkdir -p "$resdir" || :
	fi
177 178
	mkdir $resdir/$ds

179
	# Be noisy only if running the script.
180 181
	echo Results directory: $resdir/$ds
	echo $scriptname $args
182

183 184
	touch $resdir/$ds/log
	echo $scriptname $args >> $resdir/$ds/log
185
	echo ${TORTURE_SUITE} > $resdir/$ds/TORTURE_SUITE
186 187 188 189 190 191 192

	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
193 194
fi

195
# Create a file of test-name/#cpus pairs, sorted by decreasing #cpus.
196
touch $T/cfgcpu
197 198
for CF in $configs
do
199
	if test -f "$CONFIGFRAG/$kversion/$CF"
200
	then
201 202 203 204
		echo $CF `configNR_CPUS.sh $CONFIGFRAG/$kversion/$CF` >> $T/cfgcpu
	else
		echo "The --configs file $CF does not exist, terminating."
		exit 1
205
	fi
206
done
207 208
sort -k2nr $T/cfgcpu > $T/cfgcpu.sort

209
# Use a greedy bin-packing algorithm, sorting the list accordingly.
210 211 212 213 214 215
awk < $T/cfgcpu.sort > $T/cfgcpu.pack -v ncpus=$cpus '
BEGIN {
	njobs = 0;
}

{
216
	# Read file of tests and corresponding required numbers of CPUs.
217 218 219 220 221 222 223 224 225
	cf[njobs] = $1;
	cpus[njobs] = $2;
	njobs++;
}

END {
	alldone = 0;
	batch = 0;
	nc = -1;
226 227 228 229 230 231

	# 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.
232 233 234
	while (nc != ncpus) {
		batch++;
		nc = ncpus;
235 236 237

		# Each pass through the following loop considers one
		# test for inclusion in the current batch.
238 239
		for (i = 0; i < njobs; i++) {
			if (done[i])
240
				continue; # Already part of a batch.
241
			if (nc >= cpus[i] || nc == ncpus) {
242 243

				# This test fits into the current batch.
244 245 246
				done[i] = batch;
				nc -= cpus[i];
				if (nc <= 0)
247
					break; # Too-big test in its own batch.
248 249 250
			}
		}
	}
251 252

	# Dump out the tests in batch order.
253 254 255 256 257 258
	for (b = 1; b <= batch; b++)
		for (i = 0; i < njobs; i++)
			if (done[i] == b)
				print cf[i], cpus[i];
}'

259
# Generate a script to execute the tests in appropriate batches.
260 261 262
cat << ___EOF___ > $T/script
TORTURE_SUITE="$TORTURE_SUITE"; export TORTURE_SUITE
___EOF___
263
awk < $T/cfgcpu.pack \
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
	-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++;
}

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

END {
	njobs = i;
	nc = ncpus;
	first = 0;
340 341

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

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

391
# 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
392

393 394
echo
echo
395
echo " --- `date` Test summary:"
396
echo Results directory: $resdir/$ds
397
kvm-recheck.sh $resdir/$ds