Update to deal with the fact that the INDEX_FL code in the ext2 2.4
code accidentally had the INDEX_FL backwards compatibility code
removed. E2fsck will now fix HTREE corruptions in preen mode, and
mke2fs will not create filesystems with the dir_index flag set
by default. (The user has to specifically request it.)
diff --git a/misc/mke2fs.c b/misc/mke2fs.c
index 0371c37..d03d80a 100644
--- a/misc/mke2fs.c
+++ b/misc/mke2fs.c
@@ -843,7 +843,9 @@
param.s_rev_level = 1; /* Create revision 1 filesystems now */
param.s_feature_incompat |= EXT2_FEATURE_INCOMPAT_FILETYPE;
param.s_feature_ro_compat |= EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER;
+#if 0
param.s_feature_compat |= EXT2_FEATURE_COMPAT_DIR_INDEX;
+#endif
#ifdef __linux__
if (uname(&ut)) {