You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
statx: fallback to lstat if ENOSYS is returned in errno.
- Security mechanisms used in Linux VMs, eg libseccomp and
Docker's security policy may block certain system calls if they
are new and unknown to the library and ENOSYS may be returned
instead of EPERM.
- Update the use of statx() to disable future calls and fallback to
lstat() if ENOSYS is returned.
// statx() may be blocked by a security mechanism (eg libseccomp or Docker) even if the kernel verison is new enough. EPERM or ENONSYS may be reported.
920
+
// Dont try to use it in future and fallthough to a normal lstat() call.
0 commit comments