Han-Wen Nienhuys
Han-Wen Nienhuys
when using allow-other, GID and UID may be different from the daemon process. This means we should call (f)chown on new entries (files, symlinks, etc.)
With the demise of OSXFUSE, serving NFS is the most practical direction for supporting FUSE on OSX. Doing so also reduces platform divergence, as we can test this without requiring...
See discussion on https://github.com/hanwen/go-fuse/pull/426 NFS(v4) has no opendir/closedir, so directory offsets must be universally valid, independent of open/close. This means that fs.Inode.listChildren must become more clever. For FSess that provide...
This series comes from a conversation with Patrick Steinhardt at Gitlab, who have an interest in a more scalable ref storage system. I unfortunately don't have business reasons to spend...
compare https://github.com/libfuse/libfuse/blob/master/include/fuse_kernel.h#L799 and https://github.com/uroni/fuseuring/blob/master/fuse_kernel.h#L635 my kernel sends 104 bytes on init, not 56. The check ``` if(init_in->header.len!=sizeof(InitInMsg)) ``` should be relaxed a bit.
hey, a nitpick I noticed when looking at JQuery: some of the naming doesn't follow Go style for initialisms https://github.com/golang/go/wiki/CodeReviewComments#initialisms examples that go against this: SetHtml(), Css(), Html() etc.
See also https://github.com/libgit2/libgit2/pull/4981#issuecomment-463621023 I have written a mostly complete implementation of reftable as a standalone library that depends only on zlib. It is here: https://github.com/google/reftable (subdirectory c/ for the C...
The passthrough_hp example does not work correctly when using the passthrough backing FD feature with O_DIRECT. Repro: ``` $ rm -rf /tmp/mnt /tmp/orig && mkdir /tmp/mnt /tmp/orig && dd if=/dev/zero...