1#!/bin/bash 2# SPDX-License-Identifier: GPL-2.0+ 3# 4# Run a series of tests under KVM. By default, this series is specified 5# by the relevant CFLIST file, but can be overridden by the --configs 6# command-line argument. 7# 8# Usage: kvm.sh [ options ] 9# 10# Copyright (C) IBM Corporation, 2011 11# 12# Authors: Paul E. McKenney <paulmck@linux.ibm.com> 13 14scriptname=$0 15args="$*" 16 17T=${TMPDIR-/tmp}/kvm.sh.$$ 18trap 'rm -rf $T' 0 19mkdir $T 20 21cd `dirname $scriptname`/../../../../../ 22 23# This script knows only English. 24LANG=en_US.UTF-8; export LANG 25 26dur=$((30*60)) 27dryrun="" 28KVM="`pwd`/tools/testing/selftests/rcutorture"; export KVM 29PATH=${KVM}/bin:$PATH; export PATH 30. functions.sh 31 32TORTURE_ALLOTED_CPUS="`identify_qemu_vcpus`" 33TORTURE_DEFCONFIG=defconfig 34TORTURE_BOOT_IMAGE="" 35TORTURE_BUILDONLY= 36TORTURE_INITRD="$KVM/initrd"; export TORTURE_INITRD 37TORTURE_KCONFIG_ARG="" 38TORTURE_KCONFIG_GDB_ARG="" 39TORTURE_BOOT_GDB_ARG="" 40TORTURE_QEMU_GDB_ARG="" 41TORTURE_JITTER_START="" 42TORTURE_JITTER_STOP="" 43TORTURE_KCONFIG_KASAN_ARG="" 44TORTURE_KCONFIG_KCSAN_ARG="" 45TORTURE_KMAKE_ARG="" 46TORTURE_QEMU_MEM=512 47TORTURE_REMOTE= 48TORTURE_SHUTDOWN_GRACE=180 49TORTURE_SUITE=rcu 50TORTURE_MOD=rcutorture 51TORTURE_TRUST_MAKE="" 52resdir="" 53configs="" 54cpus=0 55ds=`date +%Y.%m.%d-%H.%M.%S` 56jitter="-1" 57 58startdate="`date`" 59starttime="`get_starttime`" 60 61usage () { 62 echo "Usage: $scriptname optional arguments:" 63 echo " --allcpus" 64 echo " --bootargs kernel-boot-arguments" 65 echo " --bootimage relative-path-to-kernel-boot-image" 66 echo " --buildonly" 67 echo " --configs \"config-file list w/ repeat factor (3*TINY01)\"" 68 echo " --cpus N" 69 echo " --datestamp string" 70 echo " --defconfig string" 71 echo " --dryrun batches|scenarios|sched|script" 72 echo " --duration minutes | <seconds>s | <hours>h | <days>d" 73 echo " --gdb" 74 echo " --help" 75 echo " --interactive" 76 echo " --jitter N [ maxsleep (us) [ maxspin (us) ] ]" 77 echo " --kconfig Kconfig-options" 78 echo " --kmake-arg kernel-make-arguments" 79 echo " --mac nn:nn:nn:nn:nn:nn" 80 echo " --memory megabytes|nnnG" 81 echo " --no-initrd" 82 echo " --qemu-args qemu-arguments" 83 echo " --qemu-cmd qemu-system-..." 84 echo " --remote" 85 echo " --results absolute-pathname" 86 echo " --torture lock|rcu|rcuscale|refscale|scf" 87 echo " --trust-make" 88 exit 1 89} 90 91while test $# -gt 0 92do 93 case "$1" in 94 --allcpus) 95 cpus=$TORTURE_ALLOTED_CPUS 96 max_cpus=$TORTURE_ALLOTED_CPUS 97 ;; 98 --bootargs|--bootarg) 99 checkarg --bootargs "(list of kernel boot arguments)" "$#" "$2" '.*' '^--' 100 TORTURE_BOOTARGS="$TORTURE_BOOTARGS $2" 101 shift 102 ;; 103 --bootimage) 104 checkarg --bootimage "(relative path to kernel boot image)" "$#" "$2" '[a-zA-Z0-9][a-zA-Z0-9_]*' '^--' 105 TORTURE_BOOT_IMAGE="$2" 106 shift 107 ;; 108 --buildonly|--build-only) 109 TORTURE_BUILDONLY=1 110 ;; 111 --configs|--config) 112 checkarg --configs "(list of config files)" "$#" "$2" '^[^/.a-z]\+$' '^--' 113 configs="$configs $2" 114 shift 115 ;; 116 --cpus) 117 checkarg --cpus "(number)" "$#" "$2" '^[0-9]*$' '^--' 118 cpus=$2 119 TORTURE_ALLOTED_CPUS="$2" 120 if test -z "$TORTURE_REMOTE" 121 then 122 max_cpus="`identify_qemu_vcpus`" 123 if test "$TORTURE_ALLOTED_CPUS" -gt "$max_cpus" 124 then 125 TORTURE_ALLOTED_CPUS=$max_cpus 126 fi 127 fi 128 shift 129 ;; 130 --datestamp) 131 checkarg --datestamp "(relative pathname)" "$#" "$2" '^[a-zA-Z0-9._/-]*$' '^--' 132 ds=$2 133 shift 134 ;; 135 --defconfig) 136 checkarg --defconfig "defconfigtype" "$#" "$2" '^[^/][^/]*$' '^--' 137 TORTURE_DEFCONFIG=$2 138 shift 139 ;; 140 --dryrun) 141 checkarg --dryrun "batches|sched|script" $# "$2" 'batches\|scenarios\|sched\|script' '^--' 142 dryrun=$2 143 shift 144 ;; 145 --duration) 146 checkarg --duration "(minutes)" $# "$2" '^[0-9][0-9]*\(s\|m\|h\|d\|\)$' '^error' 147 mult=60 148 if echo "$2" | grep -q 's$' 149 then 150 mult=1 151 elif echo "$2" | grep -q 'h$' 152 then 153 mult=3600 154 elif echo "$2" | grep -q 'd$' 155 then 156 mult=86400 157 fi 158 ts=`echo $2 | sed -e 's/[smhd]$//'` 159 dur=$(($ts*mult)) 160 shift 161 ;; 162 --gdb) 163 TORTURE_KCONFIG_GDB_ARG="CONFIG_DEBUG_INFO=y"; export TORTURE_KCONFIG_GDB_ARG 164 TORTURE_BOOT_GDB_ARG="nokaslr"; export TORTURE_BOOT_GDB_ARG 165 TORTURE_QEMU_GDB_ARG="-s -S"; export TORTURE_QEMU_GDB_ARG 166 ;; 167 --help|-h) 168 usage 169 ;; 170 --interactive) 171 TORTURE_QEMU_INTERACTIVE=1; export TORTURE_QEMU_INTERACTIVE 172 ;; 173 --jitter) 174 checkarg --jitter "(# threads [ sleep [ spin ] ])" $# "$2" '^-\{,1\}[0-9]\+\( \+[0-9]\+\)\{,2\} *$' '^error$' 175 jitter="$2" 176 shift 177 ;; 178 --kconfig|--kconfigs) 179 checkarg --kconfig "(Kconfig options)" $# "$2" '^CONFIG_[A-Z0-9_]\+=\([ynm]\|[0-9]\+\)\( CONFIG_[A-Z0-9_]\+=\([ynm]\|[0-9]\+\)\)*$' '^error$' 180 TORTURE_KCONFIG_ARG="`echo "$TORTURE_KCONFIG_ARG $2" | sed -e 's/^ *//' -e 's/ *$//'`" 181 shift 182 ;; 183 --kasan) 184 TORTURE_KCONFIG_KASAN_ARG="CONFIG_DEBUG_INFO=y CONFIG_KASAN=y"; export TORTURE_KCONFIG_KASAN_ARG 185 ;; 186 --kcsan) 187 TORTURE_KCONFIG_KCSAN_ARG="CONFIG_DEBUG_INFO=y CONFIG_KCSAN=y CONFIG_KCSAN_ASSUME_PLAIN_WRITES_ATOMIC=n CONFIG_KCSAN_REPORT_VALUE_CHANGE_ONLY=n CONFIG_KCSAN_REPORT_ONCE_IN_MS=100000 CONFIG_KCSAN_INTERRUPT_WATCHER=y CONFIG_KCSAN_VERBOSE=y CONFIG_DEBUG_LOCK_ALLOC=y CONFIG_PROVE_LOCKING=y"; export TORTURE_KCONFIG_KCSAN_ARG 188 ;; 189 --kmake-arg|--kmake-args) 190 checkarg --kmake-arg "(kernel make arguments)" $# "$2" '.*' '^error$' 191 TORTURE_KMAKE_ARG="`echo "$TORTURE_KMAKE_ARG $2" | sed -e 's/^ *//' -e 's/ *$//'`" 192 shift 193 ;; 194 --mac) 195 checkarg --mac "(MAC address)" $# "$2" '^\([0-9a-fA-F]\{2\}:\)\{5\}[0-9a-fA-F]\{2\}$' error 196 TORTURE_QEMU_MAC=$2 197 shift 198 ;; 199 --memory) 200 checkarg --memory "(memory size)" $# "$2" '^[0-9]\+[MG]\?$' error 201 TORTURE_QEMU_MEM=$2 202 shift 203 ;; 204 --no-initrd) 205 TORTURE_INITRD=""; export TORTURE_INITRD 206 ;; 207 --qemu-args|--qemu-arg) 208 checkarg --qemu-args "(qemu arguments)" $# "$2" '^-' '^error' 209 TORTURE_QEMU_ARG="`echo "$TORTURE_QEMU_ARG $2" | sed -e 's/^ *//' -e 's/ *$//'`" 210 shift 211 ;; 212 --qemu-cmd) 213 checkarg --qemu-cmd "(qemu-system-...)" $# "$2" 'qemu-system-' '^--' 214 TORTURE_QEMU_CMD="$2" 215 shift 216 ;; 217 --remote) 218 TORTURE_REMOTE=1 219 ;; 220 --results) 221 checkarg --results "(absolute pathname)" "$#" "$2" '^/' '^error' 222 resdir=$2 223 shift 224 ;; 225 --shutdown-grace) 226 checkarg --shutdown-grace "(seconds)" "$#" "$2" '^[0-9]*$' '^error' 227 TORTURE_SHUTDOWN_GRACE=$2 228 shift 229 ;; 230 --torture) 231 checkarg --torture "(suite name)" "$#" "$2" '^\(lock\|rcu\|rcuscale\|refscale\|scf\)$' '^--' 232 TORTURE_SUITE=$2 233 TORTURE_MOD="`echo $TORTURE_SUITE | sed -e 's/^\(lock\|rcu\|scf\)$/\1torture/'`" 234 shift 235 if test "$TORTURE_SUITE" = rcuscale || test "$TORTURE_SUITE" = refscale 236 then 237 # If you really want jitter for refscale or 238 # rcuscale, specify it after specifying the rcuscale 239 # or the refscale. (But why jitter in these cases?) 240 jitter=0 241 fi 242 ;; 243 --trust-make) 244 TORTURE_TRUST_MAKE="y" 245 ;; 246 *) 247 echo Unknown argument $1 248 usage 249 ;; 250 esac 251 shift 252done 253 254if test -n "$dryrun" || test -z "$TORTURE_INITRD" || tools/testing/selftests/rcutorture/bin/mkinitrd.sh 255then 256 : 257else 258 echo No initrd and unable to create one, aborting test >&2 259 exit 1 260fi 261 262CONFIGFRAG=${KVM}/configs/${TORTURE_SUITE}; export CONFIGFRAG 263 264defaultconfigs="`tr '\012' ' ' < $CONFIGFRAG/CFLIST`" 265if test -z "$configs" 266then 267 configs=$defaultconfigs 268fi 269 270if test -z "$resdir" 271then 272 resdir=$KVM/res 273fi 274 275# Create a file of test-name/#cpus pairs, sorted by decreasing #cpus. 276configs_derep= 277for CF in $configs 278do 279 case $CF in 280 [0-9]\**|[0-9][0-9]\**|[0-9][0-9][0-9]\**) 281 config_reps=`echo $CF | sed -e 's/\*.*$//'` 282 CF1=`echo $CF | sed -e 's/^[^*]*\*//'` 283 ;; 284 *) 285 config_reps=1 286 CF1=$CF 287 ;; 288 esac 289 for ((cur_rep=0;cur_rep<$config_reps;cur_rep++)) 290 do 291 configs_derep="$configs_derep $CF1" 292 done 293done 294touch $T/cfgcpu 295configs_derep="`echo $configs_derep | sed -e "s/\<CFLIST\>/$defaultconfigs/g"`" 296if test -n "$TORTURE_KCONFIG_GDB_ARG" 297then 298 if test "`echo $configs_derep | wc -w`" -gt 1 299 then 300 echo "The --config list is: $configs_derep." 301 echo "Only one --config permitted with --gdb, terminating." 302 exit 1 303 fi 304fi 305echo 'BEGIN {' > $T/cfgcpu.awk 306for CF1 in `echo $configs_derep | tr -s ' ' '\012' | sort -u` 307do 308 if test -f "$CONFIGFRAG/$CF1" 309 then 310 if echo "$TORTURE_KCONFIG_ARG" | grep -q '\<CONFIG_NR_CPUS=' 311 then 312 echo "$TORTURE_KCONFIG_ARG" | tr -s ' ' | tr ' ' '\012' > $T/KCONFIG_ARG 313 cpu_count=`configNR_CPUS.sh $T/KCONFIG_ARG` 314 else 315 cpu_count=`configNR_CPUS.sh $CONFIGFRAG/$CF1` 316 fi 317 cpu_count=`configfrag_boot_cpus "$TORTURE_BOOTARGS" "$CONFIGFRAG/$CF1" "$cpu_count"` 318 cpu_count=`configfrag_boot_maxcpus "$TORTURE_BOOTARGS" "$CONFIGFRAG/$CF1" "$cpu_count"` 319 echo 'scenariocpu["'"$CF1"'"] = '"$cpu_count"';' >> $T/cfgcpu.awk 320 else 321 echo "The --configs file $CF1 does not exist, terminating." 322 exit 1 323 fi 324done 325cat << '___EOF___' >> $T/cfgcpu.awk 326} 327{ 328 for (i = 1; i <= NF; i++) 329 print $i, scenariocpu[$i]; 330} 331___EOF___ 332echo $configs_derep | awk -f $T/cfgcpu.awk > $T/cfgcpu 333sort -k2nr $T/cfgcpu -T="$T" > $T/cfgcpu.sort 334 335# Use a greedy bin-packing algorithm, sorting the list accordingly. 336awk < $T/cfgcpu.sort > $T/cfgcpu.pack -v ncpus=$cpus ' 337BEGIN { 338 njobs = 0; 339} 340 341{ 342 # Read file of tests and corresponding required numbers of CPUs. 343 cf[njobs] = $1; 344 cpus[njobs] = $2; 345 njobs++; 346} 347 348END { 349 batch = 0; 350 nc = -1; 351 352 # Each pass through the following loop creates on test batch that 353 # can be executed concurrently given ncpus. Note that a given test 354 # that requires more than the available CPUs will run in its own 355 # batch. Such tests just have to make do with what is available. 356 while (nc != ncpus) { 357 batch++; 358 nc = ncpus; 359 360 # Each pass through the following loop considers one 361 # test for inclusion in the current batch. 362 for (i = 0; i < njobs; i++) { 363 if (done[i]) 364 continue; # Already part of a batch. 365 if (nc >= cpus[i] || nc == ncpus) { 366 367 # This test fits into the current batch. 368 done[i] = batch; 369 nc -= cpus[i]; 370 if (nc <= 0) 371 break; # Too-big test in its own batch. 372 } 373 } 374 } 375 376 # Dump out the tests in batch order. 377 for (b = 1; b <= batch; b++) 378 for (i = 0; i < njobs; i++) 379 if (done[i] == b) 380 print cf[i], cpus[i]; 381}' 382 383# Generate a script to execute the tests in appropriate batches. 384cat << ___EOF___ > $T/script 385CONFIGFRAG="$CONFIGFRAG"; export CONFIGFRAG 386KVM="$KVM"; export KVM 387PATH="$PATH"; export PATH 388TORTURE_ALLOTED_CPUS="$TORTURE_ALLOTED_CPUS"; export TORTURE_ALLOTED_CPUS 389TORTURE_BOOT_IMAGE="$TORTURE_BOOT_IMAGE"; export TORTURE_BOOT_IMAGE 390TORTURE_BUILDONLY="$TORTURE_BUILDONLY"; export TORTURE_BUILDONLY 391TORTURE_DEFCONFIG="$TORTURE_DEFCONFIG"; export TORTURE_DEFCONFIG 392TORTURE_INITRD="$TORTURE_INITRD"; export TORTURE_INITRD 393TORTURE_KCONFIG_ARG="$TORTURE_KCONFIG_ARG"; export TORTURE_KCONFIG_ARG 394TORTURE_KCONFIG_GDB_ARG="$TORTURE_KCONFIG_GDB_ARG"; export TORTURE_KCONFIG_GDB_ARG 395TORTURE_BOOT_GDB_ARG="$TORTURE_BOOT_GDB_ARG"; export TORTURE_BOOT_GDB_ARG 396TORTURE_QEMU_GDB_ARG="$TORTURE_QEMU_GDB_ARG"; export TORTURE_QEMU_GDB_ARG 397TORTURE_KCONFIG_KASAN_ARG="$TORTURE_KCONFIG_KASAN_ARG"; export TORTURE_KCONFIG_KASAN_ARG 398TORTURE_KCONFIG_KCSAN_ARG="$TORTURE_KCONFIG_KCSAN_ARG"; export TORTURE_KCONFIG_KCSAN_ARG 399TORTURE_KMAKE_ARG="$TORTURE_KMAKE_ARG"; export TORTURE_KMAKE_ARG 400TORTURE_MOD="$TORTURE_MOD"; export TORTURE_MOD 401TORTURE_QEMU_CMD="$TORTURE_QEMU_CMD"; export TORTURE_QEMU_CMD 402TORTURE_QEMU_INTERACTIVE="$TORTURE_QEMU_INTERACTIVE"; export TORTURE_QEMU_INTERACTIVE 403TORTURE_QEMU_MAC="$TORTURE_QEMU_MAC"; export TORTURE_QEMU_MAC 404TORTURE_QEMU_MEM="$TORTURE_QEMU_MEM"; export TORTURE_QEMU_MEM 405TORTURE_SHUTDOWN_GRACE="$TORTURE_SHUTDOWN_GRACE"; export TORTURE_SHUTDOWN_GRACE 406TORTURE_SUITE="$TORTURE_SUITE"; export TORTURE_SUITE 407TORTURE_TRUST_MAKE="$TORTURE_TRUST_MAKE"; export TORTURE_TRUST_MAKE 408if ! test -e $resdir 409then 410 mkdir -p "$resdir" || : 411fi 412mkdir -p $resdir/$ds 413TORTURE_RESDIR="$resdir/$ds"; export TORTURE_RESDIR 414TORTURE_STOPFILE="$resdir/$ds/STOP.1"; export TORTURE_STOPFILE 415echo Results directory: $resdir/$ds 416echo $scriptname $args 417touch $resdir/$ds/log 418echo $scriptname $args >> $resdir/$ds/log 419echo ${TORTURE_SUITE} > $resdir/$ds/torture_suite 420echo Build directory: `pwd` > $resdir/$ds/testid.txt 421if test -d .git 422then 423 echo Current commit: `git rev-parse HEAD` >> $resdir/$ds/testid.txt 424 echo >> $resdir/$ds/testid.txt 425 echo ' ---' Output of "'"git status"'": >> $resdir/$ds/testid.txt 426 git status >> $resdir/$ds/testid.txt 427 echo >> $resdir/$ds/testid.txt 428 echo >> $resdir/$ds/testid.txt 429 echo ' ---' Output of "'"git diff HEAD"'": >> $resdir/$ds/testid.txt 430 git diff HEAD >> $resdir/$ds/testid.txt 431fi 432___EOF___ 433awk < $T/cfgcpu.pack \ 434 -v TORTURE_BUILDONLY="$TORTURE_BUILDONLY" \ 435 -v CONFIGDIR="$CONFIGFRAG/" \ 436 -v KVM="$KVM" \ 437 -v ncpus=$cpus \ 438 -v jitter="$jitter" \ 439 -v rd=$resdir/$ds/ \ 440 -v dur=$dur \ 441 -v TORTURE_QEMU_ARG="$TORTURE_QEMU_ARG" \ 442 -v TORTURE_BOOTARGS="$TORTURE_BOOTARGS" \ 443'BEGIN { 444 i = 0; 445} 446 447{ 448 cf[i] = $1; 449 cpus[i] = $2; 450 i++; 451} 452 453# Dump out the scripting required to run one test batch. 454function dump(first, pastlast, batchnum) 455{ 456 print "echo ----Start batch " batchnum ": `date` | tee -a " rd "log"; 457 print "needqemurun=" 458 jn=1 459 njitter = 0; 460 split(jitter, ja); 461 if (ja[1] == -1 && ncpus == 0) 462 njitter = 1; 463 else if (ja[1] == -1) 464 njitter = ncpus; 465 else 466 njitter = ja[1]; 467 print "TORTURE_JITTER_START=\". jitterstart.sh " njitter " " rd " " dur " " ja[2] " " ja[3] "\"; export TORTURE_JITTER_START"; 468 print "TORTURE_JITTER_STOP=\". jitterstop.sh " rd " \"; export TORTURE_JITTER_STOP" 469 for (j = first; j < pastlast; j++) { 470 cpusr[jn] = cpus[j]; 471 if (cfrep[cf[j]] == "") { 472 cfr[jn] = cf[j]; 473 cfrep[cf[j]] = 1; 474 } else { 475 cfrep[cf[j]]++; 476 cfr[jn] = cf[j] "." cfrep[cf[j]]; 477 } 478 builddir=rd cfr[jn] "/build"; 479 if (cpusr[jn] > ncpus && ncpus != 0) 480 ovf = "-ovf"; 481 else 482 ovf = ""; 483 print "echo ", cfr[jn], cpusr[jn] ovf ": Starting build. `date` | tee -a " rd "log"; 484 print "mkdir " rd cfr[jn] " || :"; 485 print "touch " builddir ".wait"; 486 print "kvm-test-1-run.sh " CONFIGDIR cf[j], rd cfr[jn], dur " \"" TORTURE_QEMU_ARG "\" \"" TORTURE_BOOTARGS "\" > " rd cfr[jn] "/kvm-test-1-run.sh.out 2>&1 &" 487 print "echo ", cfr[jn], cpusr[jn] ovf ": Waiting for build to complete. `date` | tee -a " rd "log"; 488 print "while test -f " builddir ".wait" 489 print "do" 490 print "\tsleep 1" 491 print "done" 492 print "echo ", cfr[jn], cpusr[jn] ovf ": Build complete. `date` | tee -a " rd "log"; 493 jn++; 494 } 495 print "runfiles=" 496 for (j = 1; j < jn; j++) { 497 builddir=rd cfr[j] "/build"; 498 if (TORTURE_BUILDONLY) 499 print "rm -f " builddir ".ready" 500 else 501 print "mv " builddir ".ready " builddir ".run" 502 print "runfiles=\"$runfiles " builddir ".run\"" 503 fi 504 print "if test -f \"" rd cfr[j] "/builtkernel\"" 505 print "then" 506 print "\techo ----", cfr[j], cpusr[j] ovf ": Kernel present. `date` | tee -a " rd "log"; 507 print "\tneedqemurun=1" 508 print "fi" 509 } 510 if (TORTURE_BUILDONLY && njitter != 0) { 511 njitter = 0; 512 print "echo Build-only run, so suppressing jitter | tee -a " rd "log" 513 } 514 if (TORTURE_BUILDONLY) { 515 print "needqemurun=" 516 } 517 print "if test -n \"$needqemurun\"" 518 print "then" 519 print "\techo ---- Starting kernels. `date` | tee -a " rd "log"; 520 print "\t$TORTURE_JITTER_START"; 521 print "\twhile ls $runfiles > /dev/null 2>&1" 522 print "\tdo" 523 print "\t\t:" 524 print "\tdone" 525 print "\t$TORTURE_JITTER_STOP"; 526 print "\techo ---- All kernel runs complete. `date` | tee -a " rd "log"; 527 print "else" 528 print "\twait" 529 print "\techo ---- No kernel runs. `date` | tee -a " rd "log"; 530 print "fi" 531 for (j = 1; j < jn; j++) { 532 print "echo ----", cfr[j], cpusr[j] ovf ": Build/run results: | tee -a " rd "log"; 533 print "cat " rd cfr[j] "/kvm-test-1-run.sh.out | tee -a " rd "log"; 534 } 535} 536 537END { 538 njobs = i; 539 nc = ncpus; 540 first = 0; 541 batchnum = 1; 542 543 # Each pass through the following loop considers one test. 544 for (i = 0; i < njobs; i++) { 545 if (ncpus == 0) { 546 # Sequential test specified, each test its own batch. 547 dump(i, i + 1, batchnum); 548 first = i; 549 batchnum++; 550 } else if (nc < cpus[i] && i != 0) { 551 # Out of CPUs, dump out a batch. 552 dump(first, i, batchnum); 553 first = i; 554 nc = ncpus; 555 batchnum++; 556 } 557 # Account for the CPUs needed by the current test. 558 nc -= cpus[i]; 559 } 560 # Dump the last batch. 561 if (ncpus != 0) 562 dump(first, i, batchnum); 563}' >> $T/script 564echo kvm-end-run-stats.sh "$resdir/$ds" "$starttime" >> $T/script 565 566# Extract the tests and their batches from the script. 567egrep 'Start batch|Starting build\.' $T/script | grep -v ">>" | 568 sed -e 's/:.*$//' -e 's/^echo //' -e 's/-ovf//' | 569 awk ' 570 /^----Start/ { 571 batchno = $3; 572 next; 573 } 574 { 575 print batchno, $1, $2 576 }' > $T/batches 577 578# As above, but one line per batch. 579grep -v '^#' $T/batches | awk ' 580BEGIN { 581 oldbatch = 1; 582} 583 584{ 585 if (oldbatch != $1) { 586 print ++n ". " curbatch; 587 curbatch = ""; 588 oldbatch = $1; 589 } 590 curbatch = curbatch " " $2; 591} 592 593END { 594 print ++n ". " curbatch; 595}' > $T/scenarios 596 597if test "$dryrun" = script 598then 599 cat $T/script 600 exit 0 601elif test "$dryrun" = sched 602then 603 # Extract the test run schedule from the script. 604 egrep 'Start batch|Starting build\.' $T/script | grep -v ">>" | 605 sed -e 's/:.*$//' -e 's/^echo //' 606 nbuilds="`grep 'Starting build\.' $T/script | 607 grep -v ">>" | sed -e 's/:.*$//' -e 's/^echo //' | 608 awk '{ print $1 }' | grep -v '\.' | wc -l`" 609 echo Total number of builds: $nbuilds 610 nbatches="`grep 'Start batch' $T/script | grep -v ">>" | wc -l`" 611 echo Total number of batches: $nbatches 612 exit 0 613elif test "$dryrun" = batches 614then 615 cat $T/batches 616 exit 0 617elif test "$dryrun" = scenarios 618then 619 cat $T/scenarios 620 exit 0 621else 622 # Not a dryrun. Record the batches and the number of CPUs, then run the script. 623 bash $T/script 624 ret=$? 625 cp $T/batches $resdir/$ds/batches 626 cp $T/scenarios $resdir/$ds/scenarios 627 echo '#' cpus=$cpus >> $resdir/$ds/batches 628 exit $ret 629fi 630 631# 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 632# Function-graph tracing: ftrace=function_graph ftrace_graph_filter=sched_setaffinity,migration_cpu_stop 633# Also --kconfig "CONFIG_FUNCTION_TRACER=y CONFIG_FUNCTION_GRAPH_TRACER=y" 634# Control buffer size: --bootargs trace_buf_size=3k 635# Get trace-buffer dumps on all oopses: --bootargs ftrace_dump_on_oops 636# Ditto, but dump only the oopsing CPU: --bootargs ftrace_dump_on_oops=orig_cpu 637# Heavy-handed way to also dump on warnings: --bootargs panic_on_warn 638