test/test_syscalls.c: allow EBADF in fcheck_stat() (#631)
authorLuis Henriques <luis-henrix@users.noreply.github.com>
Sat, 20 Nov 2021 10:09:25 +0000 (10:09 +0000)
committerGitHub <noreply@github.com>
Sat, 20 Nov 2021 10:09:25 +0000 (10:09 +0000)
Test test/test_examples.py::test_passthrough_hp[False] fails because, on
kernels >= 5.14, fstat() will return -EBADF:

3 [check_unlinked_testfile] fcheck_stat() - fstat: Bad file descriptor
4 [check_unlinked_testfile] fcheck_stat() - fstat: Bad file descriptor
5 [check_unlinked_testfile] fcheck_stat() - fstat: Bad file descriptor
9 [check_unlinked_testfile] fcheck_stat() - fstat: Bad file descriptor
...

This patch simply whitelists the EBADF errno code.

Signed-off-by: Luís Henriques <lhenriques@suse.de>
Co-authored-by: Luís Henriques <lhenriques@suse.de>
test/test_syscalls.c

index 160a2acc4cb5a699a3d67a242a0ec2bac22b9f49..65292ed5ea8ccc4d69a75f124cdf044e8ed718c7 100644 (file)
@@ -277,7 +277,8 @@ static int fcheck_stat(int fd, int flags, struct stat *st)
                if (flags & O_PATH) {
                        // With O_PATH fd, the server does not have to keep
                        // the inode alive so FUSE inode may be stale or bad
-                       if (errno == ESTALE || errno == EIO || errno == ENOENT)
+                       if (errno == ESTALE || errno == EIO ||
+                           errno == ENOENT || errno == EBADF)
                                return 0;
                }
                PERROR("fstat");