buf0lru.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:27k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /******************************************************
  2. The database buffer replacement algorithm
  3. (c) 1995 Innobase Oy
  4. Created 11/5/1995 Heikki Tuuri
  5. *******************************************************/
  6. #include "buf0lru.h"
  7. #ifdef UNIV_NONINL
  8. #include "buf0lru.ic"
  9. #include "srv0srv.h" /* Needed to getsrv_print_innodb_monitor */
  10. #endif
  11. #include "ut0byte.h"
  12. #include "ut0lst.h"
  13. #include "ut0rnd.h"
  14. #include "sync0sync.h"
  15. #include "sync0rw.h"
  16. #include "hash0hash.h"
  17. #include "os0sync.h"
  18. #include "fil0fil.h"
  19. #include "btr0btr.h"
  20. #include "buf0buf.h"
  21. #include "buf0flu.h"
  22. #include "buf0rea.h"
  23. #include "btr0sea.h"
  24. #include "os0file.h"
  25. #include "log0recv.h"
  26. /* The number of blocks from the LRU_old pointer onward, including the block
  27. pointed to, must be 3/8 of the whole LRU list length, except that the
  28. tolerance defined below is allowed. Note that the tolerance must be small
  29. enough such that for even the BUF_LRU_OLD_MIN_LEN long LRU list, the
  30. LRU_old pointer is not allowed to point to either end of the LRU list. */
  31. #define BUF_LRU_OLD_TOLERANCE 20
  32. /* The whole LRU list length is divided by this number to determine an
  33. initial segment in buf_LRU_get_recent_limit */
  34. #define BUF_LRU_INITIAL_RATIO 8
  35. /* If we switch on the InnoDB monitor because there are too few available
  36. frames in the buffer pool, we set this to TRUE */
  37. ibool buf_lru_switched_on_innodb_mon = FALSE;
  38. /**********************************************************************
  39. Takes a block out of the LRU list and page hash table and sets the block
  40. state to BUF_BLOCK_REMOVE_HASH. */
  41. static
  42. void
  43. buf_LRU_block_remove_hashed_page(
  44. /*=============================*/
  45. buf_block_t* block); /* in: block, must contain a file page and
  46. be in a state where it can be freed; there
  47. may or may not be a hash index to the page */
  48. /**********************************************************************
  49. Puts a file page whose has no hash index to the free list. */
  50. static
  51. void
  52. buf_LRU_block_free_hashed_page(
  53. /*===========================*/
  54. buf_block_t* block); /* in: block, must contain a file page and
  55. be in a state where it can be freed */
  56. /**********************************************************************
  57. Invalidates all pages belonging to a given tablespace when we are deleting
  58. the data file(s) of that tablespace. */
  59. void
  60. buf_LRU_invalidate_tablespace(
  61. /*==========================*/
  62. ulint id) /* in: space id */
  63. {
  64. buf_block_t* block;
  65. ulint page_no;
  66. ibool all_freed;
  67. scan_again:
  68. mutex_enter(&(buf_pool->mutex));
  69. all_freed = TRUE;
  70. block = UT_LIST_GET_LAST(buf_pool->LRU);
  71. while (block != NULL) {
  72.         ut_a(block->state == BUF_BLOCK_FILE_PAGE);
  73. if (block->space == id
  74.     && (block->buf_fix_count > 0 || block->io_fix != 0)) {
  75. /* We cannot remove this page during this scan yet;
  76. maybe the system is currently reading it in, or
  77. flushing the modifications to the file */
  78. all_freed = FALSE;
  79. goto next_page;
  80. }
  81. if (block->space == id) {
  82. #ifdef UNIV_DEBUG
  83. if (buf_debug_prints) {
  84. printf(
  85. "Dropping space %lu page %lun",
  86. (ulong) block->space,
  87.         (ulong) block->offset);
  88. }
  89. #endif
  90. if (block->is_hashed) {
  91. page_no = block->offset;
  92. mutex_exit(&(buf_pool->mutex));
  93. /* Note that the following call will acquire
  94. an S-latch on the page */
  95. btr_search_drop_page_hash_when_freed(id,
  96. page_no);
  97. goto scan_again;
  98. }
  99. if (0 != ut_dulint_cmp(block->oldest_modification,
  100. ut_dulint_zero)) {
  101. /* Remove from the flush list of modified
  102. blocks */
  103. block->oldest_modification = ut_dulint_zero;
  104. UT_LIST_REMOVE(flush_list, 
  105. buf_pool->flush_list, block);
  106. }
  107. /* Remove from the LRU list */
  108. buf_LRU_block_remove_hashed_page(block);
  109. buf_LRU_block_free_hashed_page(block);
  110. }
  111. next_page:
  112. block = UT_LIST_GET_PREV(LRU, block);
  113. }
  114. mutex_exit(&(buf_pool->mutex));
  115. if (!all_freed) {
  116. os_thread_sleep(20000);
  117.         goto scan_again;
  118. }
  119. }
  120. /**********************************************************************
  121. Gets the minimum LRU_position field for the blocks in an initial segment
  122. (determined by BUF_LRU_INITIAL_RATIO) of the LRU list. The limit is not
  123. guaranteed to be precise, because the ulint_clock may wrap around. */
  124. ulint
  125. buf_LRU_get_recent_limit(void)
  126. /*==========================*/
  127. /* out: the limit; zero if could not determine it */
  128. {
  129. buf_block_t* block;
  130. ulint len;
  131. ulint limit;
  132. mutex_enter(&(buf_pool->mutex));
  133. len = UT_LIST_GET_LEN(buf_pool->LRU);
  134. if (len < BUF_LRU_OLD_MIN_LEN) {
  135. /* The LRU list is too short to do read-ahead */
  136. mutex_exit(&(buf_pool->mutex));
  137. return(0);
  138. }
  139. block = UT_LIST_GET_FIRST(buf_pool->LRU);
  140. limit = block->LRU_position - len / BUF_LRU_INITIAL_RATIO;
  141. mutex_exit(&(buf_pool->mutex));
  142. return(limit);
  143. }
  144. /**********************************************************************
  145. Look for a replaceable block from the end of the LRU list and put it to
  146. the free list if found. */
  147. ibool
  148. buf_LRU_search_and_free_block(
  149. /*==========================*/
  150. /* out: TRUE if freed */
  151. ulint n_iterations)   /* in: how many times this has been called
  152. repeatedly without result: a high value means
  153. that we should search farther; if value is
  154. k < 10, then we only search k/10 * [number
  155. of pages in the buffer pool] from the end
  156. of the LRU list */
  157. {
  158. buf_block_t* block;
  159. ulint distance = 0;
  160. ibool freed;
  161. mutex_enter(&(buf_pool->mutex));
  162. freed = FALSE;
  163. block = UT_LIST_GET_LAST(buf_pool->LRU);
  164. while (block != NULL) {
  165.         ut_a(block->in_LRU_list);
  166. if (buf_flush_ready_for_replace(block)) {
  167. if (buf_debug_prints) {
  168. fprintf(stderr,
  169. "Putting space %lu page %lu to free listn",
  170. (ulong) block->space,
  171.         (ulong) block->offset);
  172. }
  173. buf_LRU_block_remove_hashed_page(block);
  174. mutex_exit(&(buf_pool->mutex));
  175. /* Remove possible adaptive hash index built on the
  176. page; in the case of AWE the block may not have a
  177. frame at all */
  178. if (block->frame) {
  179. btr_search_drop_page_hash_index(block->frame);
  180. }
  181. mutex_enter(&(buf_pool->mutex));
  182. ut_a(block->buf_fix_count == 0);
  183. buf_LRU_block_free_hashed_page(block);
  184. freed = TRUE;
  185. break;
  186. }
  187. block = UT_LIST_GET_PREV(LRU, block);
  188. distance++;
  189. if (!freed && n_iterations <= 10
  190.     && distance > 100 + (n_iterations * buf_pool->curr_size)
  191. / 10) {
  192. buf_pool->LRU_flush_ended = 0;
  193. mutex_exit(&(buf_pool->mutex));
  194. return(FALSE);
  195. }
  196. }
  197. if (buf_pool->LRU_flush_ended > 0) {
  198. buf_pool->LRU_flush_ended--;
  199. }
  200.   if (!freed) {
  201. buf_pool->LRU_flush_ended = 0;
  202. }
  203. mutex_exit(&(buf_pool->mutex));
  204. return(freed);
  205. }
  206. /**********************************************************************
  207. Tries to remove LRU flushed blocks from the end of the LRU list and put them
  208. to the free list. This is beneficial for the efficiency of the insert buffer
  209. operation, as flushed pages from non-unique non-clustered indexes are here
  210. taken out of the buffer pool, and their inserts redirected to the insert
  211. buffer. Otherwise, the flushed blocks could get modified again before read
  212. operations need new buffer blocks, and the i/o work done in flushing would be
  213. wasted. */
  214. void
  215. buf_LRU_try_free_flushed_blocks(void)
  216. /*=================================*/
  217. {
  218. mutex_enter(&(buf_pool->mutex));
  219. while (buf_pool->LRU_flush_ended > 0) {
  220. mutex_exit(&(buf_pool->mutex));
  221. buf_LRU_search_and_free_block(1);
  222. mutex_enter(&(buf_pool->mutex));
  223. }
  224. mutex_exit(&(buf_pool->mutex));
  225. }
  226. /**********************************************************************
  227. Returns TRUE if less than 15 % of the buffer pool is available. This can be
  228. used in heuristics to prevent huge transactions eating up the whole buffer
  229. pool for their locks. */
  230. ibool
  231. buf_LRU_buf_pool_running_out(void)
  232. /*==============================*/
  233. /* out: TRUE if less than 15 % of buffer pool
  234. left */
  235. {
  236. ibool ret = FALSE;
  237. mutex_enter(&(buf_pool->mutex));
  238. if (!recv_recovery_on && UT_LIST_GET_LEN(buf_pool->free)
  239.    + UT_LIST_GET_LEN(buf_pool->LRU) < buf_pool->max_size / 7) {
  240. ret = TRUE;
  241. }
  242. mutex_exit(&(buf_pool->mutex));
  243. return(ret);
  244. }
  245. /**********************************************************************
  246. Returns a free block from buf_pool. The block is taken off the free list.
  247. If it is empty, blocks are moved from the end of the LRU list to the free
  248. list. */
  249. buf_block_t*
  250. buf_LRU_get_free_block(void)
  251. /*========================*/
  252. /* out: the free control block; also if AWE is
  253. used, it is guaranteed that the block has its
  254. page mapped to a frame when we return */
  255. {
  256. buf_block_t* block = NULL;
  257. ibool freed;
  258. ulint n_iterations = 1;
  259. ibool mon_value_was   = FALSE;
  260. ibool started_monitor = FALSE;
  261. loop:
  262. mutex_enter(&(buf_pool->mutex));
  263. if (!recv_recovery_on && UT_LIST_GET_LEN(buf_pool->free)
  264.    + UT_LIST_GET_LEN(buf_pool->LRU) < buf_pool->max_size / 10) {
  265.     ut_print_timestamp(stderr);
  266.     fprintf(stderr,
  267. "  InnoDB: ERROR: over 9 / 10 of the buffer pool is occupied byn"
  268. "InnoDB: lock heaps or the adaptive hash index! Check that yourn"
  269. "InnoDB: transactions do not set too many row locks.n"
  270. "InnoDB: Your buffer pool size is %lu MB. Maybe you should maken"
  271. "InnoDB: the buffer pool bigger?n"
  272. "InnoDB: We intentionally generate a seg fault to print a stack tracen"
  273. "InnoDB: on Linux!n",
  274. (ulong)(buf_pool->curr_size / (1024 * 1024 / UNIV_PAGE_SIZE)));
  275. ut_error;
  276.    
  277. } else if (!recv_recovery_on && UT_LIST_GET_LEN(buf_pool->free)
  278.    + UT_LIST_GET_LEN(buf_pool->LRU) < buf_pool->max_size / 5) {
  279. if (!buf_lru_switched_on_innodb_mon) {
  280.     /* Over 80 % of the buffer pool is occupied by lock
  281. heaps or the adaptive hash index. This may be a memory
  282. leak! */
  283.     ut_print_timestamp(stderr);
  284.     fprintf(stderr,
  285. "  InnoDB: WARNING: over 4 / 5 of the buffer pool is occupied byn"
  286. "InnoDB: lock heaps or the adaptive hash index! Check that yourn"
  287. "InnoDB: transactions do not set too many row locks.n"
  288. "InnoDB: Your buffer pool size is %lu MB. Maybe you should maken"
  289. "InnoDB: the buffer pool bigger?n"
  290. "InnoDB: Starting the InnoDB Monitor to print diagnostics, includingn"
  291. "InnoDB: lock heap and hash index sizes.n",
  292. (ulong) (buf_pool->curr_size / (1024 * 1024 / UNIV_PAGE_SIZE)));
  293. buf_lru_switched_on_innodb_mon = TRUE;
  294. srv_print_innodb_monitor = TRUE;
  295. os_event_set(srv_lock_timeout_thread_event);
  296. }
  297. } else if (buf_lru_switched_on_innodb_mon) {
  298. /* Switch off the InnoDB Monitor; this is a simple way
  299. to stop the monitor if the situation becomes less urgent,
  300. but may also surprise users if the user also switched on the
  301. monitor! */
  302. buf_lru_switched_on_innodb_mon = FALSE;
  303. srv_print_innodb_monitor = FALSE;
  304. }
  305. /* If there is a block in the free list, take it */
  306. if (UT_LIST_GET_LEN(buf_pool->free) > 0) {
  307. block = UT_LIST_GET_FIRST(buf_pool->free);
  308. ut_a(block->in_free_list);
  309. UT_LIST_REMOVE(free, buf_pool->free, block);
  310. block->in_free_list = FALSE;
  311. ut_a(block->state != BUF_BLOCK_FILE_PAGE);
  312.         ut_a(!block->in_LRU_list);
  313. if (srv_use_awe) {
  314. if (block->frame) {
  315. /* Remove from the list of mapped pages */
  316. UT_LIST_REMOVE(awe_LRU_free_mapped,
  317. buf_pool->awe_LRU_free_mapped, block);
  318. } else {
  319. /* We map the page to a frame; second param
  320. FALSE below because we do not want it to be
  321. added to the awe_LRU_free_mapped list */
  322. buf_awe_map_page_to_frame(block, FALSE);
  323. }
  324. }
  325. block->state = BUF_BLOCK_READY_FOR_USE;
  326. mutex_exit(&(buf_pool->mutex));
  327. if (started_monitor) {
  328. srv_print_innodb_monitor = mon_value_was;
  329. }
  330. return(block);
  331. }
  332. /* If no block was in the free list, search from the end of the LRU
  333. list and try to free a block there */
  334. mutex_exit(&(buf_pool->mutex));
  335. freed = buf_LRU_search_and_free_block(n_iterations);
  336. if (freed > 0) {
  337. goto loop;
  338. }
  339. if (n_iterations > 30) {
  340. ut_print_timestamp(stderr);
  341. fprintf(stderr,
  342. "InnoDB: Warning: difficult to find free blocks fromn"
  343. "InnoDB: the buffer pool (%lu search iterations)! Considern"
  344. "InnoDB: increasing the buffer pool size.n"
  345. "InnoDB: It is also possible that in your Unix versionn"
  346. "InnoDB: fsync is very slow, or completely frozen insiden"
  347. "InnoDB: the OS kernel. Then upgrading to a newer versionn"
  348. "InnoDB: of your operating system may help. Look at then"
  349. "InnoDB: number of fsyncs in diagnostic info below.n"
  350. "InnoDB: Pending flushes (fsync) log: %lu; buffer pool: %lun"
  351. "InnoDB: %lu OS file reads, %lu OS file writes, %lu OS fsyncsn"
  352. "InnoDB: Starting InnoDB Monitor to print furthern"
  353. "InnoDB: diagnostics to the standard output.n",
  354. (ulong) n_iterations,
  355. (ulong) fil_n_pending_log_flushes,
  356. (ulong) fil_n_pending_tablespace_flushes,
  357. (ulong) os_n_file_reads, (ulong) os_n_file_writes,
  358.                         (ulong) os_n_fsyncs);
  359. mon_value_was = srv_print_innodb_monitor;
  360. started_monitor = TRUE;
  361. srv_print_innodb_monitor = TRUE;
  362. os_event_set(srv_lock_timeout_thread_event);
  363. }
  364. /* No free block was found: try to flush the LRU list */
  365. buf_flush_free_margin();
  366. os_aio_simulated_wake_handler_threads();
  367. mutex_enter(&(buf_pool->mutex));
  368. if (buf_pool->LRU_flush_ended > 0) {
  369. /* We have written pages in an LRU flush. To make the insert
  370. buffer more efficient, we try to move these pages to the free
  371. list. */
  372. mutex_exit(&(buf_pool->mutex));
  373. buf_LRU_try_free_flushed_blocks();
  374. } else {
  375. mutex_exit(&(buf_pool->mutex));
  376. }
  377. if (n_iterations > 10) {
  378. os_thread_sleep(500000);
  379. }
  380. n_iterations++;
  381. goto loop;
  382. }
  383. /***********************************************************************
  384. Moves the LRU_old pointer so that the length of the old blocks list
  385. is inside the allowed limits. */
  386. UNIV_INLINE
  387. void
  388. buf_LRU_old_adjust_len(void)
  389. /*========================*/
  390. {
  391. ulint old_len;
  392. ulint new_len;
  393. ut_a(buf_pool->LRU_old);
  394. #ifdef UNIV_SYNC_DEBUG
  395. ut_ad(mutex_own(&(buf_pool->mutex)));
  396. #endif /* UNIV_SYNC_DEBUG */
  397. ut_ad(3 * (BUF_LRU_OLD_MIN_LEN / 8) > BUF_LRU_OLD_TOLERANCE + 5);
  398. for (;;) {
  399. old_len = buf_pool->LRU_old_len;
  400. new_len = 3 * (UT_LIST_GET_LEN(buf_pool->LRU) / 8);
  401. ut_a(buf_pool->LRU_old->in_LRU_list);
  402. /* Update the LRU_old pointer if necessary */
  403. if (old_len < new_len - BUF_LRU_OLD_TOLERANCE) {
  404. buf_pool->LRU_old = UT_LIST_GET_PREV(LRU,
  405. buf_pool->LRU_old);
  406. (buf_pool->LRU_old)->old = TRUE;
  407. buf_pool->LRU_old_len++;
  408. } else if (old_len > new_len + BUF_LRU_OLD_TOLERANCE) {
  409. (buf_pool->LRU_old)->old = FALSE;
  410. buf_pool->LRU_old = UT_LIST_GET_NEXT(LRU,
  411. buf_pool->LRU_old);
  412. buf_pool->LRU_old_len--;
  413. } else {
  414. ut_a(buf_pool->LRU_old); /* Check that we did not
  415. fall out of the LRU list */
  416. return;
  417. }
  418. }
  419. }
  420. /***********************************************************************
  421. Initializes the old blocks pointer in the LRU list. This function should be
  422. called when the LRU list grows to BUF_LRU_OLD_MIN_LEN length. */
  423. static
  424. void
  425. buf_LRU_old_init(void)
  426. /*==================*/
  427. {
  428. buf_block_t* block;
  429. ut_a(UT_LIST_GET_LEN(buf_pool->LRU) == BUF_LRU_OLD_MIN_LEN);
  430. /* We first initialize all blocks in the LRU list as old and then use
  431. the adjust function to move the LRU_old pointer to the right
  432. position */
  433. block = UT_LIST_GET_FIRST(buf_pool->LRU);
  434. while (block != NULL) {
  435. ut_a(block->state == BUF_BLOCK_FILE_PAGE);
  436.         ut_a(block->in_LRU_list);
  437. block->old = TRUE;
  438. block = UT_LIST_GET_NEXT(LRU, block);
  439. }
  440. buf_pool->LRU_old = UT_LIST_GET_FIRST(buf_pool->LRU);
  441. buf_pool->LRU_old_len = UT_LIST_GET_LEN(buf_pool->LRU);
  442. buf_LRU_old_adjust_len();
  443. }     
  444. /**********************************************************************
  445. Removes a block from the LRU list. */
  446. UNIV_INLINE
  447. void
  448. buf_LRU_remove_block(
  449. /*=================*/
  450. buf_block_t* block) /* in: control block */
  451. {
  452. ut_ad(buf_pool);
  453. ut_ad(block);
  454. #ifdef UNIV_SYNC_DEBUG
  455. ut_ad(mutex_own(&(buf_pool->mutex)));
  456. #endif /* UNIV_SYNC_DEBUG */
  457. ut_a(block->state == BUF_BLOCK_FILE_PAGE);
  458. ut_a(block->in_LRU_list);
  459. /* If the LRU_old pointer is defined and points to just this block,
  460. move it backward one step */
  461. if (block == buf_pool->LRU_old) {
  462. /* Below: the previous block is guaranteed to exist, because
  463. the LRU_old pointer is only allowed to differ by the
  464. tolerance value from strict 3/8 of the LRU list length. */
  465. buf_pool->LRU_old = UT_LIST_GET_PREV(LRU, block);
  466. (buf_pool->LRU_old)->old = TRUE;
  467. buf_pool->LRU_old_len++;
  468. ut_a(buf_pool->LRU_old);
  469. }
  470. /* Remove the block from the LRU list */
  471. UT_LIST_REMOVE(LRU, buf_pool->LRU, block);
  472. block->in_LRU_list = FALSE;
  473. if (srv_use_awe && block->frame) {
  474. /* Remove from the list of mapped pages */
  475. UT_LIST_REMOVE(awe_LRU_free_mapped,
  476. buf_pool->awe_LRU_free_mapped, block);
  477. }
  478. /* If the LRU list is so short that LRU_old not defined, return */
  479. if (UT_LIST_GET_LEN(buf_pool->LRU) < BUF_LRU_OLD_MIN_LEN) {
  480. buf_pool->LRU_old = NULL;
  481. return;
  482. }
  483. ut_ad(buf_pool->LRU_old);
  484. /* Update the LRU_old_len field if necessary */
  485. if (block->old) {
  486. buf_pool->LRU_old_len--;
  487. }
  488. /* Adjust the length of the old block list if necessary */
  489. buf_LRU_old_adjust_len();
  490. }     
  491. /**********************************************************************
  492. Adds a block to the LRU list end. */
  493. UNIV_INLINE
  494. void
  495. buf_LRU_add_block_to_end_low(
  496. /*=========================*/
  497. buf_block_t* block) /* in: control block */
  498. {
  499. buf_block_t* last_block;
  500. ut_ad(buf_pool);
  501. ut_ad(block);
  502. #ifdef UNIV_SYNC_DEBUG
  503. ut_ad(mutex_own(&(buf_pool->mutex)));
  504. #endif /* UNIV_SYNC_DEBUG */
  505. ut_a(block->state == BUF_BLOCK_FILE_PAGE);
  506. block->old = TRUE;
  507. last_block = UT_LIST_GET_LAST(buf_pool->LRU);
  508. if (last_block) {
  509. block->LRU_position = last_block->LRU_position;
  510. } else {
  511. block->LRU_position = buf_pool_clock_tic();
  512. }
  513. ut_a(!block->in_LRU_list);
  514. UT_LIST_ADD_LAST(LRU, buf_pool->LRU, block);
  515. block->in_LRU_list = TRUE;
  516. if (srv_use_awe && block->frame) {
  517. /* Add to the list of mapped pages */
  518. UT_LIST_ADD_LAST(awe_LRU_free_mapped,
  519. buf_pool->awe_LRU_free_mapped, block);
  520. }
  521. if (UT_LIST_GET_LEN(buf_pool->LRU) >= BUF_LRU_OLD_MIN_LEN) {
  522. buf_pool->LRU_old_len++;
  523. }
  524. if (UT_LIST_GET_LEN(buf_pool->LRU) > BUF_LRU_OLD_MIN_LEN) {
  525. ut_ad(buf_pool->LRU_old);
  526. /* Adjust the length of the old block list if necessary */
  527. buf_LRU_old_adjust_len();
  528. } else if (UT_LIST_GET_LEN(buf_pool->LRU) == BUF_LRU_OLD_MIN_LEN) {
  529. /* The LRU list is now long enough for LRU_old to become
  530. defined: init it */
  531. buf_LRU_old_init();
  532. }
  533. }     
  534. /**********************************************************************
  535. Adds a block to the LRU list. */
  536. UNIV_INLINE
  537. void
  538. buf_LRU_add_block_low(
  539. /*==================*/
  540. buf_block_t* block, /* in: control block */
  541. ibool old) /* in: TRUE if should be put to the old blocks
  542. in the LRU list, else put to the start; if the
  543. LRU list is very short, the block is added to
  544. the start, regardless of this parameter */
  545. {
  546. ulint cl;
  547. ut_ad(buf_pool);
  548. ut_ad(block);
  549. #ifdef UNIV_SYNC_DEBUG
  550. ut_ad(mutex_own(&(buf_pool->mutex)));
  551. #endif /* UNIV_SYNC_DEBUG */
  552. ut_a(block->state == BUF_BLOCK_FILE_PAGE);
  553. ut_a(!block->in_LRU_list);
  554. block->old = old;
  555. cl = buf_pool_clock_tic();
  556. if (srv_use_awe && block->frame) {
  557. /* Add to the list of mapped pages; for simplicity we always
  558. add to the start, even if the user would have set 'old'
  559. TRUE */
  560. UT_LIST_ADD_FIRST(awe_LRU_free_mapped,
  561. buf_pool->awe_LRU_free_mapped, block);
  562. }
  563. if (!old || (UT_LIST_GET_LEN(buf_pool->LRU) < BUF_LRU_OLD_MIN_LEN)) {
  564. UT_LIST_ADD_FIRST(LRU, buf_pool->LRU, block);
  565. block->LRU_position = cl;
  566. block->freed_page_clock = buf_pool->freed_page_clock;
  567. } else {
  568. UT_LIST_INSERT_AFTER(LRU, buf_pool->LRU, buf_pool->LRU_old,
  569. block);
  570. buf_pool->LRU_old_len++;
  571. /* We copy the LRU position field of the previous block
  572. to the new block */
  573. block->LRU_position = (buf_pool->LRU_old)->LRU_position;
  574. }
  575. block->in_LRU_list = TRUE;
  576. if (UT_LIST_GET_LEN(buf_pool->LRU) > BUF_LRU_OLD_MIN_LEN) {
  577. ut_ad(buf_pool->LRU_old);
  578. /* Adjust the length of the old block list if necessary */
  579. buf_LRU_old_adjust_len();
  580. } else if (UT_LIST_GET_LEN(buf_pool->LRU) == BUF_LRU_OLD_MIN_LEN) {
  581. /* The LRU list is now long enough for LRU_old to become
  582. defined: init it */
  583. buf_LRU_old_init();
  584. }
  585. }     
  586. /**********************************************************************
  587. Adds a block to the LRU list. */
  588. void
  589. buf_LRU_add_block(
  590. /*==============*/
  591. buf_block_t* block, /* in: control block */
  592. ibool old) /* in: TRUE if should be put to the old
  593. blocks in the LRU list, else put to the start;
  594. if the LRU list is very short, the block is
  595. added to the start, regardless of this
  596. parameter */
  597. {
  598. buf_LRU_add_block_low(block, old);
  599. }
  600. /**********************************************************************
  601. Moves a block to the start of the LRU list. */
  602. void
  603. buf_LRU_make_block_young(
  604. /*=====================*/
  605. buf_block_t* block) /* in: control block */
  606. {
  607. buf_LRU_remove_block(block);
  608. buf_LRU_add_block_low(block, FALSE);
  609. }
  610. /**********************************************************************
  611. Moves a block to the end of the LRU list. */
  612. void
  613. buf_LRU_make_block_old(
  614. /*===================*/
  615. buf_block_t* block) /* in: control block */
  616. {
  617. buf_LRU_remove_block(block);
  618. buf_LRU_add_block_to_end_low(block);
  619. }
  620. /**********************************************************************
  621. Puts a block back to the free list. */
  622. void
  623. buf_LRU_block_free_non_file_page(
  624. /*=============================*/
  625. buf_block_t* block) /* in: block, must not contain a file page */
  626. {
  627. #ifdef UNIV_SYNC_DEBUG
  628. ut_ad(mutex_own(&(buf_pool->mutex)));
  629. #endif /* UNIV_SYNC_DEBUG */
  630. ut_ad(block);
  631. ut_a((block->state == BUF_BLOCK_MEMORY)
  632.       || (block->state == BUF_BLOCK_READY_FOR_USE));
  633. ut_a(block->n_pointers == 0);
  634. ut_a(!block->in_free_list);
  635. block->state = BUF_BLOCK_NOT_USED;
  636. #ifdef UNIV_DEBUG
  637. /* Wipe contents of page to reveal possible stale pointers to it */
  638. memset(block->frame, '', UNIV_PAGE_SIZE);
  639. #endif
  640. UT_LIST_ADD_FIRST(free, buf_pool->free, block);
  641. block->in_free_list = TRUE;
  642. if (srv_use_awe && block->frame) {
  643. /* Add to the list of mapped pages */
  644. UT_LIST_ADD_FIRST(awe_LRU_free_mapped,
  645. buf_pool->awe_LRU_free_mapped, block);
  646. }
  647. }
  648. /**********************************************************************
  649. Takes a block out of the LRU list and page hash table and sets the block
  650. state to BUF_BLOCK_REMOVE_HASH. */
  651. static
  652. void
  653. buf_LRU_block_remove_hashed_page(
  654. /*=============================*/
  655. buf_block_t* block) /* in: block, must contain a file page and
  656. be in a state where it can be freed; there
  657. may or may not be a hash index to the page */
  658. {
  659. #ifdef UNIV_SYNC_DEBUG
  660. ut_ad(mutex_own(&(buf_pool->mutex)));
  661. #endif /* UNIV_SYNC_DEBUG */
  662. ut_ad(block);
  663. ut_a(block->state == BUF_BLOCK_FILE_PAGE);
  664. ut_a(block->io_fix == 0);
  665. ut_a(block->buf_fix_count == 0);
  666. ut_a(ut_dulint_cmp(block->oldest_modification, ut_dulint_zero) == 0);
  667. buf_LRU_remove_block(block);
  668. buf_pool->freed_page_clock += 1;
  669. /* Note that if AWE is enabled the block may not have a frame at all */
  670.   buf_block_modify_clock_inc(block);
  671.         if (block != buf_page_hash_get(block->space, block->offset)) {
  672.                 fprintf(stderr,
  673. "InnoDB: Error: page %lu %lu not found from the hash tablen",
  674. (ulong) block->space,
  675. (ulong) block->offset);
  676.                 if (buf_page_hash_get(block->space, block->offset)) {
  677.                         fprintf(stderr,
  678. "InnoDB: From hash table we find block %p of %lu %lu which is not %pn",
  679. buf_page_hash_get(block->space, block->offset),
  680.                 (ulong) buf_page_hash_get(block->space, block->offset)->space,
  681.                 (ulong) buf_page_hash_get(block->space, block->offset)->offset,
  682. block);
  683.                 }
  684. #ifdef UNIV_DEBUG
  685.                 buf_print();
  686.                 buf_LRU_print();
  687.                 buf_validate();
  688.                 buf_LRU_validate();
  689. #endif
  690.                 ut_a(0);
  691.         }
  692. HASH_DELETE(buf_block_t, hash, buf_pool->page_hash,
  693. buf_page_address_fold(block->space, block->offset),
  694. block);
  695. block->state = BUF_BLOCK_REMOVE_HASH;
  696. }
  697. /**********************************************************************
  698. Puts a file page whose has no hash index to the free list. */
  699. static
  700. void
  701. buf_LRU_block_free_hashed_page(
  702. /*===========================*/
  703. buf_block_t* block) /* in: block, must contain a file page and
  704. be in a state where it can be freed */
  705. {
  706. #ifdef UNIV_SYNC_DEBUG
  707. ut_ad(mutex_own(&(buf_pool->mutex)));
  708. #endif /* UNIV_SYNC_DEBUG */
  709. ut_a(block->state == BUF_BLOCK_REMOVE_HASH);
  710. block->state = BUF_BLOCK_MEMORY;
  711. buf_LRU_block_free_non_file_page(block);
  712. }
  713. /**************************************************************************
  714. Validates the LRU list. */
  715. ibool
  716. buf_LRU_validate(void)
  717. /*==================*/
  718. {
  719. buf_block_t* block;
  720. ulint old_len;
  721. ulint new_len;
  722. ulint LRU_pos;
  723. ut_ad(buf_pool);
  724. mutex_enter(&(buf_pool->mutex));
  725. if (UT_LIST_GET_LEN(buf_pool->LRU) >= BUF_LRU_OLD_MIN_LEN) {
  726. ut_a(buf_pool->LRU_old);
  727. old_len = buf_pool->LRU_old_len;
  728. new_len = 3 * (UT_LIST_GET_LEN(buf_pool->LRU) / 8);
  729. ut_a(old_len >= new_len - BUF_LRU_OLD_TOLERANCE);
  730. ut_a(old_len <= new_len + BUF_LRU_OLD_TOLERANCE);
  731. }
  732. UT_LIST_VALIDATE(LRU, buf_block_t, buf_pool->LRU);
  733. block = UT_LIST_GET_FIRST(buf_pool->LRU);
  734. old_len = 0;
  735. while (block != NULL) {
  736. ut_a(block->state == BUF_BLOCK_FILE_PAGE);
  737. if (block->old) {
  738. old_len++;
  739. }
  740. if (buf_pool->LRU_old && (old_len == 1)) {
  741. ut_a(buf_pool->LRU_old == block);
  742. }
  743. LRU_pos = block->LRU_position;
  744. block = UT_LIST_GET_NEXT(LRU, block);
  745. if (block) {
  746. /* If the following assert fails, it may
  747. not be an error: just the buf_pool clock
  748. has wrapped around */
  749. ut_a(LRU_pos >= block->LRU_position);
  750. }
  751. }
  752. if (buf_pool->LRU_old) {
  753. ut_a(buf_pool->LRU_old_len == old_len);
  754. UT_LIST_VALIDATE(free, buf_block_t, buf_pool->free);
  755. block = UT_LIST_GET_FIRST(buf_pool->free);
  756. while (block != NULL) {
  757. ut_a(block->state == BUF_BLOCK_NOT_USED);
  758. block = UT_LIST_GET_NEXT(free, block);
  759. }
  760. mutex_exit(&(buf_pool->mutex));
  761. return(TRUE);
  762. }
  763. /**************************************************************************
  764. Prints the LRU list. */
  765. void
  766. buf_LRU_print(void)
  767. /*===============*/
  768. {
  769. buf_block_t* block;
  770. buf_frame_t* frame;
  771. ulint len;
  772. ut_ad(buf_pool);
  773. mutex_enter(&(buf_pool->mutex));
  774. fprintf(stderr, "Pool ulint clock %lun", (ulong) buf_pool->ulint_clock);
  775. block = UT_LIST_GET_FIRST(buf_pool->LRU);
  776. len = 0;
  777. while (block != NULL) {
  778. fprintf(stderr, "BLOCK %lu ", (ulong) block->offset);
  779. if (block->old) {
  780. fputs("old ", stderr);
  781. }
  782. if (block->buf_fix_count) {
  783. fprintf(stderr, "buffix count %lu ",
  784. (ulong) block->buf_fix_count);
  785. }
  786. if (block->io_fix) {
  787. fprintf(stderr, "io_fix %lu ", (ulong) block->io_fix);
  788. }
  789. if (ut_dulint_cmp(block->oldest_modification,
  790. ut_dulint_zero) > 0) {
  791. fputs("modif. ", stderr);
  792. }
  793. frame = buf_block_get_frame(block);
  794. fprintf(stderr, "LRU pos %lu type %lu index id %lu ",
  795. (ulong) block->LRU_position,
  796. (ulong) fil_page_get_type(frame),
  797. (ulong) ut_dulint_get_low(btr_page_get_index_id(frame)));
  798. block = UT_LIST_GET_NEXT(LRU, block);
  799. if (++len == 10) {
  800. len = 0;
  801. putc('n', stderr);
  802. }
  803. }
  804. mutex_exit(&(buf_pool->mutex));
  805. }