Details
-
Improvement
-
Resolution: Fixed
-
Minor
-
Lustre 2.13.0, Lustre 2.14.0
-
9223372036854775807
Description
ea_inode has been enabled by default on newly-formatted file systems since commit v2_12_55-71-gf0bc77106d (2.13). Yet, in some test suites and the Lustre test-framework, we explicitly set ‘-O ea_inode’ as a MDT mkfs option.
In test-framework.sh, mkfs_opts() contains
4559 4560 if [ $fstype == ldiskfs ]; then 4561 fs_mkfs_opts+="-O ea_inode,large_dir" 4562
In conf-sanity, test_115() contains
8415 local mds_opts="$(mkfs_opts mds1 $(mdsdevname 1)) \ 8416 --mkfsoptions='-O ea_inode,^resize_inode,meta_bg \ 8417 -N 2247484000 -E lazy_itable_init' --device-size=$IMAGESIZE"
We can remove setting ea_inode in the test-framework and test suites.