diff options
Diffstat (limited to 'mount.go')
-rw-r--r-- | mount.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -286,7 +286,7 @@ func initFuseFrontend(key []byte, args *argContainer, confFile *configfile.ConfF mOpts := fuse.MountOptions{ // Bigger writes mean fewer calls and better throughput. // Capped to 128KiB on Linux. - MaxWrite: 1048576, + MaxWrite: fuse.MAX_KERNEL_WRITE, } if args.allow_other { tlog.Info.Printf(tlog.ColorYellow + "The option \"-allow_other\" is set. Make sure the file " + |