Skip to content

Commit

Permalink
MDEV-33053 fixup: Correct a condition before a message
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-m committed Jan 22, 2024
1 parent 5c243d4 commit 495e7f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/innobase/buf/buf0flu.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1798,7 +1798,7 @@ ulint buf_flush_LRU(ulint max_n, bool evict)
pthread_cond_broadcast(&buf_pool.done_free);
}
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
the default innodb_page_size=16k there are only a little over 316
Expand Down

0 comments on commit 495e7f1

Please sign in to comment.