Commit 338587d2 authored by Jan Lindström's avatar Jan Lindström

MDEV-5247: DB locked up at btr0cur.c line 568. Additional fixes to...

MDEV-5247: DB locked up at btr0cur.c line 568. Additional fixes to inconsistent usage of have_LRU_mutex and added additional debug assertions to guard incorrect usage of this mutex. Fixes issues found on additional testing and mysql test suite.
parent 718c8c60
...@@ -1823,6 +1823,7 @@ buf_page_make_young( ...@@ -1823,6 +1823,7 @@ buf_page_make_young(
buf_pool_t* buf_pool = buf_pool_from_bpage(bpage); buf_pool_t* buf_pool = buf_pool_from_bpage(bpage);
//buf_pool_mutex_enter(buf_pool); //buf_pool_mutex_enter(buf_pool);
ut_ad(!mutex_own(&buf_pool->LRU_list_mutex));
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
ut_a(buf_page_in_file(bpage)); ut_a(buf_page_in_file(bpage));
...@@ -1976,6 +1977,7 @@ buf_page_get_zip( ...@@ -1976,6 +1977,7 @@ buf_page_get_zip(
ib_uint64_t start_time; ib_uint64_t start_time;
ib_uint64_t finish_time; ib_uint64_t finish_time;
buf_pool_t* buf_pool = buf_pool_get(space, offset); buf_pool_t* buf_pool = buf_pool_get(space, offset);
ibool have_LRU_mutex = FALSE;
if (UNIV_UNLIKELY(innobase_get_slow_log())) { if (UNIV_UNLIKELY(innobase_get_slow_log())) {
trx = innobase_get_trx(); trx = innobase_get_trx();
...@@ -2041,24 +2043,28 @@ err_exit: ...@@ -2041,24 +2043,28 @@ err_exit:
goto got_block; goto got_block;
case BUF_BLOCK_FILE_PAGE: case BUF_BLOCK_FILE_PAGE:
{ {
ibool have_LRU_mutex = FALSE;
ut_a(block_mutex == &((buf_block_t*) bpage)->mutex); ut_a(block_mutex == &((buf_block_t*) bpage)->mutex);
/* release mutex to obey to latch-order */ /* release mutex to obey to latch-order */
mutex_exit(block_mutex); mutex_exit(block_mutex);
/* get LRU_list_mutex for buf_LRU_free_block() */ /* get LRU_list_mutex for buf_LRU_free_block() */
if (!have_LRU_mutex) {
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
mutex_enter(block_mutex);
have_LRU_mutex = TRUE; have_LRU_mutex = TRUE;
}
mutex_enter(block_mutex);
if (UNIV_UNLIKELY(bpage->space != space if (UNIV_UNLIKELY(bpage->space != space
|| bpage->offset != offset || bpage->offset != offset
|| !bpage->in_LRU_list || !bpage->in_LRU_list
|| !bpage->zip.data)) { || !bpage->zip.data)) {
/* someone should interrupt, retry */ /* someone should interrupt, retry */
if (have_LRU_mutex) {
mutex_exit(&buf_pool->LRU_list_mutex); mutex_exit(&buf_pool->LRU_list_mutex);
have_LRU_mutex = FALSE; have_LRU_mutex = FALSE;
}
mutex_exit(block_mutex); mutex_exit(block_mutex);
goto lookup; goto lookup;
} }
...@@ -2067,6 +2073,7 @@ err_exit: ...@@ -2067,6 +2073,7 @@ err_exit:
if (buf_LRU_free_block(bpage, FALSE, &have_LRU_mutex)) { if (buf_LRU_free_block(bpage, FALSE, &have_LRU_mutex)) {
if (have_LRU_mutex) { if (have_LRU_mutex) {
mutex_exit(&buf_pool->LRU_list_mutex); mutex_exit(&buf_pool->LRU_list_mutex);
have_LRU_mutex = FALSE;
} }
mutex_exit(block_mutex); mutex_exit(block_mutex);
goto lookup; goto lookup;
...@@ -2074,6 +2081,7 @@ err_exit: ...@@ -2074,6 +2081,7 @@ err_exit:
if (have_LRU_mutex) { if (have_LRU_mutex) {
mutex_exit(&buf_pool->LRU_list_mutex); mutex_exit(&buf_pool->LRU_list_mutex);
have_LRU_mutex = FALSE;
} }
buf_block_buf_fix_inc((buf_block_t*) bpage, buf_block_buf_fix_inc((buf_block_t*) bpage,
...@@ -2458,6 +2466,7 @@ buf_page_get_gen( ...@@ -2458,6 +2466,7 @@ buf_page_get_gen(
ib_uint64_t start_time; ib_uint64_t start_time;
ib_uint64_t finish_time; ib_uint64_t finish_time;
buf_pool_t* buf_pool = buf_pool_get(space, offset); buf_pool_t* buf_pool = buf_pool_get(space, offset);
ibool have_LRU_mutex = FALSE;
ut_ad(mtr); ut_ad(mtr);
ut_ad(mtr->state == MTR_ACTIVE); ut_ad(mtr->state == MTR_ACTIVE);
...@@ -2560,6 +2569,13 @@ loop2: ...@@ -2560,6 +2569,13 @@ loop2:
return(NULL); return(NULL);
} }
/* We should not hold LRU mutex below when trying
to read the page */
if (have_LRU_mutex) {
mutex_exit(&buf_pool->LRU_list_mutex);
have_LRU_mutex = FALSE;
}
if (buf_read_page(space, zip_size, offset, trx)) { if (buf_read_page(space, zip_size, offset, trx)) {
buf_read_ahead_random(space, zip_size, offset, buf_read_ahead_random(space, zip_size, offset,
ibuf_inside(mtr), trx); ibuf_inside(mtr), trx);
...@@ -2675,7 +2691,11 @@ wait_until_unfixed: ...@@ -2675,7 +2691,11 @@ wait_until_unfixed:
block_mutex = &block->mutex; block_mutex = &block->mutex;
//buf_pool_mutex_enter(buf_pool); //buf_pool_mutex_enter(buf_pool);
if (!have_LRU_mutex) {
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
have_LRU_mutex = TRUE;
}
rw_lock_x_lock(&buf_pool->page_hash_latch); rw_lock_x_lock(&buf_pool->page_hash_latch);
mutex_enter(block_mutex); mutex_enter(block_mutex);
...@@ -2699,7 +2719,12 @@ wait_until_unfixed: ...@@ -2699,7 +2719,12 @@ wait_until_unfixed:
ut_a(block_mutex); ut_a(block_mutex);
} }
rw_lock_x_unlock(&buf_pool->page_hash_latch); rw_lock_x_unlock(&buf_pool->page_hash_latch);
if (have_LRU_mutex) {
mutex_exit(&buf_pool->LRU_list_mutex); mutex_exit(&buf_pool->LRU_list_mutex);
have_LRU_mutex = FALSE;
}
goto loop2; goto loop2;
} }
} }
...@@ -2720,7 +2745,12 @@ wait_until_unfixed: ...@@ -2720,7 +2745,12 @@ wait_until_unfixed:
//mutex_exit(&block->mutex); //mutex_exit(&block->mutex);
rw_lock_x_unlock(&buf_pool->page_hash_latch); rw_lock_x_unlock(&buf_pool->page_hash_latch);
if (have_LRU_mutex) {
mutex_exit(&buf_pool->LRU_list_mutex); mutex_exit(&buf_pool->LRU_list_mutex);
have_LRU_mutex = FALSE;
}
goto wait_until_unfixed; goto wait_until_unfixed;
} }
...@@ -2758,7 +2788,10 @@ wait_until_unfixed: ...@@ -2758,7 +2788,10 @@ wait_until_unfixed:
/* Insert at the front of unzip_LRU list */ /* Insert at the front of unzip_LRU list */
buf_unzip_LRU_add_block(block, FALSE); buf_unzip_LRU_add_block(block, FALSE);
if (have_LRU_mutex) {
mutex_exit(&buf_pool->LRU_list_mutex); mutex_exit(&buf_pool->LRU_list_mutex);
have_LRU_mutex = FALSE;
}
block->page.buf_fix_count = 1; block->page.buf_fix_count = 1;
buf_block_set_io_fix(block, BUF_IO_READ); buf_block_set_io_fix(block, BUF_IO_READ);
...@@ -2831,7 +2864,6 @@ wait_until_unfixed: ...@@ -2831,7 +2864,6 @@ wait_until_unfixed:
/* Try to evict the block from the buffer pool, to use the /* Try to evict the block from the buffer pool, to use the
insert buffer (change buffer) as much as possible. */ insert buffer (change buffer) as much as possible. */
ulint page_no = buf_block_get_page_no(block); ulint page_no = buf_block_get_page_no(block);
ibool have_LRU_mutex = FALSE;
if (buf_LRU_free_block(&block->page, TRUE, &have_LRU_mutex)) { if (buf_LRU_free_block(&block->page, TRUE, &have_LRU_mutex)) {
mutex_exit(block_mutex); mutex_exit(block_mutex);
...@@ -2870,13 +2902,22 @@ wait_until_unfixed: ...@@ -2870,13 +2902,22 @@ wait_until_unfixed:
block = NULL; block = NULL;
goto loop2; goto loop2;
} else if (buf_flush_page_try(buf_pool, block)) { } else {
/* We should not hold LRU mutex below when trying
to flush page */
if (have_LRU_mutex) {
mutex_exit(&buf_pool->LRU_list_mutex);
have_LRU_mutex = FALSE;
}
if (buf_flush_page_try(buf_pool, block)) {
fprintf(stderr, fprintf(stderr,
"innodb_change_buffering_debug flush %u %u\n", "innodb_change_buffering_debug flush %u %u\n",
(unsigned) space, (unsigned) offset); (unsigned) space, (unsigned) offset);
guess = block; guess = block;
goto loop; goto loop;
} }
}
/* Failed to evict the page; change it directly */ /* Failed to evict the page; change it directly */
} }
...@@ -3472,6 +3513,7 @@ buf_page_init_for_read( ...@@ -3472,6 +3513,7 @@ buf_page_init_for_read(
fold = buf_page_address_fold(space, offset); fold = buf_page_address_fold(space, offset);
//buf_pool_mutex_enter(buf_pool); //buf_pool_mutex_enter(buf_pool);
ut_ad(!mutex_own(&buf_pool->LRU_list_mutex));
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
rw_lock_x_lock(&buf_pool->page_hash_latch); rw_lock_x_lock(&buf_pool->page_hash_latch);
...@@ -3690,6 +3732,7 @@ buf_page_create( ...@@ -3690,6 +3732,7 @@ buf_page_create(
fold = buf_page_address_fold(space, offset); fold = buf_page_address_fold(space, offset);
//buf_pool_mutex_enter(buf_pool); //buf_pool_mutex_enter(buf_pool);
ut_ad(!mutex_own(&buf_pool->LRU_list_mutex));
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
rw_lock_x_lock(&buf_pool->page_hash_latch); rw_lock_x_lock(&buf_pool->page_hash_latch);
...@@ -3830,6 +3873,7 @@ buf_mark_space_corrupt( ...@@ -3830,6 +3873,7 @@ buf_mark_space_corrupt(
/* First unfix and release lock on the bpage */ /* First unfix and release lock on the bpage */
//buf_pool_mutex_enter(buf_pool); //buf_pool_mutex_enter(buf_pool);
ut_ad(!mutex_own(&buf_pool->LRU_list_mutex));
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
rw_lock_x_lock(&buf_pool->page_hash_latch); rw_lock_x_lock(&buf_pool->page_hash_latch);
mutex_enter(buf_page_get_mutex(bpage)); mutex_enter(buf_page_get_mutex(bpage));
...@@ -4068,11 +4112,12 @@ corrupt: ...@@ -4068,11 +4112,12 @@ corrupt:
buf_page_get_state(bpage) == BUF_BLOCK_ZIP_DIRTY || buf_page_get_state(bpage) == BUF_BLOCK_ZIP_DIRTY ||
#endif /* UNIV_DEBUG || UNIV_BUF_DEBUG */ #endif /* UNIV_DEBUG || UNIV_BUF_DEBUG */
buf_page_get_flush_type(bpage) == BUF_FLUSH_LRU)) { buf_page_get_flush_type(bpage) == BUF_FLUSH_LRU)) {
have_LRU_mutex = TRUE; /* optimistic */
} }
retry_mutex: retry_mutex:
if (have_LRU_mutex) if (!have_LRU_mutex) {
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
have_LRU_mutex = TRUE;
}
block_mutex = buf_page_get_mutex_enter(bpage); block_mutex = buf_page_get_mutex_enter(bpage);
ut_a(block_mutex); ut_a(block_mutex);
if (io_type == BUF_IO_WRITE if (io_type == BUF_IO_WRITE
...@@ -4085,7 +4130,6 @@ retry_mutex: ...@@ -4085,7 +4130,6 @@ retry_mutex:
&& !have_LRU_mutex) { && !have_LRU_mutex) {
mutex_exit(block_mutex); mutex_exit(block_mutex);
have_LRU_mutex = TRUE;
goto retry_mutex; goto retry_mutex;
} }
buf_pool_mutex_enter(buf_pool); buf_pool_mutex_enter(buf_pool);
...@@ -4111,6 +4155,11 @@ retry_mutex: ...@@ -4111,6 +4155,11 @@ retry_mutex:
the x-latch to this OS thread: do not let this confuse you in the x-latch to this OS thread: do not let this confuse you in
debugging! */ debugging! */
if (have_LRU_mutex) {
mutex_exit(&buf_pool->LRU_list_mutex);
have_LRU_mutex = FALSE;
}
ut_a(!have_LRU_mutex); ut_a(!have_LRU_mutex);
ut_ad(buf_pool->n_pend_reads > 0); ut_ad(buf_pool->n_pend_reads > 0);
buf_pool->n_pend_reads--; buf_pool->n_pend_reads--;
...@@ -4129,8 +4178,10 @@ retry_mutex: ...@@ -4129,8 +4178,10 @@ retry_mutex:
buf_flush_write_complete(bpage); buf_flush_write_complete(bpage);
if (have_LRU_mutex) if (have_LRU_mutex) {
mutex_exit(&buf_pool->LRU_list_mutex); mutex_exit(&buf_pool->LRU_list_mutex);
have_LRU_mutex = FALSE;
}
if (uncompressed) { if (uncompressed) {
rw_lock_s_unlock_gen(&((buf_block_t*) bpage)->lock, rw_lock_s_unlock_gen(&((buf_block_t*) bpage)->lock,
...@@ -4205,6 +4256,7 @@ buf_all_freed_instance( ...@@ -4205,6 +4256,7 @@ buf_all_freed_instance(
ut_ad(buf_pool); ut_ad(buf_pool);
//buf_pool_mutex_enter(buf_pool); //buf_pool_mutex_enter(buf_pool);
ut_ad(!mutex_own(&buf_pool->LRU_list_mutex));
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
rw_lock_x_lock(&buf_pool->page_hash_latch); rw_lock_x_lock(&buf_pool->page_hash_latch);
...@@ -4274,6 +4326,7 @@ buf_pool_invalidate_instance( ...@@ -4274,6 +4326,7 @@ buf_pool_invalidate_instance(
} }
//buf_pool_mutex_enter(buf_pool); //buf_pool_mutex_enter(buf_pool);
ut_ad(!mutex_own(&buf_pool->LRU_list_mutex));
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
ut_ad(UT_LIST_GET_LEN(buf_pool->LRU) == 0); ut_ad(UT_LIST_GET_LEN(buf_pool->LRU) == 0);
...@@ -4331,6 +4384,7 @@ buf_pool_validate_instance( ...@@ -4331,6 +4384,7 @@ buf_pool_validate_instance(
ut_ad(buf_pool); ut_ad(buf_pool);
//buf_pool_mutex_enter(buf_pool); //buf_pool_mutex_enter(buf_pool);
ut_ad(!mutex_own(&buf_pool->LRU_list_mutex));
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
rw_lock_x_lock(&buf_pool->page_hash_latch); rw_lock_x_lock(&buf_pool->page_hash_latch);
/* for keep the new latch order, it cannot validate correctly... */ /* for keep the new latch order, it cannot validate correctly... */
...@@ -4596,6 +4650,7 @@ buf_print_instance( ...@@ -4596,6 +4650,7 @@ buf_print_instance(
counts = mem_alloc(sizeof(ulint) * size); counts = mem_alloc(sizeof(ulint) * size);
//buf_pool_mutex_enter(buf_pool); //buf_pool_mutex_enter(buf_pool);
ut_ad(!mutex_own(&buf_pool->LRU_list_mutex));
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
mutex_enter(&buf_pool->free_list_mutex); mutex_enter(&buf_pool->free_list_mutex);
buf_flush_list_mutex_enter(buf_pool); buf_flush_list_mutex_enter(buf_pool);
...@@ -4955,6 +5010,7 @@ buf_stats_get_pool_info( ...@@ -4955,6 +5010,7 @@ buf_stats_get_pool_info(
/* Find appropriate pool_info to store stats for this buffer pool */ /* Find appropriate pool_info to store stats for this buffer pool */
pool_info = &all_pool_info[pool_id]; pool_info = &all_pool_info[pool_id];
ut_ad(!mutex_own(&buf_pool->LRU_list_mutex));
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
mutex_enter(&buf_pool->free_list_mutex); mutex_enter(&buf_pool->free_list_mutex);
buf_pool_mutex_enter(buf_pool); buf_pool_mutex_enter(buf_pool);
......
...@@ -294,6 +294,8 @@ buf_LRU_drop_page_hash_for_tablespace( ...@@ -294,6 +294,8 @@ buf_LRU_drop_page_hash_for_tablespace(
sizeof(ulint) * BUF_LRU_DROP_SEARCH_SIZE); sizeof(ulint) * BUF_LRU_DROP_SEARCH_SIZE);
//buf_pool_mutex_enter(buf_pool); //buf_pool_mutex_enter(buf_pool);
ut_ad(!mutex_own(&buf_pool->LRU_list_mutex));
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
num_entries = 0; num_entries = 0;
...@@ -362,6 +364,7 @@ next_page: ...@@ -362,6 +364,7 @@ next_page:
num_entries = 0; num_entries = 0;
//buf_pool_mutex_enter(buf_pool); //buf_pool_mutex_enter(buf_pool);
ut_ad(!mutex_own(&buf_pool->LRU_list_mutex));
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
/* Note that we released the buf_pool mutex above /* Note that we released the buf_pool mutex above
...@@ -438,6 +441,7 @@ buf_flush_yield( ...@@ -438,6 +441,7 @@ buf_flush_yield(
/* Try and force a context switch. */ /* Try and force a context switch. */
os_thread_yield(); os_thread_yield();
ut_ad(!mutex_own(&buf_pool->LRU_list_mutex));
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
mutex_enter(block_mutex); mutex_enter(block_mutex);
...@@ -690,6 +694,7 @@ buf_flush_dirty_pages( ...@@ -690,6 +694,7 @@ buf_flush_dirty_pages(
ibool all_freed; ibool all_freed;
do { do {
ut_ad(!mutex_own(&buf_pool->LRU_list_mutex));
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
all_freed = buf_flush_or_remove_pages(buf_pool, id); all_freed = buf_flush_or_remove_pages(buf_pool, id);
...@@ -720,6 +725,7 @@ buf_LRU_remove_all_pages( ...@@ -720,6 +725,7 @@ buf_LRU_remove_all_pages(
scan_again: scan_again:
//buf_pool_mutex_enter(buf_pool); //buf_pool_mutex_enter(buf_pool);
ut_ad(!mutex_own(&buf_pool->LRU_list_mutex));
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
rw_lock_x_lock(&buf_pool->page_hash_latch); rw_lock_x_lock(&buf_pool->page_hash_latch);
...@@ -1087,6 +1093,7 @@ buf_LRU_search_and_free_block( ...@@ -1087,6 +1093,7 @@ buf_LRU_search_and_free_block(
//buf_pool_mutex_enter(buf_pool); //buf_pool_mutex_enter(buf_pool);
if (UT_LIST_GET_LEN(buf_pool->unzip_LRU)) { if (UT_LIST_GET_LEN(buf_pool->unzip_LRU)) {
ut_ad(!mutex_own(&buf_pool->LRU_list_mutex));
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
have_LRU_mutex = TRUE; have_LRU_mutex = TRUE;
} }
...@@ -1169,6 +1176,7 @@ buf_LRU_buf_pool_running_out(void) ...@@ -1169,6 +1176,7 @@ buf_LRU_buf_pool_running_out(void)
buf_pool = buf_pool_from_array(i); buf_pool = buf_pool_from_array(i);
//buf_pool_mutex_enter(buf_pool); //buf_pool_mutex_enter(buf_pool);
ut_ad(!mutex_own(&buf_pool->LRU_list_mutex));
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
mutex_enter(&buf_pool->free_list_mutex); mutex_enter(&buf_pool->free_list_mutex);
...@@ -2095,9 +2103,9 @@ not_freed: ...@@ -2095,9 +2103,9 @@ not_freed:
} }
//buf_pool_mutex_enter(buf_pool); //buf_pool_mutex_enter(buf_pool);
if (*have_LRU_mutex) { if (!*have_LRU_mutex) {
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
*have_LRU_mutex = FALSE; *have_LRU_mutex = TRUE;
} }
mutex_enter(block_mutex); mutex_enter(block_mutex);
...@@ -2108,6 +2116,12 @@ not_freed: ...@@ -2108,6 +2116,12 @@ not_freed:
} }
buf_LRU_block_free_hashed_page((buf_block_t*) bpage, FALSE); buf_LRU_block_free_hashed_page((buf_block_t*) bpage, FALSE);
if (*have_LRU_mutex) {
mutex_exit(&buf_pool->LRU_list_mutex);
*have_LRU_mutex = FALSE;
}
} else { } else {
/* The block_mutex should have been released by /* The block_mutex should have been released by
buf_LRU_block_remove_hashed_page() when it returns buf_LRU_block_remove_hashed_page() when it returns
...@@ -2488,6 +2502,7 @@ buf_LRU_old_ratio_update_instance( ...@@ -2488,6 +2502,7 @@ buf_LRU_old_ratio_update_instance(
if (adjust) { if (adjust) {
//buf_pool_mutex_enter(buf_pool); //buf_pool_mutex_enter(buf_pool);
ut_ad(!mutex_own(&buf_pool->LRU_list_mutex));
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
if (ratio != buf_pool->LRU_old_ratio) { if (ratio != buf_pool->LRU_old_ratio) {
...@@ -2661,6 +2676,7 @@ buf_LRU_file_dump(void) ...@@ -2661,6 +2676,7 @@ buf_LRU_file_dump(void)
buf_pool = buf_pool_from_array(i); buf_pool = buf_pool_from_array(i);
ut_ad(!mutex_own(&buf_pool->LRU_list_mutex));
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
bpage = first_bpage = UT_LIST_GET_FIRST(buf_pool->LRU); bpage = first_bpage = UT_LIST_GET_FIRST(buf_pool->LRU);
total_pages = UT_LIST_GET_LEN(buf_pool->LRU); total_pages = UT_LIST_GET_LEN(buf_pool->LRU);
...@@ -2717,6 +2733,7 @@ buf_LRU_file_dump(void) ...@@ -2717,6 +2733,7 @@ buf_LRU_file_dump(void)
/* Grab this here so that next_bpage can't /* Grab this here so that next_bpage can't
be purged when we drop the fix_count */ be purged when we drop the fix_count */
ut_ad(!mutex_own(&buf_pool->LRU_list_mutex));
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
if (next_bpage) { if (next_bpage) {
...@@ -2968,6 +2985,7 @@ buf_LRU_validate_instance( ...@@ -2968,6 +2985,7 @@ buf_LRU_validate_instance(
ut_ad(buf_pool); ut_ad(buf_pool);
//buf_pool_mutex_enter(buf_pool); //buf_pool_mutex_enter(buf_pool);
ut_ad(!mutex_own(&buf_pool->LRU_list_mutex));
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
if (UT_LIST_GET_LEN(buf_pool->LRU) >= BUF_LRU_OLD_MIN_LEN) { if (UT_LIST_GET_LEN(buf_pool->LRU) >= BUF_LRU_OLD_MIN_LEN) {
...@@ -3043,6 +3061,7 @@ buf_LRU_validate_instance( ...@@ -3043,6 +3061,7 @@ buf_LRU_validate_instance(
} }
mutex_exit(&buf_pool->free_list_mutex); mutex_exit(&buf_pool->free_list_mutex);
ut_ad(!mutex_own(&buf_pool->LRU_list_mutex));
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
UT_LIST_VALIDATE(unzip_LRU, buf_block_t, buf_pool->unzip_LRU, UT_LIST_VALIDATE(unzip_LRU, buf_block_t, buf_pool->unzip_LRU,
...@@ -3096,6 +3115,7 @@ buf_LRU_print_instance( ...@@ -3096,6 +3115,7 @@ buf_LRU_print_instance(
ut_ad(buf_pool); ut_ad(buf_pool);
//buf_pool_mutex_enter(buf_pool); //buf_pool_mutex_enter(buf_pool);
ut_ad(!mutex_own(&buf_pool->LRU_list_mutex));
mutex_enter(&buf_pool->LRU_list_mutex); mutex_enter(&buf_pool->LRU_list_mutex);
bpage = UT_LIST_GET_FIRST(buf_pool->LRU); bpage = UT_LIST_GET_FIRST(buf_pool->LRU);
......
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