1. 09 Jul, 2019 8 commits
  2. 08 Jul, 2019 13 commits
    • Kirill Smelkov's avatar
      . · f4f7aecb
      Kirill Smelkov authored
      f4f7aecb
    • Kirill Smelkov's avatar
      . · 0b99fa5e
      Kirill Smelkov authored
      0b99fa5e
    • Kirill Smelkov's avatar
    • Kirill Smelkov's avatar
      Merge branch 'master' into t · cdc05b26
      Kirill Smelkov authored
      * master:
        bigfile: Note that ramh_alloc_page does not add the page to any lists
        bigfile: Unstub ram_close
        bigfile/test/test_ram: Don't forget to free allocated Page structs
        bigfile: RAM must be explicitly free'ed after close
        bigfile/test: Don't forget to close opened RAM
        tests: TSAN no longer fails on test_virtmem
        tox: Don't duplicate setup.py on which for-tests dependencies we need
        3rdparty/ccan: Update
      cdc05b26
    • Kirill Smelkov's avatar
      bigfile: Note that ramh_alloc_page does not add the page to any lists · 4df72b04
      Kirill Smelkov authored
      It was already said there that allocated page is not associated with
      fileh. However the code is doing more - it does not add the page to
      ram->lru_list and (obviously) to fileh->dirty_pages lists.
      
      Document that explicitly.
      4df72b04
    • Kirill Smelkov's avatar
      bigfile: Unstub ram_close · 7e79dfc7
      Kirill Smelkov authored
      It should release resources associated with RAM. Make it cal .ram_close
      from RAM ops. Add corresponding .ram_close to ram_shmfs. This fixes
      SHMFS_RAM->prefix leak.
      7e79dfc7
    • Kirill Smelkov's avatar
      bigfile/test/test_ram: Don't forget to free allocated Page structs · e8eca379
      Kirill Smelkov authored
      test_ram is low-level test that tests RAM pages allocation/mmapping.
      As allocated pages are not integrated with virtmem (not added to any
      file mapping and RAM->lru_list) the Page structs have to be explicitly
      freed. Fixes e.g.
      
      	Direct leak of 80 byte(s) in 1 object(s) allocated from:
      	    #0 0x7ff29af46518 in calloc (/usr/lib/x86_64-linux-gnu/libasan.so.5+0xe9518)
      	    #1 0x56131dc22289 in zalloc include/wendelin/utils.h:67
      	    #2 0x56131dc225d6 in ramh_alloc_page bigfile/tests/../ram.c:41
      	    #3 0x56131dc2a19e in main bigfile/tests/test_ram.c:130
      	    #4 0x7ff29ac9f09a in __libc_start_main ../csu/libc-start.c:308
      e8eca379
    • Kirill Smelkov's avatar
      bigfile: RAM must be explicitly free'ed after close · f688a31d
      Kirill Smelkov authored
      Else on-heap allocated RAM object is leaked. Fixes e.g. the following
      error on ASAN:
      
      	Direct leak of 56 byte(s) in 1 object(s) allocated from:
      	    #0 0x7fc9ef390518 in calloc (/usr/lib/x86_64-linux-gnu/libasan.so.5+0xe9518)
      	    #1 0x555ca792f309 in zalloc include/wendelin/utils.h:67
      	    #2 0x555ca7935f9a in ram_limited_new bigfile/tests/../../t/t_utils.c:35
      	    #3 0x555ca793a0ba in test_file_access_synthetic bigfile/tests/test_virtmem.c:292
      	    #4 0x555ca7967bc4 in main bigfile/tests/test_virtmem.c:1121
      	    #5 0x7fc9ef0e909a in __libc_start_main ../csu/libc-start.c:308
      f688a31d
    • Kirill Smelkov's avatar
      bigfile/test: Don't forget to close opened RAM · f1931264
      Kirill Smelkov authored
      Only one place that was using ram_new was missing to call ram_close in
      the end.
      f1931264
    • Kirill Smelkov's avatar
      tests: TSAN no longer fails on test_virtmem · e87d6801
      Kirill Smelkov authored
      For failing case compiler-rt support was added in 2014 - 5 years ago
      (see links in removed code).
      e87d6801
    • Kirill Smelkov's avatar
    • Kirill Smelkov's avatar
      3rdparty/ccan: Update · b3636a08
      Kirill Smelkov authored
      Just an update to latest CCAN - there is actually no changes to modules
      that we use (tap, array_size, minmax, bitmap, build_assert)
      b3636a08
    • Kirill Smelkov's avatar
      . · 87f40ade
      Kirill Smelkov authored
      87f40ade
  3. 07 Jul, 2019 2 commits
  4. 05 Jul, 2019 9 commits
  5. 04 Jul, 2019 8 commits