Han-Wen Nienhuys
Han-Wen Nienhuys
This needs a tests. Have a look at fs/directio_test.go for some inspiration. You can do a large write by calling syscall.Write on 1 MB slice. On the FUSE side, the...
what does "as long as the following structures are updated as well:" mean ?
i don't have a mac. I'd be grateful if you could contribute a change
could you send me a review through gerrithub? See https://github.com/hanwen/go-fuse/blob/master/CONTRIBUTING the same for the other PRs.
could you send me a review through gerrithub? See https://github.com/hanwen/go-fuse/blob/master/CONTRIBUTING
yes, seems reasonable.
you can disable splice completely by doing `cd fuse; mv splice_darwin.go splice_linux.go`. When I do that over here, the resulting binaries are still linking to libc.so.6. Are you executing in...
splice is a performance optimization that reduces amount of data copying between fuse and the kernel. You can disable it at a slight performance cost. I can't make a release...
https://stackoverflow.com/questions/7876706/sh-error-while-loading-shared-libraries-libc-so-6-cannot-open-shared-object-f - you need to increase your max open file limit.
Look, ``` $ grep 24 /usr/include/asm-generic/errno-base.h #define EMFILE 24 /* Too many open files */ ``` the kernel says you have too many open files. I suggest to use strace...