1. Mar 04, 2020
  2. Jan 29, 2020
  3. Nov 04, 2019
  4. Oct 10, 2019
  5. Oct 07, 2019
  6. Oct 03, 2019
  7. Sep 11, 2019
  8. Jul 26, 2019
  9. Apr 24, 2019
  10. Apr 10, 2019
  11. Mar 06, 2019
    • Tommaso Tocci's avatar
      Remove unused defines regarding ACCESS and LOOKUP · 4eb2224b
      Tommaso Tocci authored
      CHECK_ACCESS didn't make any sense since internally we don't support uid/gid
      
      DO_LOOKUP were not used at all
      4eb2224b
    • Tommaso Tocci's avatar
      Drop access RPC · 60b1a186
      Tommaso Tocci authored
      The access RPC have been removed. The POSIX access functionality now is implemented through the stat RPC. This makes code easier to maintain and modify.
      
      There would be a little performance degradation on the POSIX access
      function because we are now retrieving also the metadata
      associated to the file.
      
      This change makes a lot easier to add symlink support
      60b1a186
  12. Mar 05, 2019
  13. Jan 31, 2019
    • Tommaso Tocci's avatar
      improved statfs and statvfs · 23c5faf1
      Tommaso Tocci authored
       - improved statfs system call
       - intercepted statvfs library call
      
      Both of the above function now report the aggregated real size
      of all the data-nodes.
      
      You can test this with `df "/tmp/gekkofs_mountpoint"` command
      23c5faf1
  14. Nov 26, 2018
  15. Nov 09, 2018
  16. Nov 07, 2018
    • Tommaso Tocci's avatar
      Refactor adafs internal read/write funciton · 46fe25b9
      Tommaso Tocci authored
       - Added adafs_pwrite and adafs_pread functions:
              they accept an OpenFile pointer instead of a fd so that can be
              called by function that already accessed the OpenFileMap.
      
       - Moved the writev function into internal adafs functions.
      
       - Added internal adafs_write function:
              instead messing up with the file position at the interception
              layer, we can use this internal function that hides the update of the
              file position two.
      46fe25b9
    • Tommaso Tocci's avatar
      Remove data only for regular file · 16a245b5
      Tommaso Tocci authored
      16a245b5
    • Tommaso Tocci's avatar
      introduce adafs_metadata function · e1d9b3ec
      Tommaso Tocci authored
      Can be used to retrieve the Metadata object for a named path
      
      In several places the adafs_stat function have been replaced with this
      new adafs_metadata. This allowed to avoid the construnction of the
      additional `struct stat`.
      e1d9b3ec
  17. Nov 04, 2018
  18. Nov 03, 2018
  19. Nov 02, 2018
  20. Oct 31, 2018