summaryrefslogtreecommitdiffstats
path: root/sbin/mount_nfs/mount_nfs.c
diff options
context:
space:
mode:
authoralfred <alfred@FreeBSD.org>2001-11-12 02:33:52 +0000
committeralfred <alfred@FreeBSD.org>2001-11-12 02:33:52 +0000
commitfa9d19d5b5a167a7b50a018bacf9d0bf68db9491 (patch)
tree661a9bb10d2313edc596f0373f96041cee806ac5 /sbin/mount_nfs/mount_nfs.c
parentbdcad4abe9842b7ce28d140987a31959a30d3665 (diff)
downloadFreeBSD-src-fa9d19d5b5a167a7b50a018bacf9d0bf68db9491.zip
FreeBSD-src-fa9d19d5b5a167a7b50a018bacf9d0bf68db9491.tar.gz
Allow users to use the 'nolockd' or -L options with mount_nfs in order
to avoid the need for rpc.lockd to perform client locks. Using this option a user can revert back to using local locks for NFS mounts like we did before we had rpc.lockd.
Diffstat (limited to 'sbin/mount_nfs/mount_nfs.c')
-rw-r--r--sbin/mount_nfs/mount_nfs.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/sbin/mount_nfs/mount_nfs.c b/sbin/mount_nfs/mount_nfs.c
index 778bdd9..8889d07 100644
--- a/sbin/mount_nfs/mount_nfs.c
+++ b/sbin/mount_nfs/mount_nfs.c
@@ -96,6 +96,7 @@ static const char rcsid[] =
#define ALTF_ACREGMAX 0x10000
#define ALTF_ACDIRMIN 0x20000
#define ALTF_ACDIRMAX 0x40000
+#define ALTF_NOLOCKD 0x80000
struct mntopt mopts[] = {
MOPT_STDOPTS,
@@ -118,6 +119,7 @@ struct mntopt mopts[] = {
{ "acregmax=", 0, ALTF_ACREGMAX, 1 },
{ "acdirmin=", 0, ALTF_ACDIRMIN, 1 },
{ "acdirmax=", 0, ALTF_ACDIRMAX, 1 },
+ { "lockd", 1, ALTF_NOLOCKD, 1 },
{ NULL }
};
@@ -228,6 +230,7 @@ set_flags(int* altflags, int* nfsflags, int dir)
F(RDIRPLUS);
F(RESVPORT);
F(SOFT);
+ F(NOLOCKD);
#undef F
#undef F2
@@ -252,7 +255,7 @@ main(argc, argv)
nfsargs = nfsdefargs;
nfsargsp = &nfsargs;
while ((c = getopt(argc, argv,
- "23a:bcdD:g:I:il:No:PpR:r:sTt:w:x:U")) != -1)
+ "23a:bcdD:g:I:iLl:No:PpR:r:sTt:w:x:U")) != -1)
switch (c) {
case '2':
mountmode = V2;
@@ -303,6 +306,9 @@ main(argc, argv)
case 'i':
nfsargsp->flags |= NFSMNT_INT;
break;
+ case 'L':
+ nfsargsp->flags |= NFSMNT_NOLOCKD;
+ break;
case 'l':
nfsargsp->flags |= NFSMNT_RDIRPLUS;
break;
OpenPOWER on IntegriCloud