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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
7de42447
Commit
7de42447
authored
Nov 11, 2013
by
Rich Prohaska
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#90 debug long fsync system calls
parent
2094032a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
0 deletions
+24
-0
portability/file.cc
portability/file.cc
+24
-0
No files found.
portability/file.cc
View file @
7de42447
...
@@ -449,6 +449,8 @@ static uint64_t toku_fsync_time;
...
@@ -449,6 +449,8 @@ static uint64_t toku_fsync_time;
static
uint64_t
toku_long_fsync_threshold
=
1000000
;
static
uint64_t
toku_long_fsync_threshold
=
1000000
;
static
uint64_t
toku_long_fsync_count
;
static
uint64_t
toku_long_fsync_count
;
static
uint64_t
toku_long_fsync_time
;
static
uint64_t
toku_long_fsync_time
;
static
uint64_t
toku_long_fsync_eintr_count
;
static
int
toku_fsync_debug
=
0
;
void
toku_set_func_fsync
(
int
(
*
fsync_function
)(
int
))
{
void
toku_set_func_fsync
(
int
(
*
fsync_function
)(
int
))
{
t_fsync
=
fsync_function
;
t_fsync
=
fsync_function
;
...
@@ -458,6 +460,7 @@ void toku_set_func_fsync(int (*fsync_function)(int)) {
...
@@ -458,6 +460,7 @@ void toku_set_func_fsync(int (*fsync_function)(int)) {
static
void
file_fsync_internal
(
int
fd
)
{
static
void
file_fsync_internal
(
int
fd
)
{
uint64_t
tstart
=
toku_current_time_microsec
();
uint64_t
tstart
=
toku_current_time_microsec
();
int
r
=
-
1
;
int
r
=
-
1
;
uint64_t
eintr_count
=
0
;
while
(
r
!=
0
)
{
while
(
r
!=
0
)
{
if
(
t_fsync
)
{
if
(
t_fsync
)
{
r
=
t_fsync
(
fd
);
r
=
t_fsync
(
fd
);
...
@@ -466,6 +469,7 @@ static void file_fsync_internal (int fd) {
...
@@ -466,6 +469,7 @@ static void file_fsync_internal (int fd) {
}
}
if
(
r
)
{
if
(
r
)
{
assert
(
get_error_errno
()
==
EINTR
);
assert
(
get_error_errno
()
==
EINTR
);
eintr_count
++
;
}
}
}
}
toku_sync_fetch_and_add
(
&
toku_fsync_count
,
1
);
toku_sync_fetch_and_add
(
&
toku_fsync_count
,
1
);
...
@@ -474,6 +478,26 @@ static void file_fsync_internal (int fd) {
...
@@ -474,6 +478,26 @@ static void file_fsync_internal (int fd) {
if
(
duration
>=
toku_long_fsync_threshold
)
{
if
(
duration
>=
toku_long_fsync_threshold
)
{
toku_sync_fetch_and_add
(
&
toku_long_fsync_count
,
1
);
toku_sync_fetch_and_add
(
&
toku_long_fsync_count
,
1
);
toku_sync_fetch_and_add
(
&
toku_long_fsync_time
,
duration
);
toku_sync_fetch_and_add
(
&
toku_long_fsync_time
,
duration
);
toku_sync_fetch_and_add
(
&
toku_long_fsync_eintr_count
,
eintr_count
);
if
(
toku_fsync_debug
)
{
const
int
tstr_length
=
26
;
char
tstr
[
tstr_length
];
time_t
t
=
time
(
0
);
#if __linux__
char
fdname
[
256
];
snprintf
(
fdname
,
sizeof
fdname
,
"/proc/%d/fd/%d"
,
getpid
(),
fd
);
char
lname
[
256
];
ssize_t
s
=
readlink
(
fdname
,
lname
,
sizeof
lname
);
if
(
0
<
s
&&
s
<
(
ssize_t
)
sizeof
lname
)
lname
[
s
]
=
0
;
fprintf
(
stderr
,
"%.24s toku_file_fsync %s fd=%d %s duration=%"
PRIu64
" usec eintr=%"
PRIu64
"
\n
"
,
ctime_r
(
&
t
,
tstr
),
__FUNCTION__
,
fd
,
s
>
0
?
lname
:
"?"
,
duration
,
eintr_count
);
#else
fprintf
(
stderr
,
"%.24s toku_file_fsync %s fd=%d duration=%"
PRIu64
" usec eintr=%"
PRIu64
"
\n
"
,
ctime_r
(
&
t
,
tstr
),
__FUNCTION__
,
fd
,
duration
,
eintr_count
);
#endif
fflush
(
stderr
);
}
}
}
}
}
...
...
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