[LTP] [PATCH v5 05/10] tst_supported_fs: Support skip list when query single fs
Petr Vorel
pvorel@suse.cz
Mon Sep 12 13:21:21 CEST 2022
Hi all,
thread for v4 [1] [2] should have been for v5.
Therefore repeat here there will be diff below:
FYI if anybody wants to test v5 with this fix, it's in my fork in branch
shell/all_filesystems.v5.fixes [3]
Kind regards,
Petr
[1] https://lore.kernel.org/ltp/5e01e854-7cc6-7b08-d1f8-7f0709fbc07d@suse.cz/
[2] https://lore.kernel.org/ltp/Yx7GPOsudkoRn5Nd@pevik/
[3] https://github.com/pevik/ltp/commits/shell/all_filesystems.v5.fixes
diff --git lib/tst_supported_fs_types.c lib/tst_supported_fs_types.c
index 35ec82071..80d0d163a 100644
--- lib/tst_supported_fs_types.c
+++ lib/tst_supported_fs_types.c
@@ -138,17 +138,10 @@ enum tst_fs_impl tst_fs_is_supported(const char *fs_type)
enum tst_fs_impl tst_fs_is_supported_skiplist(const char *fs_type, const char
*const *skiplist)
{
- int ret;
-
- ret = tst_fs_is_supported(fs_type);
-
- if (!ret)
- return ret;
-
if (tst_fs_in_skiplist(fs_type, skiplist))
return TST_FS_UNSUPPORTED;
- return ret;
+ return tst_fs_is_supported(fs_type);
}
const char **tst_get_supported_fs_types(const char *const *skiplist)
More information about the ltp
mailing list