1. Aug 31, 2022
  2. Jul 28, 2022
  3. Feb 22, 2022
  4. May 28, 2021
  5. Mar 30, 2021
  6. Feb 07, 2021
  7. Dec 17, 2020
  8. Dec 07, 2020
  9. Nov 25, 2020
  10. Sep 10, 2020
  11. Jul 28, 2020
  12. Mar 31, 2020
  13. Feb 19, 2020
  14. Feb 10, 2020
  15. Feb 07, 2020
    • Marc Vef's avatar
      Code Maintenance: Configurations, definitions, adafs to gkfs · 053cd9a5
      Marc Vef authored
      Restructuring code w.r.t. configurations and definitions:
      - #defines have been mostly removed from configurations
      - a dedicated config file has been added for configurations with constexpr
      - past configure file is now only a cmake wrapper
      - wrapping global functions into namespaces
      
      Removed all adafs and ifs occurrences. Now called gkfs
      053cd9a5
  16. Apr 24, 2019
  17. Apr 10, 2019
  18. Mar 06, 2019
    • 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
  19. Mar 05, 2019
  20. 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
  21. Nov 26, 2018
  22. Oct 31, 2018
  23. May 10, 2018
    • Tommaso Tocci's avatar
      Add support for basic directories calls · 33865a14
      Tommaso Tocci authored
      Support for the following calls has been added:
       - opendir
       - readdir
       - closedir
      
      The readdir call use the new RPC get_dirents that ask to all the
      nodes (broadcast) about all the existing first-level entries
      of a specific directory.
      33865a14
  24. May 08, 2018
  25. Mar 07, 2018
    • Marc Vef's avatar
    • Marc Vef's avatar
      Restructuring directory hierarchy of the project + re-adding header files to CMake sources. · 138e04ca
      Marc Vef authored
      - Previously the directory hierarchy was not clear regarding to which
        file belong to which part of the project (client or daemon).
        Further, we will have other clients in the future (such as Fuse).
      - CMake files now differentiate between include dirs for all targets
        and target specific ones.
      - Removed duplicate -pg flag.
      - Not listing header files when adding executables or libraries
        is considered bad practice. Note that include_directories() is adding
        include paths to the code while adding all files used for executables
        and libraries provide the context which files belong to each binary.
        When only include_directories() is set, CMake assumes that all files
        belong to a binary (which is not necessarily true). As a result,
        some IDEs may break as the do not support this assumption.
      
        In general we should almost always favor explicitness over implicitness.
      138e04ca
  26. Mar 02, 2018
  27. Jan 15, 2018
    • Marc Vef's avatar
      Add basic MD_Test functionality · 49a77aac
      Marc Vef authored
      - Add: adafs_access, open with check if object exists
      - Add: root metadentry to database of each node
      - Modified: Open, unlink, mkdir, rmdir and combined their functionality to "create node" and "remove node"
      49a77aac
  28. Jan 12, 2018
  29. Nov 15, 2017