1. 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
  2. Apr 24, 2019
  3. Apr 10, 2019
  4. Mar 05, 2019
  5. 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
  6. Nov 04, 2018
  7. Oct 31, 2018
  8. May 10, 2018
    • Tommaso Tocci's avatar
      Avoid optimization for readdir/opendir · f16b7a2b
      Tommaso Tocci authored
      In the glibc both readdir and closedir functions marks the @dirp parameter
      with a non-null attribute.
      If we use a compiler optimization level grater then 1,
      the `dirp == nullptr` expression is evaluated to false
      at compilation time and the relative if blocks is cutted out
      of the final binary.
      
      In order to avoid this bheaviour, we implement a functions and then set
      that as weak alias of the real glibc function call.
      f16b7a2b