xref: /freebsd/tools/test/stress2/misc/crossmp3.sh (revision c7bc30c24f8625c6e9ef41be427fa26c6eb3d2bf)
18a272653SPeter Holm#!/bin/sh
28a272653SPeter Holm
38a272653SPeter Holm#
48a272653SPeter Holm# Copyright (c) 2014 EMC Corp.
58a272653SPeter Holm# All rights reserved.
68a272653SPeter Holm#
78a272653SPeter Holm# Redistribution and use in source and binary forms, with or without
88a272653SPeter Holm# modification, are permitted provided that the following conditions
98a272653SPeter Holm# are met:
108a272653SPeter Holm# 1. Redistributions of source code must retain the above copyright
118a272653SPeter Holm#    notice, this list of conditions and the following disclaimer.
128a272653SPeter Holm# 2. Redistributions in binary form must reproduce the above copyright
138a272653SPeter Holm#    notice, this list of conditions and the following disclaimer in the
148a272653SPeter Holm#    documentation and/or other materials provided with the distribution.
158a272653SPeter Holm#
168a272653SPeter Holm# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
178a272653SPeter Holm# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
188a272653SPeter Holm# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
198a272653SPeter Holm# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
208a272653SPeter Holm# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
218a272653SPeter Holm# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
228a272653SPeter Holm# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
238a272653SPeter Holm# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
248a272653SPeter Holm# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
258a272653SPeter Holm# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
268a272653SPeter Holm# SUCH DAMAGE.
278a272653SPeter Holm#
288a272653SPeter Holm
298a272653SPeter Holm# Parallel mount and umount of file systems
308a272653SPeter Holm# "panic: Bad link elm 0xfffff8052a20cc00 prev->next != elm" seen:
318a272653SPeter Holm# http://people.freebsd.org/~pho/stress/log/crossmp3.txt
328a272653SPeter Holm# Fixed in r269853
338a272653SPeter Holm
348a272653SPeter Holm# panic: softdep_waitidle: work added after flush:
358a272653SPeter Holm# http://people.freebsd.org/~pho/stress/log/crossmp3-2.txt, fixed by r273967.
368a272653SPeter Holm
378a272653SPeter Holm[ `id -u ` -ne 0 ] && echo "Must be root!" && exit 1
388a272653SPeter Holm
398a272653SPeter Holm. ../default.cfg
408a272653SPeter Holm
418a272653SPeter HolmCONT=/tmp/crossmp3.continue
428a272653SPeter Holmif [ $# -eq 0 ]; then
438a272653SPeter Holm	N=`sysctl -n hw.ncpu`
44*c7bc30c2SPeter Holm	[ $N -gt 32 ] && N=32  # Arbitrary cap
458a272653SPeter Holm	usermem=`sysctl -n hw.usermem`
468a272653SPeter Holm	[ `sysctl -n vm.swap_total` -eq 0 ] && usermem=$((usermem / 2))
478a272653SPeter Holm	size=$((usermem / 1024 / 1024 / N))
488a272653SPeter Holm	echo "Using $N memory disks of size $size MB."
498a272653SPeter Holm
508a272653SPeter Holm	mounts=$N		# Number of parallel scripts
518a272653SPeter Holm
528a272653SPeter Holm	for i in `jot $mounts`; do
538a272653SPeter Holm		m=$(( i + mdstart - 1 ))
548a272653SPeter Holm		[ ! -d ${mntpoint}$m ] &&
558a272653SPeter Holm		    { mkdir ${mntpoint}$m; chmod 755 ${mntpoint}$m; }
568a272653SPeter Holm		mount | grep "${mntpoint}$m " | grep -q md$m &&
578a272653SPeter Holm		    umount ${mntpoint}$m
588a272653SPeter Holm		mdconfig -l | grep -q md$m && mdconfig -d -u $m
598a272653SPeter Holm
608a272653SPeter Holm		mdconfig -a -t swap -s ${size}m -u $m
61608c97bfSPeter Holm		newfs $newfs_flags md${m} > /dev/null 2>&1
628a272653SPeter Holm	done
638a272653SPeter Holm
648a272653SPeter Holm	# start the parallel tests
658a272653SPeter Holm	touch $CONT
668a272653SPeter Holm	for i in `jot $mounts`; do
678a272653SPeter Holm		m=$(( i + mdstart - 1 ))
688a272653SPeter Holm		./$0 $m &
698a272653SPeter Holm		./$0 find &
708a272653SPeter Holm	done
718a272653SPeter Holm	wait
728a272653SPeter Holm
738a272653SPeter Holm	for i in `jot $mounts`; do
748a272653SPeter Holm		m=$(( i + mdstart - 1 ))
758a272653SPeter Holm		while mount | grep -q "on ${mntpoint}$m "; do
768a272653SPeter Holm		    umount ${mntpoint}$m && break
778a272653SPeter Holm		    sleep 1
788a272653SPeter Holm		done
798a272653SPeter Holm		mdconfig -d -u $m
808a272653SPeter Holm	done
818a272653SPeter Holm	exit 0
828a272653SPeter Holmelse
838a272653SPeter Holm	if [ $1 = find ]; then
848a272653SPeter Holm		while [ -f $CONT ]; do
858a272653SPeter Holm			find ${mntpoint}* -type f > /dev/null 2>&1
868a272653SPeter Holm		done
878a272653SPeter Holm	else
888a272653SPeter Holm		export runRUNTIME=20s
898a272653SPeter Holm		# The test: Parallel mount and unmounts
90f2c88ed6SPeter Holm		start=`date +%s`
918a272653SPeter Holm		for i in `jot 3`; do
928a272653SPeter Holm			m=$1
93608c97bfSPeter Holm			mount /dev/md${m} ${mntpoint}$m &&
948a272653SPeter Holm			   chmod 777 ${mntpoint}$m
958a272653SPeter Holm			export RUNDIR=${mntpoint}$m/stressX
968a272653SPeter Holm			export CTRLDIR=${mntpoint}$m/stressX.control
978a272653SPeter Holm			(cd ${mntpoint}$m && find . -delete)
988a272653SPeter Holm			su $testuser -c 'cd ..; ./run.sh disk.cfg' > \
998a272653SPeter Holm			    /dev/null 2>&1
1008a272653SPeter Holm
1018a272653SPeter Holm			while mount | grep -q "on ${mntpoint}$m "; do
1028a272653SPeter Holm				opt=$([ $((`date '+%s'` % 2)) -eq 0 ] && echo "-f")
1038a272653SPeter Holm				umount $opt ${mntpoint}$m > /dev/null 2>&1
1048a272653SPeter Holm				[ -f $CONT ] || break 2
1058a272653SPeter Holm			done
106f2c88ed6SPeter Holm			[ $((`date +%s` - start)) -gt 600 ] &&
107f2c88ed6SPeter Holm			    { echo "Timed out"; s=1; }
1088a272653SPeter Holm		done
1098a272653SPeter Holm		rm -f $CONT
1108a272653SPeter Holm	fi
111f2c88ed6SPeter Holm	exit $s
1128a272653SPeter Holmfi
113