Skip to content

Commit

Permalink
fusedev: drop newer fusermount3 mount options
Browse files Browse the repository at this point in the history
For one thing, we are not using them. For another thing, they cause
compatibility issues with older libfuse since they were just added
in the latest libfuse 3.14.1.

Signed-off-by: Peng Tao <[email protected]>
  • Loading branch information
bergwolf authored and eryugey committed Apr 19, 2023
1 parent e644983 commit ffaea12
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/transport/fusedev/linux_session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -408,10 +408,6 @@ fn msflags_to_string(flags: MsFlags) -> String {
(MsFlags::MS_NOEXEC, ("exec", "noexec")),
(MsFlags::MS_SYNCHRONOUS, ("async", "sync")),
(MsFlags::MS_NOATIME, ("atime", "noatime")),
(MsFlags::MS_NODIRATIME, ("diratime", "nodiratime")),
(MsFlags::MS_LAZYTIME, ("nolazytime", "lazytime")),
(MsFlags::MS_RELATIME, ("norelatime", "relatime")),
(MsFlags::MS_STRICTATIME, ("nostrictatime", "strictatime")),
]
.map(
|(flag, (neg, pos))| {
Expand Down

0 comments on commit ffaea12

Please sign in to comment.