svn commit: r204091 - stable/8/sys/fs/nfsserver
Rick Macklem
rmacklem at FreeBSD.org
Fri Feb 19 16:36:09 UTC 2010
Author: rmacklem
Date: Fri Feb 19 16:36:08 2010
New Revision: 204091
URL: http://svn.freebsd.org/changeset/base/204091
Log:
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.
Modified:
stable/8/sys/fs/nfsserver/nfs_nfsdstate.c
Directory Properties:
stable/8/sys/ (props changed)
stable/8/sys/amd64/include/xen/ (props changed)
stable/8/sys/cddl/contrib/opensolaris/ (props changed)
stable/8/sys/contrib/dev/acpica/ (props changed)
stable/8/sys/contrib/pf/ (props changed)
stable/8/sys/dev/xen/xenpci/ (props changed)
stable/8/sys/netinet/ (props changed)
Modified: stable/8/sys/fs/nfsserver/nfs_nfsdstate.c
==============================================================================
--- stable/8/sys/fs/nfsserver/nfs_nfsdstate.c Fri Feb 19 15:16:00 2010 (r204090)
+++ stable/8/sys/fs/nfsserver/nfs_nfsdstate.c Fri Feb 19 16:36:08 2010 (r204091)
@@ -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-stable-8
mailing list