summaryrefslogtreecommitdiffstats
path: root/usr.sbin/makefs
diff options
context:
space:
mode:
authornatano <natano@openbsd.org>2016-11-10 08:33:11 +0000
committernatano <natano@openbsd.org>2016-11-10 08:33:11 +0000
commit10c94a203ff6c47a67f81e39490588cebac363e0 (patch)
treeba05d70cc07551c5aea73f75f027dcc55019c8fc /usr.sbin/makefs
parentRemove the unused cpg field from ffs_opt_t. (diff)
downloadwireguard-openbsd-10c94a203ff6c47a67f81e39490588cebac363e0.tar.xz
wireguard-openbsd-10c94a203ff6c47a67f81e39490588cebac363e0.zip
Sync bsize and fsize defaults with newfs.
Diffstat (limited to 'usr.sbin/makefs')
-rw-r--r--usr.sbin/makefs/ffs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/makefs/ffs.c b/usr.sbin/makefs/ffs.c
index 9e301a36bd3..d8f8ac1ac05 100644
--- a/usr.sbin/makefs/ffs.c
+++ b/usr.sbin/makefs/ffs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ffs.c,v 1.23 2016/11/10 08:26:38 natano Exp $ */
+/* $OpenBSD: ffs.c,v 1.24 2016/11/10 08:33:11 natano Exp $ */
/* $NetBSD: ffs.c,v 1.66 2015/12/21 00:58:08 christos Exp $ */
/*
@@ -98,8 +98,8 @@
/*
* Various file system defaults (cribbed from newfs(8)).
*/
-#define DFL_FRAGSIZE 1024 /* fragment size */
-#define DFL_BLKSIZE 8192 /* block size */
+#define DFL_FRAGSIZE 2048 /* fragment size */
+#define DFL_BLKSIZE 16384 /* block size */
#define DFL_SECSIZE 512 /* sector size */