Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
495e7f1b
Commit
495e7f1b
authored
Jan 22, 2024
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-33053 fixup: Correct a condition before a message
parent
5c243d4c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
storage/innobase/buf/buf0flu.cc
storage/innobase/buf/buf0flu.cc
+1
-1
No files found.
storage/innobase/buf/buf0flu.cc
View file @
495e7f1b
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment