From 54466d2c426b046a90751acbe6b9a5ed37048de0 Mon Sep 17 00:00:00 2001 From: Tyler Hall Date: Fri, 26 Jul 2024 22:49:29 -0400 Subject: Pass through nosymfollow mount option This option is handled in VFS. Added in Linux 5.10 dab741e0e02bd3c4f5e2e97be74b39df2523fc6e Signed-off-by: Tyler Hall --- util/fusermount.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'util/fusermount.c') diff --git a/util/fusermount.c b/util/fusermount.c index 5647af4..e40c457 100644 --- a/util/fusermount.c +++ b/util/fusermount.c @@ -708,6 +708,8 @@ static struct mount_flags mount_flags[] = { {"strictatime", MS_STRICTATIME, 1, 1}, {"nostrictatime", MS_STRICTATIME, 0, 1}, {"dirsync", MS_DIRSYNC, 1, 1}, + {"symfollow", MS_NOSYMFOLLOW, 0, 1}, + {"nosymfollow", MS_NOSYMFOLLOW, 1, 1}, {NULL, 0, 0, 0} }; -- cgit v1.2.3