Commit 495e7f1b authored by Marko Mäkelä's avatar Marko Mäkelä

MDEV-33053 fixup: Correct a condition before a message

parent 5c243d4c
...@@ -1798,7 +1798,7 @@ ulint buf_flush_LRU(ulint max_n, bool evict) ...@@ -1798,7 +1798,7 @@ ulint buf_flush_LRU(ulint max_n, bool evict)
pthread_cond_broadcast(&buf_pool.done_free); pthread_cond_broadcast(&buf_pool.done_free);
} }
else if (!pages && !buf_pool.try_LRU_scan && else if (!pages && !buf_pool.try_LRU_scan &&
buf_pool.LRU_warned.test_and_set(std::memory_order_acquire)) !buf_pool.LRU_warned.test_and_set(std::memory_order_acquire))
{ {
/* For example, with the minimum innodb_buffer_pool_size=5M and /* For example, with the minimum innodb_buffer_pool_size=5M and
the default innodb_page_size=16k there are only a little over 316 the default innodb_page_size=16k there are only a little over 316
......
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