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
f7184777
Commit
f7184777
authored
Nov 14, 2018
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
os_aio_validate_skip(): Fix a data race
parent
2a0b6de4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
12 deletions
+5
-12
storage/innobase/os/os0file.cc
storage/innobase/os/os0file.cc
+5
-12
No files found.
storage/innobase/os/os0file.cc
View file @
f7184777
...
...
@@ -1090,21 +1090,14 @@ os_aio_validate_skip()
/** Try os_aio_validate() every this many times */
# define OS_AIO_VALIDATE_SKIP 13
/** The os_aio_validate() call skip counter.
Use a signed type because of the race condition below. */
static
int
os_aio_validate_count
=
OS_AIO_VALIDATE_SKIP
;
static
int
os_aio_validate_count
;
/* There is a race condition below, but it does not matter,
because this call is only for heuristic purposes. We want to
reduce the call frequency of the costly os_aio_validate()
check in debug builds. */
--
os_aio_validate_count
;
if
(
os_aio_validate_count
>
0
)
{
return
(
true
);
if
(
my_atomic_add32_explicit
(
&
os_aio_validate_count
,
-
1
,
MY_MEMORY_ORDER_RELAXED
)
%
OS_AIO_VALIDATE_SKIP
)
{
return
true
;
}
os_aio_validate_count
=
OS_AIO_VALIDATE_SKIP
;
return
(
os_aio_validate
());
}
#endif
/* UNIV_DEBUG */
...
...
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