chiark / gitweb /
tmpfiles: log unaccessible FUSE mount points only as debug message
authorKay Sievers <kay@vrfy.org>
Thu, 17 Oct 2013 01:20:46 +0000 (03:20 +0200)
committerKay Sievers <kay@vrfy.org>
Thu, 17 Oct 2013 01:20:46 +0000 (03:20 +0200)
src/tmpfiles/tmpfiles.c

index 3cc831a28e8812ab372dc3579da60b10f9a85a41..e23847bbea65e1180598720c92ab30c178d41d8e 100644 (file)
@@ -275,12 +275,15 @@ static int dir_cleanup(
                         continue;
 
                 if (fstatat(dirfd(d), dent->d_name, &s, AT_SYMLINK_NOFOLLOW) < 0) {
+                        if (errno == ENOENT)
+                                continue;
 
-                        if (errno != ENOENT) {
+                        /* FUSE, NFS mounts, SELinux might return EACCES */
+                        if (errno == EACCES)
+                                log_debug("stat(%s/%s) failed: %m", p, dent->d_name);
+                        else
                                 log_error("stat(%s/%s) failed: %m", p, dent->d_name);
-                                r = -errno;
-                        }
-
+                        r = -errno;
                         continue;
                 }