From owner-cvs-src-old@FreeBSD.ORG Thu Jan 21 20:57:38 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9E86010656A3 for ; Thu, 21 Jan 2010 20:57:38 +0000 (UTC) (envelope-from rmacklem@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8B45C8FC25 for ; Thu, 21 Jan 2010 20:57:38 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o0LKvchE017464 for ; Thu, 21 Jan 2010 20:57:38 GMT (envelope-from rmacklem@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o0LKvcoX017463 for cvs-src-old@freebsd.org; Thu, 21 Jan 2010 20:57:38 GMT (envelope-from rmacklem@repoman.freebsd.org) Message-Id: <201001212057.o0LKvcoX017463@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rmacklem@repoman.freebsd.org using -f From: Rick Macklem Date: Thu, 21 Jan 2010 20:57:25 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/nfsclient nfs_vfsops.c nfs_vnops.c nfsmount.h nfsnode.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jan 2010 20:57:38 -0000 rmacklem 2010-01-21 20:57:25 UTC FreeBSD src repository Modified files: sys/nfsclient nfs_vfsops.c nfs_vnops.c nfsmount.h nfsnode.h Log: SVN rev 202767 on 2010-01-21 20:57:25Z by rmacklem Add a timeout for the negative name cache entries in the NFS client. This avoids a bogus negative name cache entry from persisting forever when another client creates an entry with the same name within the same NFS server time of day clock tick. The mount option negnametimeo can be used to override the default timeout interval on a per-mount-point basis. Setting negnametimeo to 0 disables negative name caching for the mount point. I also fixed one obvious typo where args.timeo should be args.maxgrouplist. Submitted by: jhb (earlier version) Reviewed by: jhb MFC after: 2 weeks Revision Changes Path 1.232 +18 -6 src/sys/nfsclient/nfs_vfsops.c 1.323 +9 -2 src/sys/nfsclient/nfs_vnops.c 1.39 +5 -0 src/sys/nfsclient/nfsmount.h 1.67 +1 -0 src/sys/nfsclient/nfsnode.h