Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 13 Jan 2012 07:19:03 +0000 (UTC)
From:      Kirk McKusick <mckusick@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r230049 - stable/9/sbin/newfs
Message-ID:  <201201130719.q0D7J39q048182@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mckusick
Date: Fri Jan 13 07:19:02 2012
New Revision: 230049
URL: http://svn.freebsd.org/changeset/base/230049

Log:
  MFC: 228794
  
  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/162659
  Reported by: Olivier Cochard-Labbe <olivier@cochard.me>

Modified:
  stable/9/sbin/newfs/newfs.h
Directory Properties:
  stable/9/sbin/newfs/   (props changed)

Modified: stable/9/sbin/newfs/newfs.h
==============================================================================
--- stable/9/sbin/newfs/newfs.h	Fri Jan 13 07:10:52 2012	(r230048)
+++ stable/9/sbin/newfs/newfs.h	Fri Jan 13 07:19:02 2012	(r230049)
@@ -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.



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