Skip to content
Snippets Groups Projects
  1. Jul 26, 2010
    • Lubos Slovak's avatar
      Added Doxygen config file. · 6fbf1380
      Lubos Slovak authored
      6fbf1380
    • Lubos Slovak's avatar
      Functions for removing and updating hashtable item · bf97fece
      Lubos Slovak authored
      Added functions ck_remove_item() and ck_update_item().
      Refactored code of find functions:
        - private functions now return non-const ck_hash_table_item **
          (used in ck_update_item() and ck_remove_item())
        - ck_find_item() only checks the pointer and returns const
          pointer
      
      Added test for removal (test_remove()) and changed the main
        testing function to test_fnc_from_file() which is given pointer
        to the function to use for testing (used for insert and remove).
      Added some comments to hash table.
      bf97fece
  2. Jul 22, 2010
  3. Jul 21, 2010
  4. Jul 20, 2010
    • Lubos Slovak's avatar
      Changed rehashing so it always finishes + bugfix. · 91f1d630
      Lubos Slovak authored
      In case the stash is not big enough, it will get resized.
      Only if it cannot be resized (allocation failure), the rehashing
        fails. (And no other rehashing is possible!!)
      In future, provide some way to notify the administrator to reload
        the server, or provide a way to try to finish the rehash when
        some memory is available again.
      
      Bugfix in us_hash() - the coeficient index was not counted well.
      Removed 'inline' from dynamic array getters. (Should look into the
        inline stuff in future!)
      Corrected some errors in debug output.
      91f1d630
    • Lubos Slovak's avatar
      Getters in dyn.array made inline. · d32e7cb2
      Lubos Slovak authored
      d32e7cb2
    • Lubos Slovak's avatar
      Replaced the 'used' array in hashing by dyn.array. · 463f3a25
      Lubos Slovak authored
      The result is too slow due to the mutexes used in the dyn.array.
      This probably won't be used.
      463f3a25
    • Lubos Slovak's avatar
      Removed stash_i + added dyn.array getters. · 328733be
      Lubos Slovak authored
      Removed the use of the last stash item index and the stash_i
        member of ck_hash_table.
      Added da_get_items() and da_get_count() and used instead of
        directly accessing da_array's members.
      Code wrapped to 80 chars.
      Removed some unused commands and comments.
      328733be
    • Lubos Slovak's avatar
      Modified hash table to use the dyn.array for stash · 1f42bdb1
      Lubos Slovak authored
      Some redundant checks and the index of the last item (stash_i)
        remain (TODO: remove).
      Note: there is a little too much type-casting :)
      1f42bdb1
    • Lubos Slovak's avatar
      Finished generic dynamic array (da). · 10961ca6
      Lubos Slovak authored
      Added functions da_try_reserve() for checking if there is enough
        space in the array, and da_release() for decreasing the item
        count.
      Calls to da_initialize(), da_reserve(), da_release() and
        da_destroy() are now protected using mutex (however, there
        should not be any concurrent calls to these functions, so we may
        consider removing the mutex later).
      Resizing is synchronized using RCU.
      10961ca6
  5. Jul 19, 2010
    • Lubos Slovak's avatar
      Added first generic dynamic array implementation. · ab980c22
      Lubos Slovak authored
      The array is meant to use as a hash table stash and maybe also for
        the 'used' arrays.
      It does not use any locks or synchronization yet - synchronization
        for the case of resizing the array (realloc) is needed!
      ab980c22
    • Lubos Slovak's avatar
      a83449b7
    • Lubos Slovak's avatar
      Changed to d-ary cuckoo hashing with stash. · 7ea0c2a3
      Lubos Slovak authored
      Number of hash tables is now set during hash table creation and
        chosen to be space efficient. Only 3 or 4 tables are supported.
      Changed the hashing so that each time of item displacement a
        random other table is chosen.
      
      Note: It is necessary to change the max number of tables/functions
            in universal-system.h if needed. Now the universal system
            always generates the max number of functions (no parameter
            to tell the actual number is used - mainly to support static
            allocation).
      7ea0c2a3
    • Lubos Slovak's avatar
      Multiple hash tables support in us and ck. · 7adfd998
      Lubos Slovak authored
      Universal system now supports arbitrary number of generations
        and arbitrary number of hash functions per generation.
      Number of hash tables in ck_hash_table is now given in runtime,
        but with compile-time upper bound.
      7adfd998
  6. Jul 16, 2010
  7. Jul 15, 2010
    • Lubos Slovak's avatar
      Refactoring of hash table. · 8ec90f04
      Lubos Slovak authored
      Replaced static table1 and table2 arrays by generic tables[]
        + corresponding changes to code.
      8ec90f04
    • Lubos Slovak's avatar
      Bugfix in rehash (probably last bug). · f9871223
      Lubos Slovak authored
      Calls to ck_hash_item() from ck_rehash() for items in hash table
        in some cases used the same pointer for to_hash and free
        parameters.
      Removed function ck_insert_to_buffer() (functionality moved to
        ck_insert_item).
      Some other minor changes.
      TODO: refactor ck_rehash() (too long) + replace table1 and table2
            by array of tables (will be helpful also for d-ary hashing).
      f9871223
  8. Jul 14, 2010
    • Lubos Slovak's avatar
      Bugfix in rehashing (one bug probably remaining). · 4d6aee38
      Lubos Slovak authored
      Index of first free item in buffer must be decremented only in
        case of successful rehashing of the last item from buffer.
      4d6aee38
    • Lubos Slovak's avatar
      Bugfixes in rehash. · 7985005c
      Lubos Slovak authored
      Fixed some typos, NEXT_GENERATION macro (was not extracting only
        the generation) and moved some debug output in order to check
        items for NULL.
      7985005c
    • Lubos Slovak's avatar
      Fixed rehashing, minor fix in ck_find_item(). · a9ab445a
      Lubos Slovak authored
      Added rehashing of items in buffer.
      Added checks for non-NULL items in ck_rollback_rehash().
      Added rollback for buffer items.
      Replaced rcu_assign_pointer() by rcu_set_pointer().
      Assignment in ck_swap_items() replaced by rcu_set_pointer().
      a9ab445a
  9. Jul 13, 2010
    • Lubos Slovak's avatar
      Added some synchronization to ns and zdb modules. · 5927e8e5
      Lubos Slovak authored
      The synchronization needs revision and some thorough testing!
      5927e8e5
    • Lubos Slovak's avatar
      Trying of both hash function pairs while rehashing · aeb0a37e
      Lubos Slovak authored
      New function ck_find_gen() called from ck_find_item(), which tries
        both function pairs when the rehashing flag is on.
      Added rehashing flag setters and getters + turning in ck_rehash().
      Bugfix in ck_destroy_table().
      aeb0a37e
    • Lubos Slovak's avatar
      Hash table modified to facilitate RCU. · fed8c18e
      Lubos Slovak authored
      Hash table now contains pointers to hash table items instead of
        items themselves.
      Only locking is to avoid multiple insertions.
      The table does not avoid conflicts when removing items or while
        moving items around due to rehashing. All will be done on higher
        level using RCU
      Added directory doc/ for documentation.
      fed8c18e
  10. Jul 08, 2010
  11. Jul 07, 2010
  12. Jun 09, 2010
  13. Jun 03, 2010
Loading