1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731
|
/*****************************************************************************
Copyright (c) 1995, 2025, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License, version 2.0, as published by the
Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License, version 2.0,
for more details.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*****************************************************************************/
/** @file buf/buf0rea.cc
The database buffer read
Created 11/5/1995 Heikki Tuuri
*******************************************************/
#include <mysql/service_thd_wait.h>
#include <stddef.h>
#include "buf0buf.h"
#include "buf0dblwr.h"
#include "buf0flu.h"
#include "buf0lru.h"
#include "buf0rea.h"
#include "fil0fil.h"
#include "ha_prototypes.h"
#include "ibuf0ibuf.h"
#include "log0recv.h"
#include "mtr0mtr.h"
#include "my_dbug.h"
#include "os0file.h"
#include "srv0srv.h"
#include "srv0start.h"
#include "trx0sys.h"
#include "ut0new.h"
/** There must be at least this many pages in buf_pool in the area to start
a random read-ahead */
inline page_no_t BUF_READ_AHEAD_RANDOM_THRESHOLD(const buf_pool_t *b) {
return 5 + b->read_ahead_area / 8;
}
/** If there are buf_pool->curr_size per the number below pending reads, then
read-ahead is not done: this is to prevent flooding the buffer pool with
i/o-fixed buffer blocks */
static constexpr uint32_t BUF_READ_AHEAD_PEND_LIMIT = 2;
ulint buf_read_page_low(dberr_t *err, bool sync, ulint type, ulint mode,
const page_id_t &page_id, const page_size_t &page_size,
bool unzip) {
buf_page_t *bpage;
*err = DB_SUCCESS;
if (page_id.space() == TRX_SYS_SPACE &&
dblwr::v1::is_inside(page_id.page_no())) {
ib::error(ER_IB_MSG_139)
<< "Trying to read legacy doublewrite buffer page " << page_id;
return (0);
}
if (ibuf_bitmap_page(page_id, page_size) || trx_sys_hdr_page(page_id)) {
/* Trx sys header is so low in the latching order that we play
safe and do not leave the i/o-completion to an asynchronous
i/o-thread. Ibuf bitmap pages must always be read with
synchronous i/o, to make sure they do not get involved in
thread deadlocks. */
sync = true;
}
/* The following call will also check if the tablespace does not exist
or is being dropped; if we succeed in initing the page in the buffer
pool for read, then DISCARD cannot proceed until the read has
completed */
bpage = buf_page_init_for_read(mode, page_id, page_size, unzip);
ut_a(bpage == nullptr || bpage->get_space()->id == page_id.space());
if (bpage == nullptr) {
return (0);
}
DBUG_PRINT("ib_buf",
("read page %u:%u size=%u unzip=%u,%s", (unsigned)page_id.space(),
(unsigned)page_id.page_no(), (unsigned)page_size.physical(),
(unsigned)unzip, sync ? "sync" : "async"));
ut_ad(buf_page_in_file(bpage));
ut_ad(!mutex_own(&buf_pool_from_bpage(bpage)->LRU_list_mutex));
if (sync) {
thd_wait_begin(nullptr, THD_WAIT_DISKIO);
}
void *dst;
if (page_size.is_compressed()) {
dst = bpage->zip.data;
} else {
ut_a(buf_page_get_state(bpage) == BUF_BLOCK_FILE_PAGE);
dst = ((buf_block_t *)bpage)->frame;
}
IORequest request(type | IORequest::READ);
*err = fil_io(request, sync, page_id, page_size, 0, page_size.physical(), dst,
bpage);
if (sync) {
thd_wait_end(nullptr);
}
if (*err != DB_SUCCESS) {
if (IORequest::ignore_missing(type) || *err == DB_TABLESPACE_DELETED) {
buf_read_page_handle_error(bpage);
return (0);
}
ut_error;
}
if (sync) {
/* The i/o is already completed when we arrive from fil_read */
if (!buf_page_io_complete(bpage, false)) {
return (0);
}
}
return (1);
}
ulint buf_read_ahead_random(const page_id_t &page_id,
const page_size_t &page_size, bool inside_ibuf) {
buf_pool_t *buf_pool = buf_pool_get(page_id);
ulint recent_blocks = 0;
ulint ibuf_mode;
ulint count;
page_no_t low, high;
dberr_t err;
page_no_t i;
const page_no_t buf_read_ahead_random_area = buf_pool->read_ahead_area;
if (!srv_random_read_ahead) {
/* Disabled by user */
return (0);
}
if (srv_startup_is_before_trx_rollback_phase) {
/* No read-ahead to avoid thread deadlocks */
return (0);
}
if (ibuf_bitmap_page(page_id, page_size) || trx_sys_hdr_page(page_id)) {
/* If it is an ibuf bitmap page or trx sys hdr, we do
no read-ahead, as that could break the ibuf page access
order */
return (0);
}
low = (page_id.page_no() / buf_read_ahead_random_area) *
buf_read_ahead_random_area;
high = (page_id.page_no() / buf_read_ahead_random_area + 1) *
buf_read_ahead_random_area;
/* Remember the tablespace version before we ask the tablespace size
below: if DISCARD + IMPORT changes the actual .ibd file meanwhile, we
do not try to read outside the bounds of the tablespace! */
if (fil_space_t *space = fil_space_acquire_silent(page_id.space())) {
if (high > space->size) {
high = space->size;
}
fil_space_release(space);
} else {
return (0);
}
os_rmb;
if (buf_pool->n_pend_reads >
buf_pool->curr_size / BUF_READ_AHEAD_PEND_LIMIT) {
return (0);
}
/* Count how many blocks in the area have been recently accessed,
that is, reside near the start of the LRU list. */
for (i = low; i < high; i++) {
rw_lock_t *hash_lock;
const buf_page_t *bpage;
bpage = buf_page_hash_get_s_locked(buf_pool, page_id_t(page_id.space(), i),
&hash_lock);
if (bpage != nullptr &&
buf_page_is_accessed(bpage) !=
std::chrono::steady_clock::time_point{} &&
buf_page_peek_if_young(bpage)) {
recent_blocks++;
if (recent_blocks >= BUF_READ_AHEAD_RANDOM_THRESHOLD(buf_pool)) {
rw_lock_s_unlock(hash_lock);
goto read_ahead;
}
}
if (bpage != nullptr) {
rw_lock_s_unlock(hash_lock);
}
}
/* Do nothing */
return (0);
read_ahead:
/* Read all the suitable blocks within the area */
if (inside_ibuf) {
ibuf_mode = BUF_READ_IBUF_PAGES_ONLY;
} else {
ibuf_mode = BUF_READ_ANY_PAGE;
}
count = 0;
for (i = low; i < high; i++) {
/* It is only sensible to do read-ahead in the non-sync aio
mode: hence false as the first parameter */
const page_id_t cur_page_id(page_id.space(), i);
if (!ibuf_bitmap_page(cur_page_id, page_size)) {
count += buf_read_page_low(&err, false, IORequest::DO_NOT_WAKE, ibuf_mode,
cur_page_id, page_size, false);
if (err == DB_TABLESPACE_DELETED) {
ib::warn(ER_IB_MSG_140) << "Random readahead trying to"
" access page "
<< cur_page_id
<< " in nonexisting or"
" being-dropped tablespace";
break;
}
}
}
/* In simulated aio we wake the aio handler threads only after
queuing all aio requests. */
os_aio_simulated_wake_handler_threads();
if (count) {
DBUG_PRINT("ib_buf",
("random read-ahead %u pages, %u:%u", (unsigned)count,
(unsigned)page_id.space(), (unsigned)page_id.page_no()));
}
/* Read ahead is considered one I/O operation for the purpose of
LRU policy decision. */
buf_LRU_stat_inc_io();
buf_pool->stat.n_ra_pages_read_rnd += count;
srv_stats.buf_pool_reads.add(count);
return (count);
}
bool buf_read_page(const page_id_t &page_id, const page_size_t &page_size) {
ulint count;
dberr_t err;
count = buf_read_page_low(&err, true, 0, BUF_READ_ANY_PAGE, page_id,
page_size, false);
srv_stats.buf_pool_reads.add(count);
if (err == DB_TABLESPACE_DELETED) {
ib::error(ER_IB_MSG_141) << "trying to read page " << page_id
<< " in nonexisting or being-dropped tablespace";
}
/* Increment number of I/O operations used for LRU policy. */
buf_LRU_stat_inc_io();
return (count > 0);
}
bool buf_read_page_background(const page_id_t &page_id,
const page_size_t &page_size, bool sync) {
ulint count;
dberr_t err;
count = buf_read_page_low(&err, sync,
IORequest::DO_NOT_WAKE | IORequest::IGNORE_MISSING,
BUF_READ_ANY_PAGE, page_id, page_size, false);
srv_stats.buf_pool_reads.add(count);
/* We do not increment number of I/O operations used for LRU policy
here (buf_LRU_stat_inc_io()). We use this in heuristics to decide
about evicting uncompressed version of compressed pages from the
buffer pool. Since this function is called from buffer pool load
these IOs are deliberate and are not part of normal workload we can
ignore these in our heuristics. */
return (count > 0);
}
ulint buf_read_ahead_linear(const page_id_t &page_id,
const page_size_t &page_size, bool inside_ibuf) {
buf_pool_t *buf_pool = buf_pool_get(page_id);
buf_page_t *bpage;
buf_frame_t *frame;
buf_page_t *pred_bpage = nullptr;
std::chrono::steady_clock::time_point pred_bpage_is_accessed;
page_no_t pred_offset;
page_no_t succ_offset;
int asc_or_desc;
page_no_t new_offset;
ulint fail_count;
page_no_t low, high;
dberr_t err;
page_no_t i;
const page_no_t buf_read_ahead_linear_area = buf_pool->read_ahead_area;
page_no_t threshold;
/* check if readahead is disabled */
if (!srv_read_ahead_threshold) {
return (0);
}
if (srv_startup_is_before_trx_rollback_phase) {
/* No read-ahead to avoid thread deadlocks */
return (0);
}
low = (page_id.page_no() / buf_read_ahead_linear_area) *
buf_read_ahead_linear_area;
high = (page_id.page_no() / buf_read_ahead_linear_area + 1) *
buf_read_ahead_linear_area;
if ((page_id.page_no() != low) && (page_id.page_no() != high - 1)) {
/* This is not a border page of the area: return */
return (0);
}
if (ibuf_bitmap_page(page_id, page_size) || trx_sys_hdr_page(page_id)) {
/* If it is an ibuf bitmap page or trx sys hdr, we do
no read-ahead, as that could break the ibuf page access
order */
return (0);
}
/* Remember the tablespace version before we ask the tablespace size
below: if DISCARD + IMPORT changes the actual .ibd file meanwhile, we
do not try to read outside the bounds of the tablespace! */
ulint space_size;
if (fil_space_t *space = fil_space_acquire_silent(page_id.space())) {
space_size = space->size;
fil_space_release(space);
if (high > space_size) {
/* The area is not whole */
return (0);
}
} else {
return (0);
}
/* Read memory barrier */
os_rmb;
if (buf_pool->n_pend_reads >
buf_pool->curr_size / BUF_READ_AHEAD_PEND_LIMIT) {
return (0);
}
/* Check that almost all pages in the area have been accessed; if
offset == low, the accesses must be in a descending order, otherwise,
in an ascending order. */
asc_or_desc = 1;
if (page_id.page_no() == low) {
asc_or_desc = -1;
}
/* How many out of order accessed pages can we ignore
when working out the access pattern for linear readahead */
threshold = std::min(static_cast<page_no_t>(64 - srv_read_ahead_threshold),
buf_pool->read_ahead_area);
fail_count = 0;
rw_lock_t *hash_lock;
for (i = low; i < high; i++) {
bpage = buf_page_hash_get_s_locked(buf_pool, page_id_t(page_id.space(), i),
&hash_lock);
if (bpage == nullptr || buf_page_is_accessed(bpage) ==
std::chrono::steady_clock::time_point{}) {
/* Not accessed */
fail_count++;
} else if (pred_bpage) {
/* Note that buf_page_is_accessed() returns
the time of the first access. If some blocks
of the extent existed in the buffer pool at
the time of a linear access pattern, the first
access times may be nonmonotonic, even though
the latest access times were linear. The
threshold (srv_read_ahead_factor) should help
a little against this. */
int res = 0;
if (buf_page_is_accessed(bpage) == pred_bpage_is_accessed) {
res = 0;
} else if (buf_page_is_accessed(bpage) < pred_bpage_is_accessed) {
res = -1;
} else {
res = 1;
}
/* Accesses not in the right order */
if (res != 0 && res != asc_or_desc) {
fail_count++;
}
}
if (fail_count > threshold) {
/* Too many failures: return */
if (bpage) {
rw_lock_s_unlock(hash_lock);
}
return (0);
}
if (bpage) {
if (buf_page_is_accessed(bpage) !=
std::chrono::steady_clock::time_point{}) {
pred_bpage = bpage;
pred_bpage_is_accessed = buf_page_is_accessed(bpage);
}
rw_lock_s_unlock(hash_lock);
}
}
/* If we got this far, we know that enough pages in the area have
been accessed in the right order: linear read-ahead can be sensible */
bpage = buf_page_hash_get_s_locked(buf_pool, page_id, &hash_lock);
if (bpage == nullptr) {
return (0);
}
switch (buf_page_get_state(bpage)) {
case BUF_BLOCK_ZIP_PAGE:
frame = bpage->zip.data;
break;
case BUF_BLOCK_FILE_PAGE:
frame = ((buf_block_t *)bpage)->frame;
break;
default:
ut_error;
break;
}
/* Read the natural predecessor and successor page addresses from
the page; NOTE that because the calling thread may have an x-latch
on the page, we do not acquire an s-latch on the page, this is to
prevent deadlocks. Even if we read values which are nonsense, the
algorithm will work. */
pred_offset = fil_page_get_prev(frame);
succ_offset = fil_page_get_next(frame);
rw_lock_s_unlock(hash_lock);
if ((page_id.page_no() == low) && (succ_offset == page_id.page_no() + 1)) {
/* This is ok, we can continue */
new_offset = pred_offset;
} else if ((page_id.page_no() == high - 1) &&
(pred_offset == page_id.page_no() - 1)) {
/* This is ok, we can continue */
new_offset = succ_offset;
} else {
/* Successor or predecessor not in the right order */
return (0);
}
low = (new_offset / buf_read_ahead_linear_area) * buf_read_ahead_linear_area;
high = (new_offset / buf_read_ahead_linear_area + 1) *
buf_read_ahead_linear_area;
if ((new_offset != low) && (new_offset != high - 1)) {
/* This is not a border page of the area: return */
return (0);
}
if (high > space_size) {
/* The area is not whole, return */
return (0);
}
ulint count = 0;
/* If we got this far, read-ahead can be sensible: do it */
ulint ibuf_mode;
ibuf_mode = inside_ibuf ? BUF_READ_IBUF_PAGES_ONLY : BUF_READ_ANY_PAGE;
/* Since Windows XP seems to schedule the i/o handler thread
very eagerly, and consequently it does not wait for the
full read batch to be posted, we use special heuristics here */
os_aio_simulated_put_read_threads_to_sleep();
for (i = low; i < high; i++) {
/* It is only sensible to do read-ahead in the non-sync
aio mode: hence false as the first parameter */
const page_id_t cur_page_id(page_id.space(), i);
if (!ibuf_bitmap_page(cur_page_id, page_size)) {
count += buf_read_page_low(&err, false, IORequest::DO_NOT_WAKE, ibuf_mode,
cur_page_id, page_size, false);
if (err == DB_TABLESPACE_DELETED) {
ib::warn(ER_IB_MSG_142) << "linear readahead trying to"
" access page "
<< page_id_t(page_id.space(), i)
<< " in nonexisting or being-dropped"
" tablespace";
}
}
}
/* In simulated aio we wake the aio handler threads only after
queuing all aio requests. */
os_aio_simulated_wake_handler_threads();
if (count) {
DBUG_PRINT("ib_buf", ("linear read-ahead %lu pages, " UINT32PF ":" UINT32PF,
count, page_id.space(), page_id.page_no()));
}
/* Read ahead is considered one I/O operation for the purpose of
LRU policy decision. */
buf_LRU_stat_inc_io();
buf_pool->stat.n_ra_pages_read += count;
return (count);
}
void buf_read_ibuf_merge_pages(bool sync, const space_id_t *space_ids,
const page_no_t *page_nos, ulint n_stored) {
#ifdef UNIV_IBUF_DEBUG
ut_a(n_stored < UNIV_PAGE_SIZE);
#endif /* UNIV_IBUF_DBUG */
ut::unordered_map<space_id_t, fil_space_t *> acquired_spaces;
for (ulint i = 0; i < n_stored; i++) {
const page_id_t page_id(space_ids[i], page_nos[i]);
buf_pool_t *buf_pool = buf_pool_get(page_id);
fil_space_t *space = nullptr;
/* Acquire the space once for the pages belongs to it */
const auto space_itr = acquired_spaces.find(space_ids[i]);
if (space_itr != acquired_spaces.end()) {
space = space_itr->second;
} else {
/* If the space is deleted then fil_space_acquire_silent() returns
nullptr. Cache that information as well so that we remove the subsequent
ibuf entries for that space without trying to acquire it again. It is safe
operation to do since the space once deleted will not be available ever.*/
space = fil_space_acquire_silent(space_ids[i]);
acquired_spaces.emplace(space_ids[i], space);
}
if (space == nullptr) {
/* The tablespace was not found, remove the entries for that page */
ibuf_merge_or_delete_for_page(nullptr, page_id, nullptr, false);
continue;
}
const page_size_t page_size(space->flags);
os_rmb;
while (buf_pool->n_pend_reads >
buf_pool->curr_size / BUF_READ_AHEAD_PEND_LIMIT) {
std::this_thread::sleep_for(std::chrono::milliseconds(500));
}
dberr_t err;
buf_read_page_low(&err, sync && (i + 1 == n_stored),
IORequest::IGNORE_MISSING, BUF_READ_ANY_PAGE, page_id,
page_size, true);
if (err == DB_TABLESPACE_DELETED) {
/* We have deleted or are deleting the single-table
tablespace: remove the entries for that page */
ibuf_merge_or_delete_for_page(nullptr, page_id, &page_size, false);
}
}
/* Release the acquired spaces */
for (const auto space_entry : acquired_spaces) {
if (space_entry.second) {
fil_space_release(space_entry.second);
}
}
os_aio_simulated_wake_handler_threads();
if (n_stored) {
DBUG_PRINT("ib_buf", ("ibuf merge read-ahead %u pages, space %u",
unsigned(n_stored), unsigned(space_ids[0])));
}
}
void buf_read_recv_pages(bool sync, space_id_t space_id,
const page_no_t *page_nos, ulint n_stored) {
ulint count;
fil_space_t *space = fil_space_get(space_id);
if (space == nullptr) {
/* The tablespace is missing: do nothing */
return;
}
fil_space_open_if_needed(space);
auto req_size = page_nos[n_stored - 1] + 1;
/* Extend the tablespace if needed. Required only while
recovering from cloned database. */
if (recv_sys->is_cloned_db && space->size < req_size) {
/* Align size to multiple of extent size */
if (req_size > FSP_EXTENT_SIZE) {
req_size = ut_calc_align(req_size, FSP_EXTENT_SIZE);
}
ib::info(ER_IB_MSG_143) << "Extending tablespace : " << space->id
<< " space name: " << space->name
<< " from page number: " << space->size << " pages"
<< " to " << req_size << " pages"
<< " for page number: " << page_nos[n_stored - 1]
<< " during recovery.";
if (!fil_space_extend(space, req_size)) {
ib::error(ER_IB_MSG_144)
<< "Could not extend tablespace: " << space->id
<< " space name: " << space->name << " to " << req_size << " pages"
<< " during recovery.";
}
}
const page_size_t page_size(space->flags);
for (ulint i = 0; i < n_stored; i++) {
buf_pool_t *buf_pool;
const page_id_t cur_page_id(space_id, page_nos[i]);
count = 0;
buf_pool = buf_pool_get(cur_page_id);
os_rmb;
while (buf_pool->n_pend_reads >= recv_n_pool_free_frames / 2) {
os_aio_simulated_wake_handler_threads();
std::this_thread::sleep_for(std::chrono::milliseconds(10));
count++;
if (!(count % 1000)) {
ib::error(ER_IB_MSG_145)
<< "Waited for " << count / 100 << " seconds for "
<< buf_pool->n_pend_reads << " pending reads";
}
}
dberr_t err;
if ((i + 1 == n_stored) && sync) {
buf_read_page_low(&err, true, 0, BUF_READ_ANY_PAGE, cur_page_id,
page_size, true);
} else {
buf_read_page_low(&err, false, IORequest::DO_NOT_WAKE, BUF_READ_ANY_PAGE,
cur_page_id, page_size, true);
}
}
os_aio_simulated_wake_handler_threads();
DBUG_PRINT("ib_buf", ("recovery read-ahead (%u pages)", unsigned(n_stored)));
}
|