Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
933b17b6
Commit
933b17b6
authored
15 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Adjust test_fsync code to be more sane.
Backpatch to 8.4.X.
parent
f3f6737a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/tools/fsync/test_fsync.c
+29
-12
29 additions, 12 deletions
src/tools/fsync/test_fsync.c
with
29 additions
and
12 deletions
src/tools/fsync/test_fsync.c
+
29
−
12
View file @
933b17b6
/*
/*
* $PostgreSQL: pgsql/src/tools/fsync/test_fsync.c,v 1.2
3
2009/0
6
/1
1
1
4:49:15
momjian Exp $
* $PostgreSQL: pgsql/src/tools/fsync/test_fsync.c,v 1.2
4
2009/0
8
/1
0
1
8:19:06
momjian Exp $
*
*
*
*
* test_fsync.c
* test_fsync.c
...
@@ -30,7 +30,7 @@
...
@@ -30,7 +30,7 @@
#define FSYNC_FILENAME "/var/tmp/test_fsync.out"
#define FSYNC_FILENAME "/var/tmp/test_fsync.out"
#endif
#endif
#define WRITE_SIZE (16 * 1024)
#define WRITE_SIZE (16 * 1024)
/* 16k */
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
elapse_t
);
...
@@ -71,6 +71,9 @@ main(int argc, char *argv[])
...
@@ -71,6 +71,9 @@ main(int argc, char *argv[])
buf
=
(
char
*
)
TYPEALIGN
(
ALIGNOF_XLOG_BUFFER
,
full_buf
);
buf
=
(
char
*
)
TYPEALIGN
(
ALIGNOF_XLOG_BUFFER
,
full_buf
);
/*
* Simple write
*/
printf
(
"Simple write timing:
\n
"
);
printf
(
"Simple write timing:
\n
"
);
/* write only */
/* write only */
gettimeofday
(
&
start_t
,
NULL
);
gettimeofday
(
&
start_t
,
NULL
);
...
@@ -87,8 +90,11 @@ main(int argc, char *argv[])
...
@@ -87,8 +90,11 @@ main(int argc, char *argv[])
print_elapse
(
start_t
,
elapse_t
);
print_elapse
(
start_t
,
elapse_t
);
printf
(
"
\n
"
);
printf
(
"
\n
"
);
/*
* Fsync another file descriptor?
*/
printf
(
"
\n
Compare fsync times on write() and non-write() descriptor:
\n
"
);
printf
(
"
\n
Compare fsync times on write() and non-write() descriptor:
\n
"
);
printf
(
"
(
If the times are similar, fsync() can sync data written
\n
on a different descriptor.
)
\n
"
);
printf
(
"If the times are similar, fsync() can sync data written
\n
on a different descriptor.
\n
"
);
/* write, fsync, close */
/* write, fsync, close */
gettimeofday
(
&
start_t
,
NULL
);
gettimeofday
(
&
start_t
,
NULL
);
...
@@ -132,6 +138,9 @@ main(int argc, char *argv[])
...
@@ -132,6 +138,9 @@ main(int argc, char *argv[])
print_elapse
(
start_t
,
elapse_t
);
print_elapse
(
start_t
,
elapse_t
);
printf
(
"
\n
"
);
printf
(
"
\n
"
);
/*
* Compare 1 to 2 writes
*/
printf
(
"
\n
Compare one o_sync write to two:
\n
"
);
printf
(
"
\n
Compare one o_sync write to two:
\n
"
);
#ifdef OPEN_SYNC_FLAG
#ifdef OPEN_SYNC_FLAG
...
@@ -148,7 +157,7 @@ main(int argc, char *argv[])
...
@@ -148,7 +157,7 @@ main(int argc, char *argv[])
print_elapse
(
start_t
,
elapse_t
);
print_elapse
(
start_t
,
elapse_t
);
printf
(
"
\n
"
);
printf
(
"
\n
"
);
/*
2*
8k o_sync writes */
/*
Two
8k o_sync writes */
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
);
...
@@ -163,14 +172,16 @@ main(int argc, char *argv[])
...
@@ -163,14 +172,16 @@ main(int argc, char *argv[])
close
(
tmpfile
);
close
(
tmpfile
);
printf
(
"
\t
two 8k o_sync writes "
);
printf
(
"
\t
two 8k o_sync writes "
);
print_elapse
(
start_t
,
elapse_t
);
print_elapse
(
start_t
,
elapse_t
);
printf
(
"
\n
"
);
printf
(
"
\n
Compare file sync methods with one 8k write:
\n
"
);
#else
#else
printf
(
"
\t
(o_sync unavailable) "
);
printf
(
"
\t
(o_sync unavailable) "
);
#endif
#endif
printf
(
"
\n
"
);
printf
(
"
\n
"
);
/*
* Compare file sync methods with one 8k write
*/
printf
(
"
\n
Compare file sync methods with one 8k write:
\n
"
);
#ifdef OPEN_DATASYNC_FLAG
#ifdef OPEN_DATASYNC_FLAG
/* open_dsync, write */
/* open_dsync, write */
if
((
tmpfile
=
open
(
filename
,
O_RDWR
|
O_DSYNC
,
0
))
==
-
1
)
if
((
tmpfile
=
open
(
filename
,
O_RDWR
|
O_DSYNC
,
0
))
==
-
1
)
...
@@ -183,7 +194,11 @@ main(int argc, char *argv[])
...
@@ -183,7 +194,11 @@ main(int argc, char *argv[])
close
(
tmpfile
);
close
(
tmpfile
);
printf
(
"
\t
open o_dsync, write "
);
printf
(
"
\t
open o_dsync, write "
);
print_elapse
(
start_t
,
elapse_t
);
print_elapse
(
start_t
,
elapse_t
);
#else
printf
(
"
\t
(o_dsync unavailable) "
);
#endif
printf
(
"
\n
"
);
printf
(
"
\n
"
);
#ifdef OPEN_SYNC_FLAG
#ifdef OPEN_SYNC_FLAG
/* open_fsync, write */
/* 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
)
...
@@ -196,9 +211,8 @@ main(int argc, char *argv[])
...
@@ -196,9 +211,8 @@ main(int argc, char *argv[])
close
(
tmpfile
);
close
(
tmpfile
);
printf
(
"
\t
open o_sync, write "
);
printf
(
"
\t
open o_sync, write "
);
print_elapse
(
start_t
,
elapse_t
);
print_elapse
(
start_t
,
elapse_t
);
#endif
#else
#else
printf
(
"
\t
(o_
d
sync unavailable) "
);
printf
(
"
\t
(o_sync unavailable) "
);
#endif
#endif
printf
(
"
\n
"
);
printf
(
"
\n
"
);
...
@@ -235,11 +249,14 @@ main(int argc, char *argv[])
...
@@ -235,11 +249,14 @@ main(int argc, char *argv[])
}
}
gettimeofday
(
&
elapse_t
,
NULL
);
gettimeofday
(
&
elapse_t
,
NULL
);
close
(
tmpfile
);
close
(
tmpfile
);
printf
(
"
\t
write, fsync
,
"
);
printf
(
"
\t
write, fsync
"
);
print_elapse
(
start_t
,
elapse_t
);
print_elapse
(
start_t
,
elapse_t
);
printf
(
"
\n
"
);
printf
(
"
\n
"
);
printf
(
"
\n
Compare file sync methods with 2 8k writes:
\n
"
);
/*
* Compare file sync methods with two 8k write
*/
printf
(
"
\n
Compare file sync methods with two 8k writes:
\n
"
);
#ifdef OPEN_DATASYNC_FLAG
#ifdef OPEN_DATASYNC_FLAG
/* open_dsync, write */
/* open_dsync, write */
...
@@ -318,7 +335,7 @@ main(int argc, char *argv[])
...
@@ -318,7 +335,7 @@ main(int argc, char *argv[])
}
}
gettimeofday
(
&
elapse_t
,
NULL
);
gettimeofday
(
&
elapse_t
,
NULL
);
close
(
tmpfile
);
close
(
tmpfile
);
printf
(
"
\t
write, fsync
,
"
);
printf
(
"
\t
write, fsync
"
);
print_elapse
(
start_t
,
elapse_t
);
print_elapse
(
start_t
,
elapse_t
);
printf
(
"
\n
"
);
printf
(
"
\n
"
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment