Prepare for microbench re-run with latest code
[bluesky.git] / microbench / setup / run-benchmark
index 6eb40ff..b38ca8d 100755 (executable)
@@ -4,7 +4,7 @@
 
 
 # Defaults
-SERVER=c09-45.sysnet.ucsd.edu
+SERVER=vrable2.sysnet.ucsd.edu
 MNTDIR=/mnt/bluesky
 
 BENCH_FILESIZE=$((1 << 12))
@@ -17,6 +17,7 @@ BENCH_OPS=100
 BENCH_INTERVALS=4
 BENCH_DIRSIZE=256
 BENCH_LOCKEDMEM=$((4096 - 256))
+NFS_BLOCKSIZE=1048576
 
 lock_memory() {
     MEM=$1
@@ -41,7 +42,7 @@ done
 # Prepare to run the benchmark
 lock_memory $BENCH_LOCKEDMEM
 
-mount -t nfs -o vers=3,tcp,rw,soft,intr $SERVER:/export $MNTDIR
+mount -t nfs -o vers=3,tcp,rw,soft,intr,rsize=$NFS_BLOCKSIZE,wsize=$NFS_BLOCKSIZE $SERVER:/export $MNTDIR
 
 pushd $MNTDIR >/dev/null