diff options
author | Szabolcs Nagy <nsz@port70.net> | 2020-12-19 20:56:23 +0000 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2021-02-15 09:16:06 -0500 |
commit | a7456524d7bc95db76998804c8dc4bcfbeccab22 (patch) | |
tree | 94862889823c6e36b1eb84025173451b6e9a45c0 /include | |
parent | 54ca1cc7f1bce1c19593c0176aead964a2534933 (diff) | |
download | musl-a7456524d7bc95db76998804c8dc4bcfbeccab22.tar.gz musl-a7456524d7bc95db76998804c8dc4bcfbeccab22.tar.bz2 musl-a7456524d7bc95db76998804c8dc4bcfbeccab22.tar.xz musl-a7456524d7bc95db76998804c8dc4bcfbeccab22.zip |
sys/mount.h: add MS_NOSYMFOLLOW from linux v5.10
path resolution does not follow symlinks on nosymfollow mounts (but
readlink still does), see
linux commit dab741e0e02bd3c4f5e2e97be74b39df2523fc6e
Add a "nosymfollow" mount option.
Diffstat (limited to 'include')
-rw-r--r-- | include/sys/mount.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sys/mount.h b/include/sys/mount.h index 57a89c09..09bd6e9d 100644 --- a/include/sys/mount.h +++ b/include/sys/mount.h @@ -31,6 +31,7 @@ extern "C" { #define MS_REMOUNT 32 #define MS_MANDLOCK 64 #define MS_DIRSYNC 128 +#define MS_NOSYMFOLLOW 256 #define MS_NOATIME 1024 #define MS_NODIRATIME 2048 #define MS_BIND 4096 |