From: Andreas Dilger Date: Wed, 16 Jun 2021 20:48:33 +0000 (-0600) Subject: LU-14767 utils: mkfs.lustre allow lazy_itable_init=1 X-Git-Tag: 2.14.53~59 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;ds=sidebyside;h=a81c093a935c62b9e4586ae930aab7439948d538;hp=a81c093a935c62b9e4586ae930aab7439948d538;p=fs%2Flustre-release.git LU-14767 utils: mkfs.lustre allow lazy_itable_init=1 When "lazy_itable_init=0" was added to the mke2fs options the call to append_unique() to see whether "lazy_itable_init" was already listed in the mke2fs options was incorrect. It checks to see if "lazy_itable_init=0" is already present in the options, and doesn't match "lazy_itable_init=1" if it was specified on the command-line. Separate the key and value passed to append_unique() so that it can check if any form of the key is present in the existing options. Test-Parameters: trivial testlist=conf-sanity Fixes: 701cc249594e ("LU-13533 utils: ext4lazyinit should be disabled") Signed-off-by: Andreas Dilger Change-Id: Ic7a6dbb81f004dd35f0f1c5f5ddec0fb363ebbe5 Reviewed-on: https://review.whamcloud.com/44019 Tested-by: jenkins Tested-by: Maloo Reviewed-by: Jian Yu Reviewed-by: Artem Blagodarenko Reviewed-by: Oleg Drokin ---