From: Ben Gras Date: Wed, 24 Aug 2005 12:59:51 +0000 (+0000) Subject: make mkfs make filesystems with default block size the maximum, instead X-Git-Tag: v3.1.0~294 X-Git-Url: http://zhaoyanbai.com/repos/icons/apache_pb.png?a=commitdiff_plain;h=d6a5662adb0a7166e01ebc52d243a05f009aa3f7;p=minix.git make mkfs make filesystems with default block size the maximum, instead of 8K --- diff --git a/commands/simple/mkfs.c b/commands/simple/mkfs.c index 1db8bf521..b6ad41977 100755 --- a/commands/simple/mkfs.c +++ b/commands/simple/mkfs.c @@ -196,7 +196,7 @@ char *argv[]; } if(fs_version == 3) { - if(!block_size) block_size = 8192; /* V3 default block size */ + if(!block_size) block_size = MAX_BLOCK_SIZE; /* V3 default block size */ if(block_size%SECTOR_SIZE || block_size < MIN_BLOCK_SIZE) { fprintf(stderr, "block size must be multiple of sector (%d) " "and at least %d bytes\n",