diff options
author | Edward Tomasz Napierala <trasz@FreeBSD.org> | 2021-04-15 14:24:51 +0000 |
---|---|---|
committer | Edward Tomasz Napierala <trasz@FreeBSD.org> | 2021-04-15 14:30:59 +0000 |
commit | 1663120ae452fe3783c74ce40522caf0e2327608 (patch) | |
tree | af48d6aee1a4a838943236cda40f9d66e5cf7a4e /sys/compat/linux/linux_file.c | |
parent | 788a171c77760c2847b6433c5a914a304d0aa184 (diff) | |
download | src-1663120ae452fe3783c74ce40522caf0e2327608.tar.gz src-1663120ae452fe3783c74ce40522caf0e2327608.zip |
linux: implement O_PATH
Reviewed By: kib
Sponsored By: EPSRC
Differential Revision: https://reviews.freebsd.org/D29773
Diffstat (limited to 'sys/compat/linux/linux_file.c')
-rw-r--r-- | sys/compat/linux/linux_file.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/compat/linux/linux_file.c b/sys/compat/linux/linux_file.c index 0c40a14d58f7..438b100d4e21 100644 --- a/sys/compat/linux/linux_file.c +++ b/sys/compat/linux/linux_file.c @@ -162,6 +162,8 @@ linux_common_openflags(int l_flags) bsd_flags |= O_NOFOLLOW; if (l_flags & LINUX_O_DIRECTORY) bsd_flags |= O_DIRECTORY; + if (l_flags & LINUX_O_PATH) + bsd_flags |= O_PATH; /* XXX LINUX_O_NOATIME: unable to be easily implemented. */ return (bsd_flags); } |