greater than 4096, since some kernels don't support ext3
with large block sizes. (Addresses Debian bug #193773)
2003-07-25 Theodore Ts'o <tytso@mit.edu>
+ * mke2fs.c (PRS): Add warning if using -j and the blocksize is
+ greater than 4096, since some kernels don't support ext3
+ with large block sizes. (Addresses Debian bug #193773)
+
* badblocks.c (set_o_direct): Remove debugging printf. (Addresses
Debian bug #201499)
"(max %d), forced to continue\n"),
blocksize, sys_page_size);
}
+ if ((blocksize > 4096) &&
+ (param.s_feature_compat & EXT3_FEATURE_COMPAT_HAS_JOURNAL))
+ fprintf(stderr, "\nWarning: some 2.4 kernels do not support "
+ "blocksizes greater than 4096 \n\tusing ext3."
+ " Use -b 4096 if this is an issue for you.\n\n");
if (param.s_feature_incompat & EXT3_FEATURE_INCOMPAT_JOURNAL_DEV) {
if (!fs_type)