aboutsummaryrefslogtreecommitdiff
path: root/mount.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2023-05-17 16:47:22 +0200
committerJakob Unterwurzacher2023-05-17 16:47:22 +0200
commita40e9a8622b0d79ba0c18361104c47375ebb89a1 (patch)
tree256bf083259cab4d42debcad00f177b29d8fcd84 /mount.go
parent8d3b992824072a3b487214812655a35fd28ee4dc (diff)
mount: set DirectMount: true
Attempt to directly call mount(2) before trying fusermount. This means we can do without fusermount if running as root. https://github.com/rfjakob/gocryptfs/issues/697
Diffstat (limited to 'mount.go')
-rw-r--r--mount.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/mount.go b/mount.go
index a229245..d856e49 100644
--- a/mount.go
+++ b/mount.go
@@ -396,6 +396,9 @@ func initGoFuse(rootNode fs.InodeEmbedder, args *argContainer) *fuse.Server {
// Setting SyncRead disables FUSE_CAP_ASYNC_READ. This makes the kernel
// do everything in-order without parallelism.
SyncRead: args.serialize_reads,
+ // Attempt to directly call mount(2) before trying fusermount. This means we
+ // can do without fusermount if running as root.
+ DirectMount: true,
}
mOpts := &fuseOpts.MountOptions