"and may take an argument which\n"
"is set off by an equals ('=') sign. "
"Valid extended options are:\n"
- "\tea_ver=<ea_version (1 or 2)>\n"
- "\tuninit_groups\n"
- "\tinit_groups\n\n"), stderr);
+ "\tea_ver=<ea_version (1 or 2)>\n\n"), stderr);
exit(1);
}
}
{ E2P_FEATURE_RO_INCOMPAT, EXT4_FEATURE_RO_COMPAT_HUGE_FILE,
"huge_file" },
{ E2P_FEATURE_RO_INCOMPAT, EXT4_FEATURE_RO_COMPAT_GDT_CSUM,
+ "uninit_bg" },
+ { E2P_FEATURE_RO_INCOMPAT, EXT4_FEATURE_RO_COMPAT_GDT_CSUM,
"uninit_groups" },
{ E2P_FEATURE_RO_INCOMPAT, EXT4_FEATURE_RO_COMPAT_DIR_NLINK,
"dir_nlink" },
@JDEV@must be created with the same
@JDEV@block size as the filesystems that will be using it.
.TP
-.B uninit_groups
+.B uninit_bg
Create a filesystem without initializing all of the groups. This speeds
up filesystem creation time noticably, and can also reduce
.BR e2fsck time
.B Tune2fs
only supports clearing this filesystem feature.
.TP
-.B uninit_groups
+.B uninit_bg
Allow the kernel to initialize bitmaps and inode tables and keep a high
watermark for the unused inodes in a filesystem, to reduce
.BR e2fsck (8)
.IP
After setting or clearing
.BR sparse_super ,
-.BR uninit_groups ,
+.BR uninit_bg ,
.BR filetype ,
or
.B resize_inode
can be run to convert existing directories to the hashed B-tree format.
Enabling certain filesystem features may prevent the filesystem from being
mounted by kernels which do not support those features. In particular the
-.BR uninit_groups
+.BR uninit_bg
and
.BR flex_bg
features are only supported by the ext4 filesystem.
if (fs->super->s_feature_ro_compat & EXT4_FEATURE_RO_COMPAT_GDT_CSUM) {
com_err(program_name, EXT2_ET_RO_UNSUPP_FEATURE,
- ":- uninit_groups");
+ ":- uninit_bg");
exit(1);
}
SKIP_GUNZIP="true"
touch $TMPFILE
-$MKE2FS -N 32 -F -o Linux -O uninit_groups -b 1024 $TMPFILE 10000 > /dev/null 2>&1
+$MKE2FS -N 32 -F -o Linux -O uninit_bg -b 1024 $TMPFILE 10000 > /dev/null 2>&1
$DEBUGFS -w $TMPFILE << EOF > /dev/null 2>&1
set_current_time 200704102100
set_super_value lastcheck 0
Writing inode tables: done
Writing superblocks and filesystem accounting information: done
-Filesystem features: ext_attr resize_inode dir_index filetype sparse_super uninit_groups
+Filesystem features: ext_attr resize_inode dir_index filetype sparse_super uninit_bg
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Last mounted on: <not available>
Filesystem magic number: 0xEF53
Filesystem revision #: 1 (dynamic)
-Filesystem features: ext_attr resize_inode dir_index filetype sparse_super uninit_groups
+Filesystem features: ext_attr resize_inode dir_index filetype sparse_super uninit_bg
Default mount options: (none)
Filesystem state: clean
Errors behavior: Continue
DESCRIPTION="uninitialized group feature"
FS_SIZE=131072
-MKE2FS_OPTS="-O uninit_groups"
+MKE2FS_OPTS="-O uninit_bg"
. $cmd_dir/run_mke2fs