@@ -179,13 +179,13 @@ test_sync(int writes_per_op)
179179if (writes_per_op == 1 )
180180printf (LABEL_FORMAT ,"open_datasync 8k write"
181181#if PG_O_DIRECT != 0
182- "** "
182+ "*"
183183#endif
184184);
185185else
186186printf (LABEL_FORMAT ,"2 open_datasync 8k writes"
187187#if PG_O_DIRECT != 0
188- "** "
188+ "*"
189189#endif
190190);
191191fflush (stdout );
@@ -211,7 +211,7 @@ test_sync(int writes_per_op)
211211#if PG_O_DIRECT != 0
212212if ((tmpfile = open (filename ,O_RDWR |O_DSYNC |PG_O_DIRECT ,0 ))== -1 )
213213{
214- printf (NA_FORMAT ,"o_direct" ,"n/a*\n" );
214+ printf (NA_FORMAT ,"o_direct" ,"n/a** \n" );
215215fs_warning = true;
216216}
217217else
@@ -335,13 +335,13 @@ test_sync(int writes_per_op)
335335if (writes_per_op == 1 )
336336printf (LABEL_FORMAT ,"open_sync 8k write"
337337#if PG_O_DIRECT != 0
338- "** "
338+ "*"
339339#endif
340340);
341341else
342342printf (LABEL_FORMAT ,"2 open_sync 8k writes"
343343#if PG_O_DIRECT != 0
344- "** "
344+ "*"
345345#endif
346346);
347347fflush (stdout );
@@ -373,7 +373,7 @@ test_sync(int writes_per_op)
373373
374374if ((tmpfile = open (filename ,O_RDWR |OPEN_SYNC_FLAG |PG_O_DIRECT ,0 ))== -1 )
375375{
376- printf (NA_FORMAT ,"o_direct" ,"n/a*\n" );
376+ printf (NA_FORMAT ,"o_direct" ,"n/a** \n" );
377377fs_warning = true;
378378}
379379else
@@ -399,16 +399,16 @@ test_sync(int writes_per_op)
399399printf (NA_FORMAT ,"open_sync" ,"n/a\n" );
400400#endif
401401
402+ #if defined(OPEN_DATASYNC_FLAG )|| defined(OPEN_SYNC_FLAG )
403+ if (PG_O_DIRECT != 0 )
404+ printf ("* This non-direct I/O option is not used by Postgres.\n" );
405+ #endif
406+
402407if (fs_warning )
403408{
404- printf ("* This file system and its mount options do not support direct\n" );
409+ printf ("** This file system and its mount options do not support direct\n" );
405410printf ("I/O, e.g. ext4 in journaled mode.\n" );
406411}
407-
408- #if defined(OPEN_DATASYNC_FLAG )|| defined(OPEN_SYNC_FLAG )
409- if (PG_O_DIRECT != 0 )
410- printf ("** This non-direct I/O option is not used by Postgres.\n" );
411- #endif
412412}
413413
414414void