1. 21 Dec, 2016 2 commits
  2. 03 Nov, 2016 1 commit
  3. 02 Nov, 2016 3 commits
    • Han-Wen Nienhuys's avatar
      Rename test file. · f4003c9b
      Han-Wen Nienhuys authored
      Fixes #127.
      f4003c9b
    • Jonathon Reinhart's avatar
      nodefs: Change defaultNode.GetAttr() to call file.GetAttr() if not nil · 994fc0fe
      Jonathon Reinhart authored
      This enhances nodes which embed defaultNode (which is most of them),
      allowing those implementations to omit a GetAttr() method. Without this,
      when the kernel calls GetAttr() for an open file, FUSE will return a
      size of zero, causing a read() of the file to always return 0, even
      though fuse returns a nonzero number of bytes.
      
      One can leverage this behavior to create a Linux procfs-like file, which
      stat shows to be zero bytes, but can be successfully read.
      
      N.B. This behavior is only useful if the FileSystemConnector Options
      specify AttrTimeout of zero. Otherwise, the result of the first call to
      GetAttr() (file == nil) is cached, and the kernel allows zero bytes to
      be read. With this caching disabled, the next GetAttr() call (file !=
      nil) will be used to control the number of readable bytes.
      994fc0fe
    • Han-Wen Nienhuys's avatar
      a2e4f919
  4. 24 Oct, 2016 1 commit
  5. 18 Oct, 2016 2 commits
  6. 15 Sep, 2016 3 commits
  7. 25 Aug, 2016 1 commit
  8. 11 Aug, 2016 4 commits
  9. 10 Aug, 2016 1 commit
  10. 09 Aug, 2016 4 commits
  11. 04 Aug, 2016 3 commits
  12. 03 Aug, 2016 3 commits
  13. 31 Jul, 2016 1 commit
  14. 25 Jul, 2016 5 commits
  15. 22 Jul, 2016 1 commit
    • Han-Wen Nienhuys's avatar
      Rewrite mount_darwin.go, obviating CGO. · ebe08a81
      Han-Wen Nienhuys authored
      The strategy was inspired by the mount code for Darwin in
      bazil.org/fuse.
      
      Unfortunately, OSX must have the event loop started before mounting
      can be completed. This means that WaitMount() must be maintained for
      use on OSX.
      
      Change-Id: Ie53425f306b4575b3e94e45407bab05017f5ce14
      ebe08a81
  16. 18 Jul, 2016 4 commits
  17. 13 Jul, 2016 1 commit