Commit b5479009 authored by Rusty Russell's avatar Rusty Russell

tdb2: coalescing race fix #1

When coalescing, we check the adjacent entry then lock its free list: we
need to *recheck* after locking, to make sure it's still in that free list.
parent 8afb9681
......@@ -319,6 +319,13 @@ static int coalesce(struct tdb_context *tdb,
break;
}
if (unlikely(bucket_off(zone_off,
size_to_bucket(zone_bits, r->data_len))
!= nb_off)) {
tdb_unlock_free_bucket(tdb, nb_off);
break;
}
if (remove_from_list(tdb, nb_off, end, r) == -1) {
tdb_unlock_free_bucket(tdb, nb_off);
goto err;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment