Merge pull request #3426 from MichaelEischer/fast-fuse

mount: enable fuse readahead
This commit is contained in:
Alexander Neumann
2021-06-14 10:27:41 +02:00
committed by GitHub

View File

@@ -122,6 +122,7 @@ func runMount(opts MountOptions, gopts GlobalOptions, args []string) error {
mountOptions := []systemFuse.MountOption{
systemFuse.ReadOnly(),
systemFuse.FSName("restic"),
systemFuse.MaxReadahead(128 * 1024),
}
if opts.AllowOther {