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
9dd79339
Commit
9dd79339
authored
Jan 24, 2011
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use XLOG_BLCKSZ in pg_test_fsync, rather than our own define, but verify
it is 8k as expected.
parent
9fc01922
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
11 deletions
+13
-11
contrib/pg_test_fsync/pg_test_fsync.c
contrib/pg_test_fsync/pg_test_fsync.c
+13
-11
No files found.
contrib/pg_test_fsync/pg_test_fsync.c
View file @
9dd79339
...
...
@@ -20,7 +20,9 @@
*/
#define FSYNC_FILENAME "./pg_test_fsync.out"
#define WRITE_SIZE (8 * 1024)
/* 8k */
#if XLOG_BLCKSZ != 8 * 1024
/* 8k */
#error Unknown block size for test.
#endif
#define LABEL_FORMAT " %-32s"
#define NA_FORMAT LABEL_FORMAT "%18s"
...
...
@@ -198,7 +200,7 @@ test_sync(int writes_per_op)
for
(
ops
=
0
;
ops
<
ops_per_test
;
ops
++
)
{
for
(
writes
=
0
;
writes
<
writes_per_op
;
writes
++
)
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
if
(
write
(
tmpfile
,
buf
,
XLOG_BLCKSZ
)
!=
XLOG_BLCKSZ
)
die
(
"write failed"
);
if
(
lseek
(
tmpfile
,
0
,
SEEK_SET
)
==
-
1
)
die
(
"seek failed"
);
...
...
@@ -225,7 +227,7 @@ test_sync(int writes_per_op)
for
(
ops
=
0
;
ops
<
ops_per_test
;
ops
++
)
{
for
(
writes
=
0
;
writes
<
writes_per_op
;
writes
++
)
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
if
(
write
(
tmpfile
,
buf
,
XLOG_BLCKSZ
)
!=
XLOG_BLCKSZ
)
die
(
"write failed"
);
if
(
lseek
(
tmpfile
,
0
,
SEEK_SET
)
==
-
1
)
die
(
"seek failed"
);
...
...
@@ -253,7 +255,7 @@ test_sync(int writes_per_op)
for
(
ops
=
0
;
ops
<
ops_per_test
;
ops
++
)
{
for
(
writes
=
0
;
writes
<
writes_per_op
;
writes
++
)
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
if
(
write
(
tmpfile
,
buf
,
XLOG_BLCKSZ
)
!=
XLOG_BLCKSZ
)
die
(
"write failed"
);
fdatasync
(
tmpfile
);
if
(
lseek
(
tmpfile
,
0
,
SEEK_SET
)
==
-
1
)
...
...
@@ -278,7 +280,7 @@ test_sync(int writes_per_op)
for
(
ops
=
0
;
ops
<
ops_per_test
;
ops
++
)
{
for
(
writes
=
0
;
writes
<
writes_per_op
;
writes
++
)
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
if
(
write
(
tmpfile
,
buf
,
XLOG_BLCKSZ
)
!=
XLOG_BLCKSZ
)
die
(
"write failed"
);
if
(
fsync
(
tmpfile
)
!=
0
)
die
(
"fsync failed"
);
...
...
@@ -302,7 +304,7 @@ test_sync(int writes_per_op)
for
(
ops
=
0
;
ops
<
ops_per_test
;
ops
++
)
{
for
(
writes
=
0
;
writes
<
writes_per_op
;
writes
++
)
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
if
(
write
(
tmpfile
,
buf
,
XLOG_BLCKSZ
)
!=
XLOG_BLCKSZ
)
die
(
"write failed"
);
if
(
pg_fsync_writethrough
(
tmpfile
)
!=
0
)
die
(
"fsync failed"
);
...
...
@@ -333,7 +335,7 @@ test_sync(int writes_per_op)
for
(
ops
=
0
;
ops
<
ops_per_test
;
ops
++
)
{
for
(
writes
=
0
;
writes
<
writes_per_op
;
writes
++
)
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
if
(
write
(
tmpfile
,
buf
,
XLOG_BLCKSZ
)
!=
XLOG_BLCKSZ
)
die
(
"write failed"
);
if
(
lseek
(
tmpfile
,
0
,
SEEK_SET
)
==
-
1
)
die
(
"seek failed"
);
...
...
@@ -360,7 +362,7 @@ test_sync(int writes_per_op)
for
(
ops
=
0
;
ops
<
ops_per_test
;
ops
++
)
{
for
(
writes
=
0
;
writes
<
writes_per_op
;
writes
++
)
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
if
(
write
(
tmpfile
,
buf
,
XLOG_BLCKSZ
)
!=
XLOG_BLCKSZ
)
die
(
"write failed"
);
if
(
lseek
(
tmpfile
,
0
,
SEEK_SET
)
==
-
1
)
die
(
"seek failed"
);
...
...
@@ -465,7 +467,7 @@ test_file_descriptor_sync(void)
{
if
((
tmpfile
=
open
(
filename
,
O_RDWR
,
0
))
==
-
1
)
die
(
"could not open output file"
);
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
if
(
write
(
tmpfile
,
buf
,
XLOG_BLCKSZ
)
!=
XLOG_BLCKSZ
)
die
(
"write failed"
);
if
(
fsync
(
tmpfile
)
!=
0
)
die
(
"fsync failed"
);
...
...
@@ -494,7 +496,7 @@ test_file_descriptor_sync(void)
{
if
((
tmpfile
=
open
(
filename
,
O_RDWR
,
0
))
==
-
1
)
die
(
"could not open output file"
);
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
if
(
write
(
tmpfile
,
buf
,
XLOG_BLCKSZ
)
!=
XLOG_BLCKSZ
)
die
(
"write failed"
);
close
(
tmpfile
);
/* reopen file */
...
...
@@ -526,7 +528,7 @@ test_non_sync(void)
{
if
((
tmpfile
=
open
(
filename
,
O_RDWR
,
0
))
==
-
1
)
die
(
"could not open output file"
);
if
(
write
(
tmpfile
,
buf
,
WRITE_SIZE
)
!=
WRITE_SIZE
)
if
(
write
(
tmpfile
,
buf
,
XLOG_BLCKSZ
)
!=
XLOG_BLCKSZ
)
die
(
"write failed"
);
close
(
tmpfile
);
}
...
...
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