diff options
author | Dan McDonald <danmcd@joyent.com> | 2021-07-28 20:01:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-28 20:01:14 -0400 |
commit | 60e0b1e68024bd838c98cd2f6a75875b11655ca7 (patch) | |
tree | ff97163a1ad08278de7a757286631ead4be3384f /usr/src/uts/common/sys | |
parent | f296fe3752760624e99cd00a72103976ed6b38b5 (diff) | |
download | illumos-joyent-release-20210729.tar.gz |
OS-8289 Pull in June 2021 LX fixes from OmniOSrelease-20210729
Actual-author: Andy Fiddaman <andy@omnios.org>
Reviewed by: Mike Zeller <mike.zeller@joyent.com>
Approved by: Mike Zeller <mike.zeller@joyent.com>
Diffstat (limited to 'usr/src/uts/common/sys')
-rw-r--r-- | usr/src/uts/common/sys/file.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/usr/src/uts/common/sys/file.h b/usr/src/uts/common/sys/file.h index be96a68d46..66620ab7b9 100644 --- a/usr/src/uts/common/sys/file.h +++ b/usr/src/uts/common/sys/file.h @@ -125,6 +125,11 @@ typedef struct fpollinfo { * Private interface for lx O_PATH|O_NOFOLLOW emulation for symlinks. */ #define __FLXPATH 0x80000000 +/* + * Private interface for lx fstatat(AT_NO_AUTOMOUNT) emulation. + * Since usage is disjoint, the __FLXPATH bit is re-used. + */ +#define __FLXNOAUTO 0x80000000 #if defined(_KERNEL) || defined(_FAKE_KERNEL) |