mount: remove limits on number of parallel requests
This commit is contained in:
@@ -173,11 +173,11 @@ func RunMount(option *MountOptions, umask os.FileMode) bool {
|
|||||||
fuse.DaemonTimeout("3600"),
|
fuse.DaemonTimeout("3600"),
|
||||||
fuse.AllowSUID(),
|
fuse.AllowSUID(),
|
||||||
fuse.DefaultPermissions(),
|
fuse.DefaultPermissions(),
|
||||||
fuse.MaxReadahead(1024 * 128),
|
fuse.MaxReadahead(1024 * 512),
|
||||||
fuse.AsyncRead(),
|
fuse.AsyncRead(),
|
||||||
// fuse.WritebackCache(),
|
// fuse.WritebackCache(),
|
||||||
fuse.MaxBackground(128),
|
// fuse.MaxBackground(1024),
|
||||||
fuse.CongestionThreshold(128),
|
// fuse.CongestionThreshold(1024),
|
||||||
}
|
}
|
||||||
|
|
||||||
options = append(options, osSpecificMountOptions()...)
|
options = append(options, osSpecificMountOptions()...)
|
||||||
|
|||||||
Reference in New Issue
Block a user