svn commit: r203849 - head/sys/fs/nfsserver

Rick Macklem rmacklem at FreeBSD.org
Sun Feb 14 00:18:32 UTC 2010


Author: rmacklem
Date: Sun Feb 14 00:18:32 2010
New Revision: 203849
URL: http://svn.freebsd.org/changeset/base/203849

Log:
  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.
  
  MFC after:	5 days

Modified:
  head/sys/fs/nfsserver/nfs_nfsdstate.c

Modified: head/sys/fs/nfsserver/nfs_nfsdstate.c
==============================================================================
--- head/sys/fs/nfsserver/nfs_nfsdstate.c	Sat Feb 13 23:56:19 2010	(r203848)
+++ head/sys/fs/nfsserver/nfs_nfsdstate.c	Sun Feb 14 00:18:32 2010	(r203849)
@@ -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;


More information about the svn-src-all mailing list