engines/xnvme: add support for fdp
[fio.git] / examples / xnvme-fdp.fio
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]
23 rw=randwrite
24 size=2M
25 iodepth=1
26 bs=4K
27 thread=1
28 fdp=1
29 fdp_pli=4,5
30
31 [default]
32
33 [override]
34 rw=${FIO_RW}
35 iodepth=${FIO_IODEPTH}
36 bs=${FIO_BS}