projects
/
bluesky.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8a2da0d
)
Explicitly mount NFS using version 3 in microbenchmarks.
author
Michael Vrable
<mvrable@cs.ucsd.edu>
Fri, 26 Feb 2010 01:19:26 +0000
(17:19 -0800)
committer
Michael Vrable
<mvrable@cs.ucsd.edu>
Fri, 26 Feb 2010 01:19:26 +0000
(17:19 -0800)
We only support version 3, so ask for that when mounting. This can prevent
problems in mounting in some cases, so we don't return the proper error
messages when a client asks for a version we don't support.
microbench/run.sh
patch
|
blob
|
history
diff --git
a/microbench/run.sh
b/microbench/run.sh
index
8bae1c2
..
8b0856d
100755
(executable)
--- a/
microbench/run.sh
+++ b/
microbench/run.sh
@@
-18,7
+18,7
@@
run_setup() {
$NFSD &
NFSPID=$!
sleep 0.5
- sudo mount -t nfs -o tcp,hard,intr localhost:/bluesky /mnt/bluesky || die "Mounting NFS"
+ sudo mount -t nfs -o tcp,hard,intr
,vers=3
localhost:/bluesky /mnt/bluesky || die "Mounting NFS"
}
run_cleanup() {