18a272653SPeter Holm#!/bin/sh 28a272653SPeter Holm 38a272653SPeter Holm# 48a272653SPeter Holm# Copyright (c) 2015 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# Variation of crossmp3.sh. fifos and sockets added to load. 308a272653SPeter Holm# Not really a cross mount point test, but a test of the old 318a272653SPeter Holm# non-directory use of the vnode v_un union. 328a272653SPeter Holm# mckusick@ suggested using fifos for this test. 338a272653SPeter Holm 348a272653SPeter Holm# "panic: mtx_lock() of spin mutex @ ../kern/vfs_subr.c:512" seen. 358a272653SPeter Holm# https://people.freebsd.org/~pho/stress/log/crossmp8.txt 368a272653SPeter Holm# Fixed by r291671. 378a272653SPeter Holm 388a272653SPeter Holm[ `id -u ` -ne 0 ] && echo "Must be root!" && exit 1 398a272653SPeter Holm 408a272653SPeter Holm. ../default.cfg 418a272653SPeter Holm 428a272653SPeter HolmCONT=/tmp/crossmp8.continue 438a272653SPeter HolmN=`sysctl -n hw.ncpu` 44*c7bc30c2SPeter Holm[ $N -gt 32 ] && N=32 # Arbitrary cap 458a272653SPeter Holmusermem=`sysctl -n hw.usermem` 468a272653SPeter Holm[ `swapinfo | wc -l` -eq 1 ] && usermem=$((usermem/100*80)) 478a272653SPeter Holmsize=$((usermem / 1024 / 1024 / N)) 488a272653SPeter Holm 498a272653SPeter Holmmounts=$N # Number of parallel scripts 508a272653SPeter Holm 518a272653SPeter Holmif [ $# -eq 0 ]; then 528a272653SPeter Holm oldmx=`sysctl -n kern.maxvnodes` 538a272653SPeter Holm trap "sysctl kern.maxvnodes=$oldmx > /dev/null" EXIT SIGINT 548a272653SPeter Holm sysctl kern.maxvnodes=3072 > /dev/null 558a272653SPeter Holm 568a272653SPeter Holm for i in `jot $mounts`; do 578a272653SPeter Holm m=$((i + mdstart - 1)) 588a272653SPeter Holm [ ! -d ${mntpoint}$m ] && 598a272653SPeter Holm { mkdir ${mntpoint}$m; chmod 755 ${mntpoint}$m; } 608a272653SPeter Holm mount | grep "${mntpoint}$m " | grep -q md$m && 618a272653SPeter Holm umount ${mntpoint}$m 628a272653SPeter Holm mdconfig -l | grep -q md$m && mdconfig -d -u $m 638a272653SPeter Holm 648a272653SPeter Holm mdconfig -a -t swap -s ${size}m -u $m 65608c97bfSPeter Holm newfs md${m} > /dev/null 2>&1 668a272653SPeter Holm done 678a272653SPeter Holm 688a272653SPeter Holm # start the parallel tests 698a272653SPeter Holm touch $CONT 708a272653SPeter Holm for i in `jot $mounts`; do 718a272653SPeter Holm m=$((i + mdstart - 1)) 728a272653SPeter Holm ./$0 $m & 738a272653SPeter Holm ./$0 find & 748a272653SPeter Holm done 758a272653SPeter Holm sleep 60 768a272653SPeter Holm rm -f $CONT 778a272653SPeter Holm ../tools/killall.sh 788a272653SPeter Holm wait 798a272653SPeter Holm 808a272653SPeter Holm for i in `jot $mounts`; do 818a272653SPeter Holm m=$((i + mdstart - 1)) 828a272653SPeter Holm while mount | grep -q "on ${mntpoint}$m "; do 838a272653SPeter Holm umount ${mntpoint}$m && break 848a272653SPeter Holm sleep 1 858a272653SPeter Holm done 868a272653SPeter Holm mdconfig -d -u $m 878a272653SPeter Holm done 888a272653SPeter Holm ./cleanup.sh 898a272653SPeter Holm exit 0 908a272653SPeter Holmelse 918a272653SPeter Holm if [ $1 = find ]; then 928a272653SPeter Holm while [ -f $CONT ]; do 938a272653SPeter Holm find ${mntpoint}* -maxdepth 1 -ls > /dev/null 2>&1 948a272653SPeter Holm sleep .1 958a272653SPeter Holm done 968a272653SPeter Holm else 978a272653SPeter Holm export RUNTIME=15s 988a272653SPeter Holm export runRUNTIME=15s 998a272653SPeter Holm # The test: Parallel mount and unmounts 1008a272653SPeter Holm start=`date '+%s'` 1018a272653SPeter Holm while [ $((`date '+%s'` - start)) -lt 300 ]; do 1028a272653SPeter Holm m=$1 103608c97bfSPeter Holm mount /dev/md${m} ${mntpoint}$m && 1048a272653SPeter Holm chmod 777 ${mntpoint}$m 1058a272653SPeter Holm export RUNDIR=${mntpoint}$m/stressX 1068a272653SPeter Holm export CTRLDIR=${mntpoint}$m/stressX.control 1078a272653SPeter Holm export mkfifoLOAD=80 1088a272653SPeter Holm export socketLOAD=80 1098a272653SPeter Holm export TP=" 1108a272653SPeter Holm testcases/mkfifo/mkfifo 1118a272653SPeter Holm testcases/mkdir/mkdir 1128a272653SPeter Holm " 1138a272653SPeter Holm (cd ${mntpoint}$m && find . -delete) 1148a272653SPeter Holm su $testuser -c 'cd ..; ./testcases/run/run $TP' > \ 1158a272653SPeter Holm /dev/null 2>&1 1168a272653SPeter Holm 1178a272653SPeter Holm while mount | grep -q "on ${mntpoint}$m "; do 1188a272653SPeter Holm opt=$([ $((`date '+%s'` % 2)) -eq 0 ] && echo "-f") 1198a272653SPeter Holm umount $opt ${mntpoint}$m > /dev/null 2>&1 1208a272653SPeter Holm [ -f $CONT ] || break 2 1218a272653SPeter Holm done 1228a272653SPeter Holm done 1238a272653SPeter Holm rm -f $CONT 1248a272653SPeter Holm fi 1258a272653SPeter Holmfi 126