From owner-freebsd-ports@FreeBSD.ORG Wed Dec 21 22:50:12 2011 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0E3141065675 for ; Wed, 21 Dec 2011 22:50:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id ED8D38FC17 for ; Wed, 21 Dec 2011 22:50:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id pBLMoBmZ012309 for ; Wed, 21 Dec 2011 22:50:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id pBLMoBZT012308; Wed, 21 Dec 2011 22:50:11 GMT (envelope-from gnats) Date: Wed, 21 Dec 2011 22:50:11 GMT Message-Id: <201112212250.pBLMoBZT012308@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/16265: commit references a PR X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Dec 2011 22:50:12 -0000 The following reply was made to PR ports/16265; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/16265: commit references a PR Date: Wed, 21 Dec 2011 22:49:25 +0000 (UTC) Author: mckusick Date: Wed Dec 21 22:49:16 2011 New Revision: 228794 URL: http://svn.freebsd.org/changeset/base/228794 Log: Reduce NFPI by half to keep the default number of inodes the same with the now default 32K/4K filesystem the same as the number of inodes in the previously default 16K/2K filesystem. PR: bin/16265 Reported by: Olivier Cochard-Labbe MFC: 4 weeks (9 is the only affected branch) Modified: head/sbin/newfs/newfs.h Modified: head/sbin/newfs/newfs.h ============================================================================== --- head/sbin/newfs/newfs.h Wed Dec 21 22:13:50 2011 (r228793) +++ head/sbin/newfs/newfs.h Wed Dec 21 22:49:16 2011 (r228794) @@ -70,7 +70,7 @@ * We allocate one inode slot per NFPI fragments, expecting this * to be far more than we will ever need. */ -#define NFPI 4 +#define NFPI 2 /* * variables set up by front end. _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"