summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/block_cache/block_chunkcache.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/src/block_cache/block_chunkcache.c')
-rw-r--r--src/third_party/wiredtiger/src/block_cache/block_chunkcache.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/third_party/wiredtiger/src/block_cache/block_chunkcache.c b/src/third_party/wiredtiger/src/block_cache/block_chunkcache.c
index a09aa682369..5f3d615071d 100644
--- a/src/third_party/wiredtiger/src/block_cache/block_chunkcache.c
+++ b/src/third_party/wiredtiger/src/block_cache/block_chunkcache.c
@@ -121,8 +121,7 @@ __chunkcache_alloc_chunk(WT_SESSION_IMPL *session, wt_off_t offset, WT_BLOCK *bl
hash = __wt_hash_city64((void *)hash_id, sizeof(WT_CHUNKCACHE_HASHID));
(*newchunk)->bucket_id = hash % chunkcache->hashtable_size;
- WT_ASSERT(
- session, __wt_spin_trylock(session, WT_BUCKET_LOCK(chunkcache, (*newchunk)->bucket_id)) != 0);
+ WT_ASSERT_SPINLOCK_OWNED(session, WT_BUCKET_LOCK(chunkcache, (*newchunk)->bucket_id));
if ((ret = __chunkcache_alloc(session, *newchunk)) != 0) {
__wt_free(session, *newchunk);
@@ -409,6 +408,8 @@ __wt_chunkcache_remove(
uint64_t bucket_id;
bool done;
+ WT_ASSERT_SPINLOCK_OWNED(session, &block->live_lock);
+
chunkcache = &S2C(session)->chunkcache;
already_removed = 0;
remains_to_remove = size;