]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
fd-util: accept that kcmp might fail with EPERM/EACCES
authorSjoerd Simons <sjoerd.simons@collabora.co.uk>
Tue, 28 Aug 2018 07:32:18 +0000 (09:32 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Wed, 29 Aug 2018 15:53:00 +0000 (17:53 +0200)
In a container the kcmp call might well be blocked; Accept that and fall
back to fstat in that case.

src/basic/fd-util.c

index e085dc23b43980bbf458b1b87d1f13cb8e95f790..b97bd191ab2db928f207d370f7f7c48117698d29 100644 (file)
@@ -277,7 +277,7 @@ int same_fd(int a, int b) {
                 return true;
         if (r > 0)
                 return false;
-        if (errno != ENOSYS)
+        if (!IN_SET(errno, ENOSYS, EACCES, EPERM))
                 return -errno;
 
         /* We don't have kcmp(), use fstat() instead. */