diff mbox series

[v2,2/2] fsx: check ENOSYS in test_copy_range() & test_fallocate()

Message ID 20190104081927.112622-3-houtao1@huawei.com (mailing list archive)
State New, archived
Headers show
Series tiny fixes for xfstests | expand

Commit Message

Hou Tao Jan. 4, 2019, 8:19 a.m. UTC
In configure script, we only check whether or not the build
of test program succeeds, but that doesn't mean the kernel
has implemented the syscall, so checking for this case.

Signed-off-by: Hou Tao <houtao1@huawei.com>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
---
v2:
	* also check ENOSYS for fallocate syscall
---
 ltp/fsx.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/ltp/fsx.c b/ltp/fsx.c
index 316f08eb..f4a1c7cf 100644
--- a/ltp/fsx.c
+++ b/ltp/fsx.c
@@ -1583,7 +1583,7 @@  test_copy_range(void)
 	loff_t o1 = 0, o2 = 0;
 
 	if (syscall(__NR_copy_file_range, fd, &o1, fd, &o2, 0, 0) == -1 &&
-	    (errno == EOPNOTSUPP || errno == ENOTTY)) {
+	    (errno == ENOSYS || errno == EOPNOTSUPP || errno == ENOTTY)) {
 		if (!quiet)
 			fprintf(stderr,
 				"main: filesystem does not support "
@@ -2423,7 +2423,8 @@  __test_fallocate(int mode, const char *mode_str)
 #ifdef HAVE_LINUX_FALLOC_H
 	int ret = 0;
 	if (!lite) {
-		if (fallocate(fd, mode, file_size, 1) && errno == EOPNOTSUPP) {
+		if (fallocate(fd, mode, file_size, 1) &&
+		    (errno == ENOSYS || errno == EOPNOTSUPP)) {
 			if(!quiet)
 				fprintf(stderr,
 					"main: filesystem does not support "