man 1 fio
[fio.git] / fio.1
CommitLineData
d60e92d1
AC
1.TH fio 1 "September 2007" "User Manual"
2.SH NAME
3fio \- flexible I/O tester
4.SH SYNOPSIS
5.B fio
6[\fIoptions\fR] [\fIjobfile\fR]...
7.SH DESCRIPTION
8.B fio
9is a tool that will spawn a number of threads or processes doing a
10particular type of I/O action as specified by the user.
11The typical use of fio is to write a job file matching the I/O load
12one wants to simulate.
13.SH OPTIONS
14.TP
15.BI \-\-output \fR=\fPfilename
16Write output to \fIfilename\fR.
17.TP
18.BI \-\-timeout \fR=\fPtimeout
19Limit run time to \fItimeout\fR seconds.
20.TP
21.B \-\-latency\-log
22Generate per-job latency logs.
23.TP
24.B \-\-bandwidth\-log
25Generate per-job bandwidth logs.
26.TP
27.B \-\-minimal
28Print statistics in a terse, semicolon\-delimited format.
29.TP
30.BI \-\-showcmd \fR=\fPjobfile
31Convert \fIjobfile\fR to a set of command-line options.
32.TP
33.B \-\-readonly
34Enable read-only safety checks.
35.TP
36.BI \-\-eta \fR=\fPwhen
37Specifies when real-time ETA estimate should be printed. \fIwhen\fR may
38be one of `always', `never' or `auto'.
39.TP
40.BI \-\-cmdhelp \fR=\fPcommand
41Print help information for \fIcommand\fR. May be `all' for all commands.
42.TP
43.B \-\-help
44Display usage information and exit.
45.TP
46.B \-\-version
47Display version information and exit.
48.SH "JOB FILE FORMAT"
49Job files are in `ini' format. They consist of one or more
50job definitions, which begin with a job name in square brackets and
51extend to the next job name. The job name can be any ASCII string
52except `global', which has a special meaning. Following the job name is
53a sequence of zero or more parameters, one per line, that define the
54behavior of the job. Any line starting with a `;' or `#' character is
55considered a comment and ignored. See section EXAMPLES for sample
56job files.
57.SS "Global Section"
58The global section contains default parameters for jobs specified in the
59job file. A job is only affected by global sections residing above it,
60and there may be any number of global sections. Specific job definitions
61may override any parameter set in global sections.
62.SH "JOB PARAMETERS"
63.SS Types
64Some parameters may take arguments of a specific type. The types used are:
65.TP
66.I str
67String: a sequence of alphanumeric characters.
68.TP
69.I int
70Integer: a whole number, possibly negative. If prefixed with `0x', the value
71is assumed to be base 16 (hexadecimal).
72.TP
73.I siint
74SI integer: a whole number, possibly containing a suffix denoting the base unit
75of the value. Accepted suffixes are `k', 'M' and 'G', denoting kilo (1024),
76mega (1024*1024) and giga (1024*1024*1024) respectively.
77.TP
78.I bool
79Boolean: a true or false value. `0' denotes false, `1' denotes true.
80.TP
81.I irange
82Integer range: a range of integers specified in the format
83\fIlower\fR:\fIupper\fR or \fIlower\fR-\fIupper\fR. \fIlower\fR and \fIupper\fR
84may contain a suffix as described above. If an option allows two sets of ranges,
85they are separated with a `,' or `/' character. For example: `8-8k/8M-4G'.
86.SS "Parameter List"
87.TP
88.BI name \fR=\fPstr
89May be used to override the job name. On the command line, this paramter
90has the special purpose of signalling the start of a new job.
91.TP
92.BI description \fR=\fPstr
93Human-readable description of the job. It is printed when the job is run, but
94otherwise has no special purpose.
95.TP
96.BI directory \fR=\fPstr
97Prefix filenames with this directory. Used to place files in a location other
98than `./'.
99.TP
100.BI filename \fR=\fPstr
101.B fio
102normally makes up a file name based on the job name, thread number, and file
103number. If you want to share files between threads in a job or several jobs, specify
104a \fIfilename\fR for each of them to override the default. If the I/O engine used is
105`net', \fIfilename\fR is the host and port to connect to in the format
106\fIhost\fR/\fIport\fR. If the I/O engine is file-based, you can specify a number of
107files by separating the names with a `:' character. `-' is a reserved name, meaning
108stdin or stdout, depending on the read/write direction set.
109.TP
110.BI opendir \fR=\fPstr
111Recursively open any files below directory \fIstr\fR.
112.TP
113.BI readwrite \fR=\fPstr "\fR,\fP rw" \fR=\fPstr
114Type of I/O pattern. Accepted values are:
115.RS
116.RS
117.TP
118.B read
119Sequential reads
120.TP
121.B write
122Sequential writes
123.TP
124.B randread
125Random reads
126.TP
127.B randwrite
128Random writes
129.TP
130.B rw
131Mixed sequential reads and writes
132.TP
133.B randrw
134Mixed random reads and writes
135.RE
136.P
137For mixed I/O, the default split is 50/50. For random I/O, the number of I/Os to
138perform before getting a new offset can be specified by appending `:\fIint\fR' to
139the pattern type. The default is 1.
140.RE
141.TP
142.BI randrepeat \fR=\fPbool
143Seed the random number generator in a predictable way so results are repeatable
144across runs.
145.TP
146.BI fadvise_hint \fR=\fPbool
147Disable use of \fIposix_fadvise\fR\|(2) to advise the kernel what I/O patters are
148likely to be issued. Default: true.
149.TP
150.BI size \fR=\fPsiint
151Total size of I/O for this job. \fBfio\fR will run until this many bytes have
152been transfered, unless limited by other options (\fBruntime\fR, for instance).
153Unless \fBnr_files\fR and \fBfilesize\fR options are given, this amount will be
154divided between the available files for the job.
155.TP
156.BI filesize \fR=\fPirange
157Individual file sizes. May be a range, in which case \fBfio\fR will select sizes
158for files at random within the given range, limited to \fBsize\fR in total (if that
159is given). If \fBfilesize\fR is not specified, each created file is the same size.
160.TP
161.BI blocksize \fR=\fPsiint "\fR,\fB bs" \fR=\fPsiint
162Block size for I/O units. Default: 4k. Values for reads and writes can be
163specified seperately in the format \fIread\fR,\fIwrite\fR, either of
164which may be empty to leave that value at its default.
165.TP
166.BI blocksize_range \fR=\fPirange "\fR,\fB bsrange" \fR=\fPirange
167Specify a range of I/O block sizes. The issued I/O unit will always be a multiple
168of the minimum size, unless \fBblocksize_unaligned\fR is set. Applied to both reads
169and writes, but can be specified seperately (see \fBblocksize\fR).
170.TP
171.B blocksize_unaligned\fR,\fP bs_unaligned
172If set, any size in \fBblocksize_range\fR may be used. This typically won't work
173with direct I/O, as that normally requires sector alignment.
174.TP
175.B zero_buffers
176Initialise buffers with all zeros. Default: fill buffers with random data.
177.TP
178.BI nrfiles \fR=\fPint
179Number of files to use for this job. Default: 1.
180.TP
181.BI openfiles \fR=\fPint
182Number of files to keep open at the same time. Default: \fBnrfiles\fR.
183.TP
184.BI file_service_type \fR=\fPstr
185Defines how files to service are selected. The following types are defined:
186.RS
187.RS
188.TP
189.B random
190Choose a file at random
191.TP
192.B roundrobin
193Round robin over open files (default).
194.RE
195.P
196The number of I/Os to issue before switching a new file can be specified by
197appending `:\fIint\fR' to the service type.
198.RE
199.TP
200.BI ioengine \fR=\fPstr
201Defines how the job issues I/O. The following types are defined:
202.RS
203.RS
204.TP
205.B sync
206Basic \fIread\fR\|(2) or \fIwrite\fR\|(2) I/O. \fIfseek\fR\|(2) is used to
207position the I/O location.
208.TP
209.B libaio
210Linux native asynchronous I/O.
211.TP
212.B posixaio
213glibc POSIX asynchronous I/O using \fIaio_read\fR\|(3) and \fIaio_write\fR\|(3).
214.TP
215.B mmap
216File is memory mapped with \fImmap\fR\|(2) and data coped using \fImemcpy\fR\|(3).
217.TP
218.B splice
219\fIsplice\fR\|(2) is used to transfer the data and \fIvmsplice\fR\|(2) to transfer
220data from user-space to the kernel.
221.TP
222.B syslet-rw
223Use the syslet system calls to make regular read/write asynchronous.
224.TP
225.B sg
226SCSI generic sg v3 I/O. May be either synchronous using the SG_IO ioctl, or if
227the target is an sg character device, we use \fIread\fR\|(2) and \fIwrite\fR\|(2)
228for asynchronous I/O.
229.TP
230.B null
231Doesn't transfer any data, just pretends to. Mainly used to exercise \fBfio\fR
232itself and for debugging and testing purposes.
233.TP
234.B net
235Transfer over the network. \fBfilename\fR must be set appropriately to
236`\fIhost\fR/\fIport\fR' regardless of data direction. If receiving, only the
237\fIport\fR argument is used.
238.TP
239.B netsplice
240Like \fBnet\fR, but uses \fIsplice\fR\|(2) and \fIvmsplice\fR\|(2) to map data
241and send/receive.
242.TP
243.B cpu
244Doesn't transfer any data, but burns CPU cycles according to \fBcpuload\fR and
245\fBcpucycles\fR parameters.
246.TP
247.B guasi
248The GUASI I/O engine is the Generic Userspace Asynchronous Syscall Interface
249approach to asycnronous I/O.
250
251See <http://www.xmailserver.org/guasi-lib.html>.
252.TP
253.B external
254Loads an external I/O engine object file. Append the engine filename as
255`:\fIenginepath\fR'.
256.RE
257.RE
258.TP
259.BI iodepth \fR=\fPint
260Number of I/O units to keep in flight against the file. Default: 1.
261.TP
262.BI iodepth_batch \fR=\fPint
263Number of I/Os to submit at once. Default: \fBiodepth\fR.
264.TP
265.BI iodepth_low \fR=\fPint
266Low watermark indicating when to start filling the queue again. Default:
267\fBiodepth\fR.
268.TP
269.BI direct \fR=\fPbool
270If true, use non-buffered I/O (usually O_DIRECT). Default: false.
271.TP
272.BI buffered \fR=\fPbool
273If true, use buffered I/O. This is the opposite of the \fBdirect\fR parameter.
274Default: true.
275.TP
276.BI offset \fR=\fPsiint
277Offset in the file to start I/O. Data before the offset will not be touched.
278.TP
279.BI fsync \fR=\fPint
280How many I/Os to perform before issuing an \fBfsync\fR\|(2) of dirty data. If 0, don't
281sync. Default: 0.
282.TP
283.BI overwrite \fR=\fPbool
284If writing, setup the file first and do overwrites.
285.TP
286.BI end_fsync \fR=\fPbool
287If true, sync file contents when job exits.
288.TP
289.BI fsync_on_close \fR=\fPbool
290If true, sync file contents on close. This differs from \fBend_fsync\fR in that
291it will happen on every close, not just at the end of the job.
292.TP
293.BI rwmixcycle \fR=\fPint
294How many milliseconds before switching between reads and writes for a mixed
295workload. Default: 500ms.
296.TP
297.BI rwmixread \fR=\fPint
298Percentage of a mixed workload that should be reads. Default: 50.
299.TP
300.BI rwmixwrite \fR=\fPint
301Percentage of a mixed workload that would be writes. If \fBrwmixread\fR and
302\fBwrmixwrite\fR are given and do not sum to 100%, the latter of the two
303overrides the first.
304.TP
305.B norandommap
306Normally \fBfio\fR will cover every block of the file when doing random I/O. If
307this parameter is given, a new offset will be chosen without looking at past
308I/O history. This parameter is mutually exclusive with \fBverify\fR.
309.TP
310.BI nice \fR=\fPint
311Run job with given nice value. See \fInice\fR\|(2).
312.TP
313.BI prio \fR=\fPint
314Set I/O priority value of this job between 0 (highest) and 7 (lowest). See
315\fIionice\fR\|(1).
316.TP
317.BI prioclass \fR=\fPint
318Set I/O priority class. See \fIionice\fR\|(1).
319.TP
320.BI thinktime \fR=\fPint
321Stall job for given number of microseconds between issuing I/Os.
322.TP
323.BI thinktime_spin \fR=\fPint
324Pretend to spend CPU time for given number of microseconds, sleeping the rest
325of the time specified by \fBthinktime\fR. Only valid if \fBthinktime\fR is set.
326.TP
327.BI thinktime_blocks \fR=\fPint
328Number of blocks to issue before waiting \fBthinktime\fR microseconds.
329Default: 1.
330.TP
331.BI rate \fR=\fPint
332Cap bandwidth used by this job to this number of KiB/s.
333.TP
334.BI ratemin \fR=\fPint
335Tell \fBfio\fR to do whatever it can to maintain at least the given bandwidth.
336Failing to meet this requirement will cause the job to exit.
337.TP
338.BI rate_iops \fR=\fPint
339Cap the bandwidth to this number of IOPS. If \fBblocksize\fR is a range, the
340smallest block size is used as the metric.
341.TP
342.BI rate_iops_min \fR=\fPint
343If this rate of I/O is not met, the job will exit.
344.TP
345.BI ratecycle \fR=\fPint
346Average bandwidth for \fBrate\fR and \fBratemin\fR over this number of
347milliseconds. Default: 1000ms.
348.TP
349.BI cpumask \fR=\fPint
350Set CPU affinity for this job. \fIint\fR is a bitmask of allowed CPUs the job
351may run on. See \fBsched_setaffinity\fR\|(2).
352.TP
353.BI cpus_allowed \fR=\fPstr
354Same as \fBcpumask\fR, but allows a comma-delimited list of CPU numbers.
355.TP
356.BI startdelay \fR=\fPint
357Delay start of job for the specified number of seconds.
358.TP
359.BI runtime \fR=\fPint
360Terminate processing after the specified number of seconds.
361.TP
362.B time_based
363If given, run for the specified \fBruntime\fR duration even if the files are
364completely read or written. The same workload will be repeated as many times
365as \fBruntime\fR allows.
366.TP
367.BI invalidate \fR=\fPbool
368Invalidate buffer-cache for the file prior to starting I/O. Default: true.
369.TP
370.BI sync \fR=\fPbool
371Use synchronous I/O for buffered writes. For the majority of I/O engines,
372this means using O_SYNC.
373.TP
374.BI iomem \fR=\fPstr "\fR,\fP mem" \fR=\fPstr
375Allocation method for I/O unit buffer. Allowed values are:
376.RS
377.RS
378.TP
379.B malloc
380Allocate memory with \fImalloc\fR\|(3).
381.TP
382.B shm
383Use shared memory buffers allocated through \fIshmget\fR\|(2).
384.TP
385.B shmhuge
386Same as \fBshm\fR, but use huge pages as backing.
387.TP
388.B mmap
389Use \fImmap\fR\|(2) for allocation. Uses anonymous memory unless a filename
390is given after the option in the format `:\fIfile\fR'.
391.TP
392.B mmaphuge
393Same as \fBmmap\fR, but use huge files as backing.
394.RE
395.P
396The amount of memory allocated is the maximum allowed \fBblocksize\fR for the
397job multiplied by \fBiodepth\fR. For \fBshmhuge\fR or \fBmmaphuge\fR to work,
398the system must have free huge pages allocated. \fBmmaphuge\fR also needs to
399have hugetlbfs mounted, and \fIfile\fR must point there.
400.RE
401.TP
402.BI hugepage-size \fR=\fPsiint
403Defines the size of a huge page. Must be at least equal to the system setting.
404Should be a multiple of 1MiB. Default: 4MiB.
405.TP
406.B exitall
407Terminate all jobs when one finishes. Default: wait for each job to finish.
408.TP
409.BI bwavgtime \fR=\fPint
410Average bandwidth calculations over the given time in milliseconds. Default:
411500ms.
412.TP
413.BI create_serialize \fR=\fPbool
414If true, serialize file creation for the jobs.
415.TP
416.BI create_fsync \fR=\fPbool
417\fIfsync\fR\|(2) data file after creation. Default: true.
418.TP
419.BI unlink \fR=\fPbool
420Unlink job files when done. Default: false.
421.TP
422.BI loops \fR=\fPint
423Specifies the number of iterations (runs of the same workload) of this job.
424Default: 1.
425.TP
426.BI do_verify \fR=\fPbool
427Run the verify phase after a write phase. Only valid if \fBverify\fR is set.
428Default: true.
429.TP
430.BI verify \fR=\fPstr
431Method of verifying file contents after each iteration of the job. Allowed
432values are:
433.RS
434.RS
435.TP
436.B md5 crc16 crc32 crc64 crc7 sha256 sha512
437Store appropriate checksum in the header of each block.
438.TP
439.B meta
440Write extra information about each I/O (timestamp, block number, etc.). The
441block number is verified.
442.TP
443.B pattern
444Fill I/O buffers with a specific pattern that is used to verify. The pattern is
445specified by appending `:\fIint\fR' to the parameter. \fIint\fR cannot be larger
446than 32-bits.
447.TP
448.B null
449Pretend to verify. Used for testing internals.
450.RE
451.RE
452.TP
453.BI verify_sort \fR=\fPbool
454If true, written verify blocks are sorted if \fBfio\fR deems it to be faster to
455read them back in a sorted manner. Default: true.
456.TP
457.BI verify_offset \fR=\fPsiint
458Swap the verification header with data somewhere else in the block before
459writing. It it swapped back before verifying.
460.TP
461.BI verify_interval \fR=\fPsiint
462Write the verification header for this number of bytes, which should divide
463\fBblocksize\fR. Default: \fBblocksize\fR.
464.TP
465.BI verify_fatal \fR=\fPbool
466If true, exit the job on the first observed verification failure. Default:
467false.
468.TP
469.B stonewall
470Wait for precedding jobs in the job file to exit before starting this one.
471\fBstonewall\fR implies \fBnew_group\fR.
472.TP
473.B new_group
474Start a new reporting group. If not given, all jobs in a file will be part
475of the same reporting group, unless separated by a stonewall.
476.TP
477.BI numjobs \fR=\fPint
478Number of clones (processes/threads performing the same workload) of this job.
479Default: 1.
480.TP
481.B group_reporting
482If set, display per-group reports instead of per-job when \fBnumjobs\fR is
483specified.
484.TP
485.B thread
486Use threads created with \fBpthread_create\fR\|(3) instead of processes created
487with \fBfork\fR\|(2).
488.TP
489.BI zonesize \fR=\fPsiint
490Divide file into zones of the specified size in bytes. See \fBzoneskip\fR.
491.TP
492.BI zoneskip \fR=\fPsiint
493Skip the specified number of bytes when \fBzonesize\fR bytes of data has been
494read.
495.TP
496.BI write_iolog \fR=\fPstr
497Write the issued I/O patterns to the specified file.
498.TP
499.BI read_iolog \fR=\fPstr
500Replay the I/O patterns contained in the specified file generated by
501\fBwrite_iolog\fR, or may be a \fBblktrace\fR binary file.
502.TP
503.B write_bw_log
504If given, write bandwidth logs of the jobs in this file.
505.TP
506.B write_lat_log
507Same as \fBwrite_bw_log\fR, but writes I/O completion latencies.
508.TP
509.BI lockmem \fR=\fPsiint
510Pin the specified amount of memory with \fBmlock\fR\|(2). Can be used to
511simulate a smaller amount of memory.
512.TP
513.BI exec_prerun \fR=\fPstr
514Before running the job, execute the specified command with \fBsystem\fR\|(3).
515.TP
516.BI exec_postrun \fR=\fPstr
517Same as \fBexec_prerun\fR, but the command is executed after the job completes.
518.TP
519.BI ioscheduler \fR=\fPstr
520Attempt to switch the device hosting the file to the specified I/O scheduler.
521.TP
522.BI cpuload \fR=\fPint
523If the job is a CPU cycle-eater, attempt to use the specified percentage of
524CPU cycles.
525.TP
526.BI cpuchunks \fR=\fPint
527If the job is a CPU cycle-eater, split the load into cycles of the
528given time in milliseconds.
529.TP
530.BI disk_util \fR=\fPbool
531Generate disk utilization statistics if the platform supports it. Default: true.
532.SH OUTPUT
533While running, \fBfio\fR will display the status of the created jobs. For example:
534.RS
535Threads: 1: [_r] [24.8% done] [ 13509/ 8334 kb/s] [eta 00h:01m:31s]
536.RE
537.P
538The characters in the first set of brackets denote the current status of each threads.
539The possible values are:
540.RS
541.RS
542.TP
543.B P
544Setup but not started.
545.TP
546.B C
547Thread created.
548.TP
549.B I
550Initialized, waiting.
551.TP
552.B R
553Running, doing sequential reads.
554.TP
555.B r
556Running, doing random reads.
557.TP
558.B W
559Running, doing sequential writes.
560.TP
561.B w
562Running, doing random writes.
563.TP
564.B M
565Running, doing mixed sequential reads/writes.
566.TP
567.B m
568Running, doing mixed random reads/writes.
569.TP
570.B F
571Running, currently waiting for \fBfsync\fR\|(2).
572.TP
573.B V
574Running, verifying written data.
575.TP
576.B E
577Exited, not reaped by main thread.
578.TP
579.B \-
580Exited, thread reaped.
581.RE
582.RE
583.P
584The second set of brackets shows the estimated completion percentage of
585the current group. The third set shows the read and write I/O rate,
586respectively. Finally, the estimated run time of the job is displayed.
587.P
588When \fBfio\fR completes (or is interrupted by Ctrl-C), it will show data
589for each thread, each group of threads, and each disk, in that order.
590.P
591Per-thread statistics first show the threads client number, group-id, and
592error code. The remaining figures are as follows:
593.RS
594.RS
595.TP
596.B io
597Number of megabytes of I/O performed.
598.TP
599.B bw
600Average data rate (bandwidth).
601.TP
602.B runt
603Threads run time.
604.TP
605.B slat
606Submission latency minimum, maximum, average and standard deviation. This is
607the time it took to submit the I/O.
608.TP
609.B clat
610Completion latency minimum, maximum, average and standard deviation. This
611is the time between submission and completion.
612.TP
613.B bw
614Bandwidth minimum, maximum, percentage of aggregate bandwidth received, average
615and standard deviation.
616.TP
617.B cpu
618CPU usage statistics. Includes user and system time, number of context switches
619this thread went through and number of major and minor page faults.
620.TP
621.B IO depths
622Distribution of I/O depths. Each depth includes everything less than (or equal)
623to it, but greater than the previous depth.
624.TP
625.B IO issued
626Number of read/write requests issued, and number of short read/write requests.
627.TP
628.B IO latencies
629Distribution of I/O completion latencies. The numbers follow the same pattern
630as \fBIO depths\fR.
631.RE
632.RE
633.P
634The group statistics show:
635.RS
636.RS
637.TP
638.B io
639Number of megabytes I/O performed.
640.TP
641.B aggrb
642Aggregate bandwidth of threads in the group.
643.TP
644.B minb
645Minimum average bandwidth a thread saw.
646.TP
647.B maxb
648Maximum average bandwidth a thread saw.
649.TP
650.B mint
651Smallest runtime of threads in the group.
652.TP
653.B maxt
654Longest runtime of threads in the group.
655.RE
656.RE
657.P
658Finally, disk statistics are printed with reads first:
659.RS
660.RS
661.TP
662.B ios
663Number of I/Os performed by all groups.
664.TP
665.B merge
666Number of merges in the I/O scheduler.
667.TP
668.B ticks
669Number of ticks we kept the disk busy.
670.TP
671.B io_queue
672Total time spent in the disk queue.
673.TP
674.B util
675Disk utilization.
676.RE
677.RE
678.SH TERSE OUTPUT
679If the \fB\-\-minimal\fR option is given, the results will be printed in a
680semicolon-delimited format suitable for scripted use. The fields are:
681.P
682.RS
683.B jobname, groupid, error
684.P
685Read status:
686.RS
687.B KiB I/O, bandwidth \fR(KiB/s)\fP, runtime \fR(ms)\fP
688.P
689Submission latency:
690.RS
691.B min, max, mean, standard deviation
692.RE
693Completion latency:
694.RS
695.B min, max, mean, standard deviation
696.RE
697Bandwidth:
698.RS
699.B min, max, aggregate percentage of total, mean, standard deviation
700.RE
701.RE
702.P
703Write status:
704.RS
705.B KiB I/O, bandwidth \fR(KiB/s)\fP, runtime \fR(ms)\fP
706.P
707Submission latency:
708.RS
709.B min, max, mean, standard deviation
710.RE
711Completion latency:
712.RS
713.B min, max, mean, standard deviation
714.RE
715Bandwidth:
716.RS
717.B min, max, aggregate percentage of total, mean, standard deviation
718.RE
719.RE
720.P
721CPU usage;
722.RS
723.B user, system, context switches
724.RE
725.P
726IO depth distribution:
727.RS
728.B <=1, 2, 4, 8, 16, 32, >=64
729.RE
730.P
731IO latency distribution (ms):
732.RS
733.B <=2, 4, 10, 20, 50, 100, 250, 500, 750, 1000, >=2000
734.RE
735.P
736.B text description
737.RE
738.SH AUTHORS
739.B fio
740was written by Jens Axboe <jens.axboe@oracle.com>.
741This man page was
742written by Aaron Carroll <aaronc@cse.unsw.edu.au> based
743on documentation by Jens Axboe.
744.SH "REPORTING BUGS"
745Report bugs to the \fBfio\fR mailing list <fio-devel@kernel.dk>. See \fBREADME\fR.
746.SH "SEE ALSO"
747Further documentation is available in \fBfio\fR's \fBHOWTO\fR and \fBREADME\fR.
748Sample jobfiles are available in \fBfio\fR's \fBexamples/\fR directory.
749