Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/adt/cht.c

    r8f9c808 r04552324  
    526526        ASSERT(op && op->hash && op->key_hash && op->equal && op->key_equal);
    527527        /* Memoized hashes are stored in the rcu_link.func function pointer. */
    528         STATIC_ASSERT(sizeof(size_t) == sizeof(rcu_func_t));
     528        ASSERT(sizeof(size_t) == sizeof(rcu_func_t));
    529529        ASSERT(sentinel.hash == (uintptr_t)sentinel.rcu_link.func);
    530530
     
    13111311                }
    13121312        } else {
    1313                 STATIC_ASSERT(N_JOIN == N_JOIN_FOLLOWS);
     1313                ASSERT(N_JOIN == N_JOIN_FOLLOWS);
    13141314               
    13151315                /* Keep the N_JOIN/N_JOIN_FOLLOWS mark but strip N_DELETED. */
     
    18901890        /* See comment in split_bucket(). */
    18911891       
    1892         bool done = false;
    1893 
     1892        bool done;
    18941893        do {
    18951894                bool resizing = false;
     
    20612060        cht_link_t *join_node, size_t split_hash)
    20622061{
    2063         bool done = false;
    2064 
     2062        bool done;
    20652063        do {
    20662064                wnd_t wnd = {
     
    21632161#endif
    21642162
    2165         bool done = false;
    2166 
     2163        bool done;
    21672164        do {
    2168                 /* Load the most recent h->item_cnt. */
     2165                /* Load the most recent  h->item_cnt. */
    21692166                read_barrier();
    21702167                size_t cur_items = (size_t) atomic_get(&h->item_cnt);
Note: See TracChangeset for help on using the changeset viewer.