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
commit 45eb30388f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

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 {