Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
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
Abuhujair Javed
Postgres FD Implementation
Commits
017c47bf
Commit
017c47bf
authored
Nov 28, 2009
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test_fsync:
Improve test descriptions displayed during test_fsync; increase default loops to 5k.
parent
1a95f127
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
148 additions
and
158 deletions
+148
-158
src/tools/fsync/README
src/tools/fsync/README
+2
-2
src/tools/fsync/test_fsync.c
src/tools/fsync/test_fsync.c
+146
-156
No files found.
src/tools/fsync/README
View file @
017c47bf
$PostgreSQL: pgsql/src/tools/fsync/README,v 1.
4 2008/03/21 13:23:29
momjian Exp $
$PostgreSQL: pgsql/src/tools/fsync/README,v 1.
5 2009/11/28 15:04:54
momjian Exp $
fsync
fsync
=====
=====
...
@@ -7,5 +7,5 @@ This program tests fsync. The tests are described as part of the program output
...
@@ -7,5 +7,5 @@ This program tests fsync. The tests are described as part of the program output
Usage: test_fsync [-f filename] [loops]
Usage: test_fsync [-f filename] [loops]
Loops defaults to
1
000. The default output file is /var/tmp/test_fsync.out.
Loops defaults to
5
000. The default output file is /var/tmp/test_fsync.out.
Consider that /tmp or /var/tmp might be memory-based file systems.
Consider that /tmp or /var/tmp might be memory-based file systems.
src/tools/fsync/test_fsync.c
View file @
017c47bf
/*
/*
* $PostgreSQL: pgsql/src/tools/fsync/test_fsync.c,v 1.2
5 2009/09/21 20:20:56
momjian Exp $
* $PostgreSQL: pgsql/src/tools/fsync/test_fsync.c,v 1.2
6 2009/11/28 15:04:54
momjian Exp $
*
*
*
*
* test_fsync.c
* test_fsync.c
...
@@ -30,19 +30,21 @@
...
@@ -30,19 +30,21 @@
#define FSYNC_FILENAME "/var/tmp/test_fsync.out"
#define FSYNC_FILENAME "/var/tmp/test_fsync.out"
#endif
#endif
#define WRITE_SIZE (16 * 1024)
/* 16k */
#define WRITE_SIZE (8 * 1024)
/* 8k */
#define LABEL_FORMAT "\t%-30s"
void
die
(
char
*
str
);
void
die
(
char
*
str
);
void
print_elapse
(
struct
timeval
start_t
,
struct
timeval
elapse
_t
);
void
print_elapse
(
struct
timeval
start_t
,
struct
timeval
stop
_t
);
int
int
main
(
int
argc
,
char
*
argv
[])
main
(
int
argc
,
char
*
argv
[])
{
{
struct
timeval
start_t
;
struct
timeval
start_t
;
struct
timeval
elapse
_t
;
struct
timeval
stop
_t
;
int
tmpfile
,
int
tmpfile
,
i
,
i
,
loops
=
1
000
;
loops
=
5
000
;
char
*
full_buf
=
(
char
*
)
malloc
(
XLOG_SEG_SIZE
),
char
*
full_buf
=
(
char
*
)
malloc
(
XLOG_SEG_SIZE
),
*
buf
;
*
buf
;
char
*
filename
=
FSYNC_FILENAME
;
char
*
filename
=
FSYNC_FILENAME
;
...
@@ -58,13 +60,13 @@ main(int argc, char *argv[])
...
@@ -58,13 +60,13 @@ main(int argc, char *argv[])
loops
=
atoi
(
argv
[
1
]);
loops
=
atoi
(
argv
[
1
]);
for
(
i
=
0
;
i
<
XLOG_SEG_SIZE
;
i
++
)
for
(
i
=
0
;
i
<
XLOG_SEG_SIZE
;
i
++
)
full_buf
[
i
]
=
'a'
;
full_buf
[
i
]
=
random
()
;
if
((
tmpfile
=
open
(
filename
,
O_RDWR
|
O_CREAT
,
S_IRUSR
|
S_IWUSR
,
0
))
==
-
1
)
if
((
tmpfile
=
open
(
filename
,
O_RDWR
|
O_CREAT
,
S_IRUSR
|
S_IWUSR
,
0
))
==
-
1
)
die
(
"Cannot open output file."
);
die
(
"Cannot open output file."
);
if
(
write
(
tmpfile
,
full_buf
,
XLOG_SEG_SIZE
)
!=
XLOG_SEG_SIZE
)
if
(
write
(
tmpfile
,
full_buf
,
XLOG_SEG_SIZE
)
!=
XLOG_SEG_SIZE
)
die
(
"write failed"
);
die
(
"write failed"
);
/* fsync so later fsync's don't have to do it */
/* fsync
now
so later fsync's don't have to do it */
if
(
fsync
(
tmpfile
)
!=
0
)
if
(
fsync
(
tmpfile
)
!=
0
)
die
(
"fsync failed"
);
die
(
"fsync failed"
);
close
(
tmpfile
);
close
(
tmpfile
);
...
@@ -74,119 +76,109 @@ main(int argc, char *argv[])
...
@@ -74,119 +76,109 @@ main(int argc, char *argv[])
/*
/*
* Simple write
* Simple write
*/
*/
printf
(
"Simple write timing:
\n
"
);
printf
(
"Simple
8k
write timing:
\n
"
);
/* write only */
/* write only */
gettimeofday
(
&
start_t
,
NULL
);
gettimeofday
(
&
start_t
,
NULL
);
for
(
i
=
0
;
i
<
loops
;
i
++
)
for
(
i
=
0
;
i
<
loops
;
i
++
)
{
{
if
((
tmpfile
=
open
(
filename
,
O_RDWR
,
0
))
==
-
1
)
if
((
tmpfile
=
open
(
filename
,
O_RDWR
,
0
))
==
-
1
)
die
(
"Cannot open output file."
);
die
(
"Cannot open output file."
);
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
/
2
)
!=
WRITE_SIZE
/
2
)
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
die
(
"write failed"
);
die
(
"write failed"
);
close
(
tmpfile
);
close
(
tmpfile
);
}
}
gettimeofday
(
&
elapse_t
,
NULL
);
gettimeofday
(
&
stop_t
,
NULL
);
printf
(
"
\t
write "
);
printf
(
LABEL_FORMAT
,
"write"
);
print_elapse
(
start_t
,
elapse_t
);
print_elapse
(
start_t
,
stop_t
);
printf
(
"
\n
"
);
/*
/*
*
Fsync another file descriptor?
*
Compare file sync methods with one 8k write
*/
*/
printf
(
"
\n
Compare fsync times on write() and non-write() descriptor:
\n
"
);
printf
(
"
\n
Compare file sync methods using one 8k write:
\n
"
);
printf
(
"If the times are similar, fsync() can sync data written
\n
on a different descriptor.
\n
"
);
/* write, fsync, close */
#ifdef OPEN_DATASYNC_FLAG
/* open_dsync, write */
if
((
tmpfile
=
open
(
filename
,
O_RDWR
|
O_DSYNC
,
0
))
==
-
1
)
die
(
"Cannot open output file."
);
gettimeofday
(
&
start_t
,
NULL
);
gettimeofday
(
&
start_t
,
NULL
);
for
(
i
=
0
;
i
<
loops
;
i
++
)
for
(
i
=
0
;
i
<
loops
;
i
++
)
{
{
if
((
tmpfile
=
open
(
filename
,
O_RDWR
,
0
))
==
-
1
)
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
die
(
"Cannot open output file."
);
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
/
2
)
!=
WRITE_SIZE
/
2
)
die
(
"write failed"
);
die
(
"write failed"
);
if
(
fsync
(
tmpfile
)
!=
0
)
if
(
lseek
(
tmpfile
,
0
,
SEEK_SET
)
==
-
1
)
die
(
"fsync failed"
);
die
(
"seek failed"
);
close
(
tmpfile
);
if
((
tmpfile
=
open
(
filename
,
O_RDWR
,
0
))
==
-
1
)
die
(
"Cannot open output file."
);
/* do nothing but the open/close the tests are consistent. */
close
(
tmpfile
);
}
}
gettimeofday
(
&
elapse_t
,
NULL
);
gettimeofday
(
&
stop_t
,
NULL
);
printf
(
"
\t
write, fsync, close "
);
close
(
tmpfile
);
print_elapse
(
start_t
,
elapse_t
);
printf
(
LABEL_FORMAT
,
"open_datasync write"
);
printf
(
"
\n
"
);
print_elapse
(
start_t
,
stop_t
);
#else
printf
(
"
\t
(open_datasync unavailable)
\n
"
);
#endif
/* write, close, fsync */
#ifdef OPEN_SYNC_FLAG
/* open_fsync, write */
if
((
tmpfile
=
open
(
filename
,
O_RDWR
|
OPEN_SYNC_FLAG
,
0
))
==
-
1
)
die
(
"Cannot open output file."
);
gettimeofday
(
&
start_t
,
NULL
);
gettimeofday
(
&
start_t
,
NULL
);
for
(
i
=
0
;
i
<
loops
;
i
++
)
for
(
i
=
0
;
i
<
loops
;
i
++
)
{
{
if
((
tmpfile
=
open
(
filename
,
O_RDWR
,
0
))
==
-
1
)
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
die
(
"Cannot open output file."
);
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
/
2
)
!=
WRITE_SIZE
/
2
)
die
(
"write failed"
);
die
(
"write failed"
);
close
(
tmpfile
);
if
(
lseek
(
tmpfile
,
0
,
SEEK_SET
)
==
-
1
)
/* reopen file */
die
(
"seek failed"
);
if
((
tmpfile
=
open
(
filename
,
O_RDWR
,
0
))
==
-
1
)
die
(
"Cannot open output file."
);
if
(
fsync
(
tmpfile
)
!=
0
)
die
(
"fsync failed"
);
close
(
tmpfile
);
}
}
gettimeofday
(
&
elapse_t
,
NULL
);
gettimeofday
(
&
stop_t
,
NULL
);
printf
(
"
\t
write, close, fsync "
);
close
(
tmpfile
);
print_elapse
(
start_t
,
elapse_t
);
printf
(
LABEL_FORMAT
,
"open_sync write"
);
printf
(
"
\n
"
);
print_elapse
(
start_t
,
stop_t
);
#else
/*
printf
(
"
\t
(open_sync unavailable)
\n
"
);
* Compare 1 to 2 writes
#endif
*/
printf
(
"
\n
Compare one o_sync write to two:
\n
"
);
#ifdef
OPEN_SYNC_FLAG
#ifdef
HAVE_FDATASYNC
/*
16k o_sync write
*/
/*
write, fdatasync
*/
if
((
tmpfile
=
open
(
filename
,
O_RDWR
|
OPEN_SYNC_FLAG
,
0
))
==
-
1
)
if
((
tmpfile
=
open
(
filename
,
O_RDWR
,
0
))
==
-
1
)
die
(
"Cannot open output file."
);
die
(
"Cannot open output file."
);
gettimeofday
(
&
start_t
,
NULL
);
gettimeofday
(
&
start_t
,
NULL
);
for
(
i
=
0
;
i
<
loops
;
i
++
)
for
(
i
=
0
;
i
<
loops
;
i
++
)
{
{
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
die
(
"write failed"
);
die
(
"write failed"
);
fdatasync
(
tmpfile
);
if
(
lseek
(
tmpfile
,
0
,
SEEK_SET
)
==
-
1
)
if
(
lseek
(
tmpfile
,
0
,
SEEK_SET
)
==
-
1
)
die
(
"seek failed"
);
die
(
"seek failed"
);
}
}
gettimeofday
(
&
elapse
_t
,
NULL
);
gettimeofday
(
&
stop
_t
,
NULL
);
close
(
tmpfile
);
close
(
tmpfile
);
printf
(
"
\t
one 16k o_sync write "
);
printf
(
LABEL_FORMAT
,
"write, fdatasync"
);
print_elapse
(
start_t
,
elapse_t
);
print_elapse
(
start_t
,
stop_t
);
printf
(
"
\n
"
);
#else
printf
(
"
\t
(fdatasync unavailable)
\n
"
);
#endif
/*
Two 8k o_sync writes
*/
/*
write, fsync, close
*/
if
((
tmpfile
=
open
(
filename
,
O_RDWR
|
OPEN_SYNC_FLAG
,
0
))
==
-
1
)
if
((
tmpfile
=
open
(
filename
,
O_RDWR
,
0
))
==
-
1
)
die
(
"Cannot open output file."
);
die
(
"Cannot open output file."
);
gettimeofday
(
&
start_t
,
NULL
);
gettimeofday
(
&
start_t
,
NULL
);
for
(
i
=
0
;
i
<
loops
;
i
++
)
for
(
i
=
0
;
i
<
loops
;
i
++
)
{
{
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
/
2
)
!=
WRITE_SIZE
/
2
)
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
die
(
"write failed"
);
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
/
2
)
!=
WRITE_SIZE
/
2
)
die
(
"write failed"
);
die
(
"write failed"
);
if
(
fsync
(
tmpfile
)
!=
0
)
die
(
"fsync failed"
);
if
(
lseek
(
tmpfile
,
0
,
SEEK_SET
)
==
-
1
)
if
(
lseek
(
tmpfile
,
0
,
SEEK_SET
)
==
-
1
)
die
(
"seek failed"
);
die
(
"seek failed"
);
}
}
gettimeofday
(
&
elapse
_t
,
NULL
);
gettimeofday
(
&
stop
_t
,
NULL
);
close
(
tmpfile
);
close
(
tmpfile
);
printf
(
"
\t
two 8k o_sync writes "
);
printf
(
LABEL_FORMAT
,
"write, fsync"
);
print_elapse
(
start_t
,
elapse_t
);
print_elapse
(
start_t
,
stop_t
);
#else
printf
(
"
\t
(o_sync unavailable) "
);
#endif
printf
(
"
\n
"
);
/*
/*
* Compare file sync methods with
one
8k write
* Compare file sync methods with
two
8k write
*/
*/
printf
(
"
\n
Compare file sync methods
with one 8k write
:
\n
"
);
printf
(
"
\n
Compare file sync methods
using two 8k writes
:
\n
"
);
#ifdef OPEN_DATASYNC_FLAG
#ifdef OPEN_DATASYNC_FLAG
/* open_dsync, write */
/* open_dsync, write */
...
@@ -195,19 +187,20 @@ main(int argc, char *argv[])
...
@@ -195,19 +187,20 @@ main(int argc, char *argv[])
gettimeofday
(
&
start_t
,
NULL
);
gettimeofday
(
&
start_t
,
NULL
);
for
(
i
=
0
;
i
<
loops
;
i
++
)
for
(
i
=
0
;
i
<
loops
;
i
++
)
{
{
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
/
2
)
!=
WRITE_SIZE
/
2
)
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
die
(
"write failed"
);
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
die
(
"write failed"
);
die
(
"write failed"
);
if
(
lseek
(
tmpfile
,
0
,
SEEK_SET
)
==
-
1
)
if
(
lseek
(
tmpfile
,
0
,
SEEK_SET
)
==
-
1
)
die
(
"seek failed"
);
die
(
"seek failed"
);
}
}
gettimeofday
(
&
elapse
_t
,
NULL
);
gettimeofday
(
&
stop
_t
,
NULL
);
close
(
tmpfile
);
close
(
tmpfile
);
printf
(
"
\t
open o_dsync, write
"
);
printf
(
LABEL_FORMAT
,
"open_datasync write, write
"
);
print_elapse
(
start_t
,
elapse
_t
);
print_elapse
(
start_t
,
stop
_t
);
#else
#else
printf
(
"
\t
(o
_dsync unavailable)
"
);
printf
(
"
\t
(o
pen_datasync unavailable)
\n
"
);
#endif
#endif
printf
(
"
\n
"
);
#ifdef OPEN_SYNC_FLAG
#ifdef OPEN_SYNC_FLAG
/* open_fsync, write */
/* open_fsync, write */
...
@@ -216,19 +209,18 @@ main(int argc, char *argv[])
...
@@ -216,19 +209,18 @@ main(int argc, char *argv[])
gettimeofday
(
&
start_t
,
NULL
);
gettimeofday
(
&
start_t
,
NULL
);
for
(
i
=
0
;
i
<
loops
;
i
++
)
for
(
i
=
0
;
i
<
loops
;
i
++
)
{
{
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
/
2
)
!=
WRITE_SIZE
/
2
)
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
die
(
"write failed"
);
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
die
(
"write failed"
);
die
(
"write failed"
);
if
(
lseek
(
tmpfile
,
0
,
SEEK_SET
)
==
-
1
)
if
(
lseek
(
tmpfile
,
0
,
SEEK_SET
)
==
-
1
)
die
(
"seek failed"
);
die
(
"seek failed"
);
}
}
gettimeofday
(
&
elapse
_t
,
NULL
);
gettimeofday
(
&
stop
_t
,
NULL
);
close
(
tmpfile
);
close
(
tmpfile
);
printf
(
"
\t
open o_sync, write "
);
printf
(
LABEL_FORMAT
,
"open_sync write, write"
);
print_elapse
(
start_t
,
elapse_t
);
print_elapse
(
start_t
,
stop_t
);
#else
printf
(
"
\t
(o_sync unavailable) "
);
#endif
#endif
printf
(
"
\n
"
);
#ifdef HAVE_FDATASYNC
#ifdef HAVE_FDATASYNC
/* write, fdatasync */
/* write, fdatasync */
...
@@ -237,20 +229,21 @@ main(int argc, char *argv[])
...
@@ -237,20 +229,21 @@ main(int argc, char *argv[])
gettimeofday
(
&
start_t
,
NULL
);
gettimeofday
(
&
start_t
,
NULL
);
for
(
i
=
0
;
i
<
loops
;
i
++
)
for
(
i
=
0
;
i
<
loops
;
i
++
)
{
{
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
/
2
)
!=
WRITE_SIZE
/
2
)
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
die
(
"write failed"
);
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
die
(
"write failed"
);
die
(
"write failed"
);
fdatasync
(
tmpfile
);
fdatasync
(
tmpfile
);
if
(
lseek
(
tmpfile
,
0
,
SEEK_SET
)
==
-
1
)
if
(
lseek
(
tmpfile
,
0
,
SEEK_SET
)
==
-
1
)
die
(
"seek failed"
);
die
(
"seek failed"
);
}
}
gettimeofday
(
&
elapse
_t
,
NULL
);
gettimeofday
(
&
stop
_t
,
NULL
);
close
(
tmpfile
);
close
(
tmpfile
);
printf
(
"
\t
write, fdatasync
"
);
printf
(
LABEL_FORMAT
,
"write, write, fdatasync
"
);
print_elapse
(
start_t
,
elapse
_t
);
print_elapse
(
start_t
,
stop
_t
);
#else
#else
printf
(
"
\t
(fdatasync unavailable)"
);
printf
(
"
\t
(fdatasync unavailable)
\n
"
);
#endif
#endif
printf
(
"
\n
"
);
/* write, fsync, close */
/* write, fsync, close */
if
((
tmpfile
=
open
(
filename
,
O_RDWR
,
0
))
==
-
1
)
if
((
tmpfile
=
open
(
filename
,
O_RDWR
,
0
))
==
-
1
)
...
@@ -258,113 +251,110 @@ main(int argc, char *argv[])
...
@@ -258,113 +251,110 @@ main(int argc, char *argv[])
gettimeofday
(
&
start_t
,
NULL
);
gettimeofday
(
&
start_t
,
NULL
);
for
(
i
=
0
;
i
<
loops
;
i
++
)
for
(
i
=
0
;
i
<
loops
;
i
++
)
{
{
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
/
2
)
!=
WRITE_SIZE
/
2
)
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
die
(
"write failed"
);
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
die
(
"write failed"
);
die
(
"write failed"
);
if
(
fsync
(
tmpfile
)
!=
0
)
if
(
fsync
(
tmpfile
)
!=
0
)
die
(
"fsync failed"
);
die
(
"fsync failed"
);
if
(
lseek
(
tmpfile
,
0
,
SEEK_SET
)
==
-
1
)
if
(
lseek
(
tmpfile
,
0
,
SEEK_SET
)
==
-
1
)
die
(
"seek failed"
);
die
(
"seek failed"
);
}
}
gettimeofday
(
&
elapse
_t
,
NULL
);
gettimeofday
(
&
stop
_t
,
NULL
);
close
(
tmpfile
);
close
(
tmpfile
);
printf
(
"
\t
write, fsync "
);
printf
(
LABEL_FORMAT
,
"write, write, fsync"
);
print_elapse
(
start_t
,
elapse_t
);
print_elapse
(
start_t
,
stop_t
);
printf
(
"
\n
"
);
/*
/*
* Compare
file sync methods with two 8k write
* Compare
1 to 2 writes
*/
*/
printf
(
"
\n
Compare
file sync methods with two 8k writ
es:
\n
"
);
printf
(
"
\n
Compare
open_sync siz
es:
\n
"
);
#ifdef OPEN_
DATA
SYNC_FLAG
#ifdef OPEN_SYNC_FLAG
/*
open_dsync,
write */
/*
16k open_sync
write */
if
((
tmpfile
=
open
(
filename
,
O_RDWR
|
O
_DSYNC
,
0
))
==
-
1
)
if
((
tmpfile
=
open
(
filename
,
O_RDWR
|
O
PEN_SYNC_FLAG
,
0
))
==
-
1
)
die
(
"Cannot open output file."
);
die
(
"Cannot open output file."
);
gettimeofday
(
&
start_t
,
NULL
);
gettimeofday
(
&
start_t
,
NULL
);
for
(
i
=
0
;
i
<
loops
;
i
++
)
for
(
i
=
0
;
i
<
loops
;
i
++
)
{
{
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
/
2
)
!=
WRITE_SIZE
/
2
)
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
*
2
)
!=
WRITE_SIZE
*
2
)
die
(
"write failed"
);
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
/
2
)
!=
WRITE_SIZE
/
2
)
die
(
"write failed"
);
die
(
"write failed"
);
if
(
lseek
(
tmpfile
,
0
,
SEEK_SET
)
==
-
1
)
if
(
lseek
(
tmpfile
,
0
,
SEEK_SET
)
==
-
1
)
die
(
"seek failed"
);
die
(
"seek failed"
);
}
}
gettimeofday
(
&
elapse
_t
,
NULL
);
gettimeofday
(
&
stop
_t
,
NULL
);
close
(
tmpfile
);
close
(
tmpfile
);
printf
(
"
\t
open o_dsync, write "
);
printf
(
LABEL_FORMAT
,
"16k open_sync write"
);
print_elapse
(
start_t
,
elapse_t
);
print_elapse
(
start_t
,
stop_t
);
#else
printf
(
"
\t
(o_dsync unavailable) "
);
#endif
printf
(
"
\n
"
);
#ifdef OPEN_SYNC_FLAG
/* Two 8k open_sync writes */
/* open_fsync, write */
if
((
tmpfile
=
open
(
filename
,
O_RDWR
|
OPEN_SYNC_FLAG
,
0
))
==
-
1
)
if
((
tmpfile
=
open
(
filename
,
O_RDWR
|
OPEN_SYNC_FLAG
,
0
))
==
-
1
)
die
(
"Cannot open output file."
);
die
(
"Cannot open output file."
);
gettimeofday
(
&
start_t
,
NULL
);
gettimeofday
(
&
start_t
,
NULL
);
for
(
i
=
0
;
i
<
loops
;
i
++
)
for
(
i
=
0
;
i
<
loops
;
i
++
)
{
{
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
/
2
)
!=
WRITE_SIZE
/
2
)
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
die
(
"write failed"
);
die
(
"write failed"
);
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
/
2
)
!=
WRITE_SIZE
/
2
)
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
die
(
"write failed"
);
die
(
"write failed"
);
if
(
lseek
(
tmpfile
,
0
,
SEEK_SET
)
==
-
1
)
if
(
lseek
(
tmpfile
,
0
,
SEEK_SET
)
==
-
1
)
die
(
"seek failed"
);
die
(
"seek failed"
);
}
}
gettimeofday
(
&
elapse
_t
,
NULL
);
gettimeofday
(
&
stop
_t
,
NULL
);
close
(
tmpfile
);
close
(
tmpfile
);
printf
(
"
\t
open o_sync, write "
);
printf
(
LABEL_FORMAT
,
"2 8k open_sync writes"
);
print_elapse
(
start_t
,
elapse_t
);
print_elapse
(
start_t
,
stop_t
);
printf
(
"
\n
"
);
#else
printf
(
"
\t
(open_sync unavailable)
\n
"
);
#endif
#endif
#ifdef HAVE_FDATASYNC
/*
/* write, fdatasync */
* Fsync another file descriptor?
if
((
tmpfile
=
open
(
filename
,
O_RDWR
,
0
))
==
-
1
)
*/
die
(
"Cannot open output file."
);
printf
(
"
\n
Compare fsync times on write() and new file descriptors (if the times
\n
"
);
printf
(
"are similar, fsync() can sync data written on a different descriptor):
\n
"
);
/* write, fsync, close */
gettimeofday
(
&
start_t
,
NULL
);
gettimeofday
(
&
start_t
,
NULL
);
for
(
i
=
0
;
i
<
loops
;
i
++
)
for
(
i
=
0
;
i
<
loops
;
i
++
)
{
{
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
/
2
)
!=
WRITE_SIZE
/
2
)
if
(
(
tmpfile
=
open
(
filename
,
O_RDWR
,
0
))
==
-
1
)
die
(
"
write failed
"
);
die
(
"
Cannot open output file.
"
);
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
/
2
)
!=
WRITE_SIZE
/
2
)
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
die
(
"write failed"
);
die
(
"write failed"
);
fdatasync
(
tmpfile
);
if
(
fsync
(
tmpfile
)
!=
0
)
if
(
lseek
(
tmpfile
,
0
,
SEEK_SET
)
==
-
1
)
die
(
"fsync failed"
);
die
(
"seek failed"
);
close
(
tmpfile
);
if
((
tmpfile
=
open
(
filename
,
O_RDWR
,
0
))
==
-
1
)
die
(
"Cannot open output file."
);
/* do nothing but the open/close the tests are consistent. */
close
(
tmpfile
);
}
}
gettimeofday
(
&
elapse_t
,
NULL
);
gettimeofday
(
&
stop_t
,
NULL
);
close
(
tmpfile
);
printf
(
LABEL_FORMAT
,
"write, fsync, close"
);
printf
(
"
\t
write, fdatasync "
);
print_elapse
(
start_t
,
stop_t
);
print_elapse
(
start_t
,
elapse_t
);
#else
printf
(
"
\t
(fdatasync unavailable)"
);
#endif
printf
(
"
\n
"
);
/* write, fsync, close */
/* write, close, fsync */
if
((
tmpfile
=
open
(
filename
,
O_RDWR
,
0
))
==
-
1
)
die
(
"Cannot open output file."
);
gettimeofday
(
&
start_t
,
NULL
);
gettimeofday
(
&
start_t
,
NULL
);
for
(
i
=
0
;
i
<
loops
;
i
++
)
for
(
i
=
0
;
i
<
loops
;
i
++
)
{
{
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
/
2
)
!=
WRITE_SIZE
/
2
)
if
(
(
tmpfile
=
open
(
filename
,
O_RDWR
,
0
))
==
-
1
)
die
(
"
write failed
"
);
die
(
"
Cannot open output file.
"
);
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
/
2
)
!=
WRITE_SIZE
/
2
)
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
die
(
"write failed"
);
die
(
"write failed"
);
close
(
tmpfile
);
/* reopen file */
if
((
tmpfile
=
open
(
filename
,
O_RDWR
,
0
))
==
-
1
)
die
(
"Cannot open output file."
);
if
(
fsync
(
tmpfile
)
!=
0
)
if
(
fsync
(
tmpfile
)
!=
0
)
die
(
"fsync failed"
);
die
(
"fsync failed"
);
if
(
lseek
(
tmpfile
,
0
,
SEEK_SET
)
==
-
1
)
close
(
tmpfile
);
die
(
"seek failed"
);
}
}
gettimeofday
(
&
elapse_t
,
NULL
);
gettimeofday
(
&
stop_t
,
NULL
);
close
(
tmpfile
);
printf
(
LABEL_FORMAT
,
"write, close, fsync"
);
printf
(
"
\t
write, fsync "
);
print_elapse
(
start_t
,
stop_t
);
print_elapse
(
start_t
,
elapse_t
);
printf
(
"
\n
"
);
/* cleanup */
free
(
full_buf
);
free
(
full_buf
);
unlink
(
filename
);
unlink
(
filename
);
...
@@ -372,16 +362,16 @@ main(int argc, char *argv[])
...
@@ -372,16 +362,16 @@ main(int argc, char *argv[])
}
}
void
void
print_elapse
(
struct
timeval
start_t
,
struct
timeval
elapse
_t
)
print_elapse
(
struct
timeval
start_t
,
struct
timeval
stop
_t
)
{
{
if
(
elapse
_t
.
tv_usec
<
start_t
.
tv_usec
)
if
(
stop
_t
.
tv_usec
<
start_t
.
tv_usec
)
{
{
elapse
_t
.
tv_sec
--
;
stop
_t
.
tv_sec
--
;
elapse
_t
.
tv_usec
+=
1000000
;
stop
_t
.
tv_usec
+=
1000000
;
}
}
printf
(
"%3ld.%06ld
"
,
(
long
)
(
elapse
_t
.
tv_sec
-
start_t
.
tv_sec
),
printf
(
"%3ld.%06ld
\n
"
,
(
long
)
(
stop
_t
.
tv_sec
-
start_t
.
tv_sec
),
(
long
)
(
elapse
_t
.
tv_usec
-
start_t
.
tv_usec
));
(
long
)
(
stop
_t
.
tv_usec
-
start_t
.
tv_usec
));
}
}
void
void
...
...
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