3 # Start up the NFS server.
7 SERVER=c09-45.sysnet.ucsd.edu
10 BENCH_FILESIZE=$((1 << 12))
11 BENCH_FILECOUNT=$((8))
18 # Export any environment variables specified on the command line
21 if echo "$e" | grep = >/dev/null; then
27 # Prepare to run the benchmark
28 mount -t nfs -o vers=3,tcp,rw,soft,intr $SERVER:/export $MNTDIR
30 pushd $MNTDIR >/dev/null
32 for t in $(seq 0 $(($BENCH_THREADS - 1))); do
34 for i in $(seq 0 $(($BENCH_FILECOUNT - 1))); do
35 dd if=/dev/zero of=t$t/$i bs=$BENCH_FILESIZE count=1
39 /scratch/bluesky.git/microbench/mixedbench \