Better to use ut_ad macro.

This commit is contained in:
Jan Lindström 2014-03-19 19:35:42 +02:00
parent 6b0fa54007
commit a60f227c04

View File

@ -2290,14 +2290,14 @@ buf_LRU_block_free_non_file_page(
page_zip_set_size(&block->page.zip, 0);
}
ut_a(buf_pool->free_list_mutex.high_priority_waiters == 0);
ut_ad(buf_pool->free_list_mutex.high_priority_waiters == 0);
mutex_enter_first(&buf_pool->free_list_mutex);
ut_a(buf_pool->free_list_mutex.high_priority_waiters == 0);
ut_ad(buf_pool->free_list_mutex.high_priority_waiters == 0);
buf_block_set_state(block, BUF_BLOCK_NOT_USED);
UT_LIST_ADD_FIRST(list, buf_pool->free, (&block->page));
ut_d(block->page.in_free_list = TRUE);
mutex_exit(&buf_pool->free_list_mutex);
ut_a(buf_pool->free_list_mutex.high_priority_waiters == 0);
ut_ad(buf_pool->free_list_mutex.high_priority_waiters == 0);
UNIV_MEM_ASSERT_AND_FREE(block->frame, UNIV_PAGE_SIZE);
}