From owner-svn-src-stable-8@FreeBSD.ORG Sat Oct 30 01:24:26 2010 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C1175106564A; Sat, 30 Oct 2010 01:24:26 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AF4E98FC12; Sat, 30 Oct 2010 01:24:26 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o9U1OQCE073222; Sat, 30 Oct 2010 01:24:26 GMT (envelope-from kib@svn.freebsd.org) Received: (from kib@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o9U1OQ87073220; Sat, 30 Oct 2010 01:24:26 GMT (envelope-from kib@svn.freebsd.org) Message-Id: <201010300124.o9U1OQ87073220@svn.freebsd.org> From: Konstantin Belousov Date: Sat, 30 Oct 2010 01:24:26 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r214544 - stable/8/share/man/man7 X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Oct 2010 01:24:26 -0000 Author: kib Date: Sat Oct 30 01:24:26 2010 New Revision: 214544 URL: http://svn.freebsd.org/changeset/base/214544 Log: MFC r213917: Document vfs.ncsizefactor and vfs.ncnegfactor. Modified: stable/8/share/man/man7/tuning.7 Directory Properties: stable/8/share/man/man7/ (props changed) Modified: stable/8/share/man/man7/tuning.7 ============================================================================== --- stable/8/share/man/man7/tuning.7 Sat Oct 30 01:19:15 2010 (r214543) +++ stable/8/share/man/man7/tuning.7 Sat Oct 30 01:24:26 2010 (r214544) @@ -23,7 +23,7 @@ .\" .\" $FreeBSD$ .\" -.Dd January 23, 2009 +.Dd October 16, 2010 .Dt TUNING 7 .Os .Sh NAME @@ -511,6 +511,24 @@ Also, higher write queueing values may add latency to reads occurring at the same time. .Pp +The +.Va vfs.ncsizefactor +sysctl defines how large VFS namecache may grow. +The number of currently allocated entries in namecache is provided by +.Va debug.numcache +sysctl and the condition +debug.numcache < kern.maxvnodes * vfs.ncsizefactor +is adhered to. +.Pp +The +.Va vfs.ncnegfactor +sysctl defines how many negative entries VFS namecache is allowed to create. +The number of currently allocated negative entries is provided by +.Va debug.numneg +sysctl and the condition +vfs.ncnegfactor * debug.numneg < debug.numcache +is adhered to. +.Pp There are various other buffer-cache and VM page cache related sysctls. We do not recommend modifying these values. As of