Changeset 0dc2fec in mainline for kernel/generic/src/adt/cht.c
- Timestamp:
- 2016-05-22T19:19:43Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b272c67a
- Parents:
- 153c7a29 (diff), af2254ec (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/adt/cht.c
r153c7a29 r0dc2fec 526 526 ASSERT(op && op->hash && op->key_hash && op->equal && op->key_equal); 527 527 /* Memoized hashes are stored in the rcu_link.func function pointer. */ 528 ASSERT(sizeof(size_t) == sizeof(rcu_func_t));528 STATIC_ASSERT(sizeof(size_t) == sizeof(rcu_func_t)); 529 529 ASSERT(sentinel.hash == (uintptr_t)sentinel.rcu_link.func); 530 530 … … 1311 1311 } 1312 1312 } else { 1313 ASSERT(N_JOIN == N_JOIN_FOLLOWS);1313 STATIC_ASSERT(N_JOIN == N_JOIN_FOLLOWS); 1314 1314 1315 1315 /* Keep the N_JOIN/N_JOIN_FOLLOWS mark but strip N_DELETED. */
Note:
See TracChangeset
for help on using the changeset viewer.