[LTP] [PATCH V6 02/10] lapi/fsmount.h: Add fsopen_supported_by_kernel()
Viresh Kumar
viresh.kumar@linaro.org
Thu Mar 12 13:01:02 CET 2020
Add a helper to check if the fsmount() related syscalls are supported by
the kernel or not.
Reviewed-by: Petr Vorel <pvorel@suse.cz>
Acked-by: Li Wang <liwang@redhat.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
---
include/lapi/fsmount.h | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/include/lapi/fsmount.h b/include/lapi/fsmount.h
index 87f2f229c371..94adec2fb609 100644
--- a/include/lapi/fsmount.h
+++ b/include/lapi/fsmount.h
@@ -130,5 +130,16 @@ enum fsconfig_command {
#endif /* OPEN_TREE_CLONE */
+void fsopen_supported_by_kernel(void)
+{
+ if ((tst_kvercmp(5, 2, 0)) < 0) {
+ /* Check if the syscall is backported on an older kernel */
+ TEST(syscall(__NR_fsopen, NULL, 0));
+ if (TST_RET != -1)
+ SAFE_CLOSE(TST_RET);
+ else if (TST_ERR == ENOSYS)
+ tst_brk(TCONF, "Test not supported on kernel version < v5.2");
+ }
+}
#endif /* FSMOUNT_H__ */
--
2.21.0.rc0.269.g1a574e7a288b
More information about the ltp
mailing list