MFC: r203849

Change the default value for vfs.newnfs.enable_locallocks to 0 for
the experimental NFS server, since local locking is known to be
broken and the patch to fix it is still a work in progress.
This commit is contained in:
Rick Macklem 2010-02-19 16:36:08 +00:00
parent 3343356549
commit 3ed680d8da

View file

@ -33,7 +33,7 @@ __FBSDID("$FreeBSD$");
struct nfsrv_stablefirst nfsrv_stablefirst;
int nfsrv_issuedelegs = 0;
int nfsrv_dolocallocks = 1;
int nfsrv_dolocallocks = 0;
struct nfsv4lock nfsv4rootfs_lock;
extern int newnfs_numnfsd;