Skip to content
  1. Jan 29, 2020
  2. Nov 04, 2019
  3. Oct 03, 2019
    • Tommaso Tocci's avatar
      Add CREATE_CHECK_PARENTS compilation flag · 70a5c724
      Tommaso Tocci authored
      CREATE_CHECK_PARENTS controls if the existance of the parent node needs
      to be checked during the creation of a child node.
      
      Example: The check prevents the creation of file `/parent/child`
      if `/parent` doesn't exists or if it is not a directory
      
      By default CREATE_CHECK_PARENTS is enable and the check is enforced.
      It can be disable to speedup creation operations by passing
      `-DCREATE_CHECK_PARENTS:BOOL=OFF` as cmake parameter.
      70a5c724
  4. Sep 05, 2019
  5. Jul 29, 2019
    • Tommaso Tocci's avatar
      Posticipate logging initialization · 0ff4ee03
      Tommaso Tocci authored
      We don't want the log file to be created before command line parsing,
      otherwise --version or --help cli option could not work beacause we
      don't have permission to write to log file.
      0ff4ee03
  6. Jul 04, 2019
  7. Jun 26, 2019
  8. May 02, 2019
  9. Apr 24, 2019
  10. Apr 18, 2019
  11. Apr 17, 2019
  12. Apr 16, 2019
  13. Apr 10, 2019
  14. Apr 03, 2019
  15. Mar 26, 2019
  16. Mar 20, 2019
  17. Mar 06, 2019
    • Tommaso Tocci's avatar
      Remove gid/uid from metadata · 545b68c9
      Tommaso Tocci authored
      gid and uid metadata fields have never been used and can be removed
      safely
      545b68c9
    • 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
  18. Mar 05, 2019
  19. 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
  20. Dec 07, 2018
    • Tommaso Tocci's avatar
      Drop margo init patch · e6dbe7c6
      Tommaso Tocci authored
      Changes have been merged upstream [1] with commit `acb8c296a694d7e3e06756e7a102a9d1c92df0c8`.
      There is no more need to patch margo to expose enanched init function.
      
      [1]: https://xgitlab.cels.anl.gov/sds/margo/merge_requests/9
      e6dbe7c6
  21. Dec 06, 2018
  22. Nov 26, 2018