mirror of
https://github.com/rclone/rclone.git
synced 2024-11-25 17:57:44 +08:00
2aed3bf9ab
Roll back the bazil.org/fuse update to give us some time to explore alternatives for macOS. See upstream issue: https://github.com/bazil/fuse/issues/224
10 lines
338 B
Go
10 lines
338 B
Go
package fuse
|
|
|
|
// Maximum file write size we are prepared to receive from the kernel.
|
|
//
|
|
// This value has to be >=16MB or OSXFUSE (3.4.0 observed) will
|
|
// forcibly close the /dev/fuse file descriptor on a Setxattr with a
|
|
// 16MB value. See TestSetxattr16MB and
|
|
// https://github.com/bazil/fuse/issues/42
|
|
const maxWrite = 16 * 1024 * 1024
|