Various spelling fixes.
[fio.git] / examples / xnvme-fdp.fio
CommitLineData
e5f3b613
AK
1; README
2;
3; This job-file is intended to be used either as:
4;
5; # Use the xNVMe io-engine engine io_uring_cmd async. impl.
6; fio examples/xnvme-fdp.fio \
7; --section=default \
8; --ioengine=xnvme \
9; --xnvme_async=io_uring_cmd \
10; --filename=/dev/ng0n1
11;
12; # Use the xNVMe io-engine engine with nvme sync. impl.
13; fio examples/xnvme-fdp.fio \
14; --section=default \
15; --ioengine=xnvme \
16; --xnvme_sync=nvme \
17; --filename=/dev/ng0n1
18;
19; FIO_BS="512" FIO_RW="read" FIO_IODEPTH=16 fio examples/xnvme-fdp.fio \
20; --section=override --ioengine=xnvme --xnvme_sync=nvme --filename=/dev/ng0n1
21;
22[global]
23rw=randwrite
24size=2M
25iodepth=1
26bs=4K
27thread=1
28fdp=1
29fdp_pli=4,5
30
31[default]
32
33[override]
34rw=${FIO_RW}
35iodepth=${FIO_IODEPTH}
36bs=${FIO_BS}