mirror of https://github.com/restic/restic.git
Merge pull request #3426 from MichaelEischer/fast-fuse
mount: enable fuse readahead
This commit is contained in:
commit
45eb30388f
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue