3 # Shell functions for the rest of the scripts.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, you can access it online at
17 # http://www.gnu.org/licenses/gpl-2.0.html.
19 # Copyright (C) IBM Corporation, 2013
21 # Authors: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
23 # bootparam_hotplug_cpu bootparam-string
25 # Returns 1 if the specified boot-parameter string tells rcutorture to
26 # test CPU-hotplug operations.
27 bootparam_hotplug_cpu
() {
28 echo "$1" |
grep -q "rcutorture\.onoff_"
31 # checkarg --argname argtype $# arg mustmatch cannotmatch
33 # Checks the specified argument "arg" against the mustmatch and cannotmatch
38 echo $1 needs argument
$2 matching
\"$5\"
41 if echo "$4" |
grep -q -e "$5"
45 echo $1 $2 \"$4\" must match
\"$5\"
48 if echo "$4" |
grep -q -e "$6"
50 echo $1 $2 \"$4\" must not match
\"$6\"
55 # configfrag_boot_params bootparam-string config-fragment-file
57 # Adds boot parameters from the .boot file, if any.
58 configfrag_boot_params
() {
61 echo $1 `grep -v '^#' "$2.boot" | tr '\012' ' '`
67 # configfrag_boot_cpus bootparam-string config-fragment-file config-cpus
69 # Decreases number of CPUs based on any maxcpus= boot parameters specified.
70 configfrag_boot_cpus
() {
71 local bootargs
="`configfrag_boot_params "$1" "$2"`"
73 if echo "${bootargs}" |
grep -q 'maxcpus=[0-9]'
75 maxcpus
="`echo "${bootargs}" | sed -e 's/^.*maxcpus=\([0-9]*\).*$/\1/'`"
76 if test "$3" -gt "$maxcpus"
87 # configfrag_hotplug_cpu config-fragment-file
89 # Returns 1 if the config fragment specifies hotplug CPU.
90 configfrag_hotplug_cpu
() {
93 echo Unreadable config fragment
"$1" 1>&2
96 grep -q '^CONFIG_HOTPLUG_CPU=y$' "$1"
99 # identify_boot_image qemu-cmd
101 # Returns the relative path to the kernel build image. This will be
102 # arch/<arch>/boot/bzImage unless overridden with the TORTURE_BOOT_IMAGE
103 # environment variable.
104 identify_boot_image
() {
105 if test -n "$TORTURE_BOOT_IMAGE"
107 echo $TORTURE_BOOT_IMAGE
110 qemu-system-x86_64|qemu-system-i386
)
111 echo arch
/x86
/boot
/bzImage
114 echo arch
/powerpc
/boot
/bzImage
123 # identify_qemu builddir
125 # Returns our best guess as to which qemu command is appropriate for
126 # the kernel at hand. Override with the TORTURE_QEMU_CMD environment variable.
128 local u
="`file "$1"`"
129 if test -n "$TORTURE_QEMU_CMD"
131 echo $TORTURE_QEMU_CMD
132 elif echo $u |
grep -q x86-64
134 echo qemu-system-x86_64
135 elif echo $u |
grep -q "Intel 80386"
137 echo qemu-system-i386
138 elif uname
-a |
grep -q ppc64
140 echo qemu-system-ppc64
142 echo Cannot figure out what qemu
command to use
! 1>&2
143 echo file $1 output
: $u
144 # Usually this will be one of /usr/bin/qemu-system-*
145 # Use TORTURE_QEMU_CMD environment variable or appropriate
146 # argument to top-level script.
151 # identify_qemu_append qemu-cmd
153 # Output arguments for the qemu "-append" string based on CPU type
154 # and the TORTURE_QEMU_INTERACTIVE environment variable.
155 identify_qemu_append
() {
157 qemu-system-x86_64|qemu-system-i386
)
158 echo noapic selinux
=0 initcall_debug debug
161 if test -n "$TORTURE_QEMU_INTERACTIVE"
169 # identify_qemu_args qemu-cmd serial-file
171 # Output arguments for qemu arguments based on the TORTURE_QEMU_MAC
172 # and TORTURE_QEMU_INTERACTIVE environment variables.
173 identify_qemu_args
() {
175 qemu-system-x86_64|qemu-system-i386
)
178 echo -enable-kvm -M pseries
-cpu POWER7
-nodefaults
179 echo -device spapr-vscsi
180 if test -n "$TORTURE_QEMU_INTERACTIVE" -a -n "$TORTURE_QEMU_MAC"
182 echo -device spapr-vlan
,netdev
=net0
,mac
=$TORTURE_QEMU_MAC
183 echo -netdev bridge
,br
=br0
,id
=net0
184 elif test -n "$TORTURE_QEMU_INTERACTIVE"
186 echo -net nic
-net user
190 if test -n "$TORTURE_QEMU_INTERACTIVE"
192 echo -monitor stdio
-serial pty
-S
198 # identify_qemu_vcpus
200 # Returns the number of virtual CPUs available to the aggregate of the
202 identify_qemu_vcpus
() {
203 lscpu |
grep '^CPU(s):' |
sed -e 's/CPU(s)://'
208 # Prints "BUG: " in red followed by remaining arguments
210 printf '\033[031mBUG: \033[m'
216 # Prints "WARNING: " in yellow followed by remaining arguments
218 printf '\033[033mWARNING: \033[m'
222 # specify_qemu_cpus qemu-cmd qemu-args #cpus
224 # Appends a string containing "-smp XXX" to qemu-args, unless the incoming
225 # qemu-args already contains "-smp".
226 specify_qemu_cpus
() {
229 if echo $2 |
grep -q -e -smp
234 qemu-system-x86_64|qemu-system-i386
)
238 nt
="`lscpu | grep '^NUMA node0' | sed -e 's/^[^,]*,\([0-9]*\),.*$/\1/'`"
239 echo $2 -smp cores
=`expr \( $3 + $nt - 1 \) / $nt`,threads
=$nt