Fix build on x86-64 distros without __NR_pread64/pwrite64
[fio.git] / HOWTO
diff --git a/HOWTO b/HOWTO
index 5df2607e874a35fa131db5f36a0095af2dfe917a..e54b37b14dbb67911af1d19723cbb29581fdf6a6 100644 (file)
--- a/HOWTO
+++ b/HOWTO
@@ -205,12 +205,15 @@ filename=str      Fio normally makes up a filename based on the job name,
                files between threads in a job or several jobs, specify
                a filename for each of them to override the default. If
                the ioengine used is 'net', the filename is the host and
-               port to connect to in the format of =host:port. If the
+               port to connect to in the format of =host/port. If the
                ioengine is file based, you can specify a number of files
                by seperating the names with a ':' colon. So if you wanted
                a job to open /dev/sda and /dev/sdb as the two working files,
                you would use filename=/dev/sda:/dev/sdb
 
+opendir=str    Tell fio to recursively add any file it can find in this
+               directory and down the file system tree.
+
 rw=str         Type of io pattern. Accepted values are:
 
                        read            Sequential reads
@@ -306,7 +309,7 @@ ioengine=str        Defines how the job issues io to the file. The following
 
                        net     Transfer over the network to given host:port.
                                'filename' must be set appropriately to
-                               filename=host:port regardless of send
+                               filename=host/port regardless of send
                                or receive, if the latter only the port
                                argument is used.
 
@@ -358,6 +361,10 @@ overwrite=bool     If writing to a file, setup the file first and do overwrites.
 
 end_fsync=bool If true, fsync file contents when the job exits.
 
+fsync_on_close=bool    If true, fio will fsync() a dirty file on close.
+               This differs from end_fsync in that it will happen on every
+               file close, not just at the end of the job.
+
 rwmixcycle=int Value in milliseconds describing how often to switch between
                reads and writes for a mixed workload. The default is
                500 msecs.