Commit 00869024 authored by Bruce Momjian's avatar Bruce Momjian

In pg_test_fsync, use K(1024) rather than k(1000) for write size units.

parent 159e3d86
...@@ -175,9 +175,9 @@ test_sync(int writes_per_op) ...@@ -175,9 +175,9 @@ test_sync(int writes_per_op)
bool fs_warning = false; bool fs_warning = false;
if (writes_per_op == 1) if (writes_per_op == 1)
printf("\nCompare file sync methods using one %dk write:\n", XLOG_BLCKSZ_K); printf("\nCompare file sync methods using one %dK write:\n", XLOG_BLCKSZ_K);
else else
printf("\nCompare file sync methods using two %dk writes:\n", XLOG_BLCKSZ_K); printf("\nCompare file sync methods using two %dK writes:\n", XLOG_BLCKSZ_K);
printf("(in wal_sync_method preference order, except fdatasync\n"); printf("(in wal_sync_method preference order, except fdatasync\n");
printf("is Linux's default)\n"); printf("is Linux's default)\n");
...@@ -391,14 +391,14 @@ static void ...@@ -391,14 +391,14 @@ static void
test_open_syncs(void) test_open_syncs(void)
{ {
printf("\nCompare open_sync with different write sizes:\n"); printf("\nCompare open_sync with different write sizes:\n");
printf("(This is designed to compare the cost of writing 16k\n"); printf("(This is designed to compare the cost of writing 16K\n");
printf("in different write open_sync sizes.)\n"); printf("in different write open_sync sizes.)\n");
test_open_sync("16k open_sync write", 16); test_open_sync("16K open_sync write", 16);
test_open_sync(" 8k open_sync writes", 8); test_open_sync(" 8K open_sync writes", 8);
test_open_sync(" 4k open_sync writes", 4); test_open_sync(" 4K open_sync writes", 4);
test_open_sync(" 2k open_sync writes", 2); test_open_sync(" 2K open_sync writes", 2);
test_open_sync(" 1k open_sync writes", 1); test_open_sync(" 1K open_sync writes", 1);
} }
/* /*
...@@ -517,7 +517,7 @@ test_non_sync(void) ...@@ -517,7 +517,7 @@ test_non_sync(void)
/* /*
* Test a simple write without fsync * Test a simple write without fsync
*/ */
printf("\nNon-sync'ed %dk writes:\n", XLOG_BLCKSZ_K); printf("\nNon-Sync'ed %dK writes:\n", XLOG_BLCKSZ_K);
printf(LABEL_FORMAT, "write"); printf(LABEL_FORMAT, "write");
fflush(stdout); fflush(stdout);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment