summaryrefslogtreecommitdiffstats
path: root/runcthon
diff options
context:
space:
mode:
Diffstat (limited to 'runcthon')
-rwxr-xr-xruncthon4
1 files changed, 3 insertions, 1 deletions
diff --git a/runcthon b/runcthon
index e8cd3e3..1952816 100755
--- a/runcthon
+++ b/runcthon
@@ -150,14 +150,16 @@ umountall()
}
mkdirs()
{
- protos="udp tcp"
+ protos="tcp"
[ "$rdma" -eq 1 ] && protos="$protos rdma"
+ [ "$noudp" -eq 0 ] && protos="$protos udp"
for proto in $protos
do
for vers in 3 4 41 42
do
[ "$proto" == "udp" -a "$vers" == "4" ] && continue
[ "$proto" == "udp" -a "$vers" == "41" ] && continue
+ [ "$proto" == "udp" -a "$vers" == "42" ] && continue
mkdir ./nfsv$vers$proto
done
done