xref: /dragonfly/test/stress/stress2/misc/nfs9.sh (revision e5a92d33)
1#!/bin/sh
2
3#
4# Copyright (c) 2008 Peter Holm <pho@FreeBSD.org>
5# All rights reserved.
6#
7# Redistribution and use in source and binary forms, with or without
8# modification, are permitted provided that the following conditions
9# are met:
10# 1. Redistributions of source code must retain the above copyright
11#    notice, this list of conditions and the following disclaimer.
12# 2. Redistributions in binary form must reproduce the above copyright
13#    notice, this list of conditions and the following disclaimer in the
14#    documentation and/or other materials provided with the distribution.
15#
16# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26# SUCH DAMAGE.
27#
28# $FreeBSD$
29#
30
31# Copy of nfs4.sh, where it was discovered that a missing killall.sh script
32# turned up quite a few new panics. For example:
33
34# vfs_mount_destroy: nonzero writeopcount
35# Lock nfs not locked @ kern/vfs_default.c:462
36# Assertion x == LK_SHARERS_LOCK(1) failed at kern/kern_lock.c:236
37
38[ `id -u ` -ne 0 ] && echo "Must be root!" && exit 1
39
40. ../default.cfg
41
42[ ! -d $mntpoint ] &&  mkdir $mntpoint
43for i in `jot 10`; do
44	mount | grep "$mntpoint" | grep nfs > /dev/null && umount $mntpoint
45	mount -t nfs -o tcp -o retrycnt=3 -o intr -o soft -o rw 127.0.0.1:/tmp $mntpoint
46	rm -rf $mntpoint/stressX/*
47	rm -rf /tmp/stressX.control
48
49	export RUNDIR=$mntpoint/nfs/stressX
50	[ ! -d $RUNDIR ] && mkdir -p $RUNDIR
51	export runRUNTIME=3m
52	rm -rf /tmp/stressX.control/*
53
54	(cd ..; ./run.sh all.cfg) &
55	sleep 60
56
57	while mount | grep -q $mntpoint; do
58		umount -f $mntpoint > /dev/null 2>&1
59	done
60	kill -9 $!
61done
62../tools/killall.sh
63