svn commit: r230049 - stable/9/sbin/newfs
Kirk McKusick
mckusick at FreeBSD.org
Fri Jan 13 07:19:03 UTC 2012
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 at 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.
More information about the svn-src-stable-9
mailing list