diff options
author | Martin Natano <natano@cvs.openbsd.org> | 2016-11-10 08:33:12 +0000 |
---|---|---|
committer | Martin Natano <natano@cvs.openbsd.org> | 2016-11-10 08:33:12 +0000 |
commit | 3ad2a006648310e0c7b70e0877b7815d56424442 (patch) | |
tree | 14e975633453ca35d925fb223555abcbfc5eeb64 /usr.sbin/makefs | |
parent | 311c0d68a4fd518ffb25de5d02f693d2f572f359 (diff) |
Sync bsize and fsize defaults with newfs.
Diffstat (limited to 'usr.sbin/makefs')
-rw-r--r-- | usr.sbin/makefs/ffs.c | 6 |
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 */ |