Commit 7d0e4401 authored by John Esmet's avatar John Esmet Committed by Yoni Fogel

[t:4963] Closes #4963 Remove race condition with closing and opening a lock tree

git-svn-id: file:///svn/toku/tokudb@44120 c7de825b-a66e-492c-adef-691d508d4ae1
parent ce5691d8
......@@ -1397,7 +1397,6 @@ toku_ltm_get_lt(toku_ltm* mgr, toku_lock_tree** ptree, DICTIONARY_ID dict_id, DE
*ptree = tree;
r = 0;
cleanup:
ltm_mutex_unlock(mgr);
if (r == 0) {
mgr->STATUS_VALUE(LTM_LT_CREATE)++;
mgr->STATUS_VALUE(LTM_LT_NUM)++;
......@@ -1406,16 +1405,15 @@ cleanup:
}
else {
if (tree != NULL) {
ltm_mutex_lock(mgr);
if (added_to_ltm)
ltm_remove_lt(mgr, tree);
if (added_to_idlth)
toku_idlth_delete(mgr->idlth, dict_id);
toku_lt_close(tree);
ltm_mutex_unlock(mgr);
}
mgr->STATUS_VALUE(LTM_LT_CREATE_FAIL)++;
}
ltm_mutex_unlock(mgr);
return r;
}
......@@ -2117,14 +2115,12 @@ toku_lt_add_ref(toku_lock_tree* tree) {
}
static void
ltm_stop_managing_lt(toku_ltm* mgr, toku_lock_tree* tree) {
ltm_mutex_lock(mgr);
ltm_stop_managing_lt_unlocked(toku_ltm* mgr, toku_lock_tree* tree) {
ltm_remove_lt(mgr, tree);
toku_lt_map* map = toku_idlth_find(mgr->idlth, tree->dict_id);
if (map && map->tree == tree) {
toku_idlth_delete(mgr->idlth, tree->dict_id);
}
ltm_mutex_unlock(mgr);
}
int
......@@ -2134,15 +2130,22 @@ toku_lt_remove_ref(toku_lock_tree* tree) {
assert(tree->ref_count > 0);
uint32_t ref_count = __sync_sub_and_fetch(&tree->ref_count, 1);
if (ref_count > 0) {
r = 0; goto cleanup;
r = 0;
goto cleanup;
}
ltm_mutex_lock(tree->mgr);
// Once the last reference was removed, only toku_ltm_get_lt could add a reference
// and requires the ltm_mutex_lock. Prevent race condition by checking again.
ref_count = tree->ref_count;
if (ref_count == 0) {
assert(tree->dict_id.dictid != DICTIONARY_ID_NONE.dictid);
ltm_stop_managing_lt_unlocked(tree->mgr, tree);
r = 0;
}
ltm_mutex_unlock(tree->mgr);
if (ref_count == 0) {
r = toku_lt_close(tree);
}
assert(tree->dict_id.dictid != DICTIONARY_ID_NONE.dictid);
ltm_stop_managing_lt(tree->mgr, tree);
r = toku_lt_close(tree);
if (r != 0)
goto cleanup;
r = 0;
cleanup:
return r;
}
......
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