Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 19 Feb 2010 16:36:09 +0000 (UTC)
From:      Rick Macklem <rmacklem@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   svn commit: r204091 - stable/8/sys/fs/nfsserver
Message-ID:  <201002191636.o1JGa9hO038996@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201002191636.o1JGa9hO038996>