forked from mirror/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
338 B
10 lines
338 B
8 years ago
|
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
|