From d6a5662adb0a7166e01ebc52d243a05f009aa3f7 Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Wed, 24 Aug 2005 12:59:51 +0000 Subject: [PATCH] make mkfs make filesystems with default block size the maximum, instead of 8K --- commands/simple/mkfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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", -- 2.44.0