Whamcloud - gitweb
LU-11609 mke2fs: allow 64bit feature without extents
authorAndreas Dilger <adilger@whamcloud.com>
Sat, 3 Nov 2018 09:10:22 +0000 (03:10 -0600)
committerAndreas Dilger <adilger@whamcloud.com>
Thu, 15 Dec 2022 22:29:59 +0000 (15:29 -0700)
commit976d0865adddc6b93baab3d779099512d3bf5fe0
tree4b56381a46fba9baf555bdf69f55b83be51554ad
parent90d5b784eeaf71579c81a54043eadfeae91dea96
LU-11609 mke2fs: allow 64bit feature without extents

The 64bit feature should be allowed without extents to for 32-bit
metadata_csum checksums to be stored in the group descriptor.
Change the extents check to check for more than 2^32 blocks instead
of the 64bit feature flag.  This also avoids warnings later if the
metadata_csum feature is enabled on a filesystem without 64bit.

Consolidate repeated 64bit feature checks into one check.

The fs_blocks_count value is always set when parse_fs_type() is
called, so no need to check if it is zero.

Signed-off-by: Andreas Dilger <adilger@whamcloud.com>
Change-Id: Ie73ff0ed50cfed5d6a9596260c6b6dc32d3ebbe5
Reviewed-on: https://review.whamcloud.com/33897
Tested-by: Jenkins
Tested-by: Maloo <maloo@whamcloud.com>
Reviewed-by: Li Dongyang <dongyangli@ddn.com>
misc/mke2fs.c