Skip to content
  1. Jul 04, 2019
  2. Jun 26, 2019
  3. May 02, 2019
  4. Apr 24, 2019
  5. Apr 18, 2019
  6. Apr 17, 2019
  7. Apr 16, 2019
  8. Apr 10, 2019
  9. Apr 03, 2019
  10. Mar 26, 2019
  11. Mar 20, 2019
  12. 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
  13. Mar 05, 2019
  14. 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
  15. 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
  16. Dec 06, 2018
  17. Nov 26, 2018
  18. Nov 07, 2018
  19. Nov 04, 2018
  20. Oct 31, 2018
    • Tommaso Tocci's avatar
      e55ff409
    • Tommaso Tocci's avatar
      Implement (f)truncate · f60f2d19
      Tommaso Tocci authored
      Implemented all the logic to handle truncate operation.
      
      Test: added truncate test
      f60f2d19
    • Tommaso Tocci's avatar
      Make ChunkStorage aware of chunksize · 94a44560
      Tommaso Tocci authored
      The ChunkStorage class now store the chunksize in order to perform
      runtime checks upon chunks bundaries.
      94a44560
    • Tommaso Tocci's avatar
      use mercury automatic SM routing · c40be81b
      Tommaso Tocci authored
      Mercury now support shared memory autorouting.
      
      A single margo instance can be initialized and it will handle both
      shared memory communication and remote ones.
      
      If the endpoint of the RPC is local mercury will automatically use
      shared memory.
      
      Since there is only one margo instance all the duplicated code for
      rpc/ipc have been unified and simplified considerably.
      
      ------
      
      The way in which client contact the server has changed.
      
       - Server initializes its own margo instance and generate the endpoint
      communication string using `HG_Addr_self`.
       - This endpoint description string is written on the pid file
       - When the client library loads it will fetch the server endpoint
      description from the pid file and will use that to contact the server.
      c40be81b
  21. Oct 29, 2018
  22. Oct 28, 2018
    • Tommaso Tocci's avatar
      update deps, drop abt-snoozer · b0c8d184
      Tommaso Tocci authored
      margo, argobots and mercury have been updated. The abt-snoozer dep
      required by margo it is not needed anymore.
      
      RocksDB has been also updated to the lastest release
      b0c8d184
    • Tommaso Tocci's avatar
      makes logs configurable at exec time · 1ad8f4e4
      Tommaso Tocci authored
      loggers can be now configured at execution time, by using environment
      variables for both server and client.
      
      Server:
       - ADAFS_LOG_LEVEL
       - ADAFS_DAEMON_LOG_PATH
      
      Client:
       - ADAFS_LOG_LEVEL
       - ADAFS_PRELOAD_LOG_PATH
      1ad8f4e4
  23. May 11, 2018