Browse Source

MDEV-23456: After-merge fix

In merge commit 3421223363
buf_page_create() passed the wrong parameter to
one of the buf_LRU_block_free_non_file_page() calls.
pull/1674/head
Marko Mäkelä 5 years ago
parent
commit
1adb537806
  1. 2
      storage/innobase/buf/buf0buf.cc

2
storage/innobase/buf/buf0buf.cc

@ -3860,7 +3860,7 @@ loop:
if (block->page.io_fix() != BUF_IO_NONE)
{
hash_lock->write_unlock();
buf_LRU_block_free_non_file_page(block);
buf_LRU_block_free_non_file_page(free_block);
mutex_exit(&buf_pool.mutex);
goto loop;
}

Loading…
Cancel
Save