aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Chagin <dchagin@FreeBSD.org>2021-05-31 19:30:37 +0000
committerDmitry Chagin <dchagin@FreeBSD.org>2021-05-31 19:30:37 +0000
commit8505eb5dd8f743f29e9c93b6814a34f1890e6c41 (patch)
treea3928cd8698e950cf055cfc6a5c85875cfc8de55
parenta06c12464bb49750c6b113c971e2770408ce422a (diff)
downloadsrc-8505eb5dd8f743f29e9c93b6814a34f1890e6c41.tar.gz
src-8505eb5dd8f743f29e9c93b6814a34f1890e6c41.zip
linux(4): Convert flags before use in utimensat.
Differential Revision: https://reviews.freebsd.org/D30487 MFC after: 2 weeks
-rw-r--r--sys/compat/linux/linux_misc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/compat/linux/linux_misc.c b/sys/compat/linux/linux_misc.c
index fc846df6689f..2be328a0d6d2 100644
--- a/sys/compat/linux/linux_misc.c
+++ b/sys/compat/linux/linux_misc.c
@@ -861,6 +861,9 @@ linux_utimensat(struct thread *td, struct linux_utimensat_args *args)
return (0);
}
+ if (args->flags & LINUX_AT_SYMLINK_NOFOLLOW)
+ flags |= AT_SYMLINK_NOFOLLOW;
+
if (!LUSECONVPATH(td)) {
if (args->pathname != NULL) {
return (kern_utimensat(td, dfd, args->pathname,
@@ -873,9 +876,6 @@ linux_utimensat(struct thread *td, struct linux_utimensat_args *args)
else if (args->flags != 0)
return (EINVAL);
- if (args->flags & LINUX_AT_SYMLINK_NOFOLLOW)
- flags |= AT_SYMLINK_NOFOLLOW;
-
if (path == NULL)
error = kern_futimens(td, dfd, timesp, UIO_SYSSPACE);
else {